Class: Google::Apis::SourcerepoV1::Rule

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/sourcerepo_v1/classes.rb,
generated/google/apis/sourcerepo_v1/representations.rb,
generated/google/apis/sourcerepo_v1/representations.rb

Overview

A rule to be applied in a Policy.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Rule

Returns a new instance of Rule



276
277
278
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 276

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

Instance Attribute Details

#actionString

Required Corresponds to the JSON property action

Returns:

  • (String)


274
275
276
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 274

def action
  @action
end

#conditionsArray<Google::Apis::SourcerepoV1::Condition>

Additional restrictions that must be met Corresponds to the JSON property conditions



250
251
252
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 250

def conditions
  @conditions
end

#descriptionString

Human-readable description of the rule. Corresponds to the JSON property description

Returns:

  • (String)


245
246
247
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 245

def description
  @description
end

#inArray<String>

If one or more 'in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in at least one of these entries. Corresponds to the JSON property in

Returns:

  • (Array<String>)


262
263
264
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 262

def in
  @in
end

#log_configArray<Google::Apis::SourcerepoV1::LogConfig>

The config returned to callers of tech.iam.IAM.CheckPolicy for any entries that match the LOG action. Corresponds to the JSON property logConfig



256
257
258
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 256

def log_config
  @log_config
end

#not_inArray<String>

If one or more 'not_in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries. The format for in and not_in entries is the same as for members in a Binding (see google/iam/v1/policy.proto). Corresponds to the JSON property notIn

Returns:

  • (Array<String>)


240
241
242
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 240

def not_in
  @not_in
end

#permissionsArray<String>

A permission is a string of form '..' (e.g., 'storage.buckets.list'). A value of '' matches all permissions, and a verb part of '' (e.g., 'storage.buckets.*') matches all verbs. Corresponds to the JSON property permissions

Returns:

  • (Array<String>)


269
270
271
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 269

def permissions
  @permissions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



281
282
283
284
285
286
287
288
289
# File 'generated/google/apis/sourcerepo_v1/classes.rb', line 281

def update!(**args)
  @not_in = args[:not_in] if args.key?(:not_in)
  @description = args[:description] if args.key?(:description)
  @conditions = args[:conditions] if args.key?(:conditions)
  @log_config = args[:log_config] if args.key?(:log_config)
  @in = args[:in] if args.key?(:in)
  @permissions = args[:permissions] if args.key?(:permissions)
  @action = args[:action] if args.key?(:action)
end