Class: Google::Apis::NetworksecurityV1beta1::GatewaySecurityPolicyRule

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

The GatewaySecurityPolicyRule resource is in a nested collection within a GatewaySecurityPolicy and represents a traffic matching condition and associated action to perform.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GatewaySecurityPolicyRule

Returns a new instance of GatewaySecurityPolicyRule.



1293
1294
1295
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1293

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

Instance Attribute Details

#application_matcherString

Optional. CEL expression for matching on L7/application level criteria. Corresponds to the JSON property applicationMatcher

Returns:

  • (String)


1240
1241
1242
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1240

def application_matcher
  @application_matcher
end

#basic_profileString

Required. Profile which tells what the primitive action should be. Corresponds to the JSON property basicProfile

Returns:

  • (String)


1245
1246
1247
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1245

def basic_profile
  @basic_profile
end

#create_timeString

Output only. Time when the rule was created. Corresponds to the JSON property createTime

Returns:

  • (String)


1250
1251
1252
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1250

def create_time
  @create_time
end

#descriptionString

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

Returns:

  • (String)


1255
1256
1257
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1255

def description
  @description
end

#enabledBoolean Also known as: enabled?

Required. Whether the rule is enforced. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


1260
1261
1262
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1260

def enabled
  @enabled
end

#nameString

Required. Immutable. Name of the resource. ame is the full resource name so projects/project/locations/location/gatewaySecurityPolicies/ gateway_security_policy/rules/rule rule should match the pattern: (^a-z?$). Corresponds to the JSON property name

Returns:

  • (String)


1269
1270
1271
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1269

def name
  @name
end

#priorityFixnum

Required. Priority of the rule. Lower number corresponds to higher precedence. Corresponds to the JSON property priority

Returns:

  • (Fixnum)


1274
1275
1276
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1274

def priority
  @priority
end

#session_matcherString

Required. CEL expression for matching on session criteria. Corresponds to the JSON property sessionMatcher

Returns:

  • (String)


1279
1280
1281
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1279

def session_matcher
  @session_matcher
end

#tls_inspection_enabledBoolean Also known as: tls_inspection_enabled?

Optional. Flag to enable TLS inspection of traffic matching on , can only be true if the parent GatewaySecurityPolicy references a TLSInspectionConfig. Corresponds to the JSON property tlsInspectionEnabled

Returns:

  • (Boolean)


1285
1286
1287
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1285

def tls_inspection_enabled
  @tls_inspection_enabled
end

#update_timeString

Output only. Time when the rule was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


1291
1292
1293
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1291

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
# File 'lib/google/apis/networksecurity_v1beta1/classes.rb', line 1298

def update!(**args)
  @application_matcher = args[:application_matcher] if args.key?(:application_matcher)
  @basic_profile = args[:basic_profile] if args.key?(:basic_profile)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @enabled = args[:enabled] if args.key?(:enabled)
  @name = args[:name] if args.key?(:name)
  @priority = args[:priority] if args.key?(:priority)
  @session_matcher = args[:session_matcher] if args.key?(:session_matcher)
  @tls_inspection_enabled = args[:tls_inspection_enabled] if args.key?(:tls_inspection_enabled)
  @update_time = args[:update_time] if args.key?(:update_time)
end