Class: Google::Apis::NetworksecurityV1::AuthorizationPolicy
- Inherits:
-
Object
- Object
- Google::Apis::NetworksecurityV1::AuthorizationPolicy
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networksecurity_v1/classes.rb,
lib/google/apis/networksecurity_v1/representations.rb,
lib/google/apis/networksecurity_v1/representations.rb
Overview
AuthorizationPolicy is a resource that specifies how a server should authorize incoming connections. This resource in itself does not change the configuration unless it's attached to a target https proxy or endpoint config selector resource.
Instance Attribute Summary collapse
-
#action ⇒ String
Required.
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#labels ⇒ Hash<String,String>
Optional.
-
#name ⇒ String
Required.
-
#rules ⇒ Array<Google::Apis::NetworksecurityV1::Rule>
Optional.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AuthorizationPolicy
constructor
A new instance of AuthorizationPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AuthorizationPolicy
Returns a new instance of AuthorizationPolicy.
72 73 74 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 72 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Required. The action to take when a rule match is found. Possible values are "
ALLOW" or "DENY".
Corresponds to the JSON property action
36 37 38 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 36 def action @action end |
#create_time ⇒ String
Output only. The timestamp when the resource was created.
Corresponds to the JSON property createTime
41 42 43 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 41 def create_time @create_time end |
#description ⇒ String
Optional. Free-text description of the resource.
Corresponds to the JSON property description
46 47 48 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 46 def description @description end |
#labels ⇒ Hash<String,String>
Optional. Set of label tags associated with the AuthorizationPolicy resource.
Corresponds to the JSON property labels
51 52 53 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 51 def labels @labels end |
#name ⇒ String
Required. Name of the AuthorizationPolicy resource. It matches pattern
projects/project/locations/location/authorizationPolicies/.
Corresponds to the JSON property name
57 58 59 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 57 def name @name end |
#rules ⇒ Array<Google::Apis::NetworksecurityV1::Rule>
Optional. List of rules to match. Note that at least one of the rules must
match in order for the action specified in the 'action' field to be taken. A
rule is a match if there is a matching source and destination. If left blank,
the action specified in the action field will be applied on every request.
Corresponds to the JSON property rules
65 66 67 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 65 def rules @rules end |
#update_time ⇒ String
Output only. The timestamp when the resource was updated.
Corresponds to the JSON property updateTime
70 71 72 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 70 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
77 78 79 80 81 82 83 84 85 |
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 77 def update!(**args) @action = args[:action] if args.key?(:action) @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) @rules = args[:rules] if args.key?(:rules) @update_time = args[:update_time] if args.key?(:update_time) end |