Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListStoredInfoTypesResponse

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

Response message for ListStoredInfoTypes.

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) ⇒ GooglePrivacyDlpV2ListStoredInfoTypesResponse

Returns a new instance of GooglePrivacyDlpV2ListStoredInfoTypesResponse.



4019
4020
4021
# File 'generated/google/apis/dlp_v2/classes.rb', line 4019

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

Instance Attribute Details

#next_page_tokenString

If the next page is available then the next page token to be used in following ListStoredInfoTypes request. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4012
4013
4014
# File 'generated/google/apis/dlp_v2/classes.rb', line 4012

def next_page_token
  @next_page_token
end

#stored_info_typesArray<Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType>

List of storedInfoTypes, up to page_size in ListStoredInfoTypesRequest. Corresponds to the JSON property storedInfoTypes



4017
4018
4019
# File 'generated/google/apis/dlp_v2/classes.rb', line 4017

def stored_info_types
  @stored_info_types
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4024
4025
4026
4027
# File 'generated/google/apis/dlp_v2/classes.rb', line 4024

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