Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListColumnDataProfilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2ListColumnDataProfilesResponse
- 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
-
#column_data_profiles ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ColumnDataProfile>
List of data profiles.
-
#next_page_token ⇒ String
The next page token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2ListColumnDataProfilesResponse
constructor
A new instance of GooglePrivacyDlpV2ListColumnDataProfilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ListColumnDataProfilesResponse
Returns a new instance of GooglePrivacyDlpV2ListColumnDataProfilesResponse.
6593 6594 6595 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6593 def initialize(**args) update!(**args) end |
Instance Attribute Details
#column_data_profiles ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ColumnDataProfile>
List of data profiles.
Corresponds to the JSON property columnDataProfiles
6586 6587 6588 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6586 def column_data_profiles @column_data_profiles end |
#next_page_token ⇒ String
The next page token.
Corresponds to the JSON property nextPageToken
6591 6592 6593 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6591 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6598 6599 6600 6601 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 6598 def update!(**args) @column_data_profiles = args[:column_data_profiles] if args.key?(:column_data_profiles) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |