Interface CreateWorkstationRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateWorkstationRequest
,CreateWorkstationRequest.Builder
public interface CreateWorkstationRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.boolean
getValidateOnly()
Optional.Workstation
getWorkstation()
Required.String
getWorkstationId()
Required.com.google.protobuf.ByteString
getWorkstationIdBytes()
Required.WorkstationOrBuilder
getWorkstationOrBuilder()
Required.boolean
hasWorkstation()
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. Parent resource name.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. Parent resource name.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
getWorkstationId
String getWorkstationId()
Required. ID to use for the workstation.
string workstation_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The workstationId.
-
getWorkstationIdBytes
com.google.protobuf.ByteString getWorkstationIdBytes()
Required. ID to use for the workstation.
string workstation_id = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The bytes for workstationId.
-
hasWorkstation
boolean hasWorkstation()
Required. Workstation to create.
.google.cloud.workstations.v1beta.Workstation workstation = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the workstation field is set.
-
getWorkstation
Workstation getWorkstation()
Required. Workstation to create.
.google.cloud.workstations.v1beta.Workstation workstation = 3 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The workstation.
-
getWorkstationOrBuilder
WorkstationOrBuilder getWorkstationOrBuilder()
Required. Workstation to create.
.google.cloud.workstations.v1beta.Workstation workstation = 3 [(.google.api.field_behavior) = REQUIRED];
-
getValidateOnly
boolean getValidateOnly()
Optional. If set, validate the request and preview the review, but do not actually apply it.
bool validate_only = 4 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The validateOnly.
-
-