Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SignUpRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SignUpRequest

Returns a new instance of GoogleCloudAiplatformV1beta1SignUpRequest.



61091
61092
61093
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 61091

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#get_default_api_keyBoolean 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

Returns:

  • (Boolean)


61077
61078
61079
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 61077

def get_default_api_key
  @get_default_api_key
end

#regionString

Required. The desired region for the express project. Corresponds to the JSON property region

Returns:

  • (String)


61083
61084
61085
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 61083

def region
  @region
end

#tos_acceptedBoolean Also known as: tos_accepted?

Required. Whether the Terms of Service are accepted. Corresponds to the JSON property tosAccepted

Returns:

  • (Boolean)


61088
61089
61090
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 61088

def tos_accepted
  @tos_accepted
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



61096
61097
61098
61099
61100
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 61096

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