Class EventTrigger (2.7.0)
Stay organized with collections
Save and categorize content based on your preferences.
- 2.83.0 (latest)
- 2.82.0
- 2.80.0
- 2.78.0
- 2.77.0
- 2.76.0
- 2.75.0
- 2.74.0
- 2.72.0
- 2.70.0
- 2.69.0
- 2.66.0
- 2.65.0
- 2.64.0
- 2.62.0
- 2.61.0
- 2.60.0
- 2.59.0
- 2.58.0
- 2.57.0
- 2.56.0
- 2.55.0
- 2.54.0
- 2.53.0
- 2.51.0
- 2.50.0
- 2.49.0
- 2.48.0
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.0
- 2.43.0
- 2.42.0
- 2.41.0
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.0
- 2.35.0
- 2.34.0
- 2.33.0
- 2.32.0
- 2.31.0
- 2.30.0
- 2.29.0
- 2.26.0
- 2.25.0
- 2.24.0
- 2.23.0
- 2.22.0
- 2.21.0
- 2.20.0
- 2.19.0
- 2.18.0
- 2.17.0
- 2.16.0
- 2.15.0
- 2.14.0
- 2.13.0
- 2.11.0
- 2.10.0
- 2.9.0
- 2.8.0
- 2.7.0
- 2.6.0
- 2.5.4
- 2.4.3
- 2.3.6
publicfinalclass EventTriggerextendsGeneratedMessageV3implementsEventTriggerOrBuilderDescribes EventTrigger, used to request events be sent from another service.
Protobuf type google.cloud.functions.v1.EventTrigger
Inheritance
Object > AbstractMessageLite<MessageType,BuilderType> > AbstractMessage > GeneratedMessageV3 > EventTriggerImplements
EventTriggerOrBuilderInherited Members
Static Fields
EVENT_TYPE_FIELD_NUMBER
publicstaticfinalintEVENT_TYPE_FIELD_NUMBERFAILURE_POLICY_FIELD_NUMBER
publicstaticfinalintFAILURE_POLICY_FIELD_NUMBERRESOURCE_FIELD_NUMBER
publicstaticfinalintRESOURCE_FIELD_NUMBERSERVICE_FIELD_NUMBER
publicstaticfinalintSERVICE_FIELD_NUMBERStatic Methods
getDefaultInstance()
publicstaticEventTriggergetDefaultInstance()getDescriptor()
publicstaticfinalDescriptors.DescriptorgetDescriptor()newBuilder()
publicstaticEventTrigger.BuildernewBuilder()newBuilder(EventTrigger prototype)
publicstaticEventTrigger.BuildernewBuilder(EventTriggerprototype)parseDelimitedFrom(InputStream input)
publicstaticEventTriggerparseDelimitedFrom(InputStreaminput)parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
publicstaticEventTriggerparseDelimitedFrom(InputStreaminput,ExtensionRegistryLiteextensionRegistry)parseFrom(byte[] data)
publicstaticEventTriggerparseFrom(byte[]data)byte[]parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
publicstaticEventTriggerparseFrom(byte[]data,ExtensionRegistryLiteextensionRegistry)byte[]parseFrom(ByteString data)
publicstaticEventTriggerparseFrom(ByteStringdata)parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
publicstaticEventTriggerparseFrom(ByteStringdata,ExtensionRegistryLiteextensionRegistry)parseFrom(CodedInputStream input)
publicstaticEventTriggerparseFrom(CodedInputStreaminput)parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
publicstaticEventTriggerparseFrom(CodedInputStreaminput,ExtensionRegistryLiteextensionRegistry)parseFrom(InputStream input)
publicstaticEventTriggerparseFrom(InputStreaminput)parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
publicstaticEventTriggerparseFrom(InputStreaminput,ExtensionRegistryLiteextensionRegistry)parseFrom(ByteBuffer data)
publicstaticEventTriggerparseFrom(ByteBufferdata)parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
publicstaticEventTriggerparseFrom(ByteBufferdata,ExtensionRegistryLiteextensionRegistry)parser()
publicstaticParser<EventTrigger>parser()Methods
equals(Object obj)
publicbooleanequals(Objectobj)getDefaultInstanceForType()
publicEventTriggergetDefaultInstanceForType()getEventType()
publicStringgetEventType() Required. The type of event to observe. For example:
providers/cloud.storage/eventTypes/object.change and
providers/cloud.pubsub/eventTypes/topic.publish.
Event types match pattern providers/*/eventTypes/*.*.
The pattern contains:
- namespace: For example,
cloud.storageandgoogle.firebase.analytics. - resource type: The type of resource on which event occurs. For
example, the Google Cloud Storage API includes the type
object. - action: The action that generates the event. For example, action for a Google Cloud Storage Object is 'change'. These parts are lower case.
string event_type = 1;
The eventType.
getEventTypeBytes()
publicByteStringgetEventTypeBytes() Required. The type of event to observe. For example:
providers/cloud.storage/eventTypes/object.change and
providers/cloud.pubsub/eventTypes/topic.publish.
Event types match pattern providers/*/eventTypes/*.*.
The pattern contains:
- namespace: For example,
cloud.storageandgoogle.firebase.analytics. - resource type: The type of resource on which event occurs. For
example, the Google Cloud Storage API includes the type
object. - action: The action that generates the event. For example, action for a Google Cloud Storage Object is 'change'. These parts are lower case.
string event_type = 1;
The bytes for eventType.
getFailurePolicy()
publicFailurePolicygetFailurePolicy()Specifies policy for failed executions.
.google.cloud.functions.v1.FailurePolicy failure_policy = 5;
The failurePolicy.
getFailurePolicyOrBuilder()
publicFailurePolicyOrBuildergetFailurePolicyOrBuilder()Specifies policy for failed executions.
.google.cloud.functions.v1.FailurePolicy failure_policy = 5;
getParserForType()
publicParser<EventTrigger>getParserForType()getResource()
publicStringgetResource() Required. The resource(s) from which to observe events, for example,
projects/_/buckets/myBucket.
Not all syntactically correct values are accepted by all services. For
example:
- The authorization model must support it. Google Cloud Functions
only allows EventTriggers to be deployed that observe resources in the
same project as the
CloudFunction. - The resource type must match the pattern expected for an
event_type. For example, anEventTriggerthat has anevent_typeof "google.pubsub.topic.publish" should have a resource that matches Google Cloud Pub/Sub topics. Additionally, some services may support short names when creating anEventTrigger. These will always be returned in the normalized "long" format. See each service's documentation for supported formats.
string resource = 2;
The resource.
getResourceBytes()
publicByteStringgetResourceBytes() Required. The resource(s) from which to observe events, for example,
projects/_/buckets/myBucket.
Not all syntactically correct values are accepted by all services. For
example:
- The authorization model must support it. Google Cloud Functions
only allows EventTriggers to be deployed that observe resources in the
same project as the
CloudFunction. - The resource type must match the pattern expected for an
event_type. For example, anEventTriggerthat has anevent_typeof "google.pubsub.topic.publish" should have a resource that matches Google Cloud Pub/Sub topics. Additionally, some services may support short names when creating anEventTrigger. These will always be returned in the normalized "long" format. See each service's documentation for supported formats.
string resource = 2;
The bytes for resource.
getSerializedSize()
publicintgetSerializedSize()getService()
publicStringgetService() The hostname of the service that should be observed.
If no string is provided, the default service implementing the API will
be used. For example, storage.googleapis.com is the default for all
event types in the google.storage namespace.
string service = 3;
The service.
getServiceBytes()
publicByteStringgetServiceBytes() The hostname of the service that should be observed.
If no string is provided, the default service implementing the API will
be used. For example, storage.googleapis.com is the default for all
event types in the google.storage namespace.
string service = 3;
The bytes for service.
getUnknownFields()
publicfinalUnknownFieldSetgetUnknownFields()hasFailurePolicy()
publicbooleanhasFailurePolicy()Specifies policy for failed executions.
.google.cloud.functions.v1.FailurePolicy failure_policy = 5;
Whether the failurePolicy field is set.
hashCode()
publicinthashCode()internalGetFieldAccessorTable()
protectedGeneratedMessageV3.FieldAccessorTableinternalGetFieldAccessorTable()isInitialized()
publicfinalbooleanisInitialized()newBuilderForType()
publicEventTrigger.BuildernewBuilderForType()newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protectedEventTrigger.BuildernewBuilderForType(GeneratedMessageV3.BuilderParentparent)newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protectedObjectnewInstance(GeneratedMessageV3.UnusedPrivateParameterunused)toBuilder()
publicEventTrigger.BuildertoBuilder()writeTo(CodedOutputStream output)
publicvoidwriteTo(CodedOutputStreamoutput)