Class: Google::Apis::WorkloadmanagerV1::ExternalDataSources

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

Overview

Message for external data sources

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ExternalDataSources

Returns a new instance of ExternalDataSources.



389
390
391
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 389

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

Instance Attribute Details

#asset_typeString

Required. The asset type of the external data source this can be one of go/cai- asset-types to override the default asset type or it can be a custom type defined by the user custom type must match the asset type in the rule Corresponds to the JSON property assetType

Returns:

  • (String)


370
371
372
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 370

def asset_type
  @asset_type
end

#nameString

Optional. Name of external data source. The name will be used inside the rego/ sql to refer the external data Corresponds to the JSON property name

Returns:

  • (String)


376
377
378
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 376

def name
  @name
end

#typeString

Required. Type of external data source Corresponds to the JSON property type

Returns:

  • (String)


381
382
383
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 381

def type
  @type
end

#uriString

Required. URI of external data source. example of bq table project_ID. dataset_ID.table_ID Corresponds to the JSON property uri

Returns:

  • (String)


387
388
389
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 387

def uri
  @uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



394
395
396
397
398
399
# File 'lib/google/apis/workloadmanager_v1/classes.rb', line 394

def update!(**args)
  @asset_type = args[:asset_type] if args.key?(:asset_type)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
  @uri = args[:uri] if args.key?(:uri)
end