Package com.google.cloud.asset.v1p2beta1
Interface GcsDestinationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GcsDestination
,GcsDestination.Builder
public interface GcsDestinationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GcsDestination.ObjectUriCase
getObjectUriCase()
String
getUri()
The uri of the Cloud Storage object.com.google.protobuf.ByteString
getUriBytes()
The uri of the Cloud Storage object.boolean
hasUri()
The uri of the Cloud Storage object.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasUri
boolean hasUri()
The uri of the Cloud Storage object. It's the same uri that is used by gsutil. For example: "gs://bucket_name/object_name". See [Viewing and Editing Object Metadata](https://cloud.google.com/storage/docs/viewing-editing-metadata) for more information.
string uri = 1;
- Returns:
- Whether the uri field is set.
-
getUri
String getUri()
The uri of the Cloud Storage object. It's the same uri that is used by gsutil. For example: "gs://bucket_name/object_name". See [Viewing and Editing Object Metadata](https://cloud.google.com/storage/docs/viewing-editing-metadata) for more information.
string uri = 1;
- Returns:
- The uri.
-
getUriBytes
com.google.protobuf.ByteString getUriBytes()
The uri of the Cloud Storage object. It's the same uri that is used by gsutil. For example: "gs://bucket_name/object_name". See [Viewing and Editing Object Metadata](https://cloud.google.com/storage/docs/viewing-editing-metadata) for more information.
string uri = 1;
- Returns:
- The bytes for uri.
-
getObjectUriCase
GcsDestination.ObjectUriCase getObjectUriCase()
-
-