Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SignUpRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SignUpRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Request message for ExpressModeService.SignUp.
Instance Attribute Summary collapse
-
#get_default_api_key ⇒ Boolean
(also: #get_default_api_key?)
Optional.
-
#region ⇒ String
Required.
-
#tos_accepted ⇒ Boolean
(also: #tos_accepted?)
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SignUpRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1SignUpRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SignUpRequest
Returns a new instance of GoogleCloudAiplatformV1beta1SignUpRequest.
50738 50739 50740 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50738 def initialize(**args) update!(**args) end |
Instance Attribute Details
#get_default_api_key ⇒ Boolean Also known as: get_default_api_key?
Optional. Whether to return the default API key string in the response.
Corresponds to the JSON property getDefaultApiKey
50724 50725 50726 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50724 def get_default_api_key @get_default_api_key end |
#region ⇒ String
Required. The desired region for the express project.
Corresponds to the JSON property region
50730 50731 50732 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50730 def region @region end |
#tos_accepted ⇒ Boolean Also known as: tos_accepted?
Required. Whether the Terms of Service are accepted.
Corresponds to the JSON property tosAccepted
50735 50736 50737 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50735 def tos_accepted @tos_accepted end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
50743 50744 50745 50746 50747 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 50743 def update!(**args) @get_default_api_key = args[:get_default_api_key] if args.key?(:get_default_api_key) @region = args[:region] if args.key?(:region) @tos_accepted = args[:tos_accepted] if args.key?(:tos_accepted) end |