@@ -192,7 +192,7 @@ def __init__(self, api_client=None):
192192 self ._activate_content_pack_endpoint = _Endpoint (
193193 settings = {
194194 "response_type" : None ,
195- "auth" : ["apiKeyAuth" , "appKeyAuth" , "AuthZ" ],
195+ "auth" : ["apiKeyAuth" , "appKeyAuth" ],
196196 "endpoint_path" : "/api/v2/security_monitoring/content_packs/{content_pack_id}/activate" ,
197197 "operation_id" : "activate_content_pack" ,
198198 "http_method" : "PUT" ,
@@ -659,7 +659,7 @@ def __init__(self, api_client=None):
659659 self ._deactivate_content_pack_endpoint = _Endpoint (
660660 settings = {
661661 "response_type" : None ,
662- "auth" : ["apiKeyAuth" , "appKeyAuth" , "AuthZ" ],
662+ "auth" : ["apiKeyAuth" , "appKeyAuth" ],
663663 "endpoint_path" : "/api/v2/security_monitoring/content_packs/{content_pack_id}/deactivate" ,
664664 "operation_id" : "deactivate_content_pack" ,
665665 "http_method" : "PUT" ,
@@ -1025,7 +1025,7 @@ def __init__(self, api_client=None):
10251025 self ._get_content_packs_states_endpoint = _Endpoint (
10261026 settings = {
10271027 "response_type" : (SecurityMonitoringContentPackStatesResponse ,),
1028- "auth" : ["apiKeyAuth" , "appKeyAuth" , "AuthZ" ],
1028+ "auth" : ["apiKeyAuth" , "appKeyAuth" ],
10291029 "endpoint_path" : "/api/v2/security_monitoring/content_packs/states" ,
10301030 "operation_id" : "get_content_packs_states" ,
10311031 "http_method" : "GET" ,
@@ -2993,11 +2993,11 @@ def activate_content_pack(
29932993 ) -> None :
29942994 """Activate content pack.
29952995
2996- Activate a Cloud SIEM content pack. This operation configures the necessary
2996+ Activate a security monitoring content pack. This operation configures the necessary
29972997 log filters or security filters depending on the pricing model and updates the content
29982998 pack activation state.
29992999
3000- :param content_pack_id: The ID of the content pack to activate (for example, ``aws-cloudtrail`` ) .
3000+ :param content_pack_id: The ID of the content pack to activate.
30013001 :type content_pack_id: str
30023002 :rtype: None
30033003 """
@@ -3417,10 +3417,10 @@ def deactivate_content_pack(
34173417 ) -> None :
34183418 """Deactivate content pack.
34193419
3420- Deactivate a Cloud SIEM content pack. This operation removes the content pack's
3420+ Deactivate a security monitoring content pack. This operation removes the content pack's
34213421 configuration from log filters or security filters and updates the content pack activation state.
34223422
3423- :param content_pack_id: The ID of the content pack to deactivate (for example, ``aws-cloudtrail`` ) .
3423+ :param content_pack_id: The ID of the content pack to deactivate.
34243424 :type content_pack_id: str
34253425 :rtype: None
34263426 """
@@ -3704,8 +3704,9 @@ def get_content_packs_states(
37043704 ) -> SecurityMonitoringContentPackStatesResponse :
37053705 """Get content pack states.
37063706
3707- Get the activation state, integration status, and log collection status
3708- for all Cloud SIEM content packs.
3707+ Get the activation and configuration states for all security monitoring content packs.
3708+ This endpoint returns status information about each content pack including activation state,
3709+ integration status, and log collection status.
37093710
37103711 :rtype: SecurityMonitoringContentPackStatesResponse
37113712 """
0 commit comments