As of January 1, 2020 this library no longer supports Python 2 on the latest released version. Library versions released prior to that date will continue to be available. For more information please visit Python 2 support on Google Cloud.

Eventarc

class google.cloud.eventarc_v1.services.eventarc.EventarcAsyncClient(*, credentials: typing.Optional[google.auth.credentials.Credentials] = None, transport: typing.Optional[typing.Union[str, google.cloud.eventarc_v1.services.eventarc.transports.base.EventarcTransport, typing.Callable[[...], google.cloud.eventarc_v1.services.eventarc.transports.base.EventarcTransport]]] = 'grpc_asyncio', client_options: typing.Optional[google.api_core.client_options.ClientOptions] = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)[source]

Eventarc allows users to subscribe to various events that are provided by Google Cloud services and forward them to supported destinations.

Instantiates the eventarc async client.

Parameters
  • credentials (Optional[google.auth.credentials.Credentials]) – The authorization credentials to attach to requests. These credentials identify the application to the service; if none are specified, the client will attempt to ascertain the credentials from the environment.

  • transport (Optional[Union[str,EventarcTransport,Callable[..., EventarcTransport]]]) – The transport to use, or a Callable that constructs and returns a new transport to use. If a Callable is given, it will be called with the same set of initialization arguments as used in the EventarcTransport constructor. If set to None, a transport is chosen automatically.

  • client_options (Optional[Union[google.api_core.client_options.ClientOptions, dict]]) –

    Custom options for the client.

    1. The api_endpoint property can be used to override the default endpoint provided by the client when transport is not explicitly provided. Only if this property is not set and transport was not explicitly provided, the endpoint is determined by the GOOGLE_API_USE_MTLS_ENDPOINT environment variable, which have one of the following values: “always” (always use the default mTLS endpoint), “never” (always use the default regular endpoint) and “auto” (auto-switch to the default mTLS endpoint if client certificate is present; this is the default value).

    2. If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is “true”, then the client_cert_source property can be used to provide a client certificate for mTLS transport. If not provided, the default SSL client certificate will be used if present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is “false” or not set, no client certificate will be used.

    3. The universe_domain property can be used to override the default “googleapis.com” universe. Note that api_endpoint property still takes precedence; and universe_domain is currently not supported for mTLS.

  • client_info (google.api_core.gapic_v1.client_info.ClientInfo) – The client info used to send a user-agent string along with API requests. If None, then default info will be used. Generally, you only need to set this if you’re developing your own client library.

Raises

google.auth.exceptions.MutualTlsChannelError – If mutual TLS transport creation failed for any reason.

property api_endpoint

Return the API endpoint used by the client instance.

Returns

The API endpoint used by the client instance.

Return type

str

async cancel_operation(request: Optional[google.longrunning.operations_pb2.CancelOperationRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) None[source]

Starts asynchronous cancellation on a long-running operation.

The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn’t support this method, it returns google.rpc.Code.UNIMPLEMENTED.

Parameters
  • request (CancelOperationRequest) – The request object. Request message for CancelOperation method.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

None

static channel_connection_path(project: str, location: str, channel_connection: str) str

Returns a fully-qualified channel_connection string.

static channel_path(project: str, location: str, channel: str) str

Returns a fully-qualified channel string.

static cloud_function_path(project: str, location: str, function: str) str

Returns a fully-qualified cloud_function string.

static common_billing_account_path(billing_account: str) str

Returns a fully-qualified billing_account string.

static common_folder_path(folder: str) str

Returns a fully-qualified folder string.

static common_location_path(project: str, location: str) str

Returns a fully-qualified location string.

static common_organization_path(organization: str) str

Returns a fully-qualified organization string.

static common_project_path(project: str) str

Returns a fully-qualified project string.

async create_channel(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateChannelRequest, dict]] = None, *, parent: Optional[str] = None, channel: Optional[google.cloud.eventarc_v1.types.channel.Channel] = None, channel_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Create a new channel in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_create_channel():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    channel = eventarc_v1.Channel()
    channel.pubsub_topic = "pubsub_topic_value"
    channel.name = "name_value"

    request = eventarc_v1.CreateChannelRequest(
        parent="parent_value",
        channel=channel,
        channel_id="channel_id_value",
    )

    # Make the request
    operation = client.create_channel(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.CreateChannelRequest, dict]]) – The request object. The request message for the CreateChannel method.

  • parent (str) –

    Required. The parent collection in which to add this channel.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • channel (google.cloud.eventarc_v1.types.Channel) – Required. The channel to create. This corresponds to the channel field on the request instance; if request is provided, this should not be set.

  • channel_id (str) –

    Required. The user-provided ID to be assigned to the channel.

    This corresponds to the channel_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Channel A representation of the Channel resource.

A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

Return type

google.api_core.operation_async.AsyncOperation

async create_channel_connection(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateChannelConnectionRequest, dict]] = None, *, parent: Optional[str] = None, channel_connection: Optional[google.cloud.eventarc_v1.types.channel_connection.ChannelConnection] = None, channel_connection_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Create a new ChannelConnection in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_create_channel_connection():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    channel_connection = eventarc_v1.ChannelConnection()
    channel_connection.name = "name_value"
    channel_connection.channel = "channel_value"

    request = eventarc_v1.CreateChannelConnectionRequest(
        parent="parent_value",
        channel_connection=channel_connection,
        channel_connection_id="channel_connection_id_value",
    )

    # Make the request
    operation = client.create_channel_connection(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.CreateChannelConnectionRequest, dict]]) – The request object. The request message for the CreateChannelConnection method.

  • parent (str) –

    Required. The parent collection in which to add this channel connection.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • channel_connection (google.cloud.eventarc_v1.types.ChannelConnection) –

    Required. Channel connection to create.

    This corresponds to the channel_connection field on the request instance; if request is provided, this should not be set.

  • channel_connection_id (str) –

    Required. The user-provided ID to be assigned to the channel connection.

    This corresponds to the channel_connection_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.ChannelConnection A representation of the ChannelConnection resource.

A ChannelConnection is a resource which event providers create during the activation process to establish a connection between the provider and the subscriber channel.

Return type

google.api_core.operation_async.AsyncOperation

async create_enrollment(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateEnrollmentRequest, dict]] = None, *, parent: Optional[str] = None, enrollment: Optional[google.cloud.eventarc_v1.types.enrollment.Enrollment] = None, enrollment_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Create a new Enrollment in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_create_enrollment():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    enrollment = eventarc_v1.Enrollment()
    enrollment.cel_match = "cel_match_value"
    enrollment.message_bus = "message_bus_value"
    enrollment.destination = "destination_value"

    request = eventarc_v1.CreateEnrollmentRequest(
        parent="parent_value",
        enrollment=enrollment,
        enrollment_id="enrollment_id_value",
    )

    # Make the request
    operation = client.create_enrollment(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.CreateEnrollmentRequest, dict]]) – The request object. The request message for the CreateEnrollment method.

  • parent (str) –

    Required. The parent collection in which to add this enrollment.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • enrollment (google.cloud.eventarc_v1.types.Enrollment) – Required. The enrollment to create. This corresponds to the enrollment field on the request instance; if request is provided, this should not be set.

  • enrollment_id (str) –

    Required. The user-provided ID to be assigned to the Enrollment. It should match the format (^`a-z <[a-z0-9-]{0,61}[a-z0-9]>`__?$).

    This corresponds to the enrollment_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Enrollment An enrollment represents a subscription for messages on a particular message

bus. It defines a matching criteria for messages on the bus and the subscriber endpoint where matched messages should be delivered.

Return type

google.api_core.operation_async.AsyncOperation

async create_google_api_source(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateGoogleApiSourceRequest, dict]] = None, *, parent: Optional[str] = None, google_api_source: Optional[google.cloud.eventarc_v1.types.google_api_source.GoogleApiSource] = None, google_api_source_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Create a new GoogleApiSource in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_create_google_api_source():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    google_api_source = eventarc_v1.GoogleApiSource()
    google_api_source.destination = "destination_value"

    request = eventarc_v1.CreateGoogleApiSourceRequest(
        parent="parent_value",
        google_api_source=google_api_source,
        google_api_source_id="google_api_source_id_value",
    )

    # Make the request
    operation = client.create_google_api_source(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.CreateGoogleApiSourceRequest, dict]]) – The request object. The request message for the CreateGoogleApiSource method.

  • parent (str) –

    Required. The parent collection in which to add this google api source.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • google_api_source (google.cloud.eventarc_v1.types.GoogleApiSource) –

    Required. The google api source to create.

    This corresponds to the google_api_source field on the request instance; if request is provided, this should not be set.

  • google_api_source_id (str) –

    Required. The user-provided ID to be assigned to the GoogleApiSource. It should match the format (^`a-z <[a-z0-9-]{0,61}[a-z0-9]>`__?$).

    This corresponds to the google_api_source_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.GoogleApiSource A GoogleApiSource represents a subscription of 1P events from a MessageBus.

Return type

google.api_core.operation_async.AsyncOperation

async create_message_bus(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateMessageBusRequest, dict]] = None, *, parent: Optional[str] = None, message_bus: Optional[google.cloud.eventarc_v1.types.message_bus.MessageBus] = None, message_bus_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Create a new MessageBus in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_create_message_bus():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.CreateMessageBusRequest(
        parent="parent_value",
        message_bus_id="message_bus_id_value",
    )

    # Make the request
    operation = client.create_message_bus(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.CreateMessageBusRequest, dict]]) – The request object. The request message for the CreateMessageBus method.

  • parent (str) –

    Required. The parent collection in which to add this message bus.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • message_bus (google.cloud.eventarc_v1.types.MessageBus) – Required. The message bus to create. This corresponds to the message_bus field on the request instance; if request is provided, this should not be set.

  • message_bus_id (str) –

    Required. The user-provided ID to be assigned to the MessageBus. It should match the format (^`a-z <[a-z0-9-]{0,61}[a-z0-9]>`__?$)

    This corresponds to the message_bus_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.MessageBus MessageBus for the messages flowing through the system. The admin has

visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.

Return type

google.api_core.operation_async.AsyncOperation

async create_pipeline(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreatePipelineRequest, dict]] = None, *, parent: Optional[str] = None, pipeline: Optional[google.cloud.eventarc_v1.types.pipeline.Pipeline] = None, pipeline_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Create a new Pipeline in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_create_pipeline():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    pipeline = eventarc_v1.Pipeline()
    pipeline.destinations.http_endpoint.uri = "uri_value"

    request = eventarc_v1.CreatePipelineRequest(
        parent="parent_value",
        pipeline=pipeline,
        pipeline_id="pipeline_id_value",
    )

    # Make the request
    operation = client.create_pipeline(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.CreatePipelineRequest, dict]]) – The request object. The request message for the CreatePipeline method.

  • parent (str) –

    Required. The parent collection in which to add this pipeline.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • pipeline (google.cloud.eventarc_v1.types.Pipeline) – Required. The pipeline to create. This corresponds to the pipeline field on the request instance; if request is provided, this should not be set.

  • pipeline_id (str) –

    Required. The user-provided ID to be assigned to the Pipeline.

    This corresponds to the pipeline_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Pipeline A representation of the Pipeline resource.

Return type

google.api_core.operation_async.AsyncOperation

async create_trigger(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateTriggerRequest, dict]] = None, *, parent: Optional[str] = None, trigger: Optional[google.cloud.eventarc_v1.types.trigger.Trigger] = None, trigger_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Create a new trigger in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_create_trigger():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    trigger = eventarc_v1.Trigger()
    trigger.name = "name_value"
    trigger.event_filters.attribute = "attribute_value"
    trigger.event_filters.value = "value_value"
    trigger.destination.cloud_run.service = "service_value"
    trigger.destination.cloud_run.region = "region_value"

    request = eventarc_v1.CreateTriggerRequest(
        parent="parent_value",
        trigger=trigger,
        trigger_id="trigger_id_value",
    )

    # Make the request
    operation = client.create_trigger(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.CreateTriggerRequest, dict]]) – The request object. The request message for the CreateTrigger method.

  • parent (str) –

    Required. The parent collection in which to add this trigger.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • trigger (google.cloud.eventarc_v1.types.Trigger) – Required. The trigger to create. This corresponds to the trigger field on the request instance; if request is provided, this should not be set.

  • trigger_id (str) –

    Required. The user-provided ID to be assigned to the trigger.

    This corresponds to the trigger_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Trigger A representation of the trigger resource.

Return type

google.api_core.operation_async.AsyncOperation

static crypto_key_path(project: str, location: str, key_ring: str, crypto_key: str) str

Returns a fully-qualified crypto_key string.

async delete_channel(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteChannelRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Delete a single channel.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_delete_channel():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteChannelRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_channel(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.DeleteChannelRequest, dict]]) – The request object. The request message for the DeleteChannel method.

  • name (str) –

    Required. The name of the channel to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Channel A representation of the Channel resource.

A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

Return type

google.api_core.operation_async.AsyncOperation

async delete_channel_connection(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteChannelConnectionRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Delete a single ChannelConnection.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_delete_channel_connection():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteChannelConnectionRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_channel_connection(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.DeleteChannelConnectionRequest, dict]]) – The request object. The request message for the DeleteChannelConnection method.

  • name (str) –

    Required. The name of the channel connection to delete.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.ChannelConnection A representation of the ChannelConnection resource.

A ChannelConnection is a resource which event providers create during the activation process to establish a connection between the provider and the subscriber channel.

Return type

google.api_core.operation_async.AsyncOperation

async delete_enrollment(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteEnrollmentRequest, dict]] = None, *, name: Optional[str] = None, etag: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Delete a single Enrollment.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_delete_enrollment():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteEnrollmentRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_enrollment(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.DeleteEnrollmentRequest, dict]]) – The request object. The request message for the DeleteEnrollment method.

  • name (str) –

    Required. The name of the Enrollment to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • etag (str) –

    Optional. If provided, the Enrollment will only be deleted if the etag matches the current etag on the resource.

    This corresponds to the etag field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Enrollment An enrollment represents a subscription for messages on a particular message

bus. It defines a matching criteria for messages on the bus and the subscriber endpoint where matched messages should be delivered.

Return type

google.api_core.operation_async.AsyncOperation

async delete_google_api_source(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteGoogleApiSourceRequest, dict]] = None, *, name: Optional[str] = None, etag: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Delete a single GoogleApiSource.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_delete_google_api_source():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteGoogleApiSourceRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_google_api_source(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.DeleteGoogleApiSourceRequest, dict]]) – The request object. The request message for the DeleteGoogleApiSource method.

  • name (str) –

    Required. The name of the GoogleApiSource to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • etag (str) –

    Optional. If provided, the MessageBus will only be deleted if the etag matches the current etag on the resource.

    This corresponds to the etag field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.GoogleApiSource A GoogleApiSource represents a subscription of 1P events from a MessageBus.

Return type

google.api_core.operation_async.AsyncOperation

async delete_message_bus(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteMessageBusRequest, dict]] = None, *, name: Optional[str] = None, etag: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Delete a single message bus.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_delete_message_bus():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteMessageBusRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_message_bus(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.DeleteMessageBusRequest, dict]]) – The request object. The request message for the DeleteMessageBus method.

  • name (str) –

    Required. The name of the MessageBus to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • etag (str) –

    Optional. If provided, the MessageBus will only be deleted if the etag matches the current etag on the resource.

    This corresponds to the etag field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.MessageBus MessageBus for the messages flowing through the system. The admin has

visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.

Return type

google.api_core.operation_async.AsyncOperation

async delete_operation(request: Optional[google.longrunning.operations_pb2.DeleteOperationRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) None[source]

Deletes a long-running operation.

This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn’t support this method, it returns google.rpc.Code.UNIMPLEMENTED.

Parameters
  • request (DeleteOperationRequest) – The request object. Request message for DeleteOperation method.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

None

async delete_pipeline(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeletePipelineRequest, dict]] = None, *, name: Optional[str] = None, etag: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Delete a single pipeline.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_delete_pipeline():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeletePipelineRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_pipeline(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.DeletePipelineRequest, dict]]) – The request object. The request message for the DeletePipeline method.

  • name (str) –

    Required. The name of the Pipeline to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • etag (str) –

    Optional. If provided, the Pipeline will only be deleted if the etag matches the current etag on the resource.

    This corresponds to the etag field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Pipeline A representation of the Pipeline resource.

Return type

google.api_core.operation_async.AsyncOperation

async delete_trigger(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteTriggerRequest, dict]] = None, *, name: Optional[str] = None, allow_missing: Optional[bool] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Delete a single trigger.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_delete_trigger():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteTriggerRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_trigger(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.DeleteTriggerRequest, dict]]) – The request object. The request message for the DeleteTrigger method.

  • name (str) –

    Required. The name of the trigger to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • allow_missing (bool) –

    If set to true, and the trigger is not found, the request will succeed but no action will be taken on the server.

    This corresponds to the allow_missing field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Trigger A representation of the trigger resource.

Return type

google.api_core.operation_async.AsyncOperation

static enrollment_path(project: str, location: str, enrollment: str) str

Returns a fully-qualified enrollment string.

classmethod from_service_account_file(filename: str, *args, **kwargs)[source]
Creates an instance of this client using the provided credentials

file.

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

EventarcAsyncClient

classmethod from_service_account_info(info: dict, *args, **kwargs)[source]
Creates an instance of this client using the provided credentials

info.

Parameters
  • info (dict) – The service account private key info.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

EventarcAsyncClient

classmethod from_service_account_json(filename: str, *args, **kwargs)
Creates an instance of this client using the provided credentials

file.

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

EventarcAsyncClient

async get_channel(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetChannelRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.channel.Channel[source]

Get a single Channel.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_get_channel():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetChannelRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_channel(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.GetChannelRequest, dict]]) – The request object. The request message for the GetChannel method.

  • name (str) –

    Required. The name of the channel to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the Channel resource. A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

Return type

google.cloud.eventarc_v1.types.Channel

async get_channel_connection(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetChannelConnectionRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.channel_connection.ChannelConnection[source]

Get a single ChannelConnection.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_get_channel_connection():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetChannelConnectionRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_channel_connection(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.GetChannelConnectionRequest, dict]]) – The request object. The request message for the GetChannelConnection method.

  • name (str) –

    Required. The name of the channel connection to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the ChannelConnection resource. A ChannelConnection is a resource which event providers create during the activation process to establish a connection between the provider and the subscriber channel.

Return type

google.cloud.eventarc_v1.types.ChannelConnection

async get_enrollment(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetEnrollmentRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.enrollment.Enrollment[source]

Get a single Enrollment.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_get_enrollment():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetEnrollmentRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_enrollment(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.GetEnrollmentRequest, dict]]) – The request object. The request message for the GetEnrollment method.

  • name (str) –

    Required. The name of the Enrollment to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An enrollment represents a subscription for messages on a particular message bus. It defines a matching criteria for messages on the bus and the subscriber endpoint where matched messages should be delivered.

Return type

google.cloud.eventarc_v1.types.Enrollment

async get_google_api_source(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetGoogleApiSourceRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.google_api_source.GoogleApiSource[source]

Get a single GoogleApiSource.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_get_google_api_source():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetGoogleApiSourceRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_google_api_source(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.GetGoogleApiSourceRequest, dict]]) – The request object. The request message for the GetGoogleApiSource method.

  • name (str) –

    Required. The name of the google api source to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A GoogleApiSource represents a subscription of 1P events from a MessageBus.

Return type

google.cloud.eventarc_v1.types.GoogleApiSource

async get_google_channel_config(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetGoogleChannelConfigRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.google_channel_config.GoogleChannelConfig[source]

Get a GoogleChannelConfig

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_get_google_channel_config():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetGoogleChannelConfigRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_google_channel_config(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.GetGoogleChannelConfigRequest, dict]]) – The request object. The request message for the GetGoogleChannelConfig method.

  • name (str) –

    Required. The name of the config to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A GoogleChannelConfig is a resource that stores the custom settings respected by Eventarc first-party triggers in the matching region. Once configured, first-party event data will be protected using the specified custom managed encryption key instead of Google-managed encryption keys.

Return type

google.cloud.eventarc_v1.types.GoogleChannelConfig

async get_iam_policy(request: Optional[google.iam.v1.iam_policy_pb2.GetIamPolicyRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.iam.v1.policy_pb2.Policy[source]

Gets the IAM access control policy for a function.

Returns an empty policy if the function exists and does not have a policy set.

Parameters
  • request (GetIamPolicyRequest) – The request object. Request message for GetIamPolicy method.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Defines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. A Policy is a collection of bindings. A binding binds one or more members to a single role. Members can be user accounts, service accounts, Google groups, and domains (such as G Suite). A role is a named list of permissions (defined by IAM or configured by users). A binding can optionally specify a condition, which is a logic expression that further constrains the role binding based on attributes about the request and/or target resource.

JSON Example

{
  "bindings": [
    {
      "role": "roles/resourcemanager.organizationAdmin",
      "members": [
        "user:mike@example.com",
        "group:admins@example.com",
        "domain:google.com",
        "serviceAccount:my-project-id@appspot.gserviceaccount.com"
      ]
    },
    {
      "role": "roles/resourcemanager.organizationViewer",
      "members": ["user:eve@example.com"],
      "condition": {
        "title": "expirable access",
        "description": "Does not grant access after Sep 2020",
        "expression": "request.time <
        timestamp('2020-10-01T00:00:00.000Z')",
      }
    }
  ]
}

YAML Example

bindings:
- members:
  - user:mike@example.com
  - group:admins@example.com
  - domain:google.com
  - serviceAccount:my-project-id@appspot.gserviceaccount.com
  role: roles/resourcemanager.organizationAdmin
- members:
  - user:eve@example.com
  role: roles/resourcemanager.organizationViewer
  condition:
    title: expirable access
    description: Does not grant access after Sep 2020
    expression: request.time < timestamp('2020-10-01T00:00:00.000Z')

For a description of IAM and its features, see the IAM developer’s guide.

Return type

Policy

async get_location(request: Optional[google.cloud.location.locations_pb2.GetLocationRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.location.locations_pb2.Location[source]

Gets information about a location.

Parameters
  • request (GetLocationRequest) – The request object. Request message for GetLocation method.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Location object.

Return type

Location

async get_message_bus(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetMessageBusRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.message_bus.MessageBus[source]

Get a single MessageBus.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_get_message_bus():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetMessageBusRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_message_bus(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.GetMessageBusRequest, dict]]) – The request object. The request message for the GetMessageBus method.

  • name (str) –

    Required. The name of the message bus to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

MessageBus for the messages flowing through the system. The admin has visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.

Return type

google.cloud.eventarc_v1.types.MessageBus

classmethod get_mtls_endpoint_and_cert_source(client_options: Optional[google.api_core.client_options.ClientOptions] = None)[source]

Return the API endpoint and client cert source for mutual TLS.

The client cert source is determined in the following order: (1) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is not “true”, the client cert source is None. (2) if client_options.client_cert_source is provided, use the provided one; if the default client cert source exists, use the default one; otherwise the client cert source is None.

The API endpoint is determined in the following order: (1) if client_options.api_endpoint if provided, use the provided one. (2) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is “always”, use the default mTLS endpoint; if the environment variable is “never”, use the default API endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise use the default API endpoint.

More details can be found at https://google.aip.dev/auth/4114.

Parameters

client_options (google.api_core.client_options.ClientOptions) – Custom options for the client. Only the api_endpoint and client_cert_source properties may be used in this method.

Returns

returns the API endpoint and the

client cert source to use.

Return type

Tuple[str, Callable[[], Tuple[bytes, bytes]]]

Raises

google.auth.exceptions.MutualTLSChannelError – If any errors happen.

async get_operation(request: Optional[google.longrunning.operations_pb2.GetOperationRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.longrunning.operations_pb2.Operation[source]

Gets the latest state of a long-running operation.

Parameters
  • request (GetOperationRequest) – The request object. Request message for GetOperation method.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An Operation object.

Return type

Operation

async get_pipeline(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetPipelineRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.pipeline.Pipeline[source]

Get a single Pipeline.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_get_pipeline():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetPipelineRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_pipeline(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.GetPipelineRequest, dict]]) – The request object. The request message for the GetPipeline method.

  • name (str) –

    Required. The name of the pipeline to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the Pipeline resource.

Return type

google.cloud.eventarc_v1.types.Pipeline

async get_provider(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetProviderRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.discovery.Provider[source]

Get a single Provider.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_get_provider():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetProviderRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_provider(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.GetProviderRequest, dict]]) – The request object. The request message for the GetProvider method.

  • name (str) –

    Required. The name of the provider to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the Provider resource.

Return type

google.cloud.eventarc_v1.types.Provider

classmethod get_transport_class(label: Optional[str] = None) Type[google.cloud.eventarc_v1.services.eventarc.transports.base.EventarcTransport]

Returns an appropriate transport class.

Parameters

label – The name of the desired transport. If none is provided, then the first transport in the registry is used.

Returns

The transport class to use.

async get_trigger(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetTriggerRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.trigger.Trigger[source]

Get a single trigger.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_get_trigger():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetTriggerRequest(
        name="name_value",
    )

    # Make the request
    response = await client.get_trigger(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.GetTriggerRequest, dict]]) – The request object. The request message for the GetTrigger method.

  • name (str) –

    Required. The name of the trigger to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the trigger resource.

Return type

google.cloud.eventarc_v1.types.Trigger

static google_api_source_path(project: str, location: str, google_api_source: str) str

Returns a fully-qualified google_api_source string.

static google_channel_config_path(project: str, location: str) str

Returns a fully-qualified google_channel_config string.

async list_channel_connections(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListChannelConnectionsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelConnectionsAsyncPager[source]

List channel connections.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_list_channel_connections():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListChannelConnectionsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_channel_connections(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.ListChannelConnectionsRequest, dict]]) – The request object. The request message for the ListChannelConnections method.

  • parent (str) –

    Required. The parent collection from which to list channel connections.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListChannelConnections method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelConnectionsAsyncPager

async list_channels(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListChannelsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelsAsyncPager[source]

List channels.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_list_channels():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListChannelsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_channels(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.ListChannelsRequest, dict]]) – The request object. The request message for the ListChannels method.

  • parent (str) –

    Required. The parent collection to list channels on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListChannels method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelsAsyncPager

async list_enrollments(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListEnrollmentsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListEnrollmentsAsyncPager[source]

List Enrollments.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_list_enrollments():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListEnrollmentsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_enrollments(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.ListEnrollmentsRequest, dict]]) – The request object. The request message for the ListEnrollments method.

  • parent (str) –

    Required. The parent collection to list triggers on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListEnrollments method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListEnrollmentsAsyncPager

async list_google_api_sources(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListGoogleApiSourcesRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListGoogleApiSourcesAsyncPager[source]

List GoogleApiSources.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_list_google_api_sources():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListGoogleApiSourcesRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_google_api_sources(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.ListGoogleApiSourcesRequest, dict]]) – The request object. The request message for the ListGoogleApiSources method.

  • parent (str) –

    Required. The parent collection to list GoogleApiSources on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListGoogleApiSources method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListGoogleApiSourcesAsyncPager

async list_locations(request: Optional[google.cloud.location.locations_pb2.ListLocationsRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.location.locations_pb2.ListLocationsResponse[source]

Lists information about the supported locations for this service.

Parameters
  • request (ListLocationsRequest) – The request object. Request message for ListLocations method.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for ListLocations method.

Return type

ListLocationsResponse

async list_message_bus_enrollments(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListMessageBusEnrollmentsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusEnrollmentsAsyncPager[source]

List message bus enrollments.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_list_message_bus_enrollments():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListMessageBusEnrollmentsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_message_bus_enrollments(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.ListMessageBusEnrollmentsRequest, dict]]) – The request object. The request message for the ListMessageBusEnrollments method.

  • parent (str) –

    Required. The parent message bus to list enrollments on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListMessageBusEnrollments method.`

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusEnrollmentsAsyncPager

async list_message_buses(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListMessageBusesRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusesAsyncPager[source]

List message buses.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_list_message_buses():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListMessageBusesRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_message_buses(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.ListMessageBusesRequest, dict]]) – The request object. The request message for the ListMessageBuses method.

  • parent (str) –

    Required. The parent collection to list triggers on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListMessageBuses method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusesAsyncPager

async list_operations(request: Optional[google.longrunning.operations_pb2.ListOperationsRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.longrunning.operations_pb2.ListOperationsResponse[source]

Lists operations that match the specified filter in the request.

Parameters
  • request (ListOperationsRequest) – The request object. Request message for ListOperations method.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for ListOperations method.

Return type

ListOperationsResponse

async list_pipelines(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListPipelinesRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListPipelinesAsyncPager[source]

List pipelines.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_list_pipelines():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListPipelinesRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_pipelines(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.ListPipelinesRequest, dict]]) – The request object. The request message for the ListPipelines method.

  • parent (str) –

    Required. The parent collection to list pipelines on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListPipelines method. Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListPipelinesAsyncPager

async list_providers(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListProvidersRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListProvidersAsyncPager[source]

List providers.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_list_providers():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListProvidersRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_providers(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.ListProvidersRequest, dict]]) – The request object. The request message for the ListProviders method.

  • parent (str) –

    Required. The parent of the provider to get.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListProviders method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListProvidersAsyncPager

async list_triggers(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListTriggersRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListTriggersAsyncPager[source]

List triggers.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_list_triggers():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListTriggersRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_triggers(request=request)

    # Handle the response
    async for response in page_result:
        print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.ListTriggersRequest, dict]]) – The request object. The request message for the ListTriggers method.

  • parent (str) –

    Required. The parent collection to list triggers on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListTriggers method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListTriggersAsyncPager

static message_bus_path(project: str, location: str, message_bus: str) str

Returns a fully-qualified message_bus string.

static network_attachment_path(project: str, region: str, networkattachment: str) str

Returns a fully-qualified network_attachment string.

static parse_channel_connection_path(path: str) Dict[str, str]

Parses a channel_connection path into its component segments.

static parse_channel_path(path: str) Dict[str, str]

Parses a channel path into its component segments.

static parse_cloud_function_path(path: str) Dict[str, str]

Parses a cloud_function path into its component segments.

static parse_common_billing_account_path(path: str) Dict[str, str]

Parse a billing_account path into its component segments.

static parse_common_folder_path(path: str) Dict[str, str]

Parse a folder path into its component segments.

static parse_common_location_path(path: str) Dict[str, str]

Parse a location path into its component segments.

static parse_common_organization_path(path: str) Dict[str, str]

Parse a organization path into its component segments.

static parse_common_project_path(path: str) Dict[str, str]

Parse a project path into its component segments.

static parse_crypto_key_path(path: str) Dict[str, str]

Parses a crypto_key path into its component segments.

static parse_enrollment_path(path: str) Dict[str, str]

Parses a enrollment path into its component segments.

static parse_google_api_source_path(path: str) Dict[str, str]

Parses a google_api_source path into its component segments.

static parse_google_channel_config_path(path: str) Dict[str, str]

Parses a google_channel_config path into its component segments.

static parse_message_bus_path(path: str) Dict[str, str]

Parses a message_bus path into its component segments.

static parse_network_attachment_path(path: str) Dict[str, str]

Parses a network_attachment path into its component segments.

static parse_pipeline_path(path: str) Dict[str, str]

Parses a pipeline path into its component segments.

static parse_provider_path(path: str) Dict[str, str]

Parses a provider path into its component segments.

static parse_service_account_path(path: str) Dict[str, str]

Parses a service_account path into its component segments.

static parse_service_path(path: str) Dict[str, str]

Parses a service path into its component segments.

static parse_topic_path(path: str) Dict[str, str]

Parses a topic path into its component segments.

static parse_trigger_path(path: str) Dict[str, str]

Parses a trigger path into its component segments.

static parse_workflow_path(path: str) Dict[str, str]

Parses a workflow path into its component segments.

static pipeline_path(project: str, location: str, pipeline: str) str

Returns a fully-qualified pipeline string.

static provider_path(project: str, location: str, provider: str) str

Returns a fully-qualified provider string.

static service_account_path(project: str, service_account: str) str

Returns a fully-qualified service_account string.

static service_path() str

Returns a fully-qualified service string.

async set_iam_policy(request: Optional[google.iam.v1.iam_policy_pb2.SetIamPolicyRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.iam.v1.policy_pb2.Policy[source]

Sets the IAM access control policy on the specified function.

Replaces any existing policy.

Parameters
  • request (SetIamPolicyRequest) – The request object. Request message for SetIamPolicy method.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Defines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. A Policy is a collection of bindings. A binding binds one or more members to a single role. Members can be user accounts, service accounts, Google groups, and domains (such as G Suite). A role is a named list of permissions (defined by IAM or configured by users). A binding can optionally specify a condition, which is a logic expression that further constrains the role binding based on attributes about the request and/or target resource.

JSON Example

{
  "bindings": [
    {
      "role": "roles/resourcemanager.organizationAdmin",
      "members": [
        "user:mike@example.com",
        "group:admins@example.com",
        "domain:google.com",
        "serviceAccount:my-project-id@appspot.gserviceaccount.com"
      ]
    },
    {
      "role": "roles/resourcemanager.organizationViewer",
      "members": ["user:eve@example.com"],
      "condition": {
        "title": "expirable access",
        "description": "Does not grant access after Sep 2020",
        "expression": "request.time <
        timestamp('2020-10-01T00:00:00.000Z')",
      }
    }
  ]
}

YAML Example

bindings:
- members:
  - user:mike@example.com
  - group:admins@example.com
  - domain:google.com
  - serviceAccount:my-project-id@appspot.gserviceaccount.com
  role: roles/resourcemanager.organizationAdmin
- members:
  - user:eve@example.com
  role: roles/resourcemanager.organizationViewer
  condition:
    title: expirable access
    description: Does not grant access after Sep 2020
    expression: request.time < timestamp('2020-10-01T00:00:00.000Z')

For a description of IAM and its features, see the IAM developer’s guide.

Return type

Policy

async test_iam_permissions(request: Optional[google.iam.v1.iam_policy_pb2.TestIamPermissionsRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.iam.v1.iam_policy_pb2.TestIamPermissionsResponse[source]
Tests the specified IAM permissions against the IAM access control

policy for a function.

If the function does not exist, this will return an empty set of permissions, not a NOT_FOUND error.

Parameters
  • request (TestIamPermissionsRequest) – The request object. Request message for TestIamPermissions method.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for TestIamPermissions method.

Return type

TestIamPermissionsResponse

static topic_path(project: str, topic: str) str

Returns a fully-qualified topic string.

property transport: google.cloud.eventarc_v1.services.eventarc.transports.base.EventarcTransport

Returns the transport used by the client instance.

Returns

The transport used by the client instance.

Return type

EventarcTransport

static trigger_path(project: str, location: str, trigger: str) str

Returns a fully-qualified trigger string.

property universe_domain: str

Return the universe domain used by the client instance.

Returns

The universe domain used

by the client instance.

Return type

str

async update_channel(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateChannelRequest, dict]] = None, *, channel: Optional[google.cloud.eventarc_v1.types.channel.Channel] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Update a single channel.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_update_channel():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.UpdateChannelRequest(
    )

    # Make the request
    operation = client.update_channel(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.UpdateChannelRequest, dict]]) – The request object. The request message for the UpdateChannel method.

  • channel (google.cloud.eventarc_v1.types.Channel) – The channel to be updated. This corresponds to the channel field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Channel A representation of the Channel resource.

A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

Return type

google.api_core.operation_async.AsyncOperation

async update_enrollment(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateEnrollmentRequest, dict]] = None, *, enrollment: Optional[google.cloud.eventarc_v1.types.enrollment.Enrollment] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Update a single Enrollment.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_update_enrollment():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    enrollment = eventarc_v1.Enrollment()
    enrollment.cel_match = "cel_match_value"
    enrollment.message_bus = "message_bus_value"
    enrollment.destination = "destination_value"

    request = eventarc_v1.UpdateEnrollmentRequest(
        enrollment=enrollment,
    )

    # Make the request
    operation = client.update_enrollment(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.UpdateEnrollmentRequest, dict]]) – The request object. The request message for the UpdateEnrollment method.

  • enrollment (google.cloud.eventarc_v1.types.Enrollment) –

    Required. The Enrollment to be updated.

    This corresponds to the enrollment field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    Optional. The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Enrollment An enrollment represents a subscription for messages on a particular message

bus. It defines a matching criteria for messages on the bus and the subscriber endpoint where matched messages should be delivered.

Return type

google.api_core.operation_async.AsyncOperation

async update_google_api_source(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateGoogleApiSourceRequest, dict]] = None, *, google_api_source: Optional[google.cloud.eventarc_v1.types.google_api_source.GoogleApiSource] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Update a single GoogleApiSource.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_update_google_api_source():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    google_api_source = eventarc_v1.GoogleApiSource()
    google_api_source.destination = "destination_value"

    request = eventarc_v1.UpdateGoogleApiSourceRequest(
        google_api_source=google_api_source,
    )

    # Make the request
    operation = client.update_google_api_source(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.UpdateGoogleApiSourceRequest, dict]]) – The request object. The request message for the UpdateGoogleApiSource method.

  • google_api_source (google.cloud.eventarc_v1.types.GoogleApiSource) –

    Required. The GoogleApiSource to be updated.

    This corresponds to the google_api_source field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    Optional. The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.GoogleApiSource A GoogleApiSource represents a subscription of 1P events from a MessageBus.

Return type

google.api_core.operation_async.AsyncOperation

async update_google_channel_config(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateGoogleChannelConfigRequest, dict]] = None, *, google_channel_config: Optional[google.cloud.eventarc_v1.types.google_channel_config.GoogleChannelConfig] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.google_channel_config.GoogleChannelConfig[source]

Update a single GoogleChannelConfig

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_update_google_channel_config():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    google_channel_config = eventarc_v1.GoogleChannelConfig()
    google_channel_config.name = "name_value"

    request = eventarc_v1.UpdateGoogleChannelConfigRequest(
        google_channel_config=google_channel_config,
    )

    # Make the request
    response = await client.update_google_channel_config(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.UpdateGoogleChannelConfigRequest, dict]]) – The request object. The request message for the UpdateGoogleChannelConfig method.

  • google_channel_config (google.cloud.eventarc_v1.types.GoogleChannelConfig) – Required. The config to be updated. This corresponds to the google_channel_config field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A GoogleChannelConfig is a resource that stores the custom settings respected by Eventarc first-party triggers in the matching region. Once configured, first-party event data will be protected using the specified custom managed encryption key instead of Google-managed encryption keys.

Return type

google.cloud.eventarc_v1.types.GoogleChannelConfig

async update_message_bus(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateMessageBusRequest, dict]] = None, *, message_bus: Optional[google.cloud.eventarc_v1.types.message_bus.MessageBus] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Update a single message bus.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_update_message_bus():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.UpdateMessageBusRequest(
    )

    # Make the request
    operation = client.update_message_bus(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.UpdateMessageBusRequest, dict]]) – The request object. The request message for the UpdateMessageBus method.

  • message_bus (google.cloud.eventarc_v1.types.MessageBus) –

    Required. The MessageBus to be updated.

    This corresponds to the message_bus field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    Optional. The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.MessageBus MessageBus for the messages flowing through the system. The admin has

visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.

Return type

google.api_core.operation_async.AsyncOperation

async update_pipeline(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdatePipelineRequest, dict]] = None, *, pipeline: Optional[google.cloud.eventarc_v1.types.pipeline.Pipeline] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Update a single pipeline.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_update_pipeline():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    pipeline = eventarc_v1.Pipeline()
    pipeline.destinations.http_endpoint.uri = "uri_value"

    request = eventarc_v1.UpdatePipelineRequest(
        pipeline=pipeline,
    )

    # Make the request
    operation = client.update_pipeline(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.UpdatePipelineRequest, dict]]) – The request object. The request message for the UpdatePipeline method.

  • pipeline (google.cloud.eventarc_v1.types.Pipeline) – Required. The Pipeline to be updated. This corresponds to the pipeline field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    Optional. The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Pipeline A representation of the Pipeline resource.

Return type

google.api_core.operation_async.AsyncOperation

async update_trigger(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateTriggerRequest, dict]] = None, *, trigger: Optional[google.cloud.eventarc_v1.types.trigger.Trigger] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, allow_missing: Optional[bool] = None, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation_async.AsyncOperation[source]

Update a single trigger.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

async def sample_update_trigger():
    # Create a client
    client = eventarc_v1.EventarcAsyncClient()

    # Initialize request argument(s)
    request = eventarc_v1.UpdateTriggerRequest(
    )

    # Make the request
    operation = client.update_trigger(request=request)

    print("Waiting for operation to complete...")

    response = (await operation).result()

    # Handle the response
    print(response)
Parameters
  • request (Optional[Union[google.cloud.eventarc_v1.types.UpdateTriggerRequest, dict]]) – The request object. The request message for the UpdateTrigger method.

  • trigger (google.cloud.eventarc_v1.types.Trigger) – The trigger to be updated. This corresponds to the trigger field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • allow_missing (bool) –

    If set to true, and the trigger is not found, a new trigger will be created. In this situation, update_mask is ignored.

    This corresponds to the allow_missing field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry_async.AsyncRetry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Trigger A representation of the trigger resource.

Return type

google.api_core.operation_async.AsyncOperation

static workflow_path(project: str, location: str, workflow: str) str

Returns a fully-qualified workflow string.

class google.cloud.eventarc_v1.services.eventarc.EventarcClient(*, credentials: typing.Optional[google.auth.credentials.Credentials] = None, transport: typing.Optional[typing.Union[str, google.cloud.eventarc_v1.services.eventarc.transports.base.EventarcTransport, typing.Callable[[...], google.cloud.eventarc_v1.services.eventarc.transports.base.EventarcTransport]]] = None, client_options: typing.Optional[typing.Union[google.api_core.client_options.ClientOptions, dict]] = None, client_info: google.api_core.gapic_v1.client_info.ClientInfo = <google.api_core.gapic_v1.client_info.ClientInfo object>)[source]

Eventarc allows users to subscribe to various events that are provided by Google Cloud services and forward them to supported destinations.

Instantiates the eventarc client.

Parameters
  • credentials (Optional[google.auth.credentials.Credentials]) – The authorization credentials to attach to requests. These credentials identify the application to the service; if none are specified, the client will attempt to ascertain the credentials from the environment.

  • transport (Optional[Union[str,EventarcTransport,Callable[..., EventarcTransport]]]) – The transport to use, or a Callable that constructs and returns a new transport. If a Callable is given, it will be called with the same set of initialization arguments as used in the EventarcTransport constructor. If set to None, a transport is chosen automatically.

  • client_options (Optional[Union[google.api_core.client_options.ClientOptions, dict]]) –

    Custom options for the client.

    1. The api_endpoint property can be used to override the default endpoint provided by the client when transport is not explicitly provided. Only if this property is not set and transport was not explicitly provided, the endpoint is determined by the GOOGLE_API_USE_MTLS_ENDPOINT environment variable, which have one of the following values: “always” (always use the default mTLS endpoint), “never” (always use the default regular endpoint) and “auto” (auto-switch to the default mTLS endpoint if client certificate is present; this is the default value).

    2. If the GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is “true”, then the client_cert_source property can be used to provide a client certificate for mTLS transport. If not provided, the default SSL client certificate will be used if present. If GOOGLE_API_USE_CLIENT_CERTIFICATE is “false” or not set, no client certificate will be used.

    3. The universe_domain property can be used to override the default “googleapis.com” universe. Note that the api_endpoint property still takes precedence; and universe_domain is currently not supported for mTLS.

  • client_info (google.api_core.gapic_v1.client_info.ClientInfo) – The client info used to send a user-agent string along with API requests. If None, then default info will be used. Generally, you only need to set this if you’re developing your own client library.

Raises

google.auth.exceptions.MutualTLSChannelError – If mutual TLS transport creation failed for any reason.

__exit__(type, value, traceback)[source]

Releases underlying transport’s resources.

Warning

ONLY use as a context manager if the transport is NOT shared with other clients! Exiting the with block will CLOSE the transport and may cause errors in other clients!

property api_endpoint

Return the API endpoint used by the client instance.

Returns

The API endpoint used by the client instance.

Return type

str

cancel_operation(request: Optional[google.longrunning.operations_pb2.CancelOperationRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) None[source]

Starts asynchronous cancellation on a long-running operation.

The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn’t support this method, it returns google.rpc.Code.UNIMPLEMENTED.

Parameters
  • request (CancelOperationRequest) – The request object. Request message for CancelOperation method.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

None

static channel_connection_path(project: str, location: str, channel_connection: str) str[source]

Returns a fully-qualified channel_connection string.

static channel_path(project: str, location: str, channel: str) str[source]

Returns a fully-qualified channel string.

static cloud_function_path(project: str, location: str, function: str) str[source]

Returns a fully-qualified cloud_function string.

static common_billing_account_path(billing_account: str) str[source]

Returns a fully-qualified billing_account string.

static common_folder_path(folder: str) str[source]

Returns a fully-qualified folder string.

static common_location_path(project: str, location: str) str[source]

Returns a fully-qualified location string.

static common_organization_path(organization: str) str[source]

Returns a fully-qualified organization string.

static common_project_path(project: str) str[source]

Returns a fully-qualified project string.

create_channel(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateChannelRequest, dict]] = None, *, parent: Optional[str] = None, channel: Optional[google.cloud.eventarc_v1.types.channel.Channel] = None, channel_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Create a new channel in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_create_channel():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    channel = eventarc_v1.Channel()
    channel.pubsub_topic = "pubsub_topic_value"
    channel.name = "name_value"

    request = eventarc_v1.CreateChannelRequest(
        parent="parent_value",
        channel=channel,
        channel_id="channel_id_value",
    )

    # Make the request
    operation = client.create_channel(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.CreateChannelRequest, dict]) – The request object. The request message for the CreateChannel method.

  • parent (str) –

    Required. The parent collection in which to add this channel.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • channel (google.cloud.eventarc_v1.types.Channel) – Required. The channel to create. This corresponds to the channel field on the request instance; if request is provided, this should not be set.

  • channel_id (str) –

    Required. The user-provided ID to be assigned to the channel.

    This corresponds to the channel_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Channel A representation of the Channel resource.

A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

Return type

google.api_core.operation.Operation

create_channel_connection(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateChannelConnectionRequest, dict]] = None, *, parent: Optional[str] = None, channel_connection: Optional[google.cloud.eventarc_v1.types.channel_connection.ChannelConnection] = None, channel_connection_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Create a new ChannelConnection in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_create_channel_connection():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    channel_connection = eventarc_v1.ChannelConnection()
    channel_connection.name = "name_value"
    channel_connection.channel = "channel_value"

    request = eventarc_v1.CreateChannelConnectionRequest(
        parent="parent_value",
        channel_connection=channel_connection,
        channel_connection_id="channel_connection_id_value",
    )

    # Make the request
    operation = client.create_channel_connection(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.CreateChannelConnectionRequest, dict]) – The request object. The request message for the CreateChannelConnection method.

  • parent (str) –

    Required. The parent collection in which to add this channel connection.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • channel_connection (google.cloud.eventarc_v1.types.ChannelConnection) –

    Required. Channel connection to create.

    This corresponds to the channel_connection field on the request instance; if request is provided, this should not be set.

  • channel_connection_id (str) –

    Required. The user-provided ID to be assigned to the channel connection.

    This corresponds to the channel_connection_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.ChannelConnection A representation of the ChannelConnection resource.

A ChannelConnection is a resource which event providers create during the activation process to establish a connection between the provider and the subscriber channel.

Return type

google.api_core.operation.Operation

create_enrollment(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateEnrollmentRequest, dict]] = None, *, parent: Optional[str] = None, enrollment: Optional[google.cloud.eventarc_v1.types.enrollment.Enrollment] = None, enrollment_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Create a new Enrollment in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_create_enrollment():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    enrollment = eventarc_v1.Enrollment()
    enrollment.cel_match = "cel_match_value"
    enrollment.message_bus = "message_bus_value"
    enrollment.destination = "destination_value"

    request = eventarc_v1.CreateEnrollmentRequest(
        parent="parent_value",
        enrollment=enrollment,
        enrollment_id="enrollment_id_value",
    )

    # Make the request
    operation = client.create_enrollment(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.CreateEnrollmentRequest, dict]) – The request object. The request message for the CreateEnrollment method.

  • parent (str) –

    Required. The parent collection in which to add this enrollment.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • enrollment (google.cloud.eventarc_v1.types.Enrollment) – Required. The enrollment to create. This corresponds to the enrollment field on the request instance; if request is provided, this should not be set.

  • enrollment_id (str) –

    Required. The user-provided ID to be assigned to the Enrollment. It should match the format (^`a-z <[a-z0-9-]{0,61}[a-z0-9]>`__?$).

    This corresponds to the enrollment_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Enrollment An enrollment represents a subscription for messages on a particular message

bus. It defines a matching criteria for messages on the bus and the subscriber endpoint where matched messages should be delivered.

Return type

google.api_core.operation.Operation

create_google_api_source(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateGoogleApiSourceRequest, dict]] = None, *, parent: Optional[str] = None, google_api_source: Optional[google.cloud.eventarc_v1.types.google_api_source.GoogleApiSource] = None, google_api_source_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Create a new GoogleApiSource in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_create_google_api_source():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    google_api_source = eventarc_v1.GoogleApiSource()
    google_api_source.destination = "destination_value"

    request = eventarc_v1.CreateGoogleApiSourceRequest(
        parent="parent_value",
        google_api_source=google_api_source,
        google_api_source_id="google_api_source_id_value",
    )

    # Make the request
    operation = client.create_google_api_source(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.CreateGoogleApiSourceRequest, dict]) – The request object. The request message for the CreateGoogleApiSource method.

  • parent (str) –

    Required. The parent collection in which to add this google api source.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • google_api_source (google.cloud.eventarc_v1.types.GoogleApiSource) –

    Required. The google api source to create.

    This corresponds to the google_api_source field on the request instance; if request is provided, this should not be set.

  • google_api_source_id (str) –

    Required. The user-provided ID to be assigned to the GoogleApiSource. It should match the format (^`a-z <[a-z0-9-]{0,61}[a-z0-9]>`__?$).

    This corresponds to the google_api_source_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.GoogleApiSource A GoogleApiSource represents a subscription of 1P events from a MessageBus.

Return type

google.api_core.operation.Operation

create_message_bus(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateMessageBusRequest, dict]] = None, *, parent: Optional[str] = None, message_bus: Optional[google.cloud.eventarc_v1.types.message_bus.MessageBus] = None, message_bus_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Create a new MessageBus in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_create_message_bus():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.CreateMessageBusRequest(
        parent="parent_value",
        message_bus_id="message_bus_id_value",
    )

    # Make the request
    operation = client.create_message_bus(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.CreateMessageBusRequest, dict]) – The request object. The request message for the CreateMessageBus method.

  • parent (str) –

    Required. The parent collection in which to add this message bus.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • message_bus (google.cloud.eventarc_v1.types.MessageBus) – Required. The message bus to create. This corresponds to the message_bus field on the request instance; if request is provided, this should not be set.

  • message_bus_id (str) –

    Required. The user-provided ID to be assigned to the MessageBus. It should match the format (^`a-z <[a-z0-9-]{0,61}[a-z0-9]>`__?$)

    This corresponds to the message_bus_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.MessageBus MessageBus for the messages flowing through the system. The admin has

visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.

Return type

google.api_core.operation.Operation

create_pipeline(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreatePipelineRequest, dict]] = None, *, parent: Optional[str] = None, pipeline: Optional[google.cloud.eventarc_v1.types.pipeline.Pipeline] = None, pipeline_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Create a new Pipeline in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_create_pipeline():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    pipeline = eventarc_v1.Pipeline()
    pipeline.destinations.http_endpoint.uri = "uri_value"

    request = eventarc_v1.CreatePipelineRequest(
        parent="parent_value",
        pipeline=pipeline,
        pipeline_id="pipeline_id_value",
    )

    # Make the request
    operation = client.create_pipeline(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.CreatePipelineRequest, dict]) – The request object. The request message for the CreatePipeline method.

  • parent (str) –

    Required. The parent collection in which to add this pipeline.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • pipeline (google.cloud.eventarc_v1.types.Pipeline) – Required. The pipeline to create. This corresponds to the pipeline field on the request instance; if request is provided, this should not be set.

  • pipeline_id (str) –

    Required. The user-provided ID to be assigned to the Pipeline.

    This corresponds to the pipeline_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Pipeline A representation of the Pipeline resource.

Return type

google.api_core.operation.Operation

create_trigger(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.CreateTriggerRequest, dict]] = None, *, parent: Optional[str] = None, trigger: Optional[google.cloud.eventarc_v1.types.trigger.Trigger] = None, trigger_id: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Create a new trigger in a particular project and location.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_create_trigger():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    trigger = eventarc_v1.Trigger()
    trigger.name = "name_value"
    trigger.event_filters.attribute = "attribute_value"
    trigger.event_filters.value = "value_value"
    trigger.destination.cloud_run.service = "service_value"
    trigger.destination.cloud_run.region = "region_value"

    request = eventarc_v1.CreateTriggerRequest(
        parent="parent_value",
        trigger=trigger,
        trigger_id="trigger_id_value",
    )

    # Make the request
    operation = client.create_trigger(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.CreateTriggerRequest, dict]) – The request object. The request message for the CreateTrigger method.

  • parent (str) –

    Required. The parent collection in which to add this trigger.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • trigger (google.cloud.eventarc_v1.types.Trigger) – Required. The trigger to create. This corresponds to the trigger field on the request instance; if request is provided, this should not be set.

  • trigger_id (str) –

    Required. The user-provided ID to be assigned to the trigger.

    This corresponds to the trigger_id field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Trigger A representation of the trigger resource.

Return type

google.api_core.operation.Operation

static crypto_key_path(project: str, location: str, key_ring: str, crypto_key: str) str[source]

Returns a fully-qualified crypto_key string.

delete_channel(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteChannelRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Delete a single channel.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_delete_channel():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteChannelRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_channel(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.DeleteChannelRequest, dict]) – The request object. The request message for the DeleteChannel method.

  • name (str) –

    Required. The name of the channel to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Channel A representation of the Channel resource.

A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

Return type

google.api_core.operation.Operation

delete_channel_connection(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteChannelConnectionRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Delete a single ChannelConnection.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_delete_channel_connection():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteChannelConnectionRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_channel_connection(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.DeleteChannelConnectionRequest, dict]) – The request object. The request message for the DeleteChannelConnection method.

  • name (str) –

    Required. The name of the channel connection to delete.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.ChannelConnection A representation of the ChannelConnection resource.

A ChannelConnection is a resource which event providers create during the activation process to establish a connection between the provider and the subscriber channel.

Return type

google.api_core.operation.Operation

delete_enrollment(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteEnrollmentRequest, dict]] = None, *, name: Optional[str] = None, etag: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Delete a single Enrollment.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_delete_enrollment():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteEnrollmentRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_enrollment(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.DeleteEnrollmentRequest, dict]) – The request object. The request message for the DeleteEnrollment method.

  • name (str) –

    Required. The name of the Enrollment to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • etag (str) –

    Optional. If provided, the Enrollment will only be deleted if the etag matches the current etag on the resource.

    This corresponds to the etag field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Enrollment An enrollment represents a subscription for messages on a particular message

bus. It defines a matching criteria for messages on the bus and the subscriber endpoint where matched messages should be delivered.

Return type

google.api_core.operation.Operation

delete_google_api_source(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteGoogleApiSourceRequest, dict]] = None, *, name: Optional[str] = None, etag: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Delete a single GoogleApiSource.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_delete_google_api_source():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteGoogleApiSourceRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_google_api_source(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.DeleteGoogleApiSourceRequest, dict]) – The request object. The request message for the DeleteGoogleApiSource method.

  • name (str) –

    Required. The name of the GoogleApiSource to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • etag (str) –

    Optional. If provided, the MessageBus will only be deleted if the etag matches the current etag on the resource.

    This corresponds to the etag field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.GoogleApiSource A GoogleApiSource represents a subscription of 1P events from a MessageBus.

Return type

google.api_core.operation.Operation

delete_message_bus(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteMessageBusRequest, dict]] = None, *, name: Optional[str] = None, etag: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Delete a single message bus.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_delete_message_bus():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteMessageBusRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_message_bus(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.DeleteMessageBusRequest, dict]) – The request object. The request message for the DeleteMessageBus method.

  • name (str) –

    Required. The name of the MessageBus to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • etag (str) –

    Optional. If provided, the MessageBus will only be deleted if the etag matches the current etag on the resource.

    This corresponds to the etag field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.MessageBus MessageBus for the messages flowing through the system. The admin has

visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.

Return type

google.api_core.operation.Operation

delete_operation(request: Optional[google.longrunning.operations_pb2.DeleteOperationRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) None[source]

Deletes a long-running operation.

This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn’t support this method, it returns google.rpc.Code.UNIMPLEMENTED.

Parameters
  • request (DeleteOperationRequest) – The request object. Request message for DeleteOperation method.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

None

delete_pipeline(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeletePipelineRequest, dict]] = None, *, name: Optional[str] = None, etag: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Delete a single pipeline.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_delete_pipeline():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeletePipelineRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_pipeline(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.DeletePipelineRequest, dict]) – The request object. The request message for the DeletePipeline method.

  • name (str) –

    Required. The name of the Pipeline to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • etag (str) –

    Optional. If provided, the Pipeline will only be deleted if the etag matches the current etag on the resource.

    This corresponds to the etag field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Pipeline A representation of the Pipeline resource.

Return type

google.api_core.operation.Operation

delete_trigger(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.DeleteTriggerRequest, dict]] = None, *, name: Optional[str] = None, allow_missing: Optional[bool] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Delete a single trigger.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_delete_trigger():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.DeleteTriggerRequest(
        name="name_value",
    )

    # Make the request
    operation = client.delete_trigger(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.DeleteTriggerRequest, dict]) – The request object. The request message for the DeleteTrigger method.

  • name (str) –

    Required. The name of the trigger to be deleted.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • allow_missing (bool) –

    If set to true, and the trigger is not found, the request will succeed but no action will be taken on the server.

    This corresponds to the allow_missing field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Trigger A representation of the trigger resource.

Return type

google.api_core.operation.Operation

static enrollment_path(project: str, location: str, enrollment: str) str[source]

Returns a fully-qualified enrollment string.

classmethod from_service_account_file(filename: str, *args, **kwargs)[source]
Creates an instance of this client using the provided credentials

file.

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

EventarcClient

classmethod from_service_account_info(info: dict, *args, **kwargs)[source]
Creates an instance of this client using the provided credentials

info.

Parameters
  • info (dict) – The service account private key info.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

EventarcClient

classmethod from_service_account_json(filename: str, *args, **kwargs)
Creates an instance of this client using the provided credentials

file.

Parameters
  • filename (str) – The path to the service account private key json file.

  • args – Additional arguments to pass to the constructor.

  • kwargs – Additional arguments to pass to the constructor.

Returns

The constructed client.

Return type

EventarcClient

get_channel(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetChannelRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.channel.Channel[source]

Get a single Channel.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_get_channel():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetChannelRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_channel(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.GetChannelRequest, dict]) – The request object. The request message for the GetChannel method.

  • name (str) –

    Required. The name of the channel to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the Channel resource. A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

Return type

google.cloud.eventarc_v1.types.Channel

get_channel_connection(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetChannelConnectionRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.channel_connection.ChannelConnection[source]

Get a single ChannelConnection.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_get_channel_connection():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetChannelConnectionRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_channel_connection(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.GetChannelConnectionRequest, dict]) – The request object. The request message for the GetChannelConnection method.

  • name (str) –

    Required. The name of the channel connection to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the ChannelConnection resource. A ChannelConnection is a resource which event providers create during the activation process to establish a connection between the provider and the subscriber channel.

Return type

google.cloud.eventarc_v1.types.ChannelConnection

get_enrollment(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetEnrollmentRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.enrollment.Enrollment[source]

Get a single Enrollment.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_get_enrollment():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetEnrollmentRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_enrollment(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.GetEnrollmentRequest, dict]) – The request object. The request message for the GetEnrollment method.

  • name (str) –

    Required. The name of the Enrollment to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An enrollment represents a subscription for messages on a particular message bus. It defines a matching criteria for messages on the bus and the subscriber endpoint where matched messages should be delivered.

Return type

google.cloud.eventarc_v1.types.Enrollment

get_google_api_source(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetGoogleApiSourceRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.google_api_source.GoogleApiSource[source]

Get a single GoogleApiSource.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_get_google_api_source():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetGoogleApiSourceRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_google_api_source(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.GetGoogleApiSourceRequest, dict]) – The request object. The request message for the GetGoogleApiSource method.

  • name (str) –

    Required. The name of the google api source to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A GoogleApiSource represents a subscription of 1P events from a MessageBus.

Return type

google.cloud.eventarc_v1.types.GoogleApiSource

get_google_channel_config(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetGoogleChannelConfigRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.google_channel_config.GoogleChannelConfig[source]

Get a GoogleChannelConfig

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_get_google_channel_config():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetGoogleChannelConfigRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_google_channel_config(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.GetGoogleChannelConfigRequest, dict]) – The request object. The request message for the GetGoogleChannelConfig method.

  • name (str) –

    Required. The name of the config to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A GoogleChannelConfig is a resource that stores the custom settings respected by Eventarc first-party triggers in the matching region. Once configured, first-party event data will be protected using the specified custom managed encryption key instead of Google-managed encryption keys.

Return type

google.cloud.eventarc_v1.types.GoogleChannelConfig

get_iam_policy(request: Optional[google.iam.v1.iam_policy_pb2.GetIamPolicyRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.iam.v1.policy_pb2.Policy[source]

Gets the IAM access control policy for a function.

Returns an empty policy if the function exists and does not have a policy set.

Parameters
  • request (GetIamPolicyRequest) – The request object. Request message for GetIamPolicy method.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Defines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. A Policy is a collection of bindings. A binding binds one or more members to a single role. Members can be user accounts, service accounts, Google groups, and domains (such as G Suite). A role is a named list of permissions (defined by IAM or configured by users). A binding can optionally specify a condition, which is a logic expression that further constrains the role binding based on attributes about the request and/or target resource.

JSON Example

{
  "bindings": [
    {
      "role": "roles/resourcemanager.organizationAdmin",
      "members": [
        "user:mike@example.com",
        "group:admins@example.com",
        "domain:google.com",
        "serviceAccount:my-project-id@appspot.gserviceaccount.com"
      ]
    },
    {
      "role": "roles/resourcemanager.organizationViewer",
      "members": ["user:eve@example.com"],
      "condition": {
        "title": "expirable access",
        "description": "Does not grant access after Sep 2020",
        "expression": "request.time <
        timestamp('2020-10-01T00:00:00.000Z')",
      }
    }
  ]
}

YAML Example

bindings:
- members:
  - user:mike@example.com
  - group:admins@example.com
  - domain:google.com
  - serviceAccount:my-project-id@appspot.gserviceaccount.com
  role: roles/resourcemanager.organizationAdmin
- members:
  - user:eve@example.com
  role: roles/resourcemanager.organizationViewer
  condition:
    title: expirable access
    description: Does not grant access after Sep 2020
    expression: request.time < timestamp('2020-10-01T00:00:00.000Z')

For a description of IAM and its features, see the IAM developer’s guide.

Return type

Policy

get_location(request: Optional[google.cloud.location.locations_pb2.GetLocationRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.location.locations_pb2.Location[source]

Gets information about a location.

Parameters
  • request (GetLocationRequest) – The request object. Request message for GetLocation method.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Location object.

Return type

Location

get_message_bus(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetMessageBusRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.message_bus.MessageBus[source]

Get a single MessageBus.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_get_message_bus():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetMessageBusRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_message_bus(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.GetMessageBusRequest, dict]) – The request object. The request message for the GetMessageBus method.

  • name (str) –

    Required. The name of the message bus to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

MessageBus for the messages flowing through the system. The admin has visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.

Return type

google.cloud.eventarc_v1.types.MessageBus

classmethod get_mtls_endpoint_and_cert_source(client_options: Optional[google.api_core.client_options.ClientOptions] = None)[source]

Deprecated. Return the API endpoint and client cert source for mutual TLS.

The client cert source is determined in the following order: (1) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is not “true”, the client cert source is None. (2) if client_options.client_cert_source is provided, use the provided one; if the default client cert source exists, use the default one; otherwise the client cert source is None.

The API endpoint is determined in the following order: (1) if client_options.api_endpoint if provided, use the provided one. (2) if GOOGLE_API_USE_CLIENT_CERTIFICATE environment variable is “always”, use the default mTLS endpoint; if the environment variable is “never”, use the default API endpoint; otherwise if client cert source exists, use the default mTLS endpoint, otherwise use the default API endpoint.

More details can be found at https://google.aip.dev/auth/4114.

Parameters

client_options (google.api_core.client_options.ClientOptions) – Custom options for the client. Only the api_endpoint and client_cert_source properties may be used in this method.

Returns

returns the API endpoint and the

client cert source to use.

Return type

Tuple[str, Callable[[], Tuple[bytes, bytes]]]

Raises

google.auth.exceptions.MutualTLSChannelError – If any errors happen.

get_operation(request: Optional[google.longrunning.operations_pb2.GetOperationRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.longrunning.operations_pb2.Operation[source]

Gets the latest state of a long-running operation.

Parameters
  • request (GetOperationRequest) – The request object. Request message for GetOperation method.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An Operation object.

Return type

Operation

get_pipeline(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetPipelineRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.pipeline.Pipeline[source]

Get a single Pipeline.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_get_pipeline():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetPipelineRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_pipeline(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.GetPipelineRequest, dict]) – The request object. The request message for the GetPipeline method.

  • name (str) –

    Required. The name of the pipeline to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the Pipeline resource.

Return type

google.cloud.eventarc_v1.types.Pipeline

get_provider(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetProviderRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.discovery.Provider[source]

Get a single Provider.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_get_provider():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetProviderRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_provider(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.GetProviderRequest, dict]) – The request object. The request message for the GetProvider method.

  • name (str) –

    Required. The name of the provider to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the Provider resource.

Return type

google.cloud.eventarc_v1.types.Provider

get_trigger(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.GetTriggerRequest, dict]] = None, *, name: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.trigger.Trigger[source]

Get a single trigger.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_get_trigger():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.GetTriggerRequest(
        name="name_value",
    )

    # Make the request
    response = client.get_trigger(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.GetTriggerRequest, dict]) – The request object. The request message for the GetTrigger method.

  • name (str) –

    Required. The name of the trigger to get.

    This corresponds to the name field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A representation of the trigger resource.

Return type

google.cloud.eventarc_v1.types.Trigger

static google_api_source_path(project: str, location: str, google_api_source: str) str[source]

Returns a fully-qualified google_api_source string.

static google_channel_config_path(project: str, location: str) str[source]

Returns a fully-qualified google_channel_config string.

list_channel_connections(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListChannelConnectionsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelConnectionsPager[source]

List channel connections.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_list_channel_connections():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListChannelConnectionsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_channel_connections(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.ListChannelConnectionsRequest, dict]) – The request object. The request message for the ListChannelConnections method.

  • parent (str) –

    Required. The parent collection from which to list channel connections.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListChannelConnections method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelConnectionsPager

list_channels(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListChannelsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelsPager[source]

List channels.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_list_channels():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListChannelsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_channels(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.ListChannelsRequest, dict]) – The request object. The request message for the ListChannels method.

  • parent (str) –

    Required. The parent collection to list channels on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListChannels method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelsPager

list_enrollments(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListEnrollmentsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListEnrollmentsPager[source]

List Enrollments.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_list_enrollments():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListEnrollmentsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_enrollments(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.ListEnrollmentsRequest, dict]) – The request object. The request message for the ListEnrollments method.

  • parent (str) –

    Required. The parent collection to list triggers on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListEnrollments method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListEnrollmentsPager

list_google_api_sources(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListGoogleApiSourcesRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListGoogleApiSourcesPager[source]

List GoogleApiSources.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_list_google_api_sources():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListGoogleApiSourcesRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_google_api_sources(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.ListGoogleApiSourcesRequest, dict]) – The request object. The request message for the ListGoogleApiSources method.

  • parent (str) –

    Required. The parent collection to list GoogleApiSources on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListGoogleApiSources method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListGoogleApiSourcesPager

list_locations(request: Optional[google.cloud.location.locations_pb2.ListLocationsRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.location.locations_pb2.ListLocationsResponse[source]

Lists information about the supported locations for this service.

Parameters
  • request (ListLocationsRequest) – The request object. Request message for ListLocations method.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for ListLocations method.

Return type

ListLocationsResponse

list_message_bus_enrollments(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListMessageBusEnrollmentsRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusEnrollmentsPager[source]

List message bus enrollments.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_list_message_bus_enrollments():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListMessageBusEnrollmentsRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_message_bus_enrollments(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.ListMessageBusEnrollmentsRequest, dict]) – The request object. The request message for the ListMessageBusEnrollments method.

  • parent (str) –

    Required. The parent message bus to list enrollments on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListMessageBusEnrollments method.`

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusEnrollmentsPager

list_message_buses(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListMessageBusesRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusesPager[source]

List message buses.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_list_message_buses():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListMessageBusesRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_message_buses(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.ListMessageBusesRequest, dict]) – The request object. The request message for the ListMessageBuses method.

  • parent (str) –

    Required. The parent collection to list triggers on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListMessageBuses method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusesPager

list_operations(request: Optional[google.longrunning.operations_pb2.ListOperationsRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.longrunning.operations_pb2.ListOperationsResponse[source]

Lists operations that match the specified filter in the request.

Parameters
  • request (ListOperationsRequest) – The request object. Request message for ListOperations method.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for ListOperations method.

Return type

ListOperationsResponse

list_pipelines(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListPipelinesRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListPipelinesPager[source]

List pipelines.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_list_pipelines():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListPipelinesRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_pipelines(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.ListPipelinesRequest, dict]) – The request object. The request message for the ListPipelines method.

  • parent (str) –

    Required. The parent collection to list pipelines on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListPipelines method. Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListPipelinesPager

list_providers(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListProvidersRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListProvidersPager[source]

List providers.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_list_providers():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListProvidersRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_providers(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.ListProvidersRequest, dict]) – The request object. The request message for the ListProviders method.

  • parent (str) –

    Required. The parent of the provider to get.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListProviders method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListProvidersPager

list_triggers(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.ListTriggersRequest, dict]] = None, *, parent: Optional[str] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.services.eventarc.pagers.ListTriggersPager[source]

List triggers.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_list_triggers():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.ListTriggersRequest(
        parent="parent_value",
    )

    # Make the request
    page_result = client.list_triggers(request=request)

    # Handle the response
    for response in page_result:
        print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.ListTriggersRequest, dict]) – The request object. The request message for the ListTriggers method.

  • parent (str) –

    Required. The parent collection to list triggers on.

    This corresponds to the parent field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

The response message for the ListTriggers method.

Iterating over this object will yield results and resolve additional pages automatically.

Return type

google.cloud.eventarc_v1.services.eventarc.pagers.ListTriggersPager

static message_bus_path(project: str, location: str, message_bus: str) str[source]

Returns a fully-qualified message_bus string.

static network_attachment_path(project: str, region: str, networkattachment: str) str[source]

Returns a fully-qualified network_attachment string.

static parse_channel_connection_path(path: str) Dict[str, str][source]

Parses a channel_connection path into its component segments.

static parse_channel_path(path: str) Dict[str, str][source]

Parses a channel path into its component segments.

static parse_cloud_function_path(path: str) Dict[str, str][source]

Parses a cloud_function path into its component segments.

static parse_common_billing_account_path(path: str) Dict[str, str][source]

Parse a billing_account path into its component segments.

static parse_common_folder_path(path: str) Dict[str, str][source]

Parse a folder path into its component segments.

static parse_common_location_path(path: str) Dict[str, str][source]

Parse a location path into its component segments.

static parse_common_organization_path(path: str) Dict[str, str][source]

Parse a organization path into its component segments.

static parse_common_project_path(path: str) Dict[str, str][source]

Parse a project path into its component segments.

static parse_crypto_key_path(path: str) Dict[str, str][source]

Parses a crypto_key path into its component segments.

static parse_enrollment_path(path: str) Dict[str, str][source]

Parses a enrollment path into its component segments.

static parse_google_api_source_path(path: str) Dict[str, str][source]

Parses a google_api_source path into its component segments.

static parse_google_channel_config_path(path: str) Dict[str, str][source]

Parses a google_channel_config path into its component segments.

static parse_message_bus_path(path: str) Dict[str, str][source]

Parses a message_bus path into its component segments.

static parse_network_attachment_path(path: str) Dict[str, str][source]

Parses a network_attachment path into its component segments.

static parse_pipeline_path(path: str) Dict[str, str][source]

Parses a pipeline path into its component segments.

static parse_provider_path(path: str) Dict[str, str][source]

Parses a provider path into its component segments.

static parse_service_account_path(path: str) Dict[str, str][source]

Parses a service_account path into its component segments.

static parse_service_path(path: str) Dict[str, str][source]

Parses a service path into its component segments.

static parse_topic_path(path: str) Dict[str, str][source]

Parses a topic path into its component segments.

static parse_trigger_path(path: str) Dict[str, str][source]

Parses a trigger path into its component segments.

static parse_workflow_path(path: str) Dict[str, str][source]

Parses a workflow path into its component segments.

static pipeline_path(project: str, location: str, pipeline: str) str[source]

Returns a fully-qualified pipeline string.

static provider_path(project: str, location: str, provider: str) str[source]

Returns a fully-qualified provider string.

static service_account_path(project: str, service_account: str) str[source]

Returns a fully-qualified service_account string.

static service_path() str[source]

Returns a fully-qualified service string.

set_iam_policy(request: Optional[google.iam.v1.iam_policy_pb2.SetIamPolicyRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.iam.v1.policy_pb2.Policy[source]

Sets the IAM access control policy on the specified function.

Replaces any existing policy.

Parameters
  • request (SetIamPolicyRequest) – The request object. Request message for SetIamPolicy method.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Defines an Identity and Access Management (IAM) policy. It is used to specify access control policies for Cloud Platform resources. A Policy is a collection of bindings. A binding binds one or more members to a single role. Members can be user accounts, service accounts, Google groups, and domains (such as G Suite). A role is a named list of permissions (defined by IAM or configured by users). A binding can optionally specify a condition, which is a logic expression that further constrains the role binding based on attributes about the request and/or target resource.

JSON Example

{
  "bindings": [
    {
      "role": "roles/resourcemanager.organizationAdmin",
      "members": [
        "user:mike@example.com",
        "group:admins@example.com",
        "domain:google.com",
        "serviceAccount:my-project-id@appspot.gserviceaccount.com"
      ]
    },
    {
      "role": "roles/resourcemanager.organizationViewer",
      "members": ["user:eve@example.com"],
      "condition": {
        "title": "expirable access",
        "description": "Does not grant access after Sep 2020",
        "expression": "request.time <
        timestamp('2020-10-01T00:00:00.000Z')",
      }
    }
  ]
}

YAML Example

bindings:
- members:
  - user:mike@example.com
  - group:admins@example.com
  - domain:google.com
  - serviceAccount:my-project-id@appspot.gserviceaccount.com
  role: roles/resourcemanager.organizationAdmin
- members:
  - user:eve@example.com
  role: roles/resourcemanager.organizationViewer
  condition:
    title: expirable access
    description: Does not grant access after Sep 2020
    expression: request.time < timestamp('2020-10-01T00:00:00.000Z')

For a description of IAM and its features, see the IAM developer’s guide.

Return type

Policy

test_iam_permissions(request: Optional[google.iam.v1.iam_policy_pb2.TestIamPermissionsRequest] = None, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.iam.v1.iam_policy_pb2.TestIamPermissionsResponse[source]
Tests the specified IAM permissions against the IAM access control

policy for a function.

If the function does not exist, this will return an empty set of permissions, not a NOT_FOUND error.

Parameters
  • request (TestIamPermissionsRequest) – The request object. Request message for TestIamPermissions method.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

Response message for TestIamPermissions method.

Return type

TestIamPermissionsResponse

static topic_path(project: str, topic: str) str[source]

Returns a fully-qualified topic string.

property transport: google.cloud.eventarc_v1.services.eventarc.transports.base.EventarcTransport

Returns the transport used by the client instance.

Returns

The transport used by the client

instance.

Return type

EventarcTransport

static trigger_path(project: str, location: str, trigger: str) str[source]

Returns a fully-qualified trigger string.

property universe_domain: str

Return the universe domain used by the client instance.

Returns

The universe domain used by the client instance.

Return type

str

update_channel(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateChannelRequest, dict]] = None, *, channel: Optional[google.cloud.eventarc_v1.types.channel.Channel] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Update a single channel.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_update_channel():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.UpdateChannelRequest(
    )

    # Make the request
    operation = client.update_channel(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.UpdateChannelRequest, dict]) – The request object. The request message for the UpdateChannel method.

  • channel (google.cloud.eventarc_v1.types.Channel) – The channel to be updated. This corresponds to the channel field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Channel A representation of the Channel resource.

A Channel is a resource on which event providers publish their events. The published events are delivered through the transport associated with the channel. Note that a channel is associated with exactly one event provider.

Return type

google.api_core.operation.Operation

update_enrollment(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateEnrollmentRequest, dict]] = None, *, enrollment: Optional[google.cloud.eventarc_v1.types.enrollment.Enrollment] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Update a single Enrollment.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_update_enrollment():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    enrollment = eventarc_v1.Enrollment()
    enrollment.cel_match = "cel_match_value"
    enrollment.message_bus = "message_bus_value"
    enrollment.destination = "destination_value"

    request = eventarc_v1.UpdateEnrollmentRequest(
        enrollment=enrollment,
    )

    # Make the request
    operation = client.update_enrollment(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.UpdateEnrollmentRequest, dict]) – The request object. The request message for the UpdateEnrollment method.

  • enrollment (google.cloud.eventarc_v1.types.Enrollment) –

    Required. The Enrollment to be updated.

    This corresponds to the enrollment field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    Optional. The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Enrollment An enrollment represents a subscription for messages on a particular message

bus. It defines a matching criteria for messages on the bus and the subscriber endpoint where matched messages should be delivered.

Return type

google.api_core.operation.Operation

update_google_api_source(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateGoogleApiSourceRequest, dict]] = None, *, google_api_source: Optional[google.cloud.eventarc_v1.types.google_api_source.GoogleApiSource] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Update a single GoogleApiSource.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_update_google_api_source():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    google_api_source = eventarc_v1.GoogleApiSource()
    google_api_source.destination = "destination_value"

    request = eventarc_v1.UpdateGoogleApiSourceRequest(
        google_api_source=google_api_source,
    )

    # Make the request
    operation = client.update_google_api_source(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.UpdateGoogleApiSourceRequest, dict]) – The request object. The request message for the UpdateGoogleApiSource method.

  • google_api_source (google.cloud.eventarc_v1.types.GoogleApiSource) –

    Required. The GoogleApiSource to be updated.

    This corresponds to the google_api_source field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    Optional. The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.GoogleApiSource A GoogleApiSource represents a subscription of 1P events from a MessageBus.

Return type

google.api_core.operation.Operation

update_google_channel_config(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateGoogleChannelConfigRequest, dict]] = None, *, google_channel_config: Optional[google.cloud.eventarc_v1.types.google_channel_config.GoogleChannelConfig] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.cloud.eventarc_v1.types.google_channel_config.GoogleChannelConfig[source]

Update a single GoogleChannelConfig

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_update_google_channel_config():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    google_channel_config = eventarc_v1.GoogleChannelConfig()
    google_channel_config.name = "name_value"

    request = eventarc_v1.UpdateGoogleChannelConfigRequest(
        google_channel_config=google_channel_config,
    )

    # Make the request
    response = client.update_google_channel_config(request=request)

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.UpdateGoogleChannelConfigRequest, dict]) – The request object. The request message for the UpdateGoogleChannelConfig method.

  • google_channel_config (google.cloud.eventarc_v1.types.GoogleChannelConfig) – Required. The config to be updated. This corresponds to the google_channel_config field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

A GoogleChannelConfig is a resource that stores the custom settings respected by Eventarc first-party triggers in the matching region. Once configured, first-party event data will be protected using the specified custom managed encryption key instead of Google-managed encryption keys.

Return type

google.cloud.eventarc_v1.types.GoogleChannelConfig

update_message_bus(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateMessageBusRequest, dict]] = None, *, message_bus: Optional[google.cloud.eventarc_v1.types.message_bus.MessageBus] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Update a single message bus.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_update_message_bus():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.UpdateMessageBusRequest(
    )

    # Make the request
    operation = client.update_message_bus(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.UpdateMessageBusRequest, dict]) – The request object. The request message for the UpdateMessageBus method.

  • message_bus (google.cloud.eventarc_v1.types.MessageBus) –

    Required. The MessageBus to be updated.

    This corresponds to the message_bus field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    Optional. The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.MessageBus MessageBus for the messages flowing through the system. The admin has

visibility and control over the messages being published and consumed and can restrict publishers and subscribers to only a subset of data available in the system by defining authorization policies.

Return type

google.api_core.operation.Operation

update_pipeline(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdatePipelineRequest, dict]] = None, *, pipeline: Optional[google.cloud.eventarc_v1.types.pipeline.Pipeline] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Update a single pipeline.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_update_pipeline():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    pipeline = eventarc_v1.Pipeline()
    pipeline.destinations.http_endpoint.uri = "uri_value"

    request = eventarc_v1.UpdatePipelineRequest(
        pipeline=pipeline,
    )

    # Make the request
    operation = client.update_pipeline(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.UpdatePipelineRequest, dict]) – The request object. The request message for the UpdatePipeline method.

  • pipeline (google.cloud.eventarc_v1.types.Pipeline) – Required. The Pipeline to be updated. This corresponds to the pipeline field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    Optional. The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Pipeline A representation of the Pipeline resource.

Return type

google.api_core.operation.Operation

update_trigger(request: Optional[Union[google.cloud.eventarc_v1.types.eventarc.UpdateTriggerRequest, dict]] = None, *, trigger: Optional[google.cloud.eventarc_v1.types.trigger.Trigger] = None, update_mask: Optional[google.protobuf.field_mask_pb2.FieldMask] = None, allow_missing: Optional[bool] = None, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ()) google.api_core.operation.Operation[source]

Update a single trigger.

# This snippet has been automatically generated and should be regarded as a
# code template only.
# It will require modifications to work:
# - It may require correct/in-range values for request initialization.
# - It may require specifying regional endpoints when creating the service
#   client as shown in:
#   https://googleapis.dev/python/google-api-core/latest/client_options.html
from google.cloud import eventarc_v1

def sample_update_trigger():
    # Create a client
    client = eventarc_v1.EventarcClient()

    # Initialize request argument(s)
    request = eventarc_v1.UpdateTriggerRequest(
    )

    # Make the request
    operation = client.update_trigger(request=request)

    print("Waiting for operation to complete...")

    response = operation.result()

    # Handle the response
    print(response)
Parameters
  • request (Union[google.cloud.eventarc_v1.types.UpdateTriggerRequest, dict]) – The request object. The request message for the UpdateTrigger method.

  • trigger (google.cloud.eventarc_v1.types.Trigger) – The trigger to be updated. This corresponds to the trigger field on the request instance; if request is provided, this should not be set.

  • update_mask (google.protobuf.field_mask_pb2.FieldMask) –

    The fields to be updated; only fields explicitly provided are updated. If no field mask is provided, all provided fields in the request are updated. To update all fields, provide a field mask of “*”.

    This corresponds to the update_mask field on the request instance; if request is provided, this should not be set.

  • allow_missing (bool) –

    If set to true, and the trigger is not found, a new trigger will be created. In this situation, update_mask is ignored.

    This corresponds to the allow_missing field on the request instance; if request is provided, this should not be set.

  • retry (google.api_core.retry.Retry) – Designation of what errors, if any, should be retried.

  • timeout (float) – The timeout for this request.

  • metadata (Sequence[Tuple[str, str]]) – Strings which should be sent along with the request as metadata.

Returns

An object representing a long-running operation.

The result type for the operation will be google.cloud.eventarc_v1.types.Trigger A representation of the trigger resource.

Return type

google.api_core.operation.Operation

static workflow_path(project: str, location: str, workflow: str) str[source]

Returns a fully-qualified workflow string.

class google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelConnectionsAsyncPager(method: Callable[[...], Awaitable[google.cloud.eventarc_v1.types.eventarc.ListChannelConnectionsResponse]], request: google.cloud.eventarc_v1.types.eventarc.ListChannelConnectionsRequest, response: google.cloud.eventarc_v1.types.eventarc.ListChannelConnectionsResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_channel_connections requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListChannelConnectionsResponse object, and provides an __aiter__ method to iterate through its channel_connections field.

If there are more pages, the __aiter__ method will make additional ListChannelConnections requests and continue to iterate through the channel_connections field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListChannelConnectionsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelConnectionsPager(method: Callable[[...], google.cloud.eventarc_v1.types.eventarc.ListChannelConnectionsResponse], request: google.cloud.eventarc_v1.types.eventarc.ListChannelConnectionsRequest, response: google.cloud.eventarc_v1.types.eventarc.ListChannelConnectionsResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_channel_connections requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListChannelConnectionsResponse object, and provides an __iter__ method to iterate through its channel_connections field.

If there are more pages, the __iter__ method will make additional ListChannelConnections requests and continue to iterate through the channel_connections field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListChannelConnectionsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelsAsyncPager(method: Callable[[...], Awaitable[google.cloud.eventarc_v1.types.eventarc.ListChannelsResponse]], request: google.cloud.eventarc_v1.types.eventarc.ListChannelsRequest, response: google.cloud.eventarc_v1.types.eventarc.ListChannelsResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_channels requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListChannelsResponse object, and provides an __aiter__ method to iterate through its channels field.

If there are more pages, the __aiter__ method will make additional ListChannels requests and continue to iterate through the channels field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListChannelsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListChannelsPager(method: Callable[[...], google.cloud.eventarc_v1.types.eventarc.ListChannelsResponse], request: google.cloud.eventarc_v1.types.eventarc.ListChannelsRequest, response: google.cloud.eventarc_v1.types.eventarc.ListChannelsResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_channels requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListChannelsResponse object, and provides an __iter__ method to iterate through its channels field.

If there are more pages, the __iter__ method will make additional ListChannels requests and continue to iterate through the channels field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListChannelsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListEnrollmentsAsyncPager(method: Callable[[...], Awaitable[google.cloud.eventarc_v1.types.eventarc.ListEnrollmentsResponse]], request: google.cloud.eventarc_v1.types.eventarc.ListEnrollmentsRequest, response: google.cloud.eventarc_v1.types.eventarc.ListEnrollmentsResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_enrollments requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListEnrollmentsResponse object, and provides an __aiter__ method to iterate through its enrollments field.

If there are more pages, the __aiter__ method will make additional ListEnrollments requests and continue to iterate through the enrollments field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListEnrollmentsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListEnrollmentsPager(method: Callable[[...], google.cloud.eventarc_v1.types.eventarc.ListEnrollmentsResponse], request: google.cloud.eventarc_v1.types.eventarc.ListEnrollmentsRequest, response: google.cloud.eventarc_v1.types.eventarc.ListEnrollmentsResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_enrollments requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListEnrollmentsResponse object, and provides an __iter__ method to iterate through its enrollments field.

If there are more pages, the __iter__ method will make additional ListEnrollments requests and continue to iterate through the enrollments field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListEnrollmentsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListGoogleApiSourcesAsyncPager(method: Callable[[...], Awaitable[google.cloud.eventarc_v1.types.eventarc.ListGoogleApiSourcesResponse]], request: google.cloud.eventarc_v1.types.eventarc.ListGoogleApiSourcesRequest, response: google.cloud.eventarc_v1.types.eventarc.ListGoogleApiSourcesResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_google_api_sources requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListGoogleApiSourcesResponse object, and provides an __aiter__ method to iterate through its google_api_sources field.

If there are more pages, the __aiter__ method will make additional ListGoogleApiSources requests and continue to iterate through the google_api_sources field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListGoogleApiSourcesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListGoogleApiSourcesPager(method: Callable[[...], google.cloud.eventarc_v1.types.eventarc.ListGoogleApiSourcesResponse], request: google.cloud.eventarc_v1.types.eventarc.ListGoogleApiSourcesRequest, response: google.cloud.eventarc_v1.types.eventarc.ListGoogleApiSourcesResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_google_api_sources requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListGoogleApiSourcesResponse object, and provides an __iter__ method to iterate through its google_api_sources field.

If there are more pages, the __iter__ method will make additional ListGoogleApiSources requests and continue to iterate through the google_api_sources field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListGoogleApiSourcesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusEnrollmentsAsyncPager(method: Callable[[...], Awaitable[google.cloud.eventarc_v1.types.eventarc.ListMessageBusEnrollmentsResponse]], request: google.cloud.eventarc_v1.types.eventarc.ListMessageBusEnrollmentsRequest, response: google.cloud.eventarc_v1.types.eventarc.ListMessageBusEnrollmentsResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_message_bus_enrollments requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListMessageBusEnrollmentsResponse object, and provides an __aiter__ method to iterate through its enrollments field.

If there are more pages, the __aiter__ method will make additional ListMessageBusEnrollments requests and continue to iterate through the enrollments field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListMessageBusEnrollmentsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusEnrollmentsPager(method: Callable[[...], google.cloud.eventarc_v1.types.eventarc.ListMessageBusEnrollmentsResponse], request: google.cloud.eventarc_v1.types.eventarc.ListMessageBusEnrollmentsRequest, response: google.cloud.eventarc_v1.types.eventarc.ListMessageBusEnrollmentsResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_message_bus_enrollments requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListMessageBusEnrollmentsResponse object, and provides an __iter__ method to iterate through its enrollments field.

If there are more pages, the __iter__ method will make additional ListMessageBusEnrollments requests and continue to iterate through the enrollments field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListMessageBusEnrollmentsResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusesAsyncPager(method: Callable[[...], Awaitable[google.cloud.eventarc_v1.types.eventarc.ListMessageBusesResponse]], request: google.cloud.eventarc_v1.types.eventarc.ListMessageBusesRequest, response: google.cloud.eventarc_v1.types.eventarc.ListMessageBusesResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_message_buses requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListMessageBusesResponse object, and provides an __aiter__ method to iterate through its message_buses field.

If there are more pages, the __aiter__ method will make additional ListMessageBuses requests and continue to iterate through the message_buses field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListMessageBusesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListMessageBusesPager(method: Callable[[...], google.cloud.eventarc_v1.types.eventarc.ListMessageBusesResponse], request: google.cloud.eventarc_v1.types.eventarc.ListMessageBusesRequest, response: google.cloud.eventarc_v1.types.eventarc.ListMessageBusesResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_message_buses requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListMessageBusesResponse object, and provides an __iter__ method to iterate through its message_buses field.

If there are more pages, the __iter__ method will make additional ListMessageBuses requests and continue to iterate through the message_buses field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListMessageBusesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListPipelinesAsyncPager(method: Callable[[...], Awaitable[google.cloud.eventarc_v1.types.eventarc.ListPipelinesResponse]], request: google.cloud.eventarc_v1.types.eventarc.ListPipelinesRequest, response: google.cloud.eventarc_v1.types.eventarc.ListPipelinesResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_pipelines requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListPipelinesResponse object, and provides an __aiter__ method to iterate through its pipelines field.

If there are more pages, the __aiter__ method will make additional ListPipelines requests and continue to iterate through the pipelines field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListPipelinesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListPipelinesPager(method: Callable[[...], google.cloud.eventarc_v1.types.eventarc.ListPipelinesResponse], request: google.cloud.eventarc_v1.types.eventarc.ListPipelinesRequest, response: google.cloud.eventarc_v1.types.eventarc.ListPipelinesResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_pipelines requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListPipelinesResponse object, and provides an __iter__ method to iterate through its pipelines field.

If there are more pages, the __iter__ method will make additional ListPipelines requests and continue to iterate through the pipelines field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListPipelinesResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListProvidersAsyncPager(method: Callable[[...], Awaitable[google.cloud.eventarc_v1.types.eventarc.ListProvidersResponse]], request: google.cloud.eventarc_v1.types.eventarc.ListProvidersRequest, response: google.cloud.eventarc_v1.types.eventarc.ListProvidersResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_providers requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListProvidersResponse object, and provides an __aiter__ method to iterate through its providers field.

If there are more pages, the __aiter__ method will make additional ListProviders requests and continue to iterate through the providers field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListProvidersResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListProvidersPager(method: Callable[[...], google.cloud.eventarc_v1.types.eventarc.ListProvidersResponse], request: google.cloud.eventarc_v1.types.eventarc.ListProvidersRequest, response: google.cloud.eventarc_v1.types.eventarc.ListProvidersResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_providers requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListProvidersResponse object, and provides an __iter__ method to iterate through its providers field.

If there are more pages, the __iter__ method will make additional ListProviders requests and continue to iterate through the providers field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListProvidersResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListTriggersAsyncPager(method: Callable[[...], Awaitable[google.cloud.eventarc_v1.types.eventarc.ListTriggersResponse]], request: google.cloud.eventarc_v1.types.eventarc.ListTriggersRequest, response: google.cloud.eventarc_v1.types.eventarc.ListTriggersResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary_async.AsyncRetry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_triggers requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListTriggersResponse object, and provides an __aiter__ method to iterate through its triggers field.

If there are more pages, the __aiter__ method will make additional ListTriggers requests and continue to iterate through the triggers field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListTriggersResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiates the pager.

Parameters
class google.cloud.eventarc_v1.services.eventarc.pagers.ListTriggersPager(method: Callable[[...], google.cloud.eventarc_v1.types.eventarc.ListTriggersResponse], request: google.cloud.eventarc_v1.types.eventarc.ListTriggersRequest, response: google.cloud.eventarc_v1.types.eventarc.ListTriggersResponse, *, retry: Optional[Union[google.api_core.retry.retry_unary.Retry, google.api_core.gapic_v1.method._MethodDefault]] = _MethodDefault._DEFAULT_VALUE, timeout: Union[float, object] = _MethodDefault._DEFAULT_VALUE, metadata: Sequence[Tuple[str, str]] = ())[source]

A pager for iterating through list_triggers requests.

This class thinly wraps an initial google.cloud.eventarc_v1.types.ListTriggersResponse object, and provides an __iter__ method to iterate through its triggers field.

If there are more pages, the __iter__ method will make additional ListTriggers requests and continue to iterate through the triggers field on the corresponding responses.

All the usual google.cloud.eventarc_v1.types.ListTriggersResponse attributes are available on the pager. If multiple requests are made, only the most recent response is retained, and thus used for attribute lookup.

Instantiate the pager.

Parameters