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.



426
427
428
# File 'lib/google/apis/looker_v1/classes.rb', line 426

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



418
419
420
# File 'lib/google/apis/looker_v1/classes.rb', line 418

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)


424
425
426
# File 'lib/google/apis/looker_v1/classes.rb', line 424

def gcs_uri
  @gcs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



431
432
433
434
# File 'lib/google/apis/looker_v1/classes.rb', line 431

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