Class: Google::Apis::LookerV1::ExportInstanceRequest

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

Overview

Request options for exporting data of an Instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExportInstanceRequest

Returns a new instance of ExportInstanceRequest.



401
402
403
# File 'lib/google/apis/looker_v1/classes.rb', line 401

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

Instance Attribute Details

#encryption_configGoogle::Apis::LookerV1::ExportEncryptionConfig

Configuration for Encryption - e.g. CMEK. Corresponds to the JSON property encryptionConfig



393
394
395
# File 'lib/google/apis/looker_v1/classes.rb', line 393

def encryption_config
  @encryption_config
end

#gcs_uriString

The path to the folder in Google Cloud Storage where the export will be stored. The URI is in the form gs://bucketName/folderName. Corresponds to the JSON property gcsUri

Returns:

  • (String)


399
400
401
# File 'lib/google/apis/looker_v1/classes.rb', line 399

def gcs_uri
  @gcs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



406
407
408
409
# File 'lib/google/apis/looker_v1/classes.rb', line 406

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