Package com.google.cloud.config.v1
Interface ApplyResultsOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ApplyResults
,ApplyResults.Builder
public interface ApplyResultsOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description boolean
containsOutputs(String key)
Map of output name to output info.String
getArtifacts()
Location of artifacts (e.g.com.google.protobuf.ByteString
getArtifactsBytes()
Location of artifacts (e.g.String
getContent()
Location of a blueprint copy and other manifests in Google Cloud Storage.com.google.protobuf.ByteString
getContentBytes()
Location of a blueprint copy and other manifests in Google Cloud Storage.Map<String,TerraformOutput>
getOutputs()
Deprecated.int
getOutputsCount()
Map of output name to output info.Map<String,TerraformOutput>
getOutputsMap()
Map of output name to output info.TerraformOutput
getOutputsOrDefault(String key, TerraformOutput defaultValue)
Map of output name to output info.TerraformOutput
getOutputsOrThrow(String key)
Map of output name to output info.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getContent
String getContent()
Location of a blueprint copy and other manifests in Google Cloud Storage. Format: `gs://{bucket}/{object}`
string content = 1;
- Returns:
- The content.
-
getContentBytes
com.google.protobuf.ByteString getContentBytes()
Location of a blueprint copy and other manifests in Google Cloud Storage. Format: `gs://{bucket}/{object}`
string content = 1;
- Returns:
- The bytes for content.
-
getArtifacts
String getArtifacts()
Location of artifacts (e.g. logs) in Google Cloud Storage. Format: `gs://{bucket}/{object}`
string artifacts = 2;
- Returns:
- The artifacts.
-
getArtifactsBytes
com.google.protobuf.ByteString getArtifactsBytes()
Location of artifacts (e.g. logs) in Google Cloud Storage. Format: `gs://{bucket}/{object}`
string artifacts = 2;
- Returns:
- The bytes for artifacts.
-
getOutputsCount
int getOutputsCount()
Map of output name to output info.
map<string, .google.cloud.config.v1.TerraformOutput> outputs = 3;
-
containsOutputs
boolean containsOutputs(String key)
Map of output name to output info.
map<string, .google.cloud.config.v1.TerraformOutput> outputs = 3;
-
getOutputs
@Deprecated Map<String,TerraformOutput> getOutputs()
Deprecated.UsegetOutputsMap()
instead.
-
getOutputsMap
Map<String,TerraformOutput> getOutputsMap()
Map of output name to output info.
map<string, .google.cloud.config.v1.TerraformOutput> outputs = 3;
-
getOutputsOrDefault
TerraformOutput getOutputsOrDefault(String key, TerraformOutput defaultValue)
Map of output name to output info.
map<string, .google.cloud.config.v1.TerraformOutput> outputs = 3;
-
getOutputsOrThrow
TerraformOutput getOutputsOrThrow(String key)
Map of output name to output info.
map<string, .google.cloud.config.v1.TerraformOutput> outputs = 3;
-
-