Class: Google::Apis::DlpV2::GooglePrivacyDlpV2UpdateConnectionRequest

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

Request message for UpdateConnection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2UpdateConnectionRequest

Returns a new instance of GooglePrivacyDlpV2UpdateConnectionRequest.



11365
11366
11367
# File 'lib/google/apis/dlp_v2/classes.rb', line 11365

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

Instance Attribute Details

#connectionGoogle::Apis::DlpV2::GooglePrivacyDlpV2Connection

A data connection to allow the DLP API to profile data in locations that require additional configuration. Corresponds to the JSON property connection



11358
11359
11360
# File 'lib/google/apis/dlp_v2/classes.rb', line 11358

def connection
  @connection
end

#update_maskString

Optional. Mask to control which fields get updated. Corresponds to the JSON property updateMask

Returns:

  • (String)


11363
11364
11365
# File 'lib/google/apis/dlp_v2/classes.rb', line 11363

def update_mask
  @update_mask
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11370
11371
11372
11373
# File 'lib/google/apis/dlp_v2/classes.rb', line 11370

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