Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2ListDeidentifyTemplatesResponse
- 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
Response message for ListDeidentifyTemplates.
Instance Attribute Summary collapse
-
#deidentify_templates ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate>
List of deidentify templates, up to page_size in ListDeidentifyTemplatesRequest.
-
#next_page_token ⇒ String
If the next page is available then the next page token to be used in the following ListDeidentifyTemplates request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2ListDeidentifyTemplatesResponse
constructor
A new instance of GooglePrivacyDlpV2ListDeidentifyTemplatesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ListDeidentifyTemplatesResponse
Returns a new instance of GooglePrivacyDlpV2ListDeidentifyTemplatesResponse.
6948 6949 6950 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6948 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deidentify_templates ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2DeidentifyTemplate>
List of deidentify templates, up to page_size in
ListDeidentifyTemplatesRequest.
Corresponds to the JSON property deidentifyTemplates
6940 6941 6942 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6940 def deidentify_templates @deidentify_templates end |
#next_page_token ⇒ String
If the next page is available then the next page token to be used in the
following ListDeidentifyTemplates request.
Corresponds to the JSON property nextPageToken
6946 6947 6948 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6946 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6953 6954 6955 6956 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6953 def update!(**args) @deidentify_templates = args[:deidentify_templates] if args.key?(:deidentify_templates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |