Package com.google.cloud.deploy.v1
Interface DeployArtifactOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DeployArtifact
,DeployArtifact.Builder
public interface DeployArtifactOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getArtifactUri()
Output only.com.google.protobuf.ByteString
getArtifactUriBytes()
Output only.String
getManifestPaths(int index)
Output only.com.google.protobuf.ByteString
getManifestPathsBytes(int index)
Output only.int
getManifestPathsCount()
Output only.List<String>
getManifestPathsList()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getArtifactUri
String getArtifactUri()
Output only. URI of a directory containing the artifacts. All paths are relative to this location.
string artifact_uri = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The artifactUri.
-
getArtifactUriBytes
com.google.protobuf.ByteString getArtifactUriBytes()
Output only. URI of a directory containing the artifacts. All paths are relative to this location.
string artifact_uri = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for artifactUri.
-
getManifestPathsList
List<String> getManifestPathsList()
Output only. File paths of the manifests applied during the deploy operation relative to the URI.
repeated string manifest_paths = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- A list containing the manifestPaths.
-
getManifestPathsCount
int getManifestPathsCount()
Output only. File paths of the manifests applied during the deploy operation relative to the URI.
repeated string manifest_paths = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The count of manifestPaths.
-
getManifestPaths
String getManifestPaths(int index)
Output only. File paths of the manifests applied during the deploy operation relative to the URI.
repeated string manifest_paths = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the element to return.- Returns:
- The manifestPaths at the given index.
-
getManifestPathsBytes
com.google.protobuf.ByteString getManifestPathsBytes(int index)
Output only. File paths of the manifests applied during the deploy operation relative to the URI.
repeated string manifest_paths = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the manifestPaths at the given index.
-
-