Package com.google.cloud.asset.v1p7beta1
Interface GcsOutputResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GcsOutputResult
,GcsOutputResult.Builder
public interface GcsOutputResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getUris(int index)
List of URIs of the Cloud Storage objects.com.google.protobuf.ByteString
getUrisBytes(int index)
List of URIs of the Cloud Storage objects.int
getUrisCount()
List of URIs of the Cloud Storage objects.List<String>
getUrisList()
List of URIs of the Cloud Storage objects.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getUrisList
List<String> getUrisList()
List of URIs of the Cloud Storage objects. Example: "gs://bucket_name/object_name".
repeated string uris = 1;
- Returns:
- A list containing the uris.
-
getUrisCount
int getUrisCount()
List of URIs of the Cloud Storage objects. Example: "gs://bucket_name/object_name".
repeated string uris = 1;
- Returns:
- The count of uris.
-
getUris
String getUris(int index)
List of URIs of the Cloud Storage objects. Example: "gs://bucket_name/object_name".
repeated string uris = 1;
- Parameters:
index
- The index of the element to return.- Returns:
- The uris at the given index.
-
getUrisBytes
com.google.protobuf.ByteString getUrisBytes(int index)
List of URIs of the Cloud Storage objects. Example: "gs://bucket_name/object_name".
repeated string uris = 1;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the uris at the given index.
-
-