Class: Google::Apis::NetworksecurityV1beta1::AuthorizationPolicy

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

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.



181
182
183
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 181

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)


145
146
147
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 145

def action
  @action
end

#create_timeString

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

Returns:

  • (String)


150
151
152
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 150

def create_time
  @create_time
end

#descriptionString

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

Returns:

  • (String)


155
156
157
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 155

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>)


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

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)


166
167
168
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 166

def name
  @name
end

#rulesArray<Google::Apis::NetworksecurityV1beta1::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



174
175
176
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 174

def rules
  @rules
end

#update_timeString

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

Returns:

  • (String)


179
180
181
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 179

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



186
187
188
189
190
191
192
193
194
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 186

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