Class: Google::Apis::DatafusionV1beta1::Rule
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1beta1::Rule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/datafusion_v1beta1/classes.rb,
generated/google/apis/datafusion_v1beta1/representations.rb,
generated/google/apis/datafusion_v1beta1/representations.rb
Overview
A rule to be applied in a Policy.
Instance Attribute Summary collapse
-
#action ⇒ String
Required Corresponds to the JSON property
action
. -
#conditions ⇒ Array<Google::Apis::DatafusionV1beta1::Condition>
Additional restrictions that must be met.
-
#description ⇒ String
Human-readable description of the rule.
-
#in ⇒ Array<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.
-
#log_config ⇒ Array<Google::Apis::DatafusionV1beta1::LogConfig>
The config returned to callers of tech.iam.IAM.CheckPolicy for any entries that match the LOG action.
-
#not_in ⇒ Array<String>
If one or more 'not_in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries.
-
#permissions ⇒ Array<String>
A permission is a string of form '
. . ' (e.g., 'storage.buckets.list').
Instance Method Summary collapse
-
#initialize(**args) ⇒ Rule
constructor
A new instance of Rule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Rule
Returns a new instance of Rule
1139 1140 1141 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 1139 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Required
Corresponds to the JSON property action
1099 1100 1101 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 1099 def action @action end |
#conditions ⇒ Array<Google::Apis::DatafusionV1beta1::Condition>
Additional restrictions that must be met. All conditions must pass for the
rule to match.
Corresponds to the JSON property conditions
1105 1106 1107 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 1105 def conditions @conditions end |
#description ⇒ String
Human-readable description of the rule.
Corresponds to the JSON property description
1110 1111 1112 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 1110 def description @description end |
#in ⇒ Array<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
1116 1117 1118 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 1116 def in @in end |
#log_config ⇒ Array<Google::Apis::DatafusionV1beta1::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
1122 1123 1124 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 1122 def log_config @log_config end |
#not_in ⇒ Array<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 can be found at in the Local IAM
documentation (see go/local-iam#features).
Corresponds to the JSON property notIn
1130 1131 1132 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 1130 def not_in @not_in end |
#permissions ⇒ Array<String>
A permission is a string of form 'permissions
1137 1138 1139 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 1137 def @permissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1144 1145 1146 1147 1148 1149 1150 1151 1152 |
# File 'generated/google/apis/datafusion_v1beta1/classes.rb', line 1144 def update!(**args) @action = args[:action] if args.key?(:action) @conditions = args[:conditions] if args.key?(:conditions) @description = args[:description] if args.key?(:description) @in = args[:in] if args.key?(:in) @log_config = args[:log_config] if args.key?(:log_config) @not_in = args[:not_in] if args.key?(:not_in) @permissions = args[:permissions] if args.key?(:permissions) end |