Class: Google::Apis::NetworksecurityV1beta1::SacRealm
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1beta1::SacRealm
- 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
Represents a Secure Access Connect (SAC) realm resource. A Secure Access Connect realm establishes a connection between your Google Cloud project and an SSE service.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Identifier.
-
#pairing_key ⇒ Google::Apis::NetworksecurityV1beta1::SacRealmPairingKey
Key to be shared with SSE service provider to establish global handshake.
-
#security_service ⇒ String
Immutable.
-
#state ⇒ String
Output only.
-
#symantec_options ⇒ Google::Apis::NetworksecurityV1beta1::SacRealmSacRealmSymantecOptions
Fields specific to realms using Symantec Cloud SWG.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SacRealm
constructor
A new instance of SacRealm.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SacRealm
Returns a new instance of SacRealm.
4493 4494 4495 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4493 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Timestamp when the realm was created.
Corresponds to the JSON property createTime
4455 4456 4457 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4455 def create_time @create_time end |
#labels ⇒ Hash<String,String>
Optional. Optional list of labels applied to the resource.
Corresponds to the JSON property labels
4460 4461 4462 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4460 def labels @labels end |
#name ⇒ String
Identifier. Resource name, in the form projects/project/locations/global/
sacRealms/sacRealm`.
Corresponds to the JSON propertyname`
4466 4467 4468 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4466 def name @name end |
#pairing_key ⇒ Google::Apis::NetworksecurityV1beta1::SacRealmPairingKey
Key to be shared with SSE service provider to establish global handshake.
Corresponds to the JSON property pairingKey
4471 4472 4473 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4471 def pairing_key @pairing_key end |
#security_service ⇒ String
Immutable. SSE service provider associated with the realm.
Corresponds to the JSON property securityService
4476 4477 4478 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4476 def security_service @security_service end |
#state ⇒ String
Output only. State of the realm.
Corresponds to the JSON property state
4481 4482 4483 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4481 def state @state end |
#symantec_options ⇒ Google::Apis::NetworksecurityV1beta1::SacRealmSacRealmSymantecOptions
Fields specific to realms using Symantec Cloud SWG.
Corresponds to the JSON property symantecOptions
4486 4487 4488 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4486 def @symantec_options end |
#update_time ⇒ String
Output only. Timestamp when the realm was last updated.
Corresponds to the JSON property updateTime
4491 4492 4493 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4491 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 |
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 4498 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @labels = args[:labels] if args.key?(:labels) @name = args[:name] if args.key?(:name) @pairing_key = args[:pairing_key] if args.key?(:pairing_key) @security_service = args[:security_service] if args.key?(:security_service) @state = args[:state] if args.key?(:state) @symantec_options = args[:symantec_options] if args.key?(:symantec_options) @update_time = args[:update_time] if args.key?(:update_time) end |