Package com.google.cloud.config.v1
Interface ResourceTerraformInfoOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ResourceTerraformInfo
,ResourceTerraformInfo.Builder
public interface ResourceTerraformInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAddress()
TF resource address that uniquely identifies this resource within this deployment.com.google.protobuf.ByteString
getAddressBytes()
TF resource address that uniquely identifies this resource within this deployment.String
getId()
ID attribute of the TF resourcecom.google.protobuf.ByteString
getIdBytes()
ID attribute of the TF resourceString
getType()
TF resource typecom.google.protobuf.ByteString
getTypeBytes()
TF resource type-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAddress
String getAddress()
TF resource address that uniquely identifies this resource within this deployment.
string address = 1;
- Returns:
- The address.
-
getAddressBytes
com.google.protobuf.ByteString getAddressBytes()
TF resource address that uniquely identifies this resource within this deployment.
string address = 1;
- Returns:
- The bytes for address.
-
getType
String getType()
TF resource type
string type = 2;
- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
TF resource type
string type = 2;
- Returns:
- The bytes for type.
-
getId
String getId()
ID attribute of the TF resource
string id = 3;
- Returns:
- The id.
-
getIdBytes
com.google.protobuf.ByteString getIdBytes()
ID attribute of the TF resource
string id = 3;
- Returns:
- The bytes for id.
-
-