Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListTableDataProfilesResponse

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

Returns a new instance of GooglePrivacyDlpV2ListTableDataProfilesResponse.



6869
6870
6871
# File 'lib/google/apis/dlp_v2/classes.rb', line 6869

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

Instance Attribute Details

#next_page_tokenString

The next page token. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


6862
6863
6864
# File 'lib/google/apis/dlp_v2/classes.rb', line 6862

def next_page_token
  @next_page_token
end

#table_data_profilesArray<Google::Apis::DlpV2::GooglePrivacyDlpV2TableDataProfile>

List of data profiles. Corresponds to the JSON property tableDataProfiles



6867
6868
6869
# File 'lib/google/apis/dlp_v2/classes.rb', line 6867

def table_data_profiles
  @table_data_profiles
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6874
6875
6876
6877
# File 'lib/google/apis/dlp_v2/classes.rb', line 6874

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