Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListProjectDataProfilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2ListProjectDataProfilesResponse
- 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.
-
#project_data_profiles ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ProjectDataProfile>
List of data profiles.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2ListProjectDataProfilesResponse
constructor
A new instance of GooglePrivacyDlpV2ListProjectDataProfilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ListProjectDataProfilesResponse
Returns a new instance of GooglePrivacyDlpV2ListProjectDataProfilesResponse.
7120 7121 7122 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7120 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The next page token.
Corresponds to the JSON property nextPageToken
7113 7114 7115 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7113 def next_page_token @next_page_token end |
#project_data_profiles ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2ProjectDataProfile>
List of data profiles.
Corresponds to the JSON property projectDataProfiles
7118 7119 7120 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7118 def project_data_profiles @project_data_profiles end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7125 7126 7127 7128 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7125 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @project_data_profiles = args[:project_data_profiles] if args.key?(:project_data_profiles) end |