Class: Google::Apis::SpannerV1::Rule
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::Rule
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/spanner_v1/classes.rb,
generated/google/apis/spanner_v1/representations.rb,
generated/google/apis/spanner_v1/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::SpannerV1::Condition>
Additional restrictions that must be met Corresponds to the JSON property
conditions. -
#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::SpannerV1::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
1743 1744 1745 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1743 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Required
Corresponds to the JSON property action
1723 1724 1725 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1723 def action @action end |
#conditions ⇒ Array<Google::Apis::SpannerV1::Condition>
Additional restrictions that must be met
Corresponds to the JSON property conditions
1741 1742 1743 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1741 def conditions @conditions end |
#description ⇒ String
Human-readable description of the rule.
Corresponds to the JSON property description
1736 1737 1738 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1736 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
1711 1712 1713 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1711 def in @in end |
#log_config ⇒ Array<Google::Apis::SpannerV1::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
1705 1706 1707 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1705 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 is the same as for members in a
Binding (see google/iam/v1/policy.proto).
Corresponds to the JSON property notIn
1731 1732 1733 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1731 def not_in @not_in end |
#permissions ⇒ Array<String>
A permission is a string of form 'permissions
1718 1719 1720 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1718 def @permissions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1748 1749 1750 1751 1752 1753 1754 1755 1756 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1748 def update!(**args) @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) @not_in = args[:not_in] if args.key?(:not_in) @description = args[:description] if args.key?(:description) @conditions = args[:conditions] if args.key?(:conditions) end |