- 2.55.0 (latest)
- 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
public final class EventTrigger extends GeneratedMessageV3 implements EventTriggerOrBuilder
Describes 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
EventTriggerOrBuilderStatic Fields
EVENT_TYPE_FIELD_NUMBER
public static final int EVENT_TYPE_FIELD_NUMBER
Type | Description |
int |
FAILURE_POLICY_FIELD_NUMBER
public static final int FAILURE_POLICY_FIELD_NUMBER
Type | Description |
int |
RESOURCE_FIELD_NUMBER
public static final int RESOURCE_FIELD_NUMBER
Type | Description |
int |
SERVICE_FIELD_NUMBER
public static final int SERVICE_FIELD_NUMBER
Type | Description |
int |
Static Methods
getDefaultInstance()
public static EventTrigger getDefaultInstance()
Type | Description |
EventTrigger |
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
Type | Description |
Descriptor |
newBuilder()
public static EventTrigger.Builder newBuilder()
Type | Description |
EventTrigger.Builder |
newBuilder(EventTrigger prototype)
public static EventTrigger.Builder newBuilder(EventTrigger prototype)
Name | Description |
prototype | EventTrigger |
Type | Description |
EventTrigger.Builder |
parseDelimitedFrom(InputStream input)
public static EventTrigger parseDelimitedFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
EventTrigger |
Type | Description |
IOException |
parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static EventTrigger parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
EventTrigger |
Type | Description |
IOException |
parseFrom(byte[] data)
public static EventTrigger parseFrom(byte[] data)
Name | Description |
data | byte[] |
Type | Description |
EventTrigger |
Type | Description |
InvalidProtocolBufferException |
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static EventTrigger parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | byte[] |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
EventTrigger |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data)
public static EventTrigger parseFrom(ByteString data)
Name | Description |
data | ByteString |
Type | Description |
EventTrigger |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static EventTrigger parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteString |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
EventTrigger |
Type | Description |
InvalidProtocolBufferException |
parseFrom(CodedInputStream input)
public static EventTrigger parseFrom(CodedInputStream input)
Name | Description |
input | CodedInputStream |
Type | Description |
EventTrigger |
Type | Description |
IOException |
parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static EventTrigger parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | CodedInputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
EventTrigger |
Type | Description |
IOException |
parseFrom(InputStream input)
public static EventTrigger parseFrom(InputStream input)
Name | Description |
input | InputStream |
Type | Description |
EventTrigger |
Type | Description |
IOException |
parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
public static EventTrigger parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Name | Description |
input | InputStream |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
EventTrigger |
Type | Description |
IOException |
parseFrom(ByteBuffer data)
public static EventTrigger parseFrom(ByteBuffer data)
Name | Description |
data | ByteBuffer |
Type | Description |
EventTrigger |
Type | Description |
InvalidProtocolBufferException |
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static EventTrigger parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Name | Description |
data | ByteBuffer |
extensionRegistry | ExtensionRegistryLite |
Type | Description |
EventTrigger |
Type | Description |
InvalidProtocolBufferException |
parser()
public static Parser<EventTrigger> parser()
Type | Description |
Parser<EventTrigger> |
Methods
equals(Object obj)
public boolean equals(Object obj)
Name | Description |
obj | Object |
Type | Description |
boolean |
getDefaultInstanceForType()
public EventTrigger getDefaultInstanceForType()
Type | Description |
EventTrigger |
getEventType()
public String getEventType()
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.storage
andgoogle.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;
Type | Description |
String | The eventType. |
getEventTypeBytes()
public ByteString getEventTypeBytes()
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.storage
andgoogle.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;
Type | Description |
ByteString | The bytes for eventType. |
getFailurePolicy()
public FailurePolicy getFailurePolicy()
Specifies policy for failed executions.
.google.cloud.functions.v1.FailurePolicy failure_policy = 5;
Type | Description |
FailurePolicy | The failurePolicy. |
getFailurePolicyOrBuilder()
public FailurePolicyOrBuilder getFailurePolicyOrBuilder()
Specifies policy for failed executions.
.google.cloud.functions.v1.FailurePolicy failure_policy = 5;
Type | Description |
FailurePolicyOrBuilder |
getParserForType()
public Parser<EventTrigger> getParserForType()
Type | Description |
Parser<EventTrigger> |
getResource()
public String getResource()
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, anEventTrigger
that has anevent_type
of "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;
Type | Description |
String | The resource. |
getResourceBytes()
public ByteString getResourceBytes()
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, anEventTrigger
that has anevent_type
of "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;
Type | Description |
ByteString | The bytes for resource. |
getSerializedSize()
public int getSerializedSize()
Type | Description |
int |
getService()
public String getService()
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;
Type | Description |
String | The service. |
getServiceBytes()
public ByteString getServiceBytes()
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;
Type | Description |
ByteString | The bytes for service. |
getUnknownFields()
public final UnknownFieldSet getUnknownFields()
Type | Description |
UnknownFieldSet |
hasFailurePolicy()
public boolean hasFailurePolicy()
Specifies policy for failed executions.
.google.cloud.functions.v1.FailurePolicy failure_policy = 5;
Type | Description |
boolean | Whether the failurePolicy field is set. |
hashCode()
public int hashCode()
Type | Description |
int |
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Type | Description |
FieldAccessorTable |
isInitialized()
public final boolean isInitialized()
Type | Description |
boolean |
newBuilderForType()
public EventTrigger.Builder newBuilderForType()
Type | Description |
EventTrigger.Builder |
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected EventTrigger.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Name | Description |
parent | BuilderParent |
Type | Description |
EventTrigger.Builder |
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Name | Description |
unused | UnusedPrivateParameter |
Type | Description |
Object |
toBuilder()
public EventTrigger.Builder toBuilder()
Type | Description |
EventTrigger.Builder |
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Name | Description |
output | CodedOutputStream |
Type | Description |
IOException |