Class: Google::Apis::PolicysimulatorV1alpha::GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues

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

Overview

A message that holds specific allowed and denied values. This message can define specific values and subtrees of the Resource Manager resource hierarchy (Organizations, Folders, Projects) that are allowed or denied. This is achieved by using the under: and optional is: prefixes. The under: prefix is used to denote resource subtree values. The is: prefix is used to denote specific values, and is required only if the value contains a ":". Values prefixed with "is:" are treated the same as values with no prefix. Ancestry subtrees must be in one of the following formats: - "projects/", e.g. "projects/tokyo-rain-123" - "folders/", e.g. "folders/1234" - "organizations/", e.g. "organizations/1234" The supports_under field of the associated Constraint defines whether ancestry prefixes can be used.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues

Returns a new instance of GoogleCloudOrgpolicyV2PolicySpecPolicyRuleStringValues.



337
338
339
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 337

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

Instance Attribute Details

#allowed_valuesArray<String>

List of values allowed at this resource. Corresponds to the JSON property allowedValues

Returns:

  • (Array<String>)


330
331
332
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 330

def allowed_values
  @allowed_values
end

#denied_valuesArray<String>

List of values denied at this resource. Corresponds to the JSON property deniedValues

Returns:

  • (Array<String>)


335
336
337
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 335

def denied_values
  @denied_values
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



342
343
344
345
# File 'lib/google/apis/policysimulator_v1alpha/classes.rb', line 342

def update!(**args)
  @allowed_values = args[:allowed_values] if args.key?(:allowed_values)
  @denied_values = args[:denied_values] if args.key?(:denied_values)
end