Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ProvisionCloudIdentityRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1ProvisionCloudIdentityRequest
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb
Overview
Request message for CloudChannelService.ProvisionCloudIdentity
Instance Attribute Summary collapse
-
#cloud_identity_info ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1CloudIdentityInfo
Cloud Identity information for the Cloud Channel Customer.
-
#user ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1AdminUser
Information needed to create an Admin User for Google Workspace.
-
#validate_only ⇒ Boolean
(also: #validate_only?)
Validate the request and preview the review, but do not post it.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1ProvisionCloudIdentityRequest
constructor
A new instance of GoogleCloudChannelV1ProvisionCloudIdentityRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1ProvisionCloudIdentityRequest
Returns a new instance of GoogleCloudChannelV1ProvisionCloudIdentityRequest.
1799 1800 1801 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1799 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cloud_identity_info ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1CloudIdentityInfo
Cloud Identity information for the Cloud Channel Customer.
Corresponds to the JSON property cloudIdentityInfo
1786 1787 1788 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1786 def cloud_identity_info @cloud_identity_info end |
#user ⇒ Google::Apis::CloudchannelV1::GoogleCloudChannelV1AdminUser
Information needed to create an Admin User for Google Workspace.
Corresponds to the JSON property user
1791 1792 1793 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1791 def user @user end |
#validate_only ⇒ Boolean Also known as: validate_only?
Validate the request and preview the review, but do not post it.
Corresponds to the JSON property validateOnly
1796 1797 1798 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1796 def validate_only @validate_only end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1804 1805 1806 1807 1808 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1804 def update!(**args) @cloud_identity_info = args[:cloud_identity_info] if args.key?(:cloud_identity_info) @user = args[:user] if args.key?(:user) @validate_only = args[:validate_only] if args.key?(:validate_only) end |