Package com.google.cloud.channel.v1
Interface CloudIdentityCustomerAccountOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CloudIdentityCustomerAccount
,CloudIdentityCustomerAccount.Builder
public interface CloudIdentityCustomerAccountOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCustomerCloudIdentityId()
If existing = true, the Cloud Identity ID of the customer.com.google.protobuf.ByteString
getCustomerCloudIdentityIdBytes()
If existing = true, the Cloud Identity ID of the customer.String
getCustomerName()
If owned = true, the name of the customer that owns the Cloud Identity account.com.google.protobuf.ByteString
getCustomerNameBytes()
If owned = true, the name of the customer that owns the Cloud Identity account.boolean
getExisting()
Returns true if a Cloud Identity account exists for a specific domain.boolean
getOwned()
Returns true if the Cloud Identity account is associated with a customer of the Channel Services partner.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getExisting
boolean getExisting()
Returns true if a Cloud Identity account exists for a specific domain.
bool existing = 1;
- Returns:
- The existing.
-
getOwned
boolean getOwned()
Returns true if the Cloud Identity account is associated with a customer of the Channel Services partner.
bool owned = 2;
- Returns:
- The owned.
-
getCustomerName
String getCustomerName()
If owned = true, the name of the customer that owns the Cloud Identity account. Customer_name uses the format: accounts/{account_id}/customers/{customer_id}
string customer_name = 3;
- Returns:
- The customerName.
-
getCustomerNameBytes
com.google.protobuf.ByteString getCustomerNameBytes()
If owned = true, the name of the customer that owns the Cloud Identity account. Customer_name uses the format: accounts/{account_id}/customers/{customer_id}
string customer_name = 3;
- Returns:
- The bytes for customerName.
-
getCustomerCloudIdentityId
String getCustomerCloudIdentityId()
If existing = true, the Cloud Identity ID of the customer.
string customer_cloud_identity_id = 4;
- Returns:
- The customerCloudIdentityId.
-
getCustomerCloudIdentityIdBytes
com.google.protobuf.ByteString getCustomerCloudIdentityIdBytes()
If existing = true, the Cloud Identity ID of the customer.
string customer_cloud_identity_id = 4;
- Returns:
- The bytes for customerCloudIdentityId.
-
-