Class: Google::Apis::SpannerV1::Condition
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::Condition
- 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 condition to be met.
Instance Attribute Summary collapse
-
#iam ⇒ String
Trusted attributes supplied by the IAM system.
-
#op ⇒ String
An operator to apply the subject with.
-
#svc ⇒ String
Trusted attributes discharged by the service.
-
#sys ⇒ String
Trusted attributes supplied by any service that owns resources and uses the IAM system for access control.
-
#value ⇒ String
DEPRECATED.
-
#values ⇒ Array<String>
The objects of the condition.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Condition
constructor
A new instance of Condition.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Condition
Returns a new instance of Condition
1882 1883 1884 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1882 def initialize(**args) update!(**args) end |
Instance Attribute Details
#iam ⇒ String
Trusted attributes supplied by the IAM system.
Corresponds to the JSON property iam
1854 1855 1856 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1854 def iam @iam end |
#op ⇒ String
An operator to apply the subject with.
Corresponds to the JSON property op
1864 1865 1866 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1864 def op @op end |
#svc ⇒ String
Trusted attributes discharged by the service.
Corresponds to the JSON property svc
1869 1870 1871 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1869 def svc @svc end |
#sys ⇒ String
Trusted attributes supplied by any service that owns resources and uses
the IAM system for access control.
Corresponds to the JSON property sys
1880 1881 1882 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1880 def sys @sys end |
#value ⇒ String
DEPRECATED. Use 'values' instead.
Corresponds to the JSON property value
1874 1875 1876 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1874 def value @value end |
#values ⇒ Array<String>
The objects of the condition. This is mutually exclusive with 'value'.
Corresponds to the JSON property values
1859 1860 1861 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1859 def values @values end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1887 1888 1889 1890 1891 1892 1893 1894 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1887 def update!(**args) @iam = args[:iam] if args.key?(:iam) @values = args[:values] if args.key?(:values) @op = args[:op] if args.key?(:op) @svc = args[:svc] if args.key?(:svc) @value = args[:value] if args.key?(:value) @sys = args[:sys] if args.key?(:sys) end |