Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1ProvisionProjectRequest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb

Overview

Request for ProjectService.ProvisionProject method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1ProvisionProjectRequest

Returns a new instance of GoogleCloudDiscoveryengineV1ProvisionProjectRequest.



5220
5221
5222
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5220

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

Instance Attribute Details

#accept_data_use_termsBoolean Also known as: accept_data_use_terms?

Required. Set to true to specify that caller has read and would like to give consent to the Terms for data use. Corresponds to the JSON property acceptDataUseTerms

Returns:

  • (Boolean)


5210
5211
5212
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5210

def accept_data_use_terms
  @accept_data_use_terms
end

#data_use_terms_versionString

Required. The version of the Terms for data use that caller has read and would like to give consent to. Acceptable version is 2022-11-23, and this may change over time. Corresponds to the JSON property dataUseTermsVersion

Returns:

  • (String)


5218
5219
5220
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5218

def data_use_terms_version
  @data_use_terms_version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5225
5226
5227
5228
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 5225

def update!(**args)
  @accept_data_use_terms = args[:accept_data_use_terms] if args.key?(:accept_data_use_terms)
  @data_use_terms_version = args[:data_use_terms_version] if args.key?(:data_use_terms_version)
end