Lists support event subscriptions. EXAMPLES: cURL: shell parent="organizations/123456789" curl \ --header "Authorization: Bearer $(gcloud auth print-access-token)" \ "https://cloudsupport.googleapis.com/v2/$parent/supportEventSubscriptions" Python: python import googleapiclient.discovery api_version = "v2" supportApiService = googleapiclient.discovery.build( serviceName="cloudsupport", version=api_version, discoveryServiceUrl=f"https://cloudsupport.googleapis.com/$discovery/rest?version={api_version}", ) request = supportApiService.supportEventSubscriptions().list( parent="organizations/123456789" ) print(request.execute())
Path parameters
Required. The fully qualified name of the Cloud resource to list support event subscriptions under. Format: organizations/{organization_id}
Query parameters
Optional. Filter expression based on AIP-160. Supported fields: - pub_sub_topic - state Examples: - pub_sub_topic="projects/example-project/topics/example-topic" - state=WORKING - pub_sub_topic="projects/example-project/topics/example-topic" AND state=WORKING
Optional. The maximum number of support event subscriptions to return.
Optional. A token identifying the page of results to return. If unspecified, the first page is retrieved. When paginating, all other parameters provided to ListSupportEventSubscriptions must match the call that provided the page token.
Optional. Whether to show deleted subscriptions. By default, deleted subscriptions are not returned.
Response
Successful response