Package com.google.cloud.channel.v1
Interface ProvisionCloudIdentityRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ProvisionCloudIdentityRequest
,ProvisionCloudIdentityRequest.Builder
public interface ProvisionCloudIdentityRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CloudIdentityInfo
getCloudIdentityInfo()
CloudIdentity-specific customer information.CloudIdentityInfoOrBuilder
getCloudIdentityInfoOrBuilder()
CloudIdentity-specific customer information.String
getCustomer()
Required.com.google.protobuf.ByteString
getCustomerBytes()
Required.AdminUser
getUser()
Admin user information.AdminUserOrBuilder
getUserOrBuilder()
Admin user information.boolean
getValidateOnly()
Validate the request and preview the review, but do not post it.boolean
hasCloudIdentityInfo()
CloudIdentity-specific customer information.boolean
hasUser()
Admin user information.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCustomer
String getCustomer()
Required. Resource name of the customer. Format: accounts/{account_id}/customers/{customer_id}
string customer = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The customer.
-
getCustomerBytes
com.google.protobuf.ByteString getCustomerBytes()
Required. Resource name of the customer. Format: accounts/{account_id}/customers/{customer_id}
string customer = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for customer.
-
hasCloudIdentityInfo
boolean hasCloudIdentityInfo()
CloudIdentity-specific customer information.
.google.cloud.channel.v1.CloudIdentityInfo cloud_identity_info = 2;
- Returns:
- Whether the cloudIdentityInfo field is set.
-
getCloudIdentityInfo
CloudIdentityInfo getCloudIdentityInfo()
CloudIdentity-specific customer information.
.google.cloud.channel.v1.CloudIdentityInfo cloud_identity_info = 2;
- Returns:
- The cloudIdentityInfo.
-
getCloudIdentityInfoOrBuilder
CloudIdentityInfoOrBuilder getCloudIdentityInfoOrBuilder()
CloudIdentity-specific customer information.
.google.cloud.channel.v1.CloudIdentityInfo cloud_identity_info = 2;
-
hasUser
boolean hasUser()
Admin user information.
.google.cloud.channel.v1.AdminUser user = 3;
- Returns:
- Whether the user field is set.
-
getUser
AdminUser getUser()
Admin user information.
.google.cloud.channel.v1.AdminUser user = 3;
- Returns:
- The user.
-
getUserOrBuilder
AdminUserOrBuilder getUserOrBuilder()
Admin user information.
.google.cloud.channel.v1.AdminUser user = 3;
-
getValidateOnly
boolean getValidateOnly()
Validate the request and preview the review, but do not post it.
bool validate_only = 4;
- Returns:
- The validateOnly.
-
-