Class: Google::Apis::DlpV2::GooglePrivacyDlpV2CreateStoredInfoTypeRequest

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

Overview

Request message for CreateStoredInfoType.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2CreateStoredInfoTypeRequest

Returns a new instance of GooglePrivacyDlpV2CreateStoredInfoTypeRequest.



1244
1245
1246
# File 'generated/google/apis/dlp_v2/classes.rb', line 1244

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

Instance Attribute Details

#configGoogle::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeConfig

Configuration for stored infoTypes. All fields and subfield are provided by the user. For more information, see https://cloud.google.com/dlp/docs/creating-custom-infotypes. Corresponds to the JSON property config



1228
1229
1230
# File 'generated/google/apis/dlp_v2/classes.rb', line 1228

def config
  @config
end

#location_idString

The geographic location to store the stored infoType. Reserved for future extensions. Corresponds to the JSON property locationId

Returns:

  • (String)


1234
1235
1236
# File 'generated/google/apis/dlp_v2/classes.rb', line 1234

def location_id
  @location_id
end

#stored_info_type_idString

The storedInfoType ID can contain uppercase and lowercase letters, numbers, and hyphens; that is, it must match the regular expression: [a-zA-Z\\d-_]+. The maximum length is 100 characters. Can be empty to allow the system to generate one. Corresponds to the JSON property storedInfoTypeId

Returns:

  • (String)


1242
1243
1244
# File 'generated/google/apis/dlp_v2/classes.rb', line 1242

def stored_info_type_id
  @stored_info_type_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1249
1250
1251
1252
1253
# File 'generated/google/apis/dlp_v2/classes.rb', line 1249

def update!(**args)
  @config = args[:config] if args.key?(:config)
  @location_id = args[:location_id] if args.key?(:location_id)
  @stored_info_type_id = args[:stored_info_type_id] if args.key?(:stored_info_type_id)
end