Class: Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeVersion
- Inherits:
-
Object
- Object
- Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeVersion
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dlp_v2/classes.rb,
generated/google/apis/dlp_v2/representations.rb,
generated/google/apis/dlp_v2/representations.rb
Overview
Version of a StoredInfoType, including the configuration used to build it, create timestamp, and current state.
Instance Attribute Summary collapse
-
#config ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeConfig
Configuration for stored infoTypes.
-
#create_time ⇒ String
Create timestamp of the version.
-
#errors ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Error>
Errors that occurred when creating this storedInfoType version, or anomalies detected in the storedInfoType data that render it unusable.
-
#state ⇒ String
Stored info type version state.
-
#stats ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeStats
Statistics for a StoredInfoType.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GooglePrivacyDlpV2StoredInfoTypeVersion
constructor
A new instance of GooglePrivacyDlpV2StoredInfoTypeVersion.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GooglePrivacyDlpV2StoredInfoTypeVersion
Returns a new instance of GooglePrivacyDlpV2StoredInfoTypeVersion.
5461 5462 5463 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5461 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeConfig
Configuration for stored infoTypes. All fields and subfield are provided
by the user. For more information, see
https://cloud.google.com/dlp/docs/creating-custom-infotypes.
Corresponds to the JSON property config
5427 5428 5429 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5427 def config @config end |
#create_time ⇒ String
Create timestamp of the version. Read-only, determined by the system
when the version is created.
Corresponds to the JSON property createTime
5433 5434 5435 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5433 def create_time @create_time end |
#errors ⇒ Array<Google::Apis::DlpV2::GooglePrivacyDlpV2Error>
Errors that occurred when creating this storedInfoType version, or
anomalies detected in the storedInfoType data that render it unusable. Only
the five most recent errors will be displayed, with the most recent error
appearing first.
For example, some of the data for stored custom dictionaries is put in
the user's Google Cloud Storage bucket, and if this data is modified or
deleted by the user or another system, the dictionary becomes invalid.
If any errors occur, fix the problem indicated by the error message and
use the UpdateStoredInfoType API method to create another version of the
storedInfoType to continue using it, reusing the same config if it was
not the source of the error.
Corresponds to the JSON property errors
5448 5449 5450 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5448 def errors @errors end |
#state ⇒ String
Stored info type version state. Read-only, updated by the system
during dictionary creation.
Corresponds to the JSON property state
5454 5455 5456 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5454 def state @state end |
#stats ⇒ Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeStats
Statistics for a StoredInfoType.
Corresponds to the JSON property stats
5459 5460 5461 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5459 def stats @stats end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5466 5467 5468 5469 5470 5471 5472 |
# File 'generated/google/apis/dlp_v2/classes.rb', line 5466 def update!(**args) @config = args[:config] if args.key?(:config) @create_time = args[:create_time] if args.key?(:create_time) @errors = args[:errors] if args.key?(:errors) @state = args[:state] if args.key?(:state) @stats = args[:stats] if args.key?(:stats) end |