Class: Google::Apis::CesV1::SecuritySettings
- Inherits:
-
Object
- Object
- Google::Apis::CesV1::SecuritySettings
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb
Overview
Project/Location level security settings for CES.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#endpoint_control_policy ⇒ Google::Apis::CesV1::EndpointControlPolicy
Defines project/location level endpoint control policy.
-
#etag ⇒ String
Output only.
-
#name ⇒ String
Identifier.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecuritySettings
constructor
A new instance of SecuritySettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecuritySettings
Returns a new instance of SecuritySettings.
5719 5720 5721 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5719 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Create time of the security settings.
Corresponds to the JSON property createTime
5696 5697 5698 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5696 def create_time @create_time end |
#endpoint_control_policy ⇒ Google::Apis::CesV1::EndpointControlPolicy
Defines project/location level endpoint control policy.
Corresponds to the JSON property endpointControlPolicy
5701 5702 5703 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5701 def endpoint_control_policy @endpoint_control_policy end |
#etag ⇒ String
Output only. Etag of the security settings.
Corresponds to the JSON property etag
5706 5707 5708 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5706 def etag @etag end |
#name ⇒ String
Identifier. The unique identifier of the security settings. Format: projects/
project/locations/location/securitySettings
Corresponds to the JSON property name
5712 5713 5714 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5712 def name @name end |
#update_time ⇒ String
Output only. Last update time of the security settings.
Corresponds to the JSON property updateTime
5717 5718 5719 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5717 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5724 5725 5726 5727 5728 5729 5730 |
# File 'lib/google/apis/ces_v1/classes.rb', line 5724 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @endpoint_control_policy = args[:endpoint_control_policy] if args.key?(:endpoint_control_policy) @etag = args[:etag] if args.key?(:etag) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end |