Class: Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoType

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

StoredInfoType resource message that contains information about the current version and any pending updates.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GooglePrivacyDlpV2StoredInfoType

Returns a new instance of GooglePrivacyDlpV2StoredInfoType.



5588
5589
5590
# File 'generated/google/apis/dlp_v2/classes.rb', line 5588

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

Instance Attribute Details

#current_versionGoogle::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeVersion

Version of a StoredInfoType, including the configuration used to build it, create timestamp, and current state. Corresponds to the JSON property currentVersion



5576
5577
5578
# File 'generated/google/apis/dlp_v2/classes.rb', line 5576

def current_version
  @current_version
end

#nameString

Resource name. Corresponds to the JSON property name

Returns:

  • (String)


5581
5582
5583
# File 'generated/google/apis/dlp_v2/classes.rb', line 5581

def name
  @name
end

#pending_versionsArray<Google::Apis::DlpV2::GooglePrivacyDlpV2StoredInfoTypeVersion>

Pending versions of the stored info type. Empty if no versions are pending. Corresponds to the JSON property pendingVersions



5586
5587
5588
# File 'generated/google/apis/dlp_v2/classes.rb', line 5586

def pending_versions
  @pending_versions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5593
5594
5595
5596
5597
# File 'generated/google/apis/dlp_v2/classes.rb', line 5593

def update!(**args)
  @current_version = args[:current_version] if args.key?(:current_version)
  @name = args[:name] if args.key?(:name)
  @pending_versions = args[:pending_versions] if args.key?(:pending_versions)
end