Class: Google::Apis::NetworksecurityV1::AuthorizationPolicy

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AuthorizationPolicy

Returns a new instance of AuthorizationPolicy.



175
176
177
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 175

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#actionString

Required. The action to take when a rule match is found. Possible values are " ALLOW" or "DENY". Corresponds to the JSON property action

Returns:

  • (String)


139
140
141
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 139

def action
  @action
end

#create_timeString

Output only. The timestamp when the resource was created. Corresponds to the JSON property createTime

Returns:

  • (String)


144
145
146
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 144

def create_time
  @create_time
end

#descriptionString

Optional. Free-text description of the resource. Corresponds to the JSON property description

Returns:

  • (String)


149
150
151
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 149

def description
  @description
end

#labelsHash<String,String>

Optional. Set of label tags associated with the AuthorizationPolicy resource. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


154
155
156
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 154

def labels
  @labels
end

#nameString

Required. Name of the AuthorizationPolicy resource. It matches pattern projects/project/locations/location/authorizationPolicies/. Corresponds to the JSON property name

Returns:

  • (String)


160
161
162
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 160

def name
  @name
end

#rulesArray<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



168
169
170
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 168

def rules
  @rules
end

#update_timeString

Output only. The timestamp when the resource was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


173
174
175
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 173

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



180
181
182
183
184
185
186
187
188
# File 'lib/google/apis/networksecurity_v1/classes.rb', line 180

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