Class: Google::Apis::PrivatecaV1beta1::ReusableConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/privateca_v1beta1/classes.rb,
lib/google/apis/privateca_v1beta1/representations.rb,
lib/google/apis/privateca_v1beta1/representations.rb

Overview

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.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReusableConfig

Returns a new instance of ReusableConfig.



2946
2947
2948
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2946

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

Instance Attribute Details

#create_timeString

Output only. The time at which this ReusableConfig was created. Corresponds to the JSON property createTime

Returns:

  • (String)


2915
2916
2917
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2915

def create_time
  @create_time
end

#descriptionString

Optional. A human-readable description of scenarios these ReusableConfigValues may be compatible with. Corresponds to the JSON property description

Returns:

  • (String)


2921
2922
2923
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2921

def description
  @description
end

#labelsHash<String,String>

Optional. Labels with user-defined metadata. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


2926
2927
2928
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2926

def labels
  @labels
end

#nameString

Output only. The resource path for this ReusableConfig in the format projects/ */locations/*/reusableConfigs/*. Corresponds to the JSON property name

Returns:

  • (String)


2932
2933
2934
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2932

def name
  @name
end

#update_timeString

Output only. The time at which this ReusableConfig was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


2937
2938
2939
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2937

def update_time
  @update_time
end

#valuesGoogle::Apis::PrivatecaV1beta1::ReusableConfigValues

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



2944
2945
2946
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2944

def values
  @values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2951
2952
2953
2954
2955
2956
2957
2958
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 2951

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