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.



2774
2775
2776
# File 'lib/google/apis/dlp_v2/classes.rb', line 2774

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)


2754
2755
2756
# File 'lib/google/apis/dlp_v2/classes.rb', line 2754

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)


2760
2761
2762
# File 'lib/google/apis/dlp_v2/classes.rb', line 2760

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)


2766
2767
2768
# File 'lib/google/apis/dlp_v2/classes.rb', line 2766

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)


2772
2773
2774
# File 'lib/google/apis/dlp_v2/classes.rb', line 2772

def project_id
  @project_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2779
2780
2781
2782
2783
2784
# File 'lib/google/apis/dlp_v2/classes.rb', line 2779

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