Class: Google::Apis::RedisV1::SharedRegionalCertificateAuthority
- Inherits:
-
Object
- Object
- Google::Apis::RedisV1::SharedRegionalCertificateAuthority
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/redis_v1/classes.rb,
lib/google/apis/redis_v1/representations.rb,
lib/google/apis/redis_v1/representations.rb
Overview
Shared regional certificate authority
Instance Attribute Summary collapse
-
#managed_server_ca ⇒ Google::Apis::RedisV1::RegionalManagedCertificateAuthority
CA certificate chains for redis managed server authentication.
-
#name ⇒ String
Identifier.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SharedRegionalCertificateAuthority
constructor
A new instance of SharedRegionalCertificateAuthority.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SharedRegionalCertificateAuthority
Returns a new instance of SharedRegionalCertificateAuthority.
3968 3969 3970 |
# File 'lib/google/apis/redis_v1/classes.rb', line 3968 def initialize(**args) update!(**args) end |
Instance Attribute Details
#managed_server_ca ⇒ Google::Apis::RedisV1::RegionalManagedCertificateAuthority
CA certificate chains for redis managed server authentication.
Corresponds to the JSON property managedServerCa
3959 3960 3961 |
# File 'lib/google/apis/redis_v1/classes.rb', line 3959 def managed_server_ca @managed_server_ca end |
#name ⇒ String
Identifier. Unique name of the resource in this scope including project and
location using the form: projects/project/locations/location/
sharedRegionalCertificateAuthority
Corresponds to the JSON property name
3966 3967 3968 |
# File 'lib/google/apis/redis_v1/classes.rb', line 3966 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3973 3974 3975 3976 |
# File 'lib/google/apis/redis_v1/classes.rb', line 3973 def update!(**args) @managed_server_ca = args[:managed_server_ca] if args.key?(:managed_server_ca) @name = args[:name] if args.key?(:name) end |