Class: Google::Apis::DlpV2::GooglePrivacyDlpV2DatabaseResourceReference

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

Overview

Identifies a single database resource, like a table within a database.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2DatabaseResourceReference

Returns a new instance of GooglePrivacyDlpV2DatabaseResourceReference.



2597
2598
2599
# File 'lib/google/apis/dlp_v2/classes.rb', line 2597

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

Instance Attribute Details

#databaseString

Required. Name of a database within the instance. Corresponds to the JSON property database

Returns:

  • (String)


2577
2578
2579
# File 'lib/google/apis/dlp_v2/classes.rb', line 2577

def database
  @database
end

#database_resourceString

Required. Name of a database resource, for example, a table within the database. Corresponds to the JSON property databaseResource

Returns:

  • (String)


2583
2584
2585
# File 'lib/google/apis/dlp_v2/classes.rb', line 2583

def database_resource
  @database_resource
end

#instanceString

Required. The instance where this resource is located. For example: Cloud SQL instance ID. Corresponds to the JSON property instance

Returns:

  • (String)


2589
2590
2591
# File 'lib/google/apis/dlp_v2/classes.rb', line 2589

def instance
  @instance
end

#project_idString

Required. If within a project-level config, then this must match the config's project ID. Corresponds to the JSON property projectId

Returns:

  • (String)


2595
2596
2597
# File 'lib/google/apis/dlp_v2/classes.rb', line 2595

def project_id
  @project_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2602
2603
2604
2605
2606
2607
# File 'lib/google/apis/dlp_v2/classes.rb', line 2602

def update!(**args)
  @database = args[:database] if args.key?(:database)
  @database_resource = args[:database_resource] if args.key?(:database_resource)
  @instance = args[:instance] if args.key?(:instance)
  @project_id = args[:project_id] if args.key?(:project_id)
end