Class: Google::Apis::DlpV2::GooglePrivacyDlpV2ListFileStoreDataProfilesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2ListFileStoreDataProfilesResponse
- 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 file store data profiles generated for a given organization or project.
Instance Attribute Summary collapse
-
#file_store_data_profiles ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreDataProfile>
List of data profiles.
-
#next_page_token ⇒ String
The next page token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2ListFileStoreDataProfilesResponse
constructor
A new instance of GooglePrivacyDlpV2ListFileStoreDataProfilesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2ListFileStoreDataProfilesResponse
Returns a new instance of GooglePrivacyDlpV2ListFileStoreDataProfilesResponse.
7024 7025 7026 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7024 def initialize(**args) update!(**args) end |
Instance Attribute Details
#file_store_data_profiles ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2FileStoreDataProfile>
List of data profiles.
Corresponds to the JSON property fileStoreDataProfiles
7017 7018 7019 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7017 def file_store_data_profiles @file_store_data_profiles end |
#next_page_token ⇒ String
The next page token.
Corresponds to the JSON property nextPageToken
7022 7023 7024 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7022 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7029 7030 7031 7032 |
# File 'lib/google/apis/dlp_v2/classes.rb', line 7029 def update!(**args) @file_store_data_profiles = args[:file_store_data_profiles] if args.key?(:file_store_data_profiles) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |