Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListTableDataProfilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2ListTableDataProfilesResponse
- 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
List of profiles generated for a given organization or project.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The next page token.
-
#table_data_profiles ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2TableDataProfile>
List of data profiles.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2ListTableDataProfilesResponse
constructor
A new instance of GooglePrivacyDlpV2ListTableDataProfilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ListTableDataProfilesResponse
Returns a new instance of GooglePrivacyDlpV2ListTableDataProfilesResponse.
7883 7884 7885 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7883 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The next page token.
Corresponds to the JSON property nextPageToken
7876 7877 7878 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7876 def next_page_token @next_page_token end |
#table_data_profiles ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2TableDataProfile>
List of data profiles.
Corresponds to the JSON property tableDataProfiles
7881 7882 7883 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7881 def table_data_profiles @table_data_profiles end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7888 7889 7890 7891 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7888 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @table_data_profiles = args[:table_data_profiles] if args.key?(:table_data_profiles) end |