Interface CreateApiDeploymentRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateApiDeploymentRequest
,CreateApiDeploymentRequest.Builder
public interface CreateApiDeploymentRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ApiDeployment
getApiDeployment()
Required.String
getApiDeploymentId()
Required.com.google.protobuf.ByteString
getApiDeploymentIdBytes()
Required.ApiDeploymentOrBuilder
getApiDeploymentOrBuilder()
Required.String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.boolean
hasApiDeployment()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The parent, which owns this collection of deployments. Format: `projects/*/locations/*/apis/*`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The parent, which owns this collection of deployments. Format: `projects/*/locations/*/apis/*`
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasApiDeployment
boolean hasApiDeployment()
Required. The deployment to create.
.google.cloud.apigeeregistry.v1.ApiDeployment api_deployment = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the apiDeployment field is set.
-
getApiDeployment
ApiDeployment getApiDeployment()
Required. The deployment to create.
.google.cloud.apigeeregistry.v1.ApiDeployment api_deployment = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The apiDeployment.
-
getApiDeploymentOrBuilder
ApiDeploymentOrBuilder getApiDeploymentOrBuilder()
Required. The deployment to create.
.google.cloud.apigeeregistry.v1.ApiDeployment api_deployment = 2 [(.google.api.field_behavior) = REQUIRED];
-
getApiDeploymentId
String getApiDeploymentId()
Required. The ID to use for the deployment, which will become the final component of the deployment's resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/. Following AIP-162, IDs must not have the form of a UUID.
string api_deployment_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The apiDeploymentId.
-
getApiDeploymentIdBytes
com.google.protobuf.ByteString getApiDeploymentIdBytes()
Required. The ID to use for the deployment, which will become the final component of the deployment's resource name. This value should be 4-63 characters, and valid characters are /[a-z][0-9]-/. Following AIP-162, IDs must not have the form of a UUID.
string api_deployment_id = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for apiDeploymentId.
-
-