Package com.google.cloud.run.v2
Interface DeleteRevisionRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeleteRevisionRequest
,DeleteRevisionRequest.Builder
public interface DeleteRevisionRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEtag()
A system-generated fingerprint for this version of the resource.com.google.protobuf.ByteString
getEtagBytes()
A system-generated fingerprint for this version of the resource.String
getName()
Required.com.google.protobuf.ByteString
getNameBytes()
Required.boolean
getValidateOnly()
Indicates that the request should be validated without actually deleting any resources.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Required. The name of the Revision to delete. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision}
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Required. The name of the Revision to delete. Format: projects/{project}/locations/{location}/services/{service}/revisions/{revision}
string name = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for name.
-
getValidateOnly
boolean getValidateOnly()
Indicates that the request should be validated without actually deleting any resources.
bool validate_only = 2;
- Returns:
- The validateOnly.
-
getEtag
String getEtag()
A system-generated fingerprint for this version of the resource. This may be used to detect modification conflict during updates.
string etag = 3;
- Returns:
- The etag.
-
getEtagBytes
com.google.protobuf.ByteString getEtagBytes()
A system-generated fingerprint for this version of the resource. This may be used to detect modification conflict during updates.
string etag = 3;
- Returns:
- The bytes for etag.
-
-