class Google::Apis::PrivatecaV1beta1::ReusableConfig

A ReusableConfig refers to a managed ReusableConfigValues. Those, in turn, are used to describe certain fields of an X.509 certificate, such as the key usage fields, fields specific to CA certificates, certificate policy extensions and custom extensions.

Attributes

create_time[RW]

Output only. The time at which this ReusableConfig was created. Corresponds to the JSON property `createTime` @return [String]

description[RW]

Optional. A human-readable description of scenarios these ReusableConfigValues may be compatible with. Corresponds to the JSON property `description` @return [String]

labels[RW]

Optional. Labels with user-defined metadata. Corresponds to the JSON property `labels` @return [Hash<String,String>]

name[RW]

Output only. The resource path for this ReusableConfig in the format `projects/ /locations//reusableConfigs/*`. Corresponds to the JSON property `name` @return [String]

update_time[RW]

Output only. The time at which this ReusableConfig was updated. Corresponds to the JSON property `updateTime` @return [String]

values[RW]

A ReusableConfigValues is used to describe certain fields of an X.509 certificate, such as the key usage fields, fields specific to CA certificates, certificate policy extensions and custom extensions. Corresponds to the JSON property `values` @return [Google::Apis::PrivatecaV1beta1::ReusableConfigValues]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/privateca_v1beta1/classes.rb, line 1865
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/privateca_v1beta1/classes.rb, line 1870
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @update_time = args[:update_time] if args.key?(:update_time)
  @values = args[:values] if args.key?(:values)
end