Class: Google::Apis::ServiceuserV1::ContextRule

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

Overview

A context rule provides information about the context for an individual API element.

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) ⇒ ContextRule

Returns a new instance of ContextRule



1178
1179
1180
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1178

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

Instance Attribute Details

#providedArray<String>

A list of full type names of provided contexts. Corresponds to the JSON property provided

Returns:

  • (Array<String>)


1171
1172
1173
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1171

def provided
  @provided
end

#requestedArray<String>

A list of full type names of requested contexts. Corresponds to the JSON property requested

Returns:

  • (Array<String>)


1176
1177
1178
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1176

def requested
  @requested
end

#selectorString

Selects the methods to which this rule applies. Refer to selector for syntax details. Corresponds to the JSON property selector

Returns:

  • (String)


1166
1167
1168
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1166

def selector
  @selector
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1183
1184
1185
1186
1187
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 1183

def update!(**args)
  @selector = args[:selector] if args.key?(:selector)
  @provided = args[:provided] if args.key?(:provided)
  @requested = args[:requested] if args.key?(:requested)
end