Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListProjectDataProfilesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2ListProjectDataProfilesResponse

Returns a new instance of GooglePrivacyDlpV2ListProjectDataProfilesResponse.



6818
6819
6820
# File 'lib/google/apis/dlp_v2/classes.rb', line 6818

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

Instance Attribute Details

#next_page_tokenString

The next page token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


6811
6812
6813
# File 'lib/google/apis/dlp_v2/classes.rb', line 6811

def next_page_token
  @next_page_token
end

#project_data_profilesArray<Google::Apis::DlpV2::GooglePrivacyDlpV2ProjectDataProfile>

List of data profiles. Corresponds to the JSON property projectDataProfiles



6816
6817
6818
# File 'lib/google/apis/dlp_v2/classes.rb', line 6816

def project_data_profiles
  @project_data_profiles
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6823
6824
6825
6826
# File 'lib/google/apis/dlp_v2/classes.rb', line 6823

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