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



3412
3413
3414
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 3412

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


3405
3406
3407
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 3405

def provided
  @provided
end

#requestedArray<String>

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

Returns:

  • (Array<String>)


3410
3411
3412
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 3410

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)


3400
3401
3402
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 3400

def selector
  @selector
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3417
3418
3419
3420
3421
# File 'generated/google/apis/serviceuser_v1/classes.rb', line 3417

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