Class: Google::Apis::NetworksecurityV1beta1::SacRealmPairingKey
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::SacRealmPairingKey
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1beta1/classes.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb,
lib/google/apis/networksecurity_v1beta1/representations.rb
Overview
Key to be shared with SSE service provider to establish global handshake.
Instance Attribute Summary collapse
-
#expire_time ⇒ String
Output only.
-
#key ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SacRealmPairingKey
constructor
A new instance of SacRealmPairingKey.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SacRealmPairingKey
Returns a new instance of SacRealmPairingKey.
4504 4505 4506 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4504 def initialize(**args) update!(**args) end |
Instance Attribute Details
#expire_time ⇒ String
Output only. Timestamp in UTC of when this resource is considered expired. It
expires 7 days after creation.
Corresponds to the JSON property expireTime
4497 4498 4499 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4497 def expire_time @expire_time end |
#key ⇒ String
Output only. Key value.
Corresponds to the JSON property key
4502 4503 4504 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4502 def key @key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4509 4510 4511 4512 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4509 def update!(**args) @expire_time = args[:expire_time] if args.key?(:expire_time) @key = args[:key] if args.key?(:key) end |