Class: Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2ListInspectTemplatesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2ListInspectTemplatesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2beta2/classes.rb,
generated/google/apis/dlp_v2beta2/representations.rb,
generated/google/apis/dlp_v2beta2/representations.rb
Overview
Response message for ListInspectTemplates.
Instance Attribute Summary collapse
-
#inspect_templates ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InspectTemplate>
List of inspectTemplates, up to page_size in ListInspectTemplatesRequest.
-
#next_page_token ⇒ String
If the next page is available then the next page token to be used in following ListInspectTemplates request.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2ListInspectTemplatesResponse
constructor
A new instance of GooglePrivacyDlpV2beta2ListInspectTemplatesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2beta2ListInspectTemplatesResponse
Returns a new instance of GooglePrivacyDlpV2beta2ListInspectTemplatesResponse
4079 4080 4081 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4079 def initialize(**args) update!(**args) end |
Instance Attribute Details
#inspect_templates ⇒ Array<Google::Apis::DlpV2beta2::GooglePrivacyDlpV2beta2InspectTemplate>
List of inspectTemplates, up to page_size in ListInspectTemplatesRequest.
Corresponds to the JSON property inspectTemplates
4071 4072 4073 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4071 def inspect_templates @inspect_templates end |
#next_page_token ⇒ String
If the next page is available then the next page token to be used
in following ListInspectTemplates request.
Corresponds to the JSON property nextPageToken
4077 4078 4079 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4077 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4084 4085 4086 4087 |
# File 'generated/google/apis/dlp_v2beta2/classes.rb', line 4084 def update!(**args) @inspect_templates = args[:inspect_templates] if args.key?(:inspect_templates) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |