Class: Google::Apis::ServiceconsumermanagementV1::ContextRule

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/serviceconsumermanagement_v1/classes.rb,
lib/google/apis/serviceconsumermanagement_v1/representations.rb,
lib/google/apis/serviceconsumermanagement_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

Constructor Details

#initialize(**args) ⇒ ContextRule

Returns a new instance of ContextRule.



664
665
666
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 664

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

Instance Attribute Details

#allowed_request_extensionsArray<String>

A list of full type names or extension IDs of extensions allowed in grpc side channel from client to backend. Corresponds to the JSON property allowedRequestExtensions

Returns:

  • (Array<String>)


640
641
642
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 640

def allowed_request_extensions
  @allowed_request_extensions
end

#allowed_response_extensionsArray<String>

A list of full type names or extension IDs of extensions allowed in grpc side channel from backend to client. Corresponds to the JSON property allowedResponseExtensions

Returns:

  • (Array<String>)


646
647
648
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 646

def allowed_response_extensions
  @allowed_response_extensions
end

#providedArray<String>

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

Returns:

  • (Array<String>)


651
652
653
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 651

def provided
  @provided
end

#requestedArray<String>

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

Returns:

  • (Array<String>)


656
657
658
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 656

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)


662
663
664
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 662

def selector
  @selector
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



669
670
671
672
673
674
675
# File 'lib/google/apis/serviceconsumermanagement_v1/classes.rb', line 669

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