Class: Google::Apis::ServiceusageV1::MethodProp
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServiceusageV1::MethodProp
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/serviceusage_v1/classes.rb,
lib/google/apis/serviceusage_v1/representations.rb,
lib/google/apis/serviceusage_v1/representations.rb 
Overview
Method represents a method of an API interface.
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The simple name of this method.
 - 
  
    
      #options  ⇒ Array<Google::Apis::ServiceusageV1::Option> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Any metadata attached to the method.
 - 
  
    
      #request_streaming  ⇒ Boolean 
    
    
      (also: #request_streaming?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If true, the request is streamed.
 - 
  
    
      #request_type_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A URL of the input message type.
 - 
  
    
      #response_streaming  ⇒ Boolean 
    
    
      (also: #response_streaming?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If true, the response is streamed.
 - 
  
    
      #response_type_url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The URL of the output message type.
 - 
  
    
      #syntax  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The source syntax of this method.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MethodProp 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MethodProp.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ MethodProp
Returns a new instance of MethodProp.
      3303 3304 3305  | 
    
      # File 'lib/google/apis/serviceusage_v1/classes.rb', line 3303 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#name ⇒ String
The simple name of this method.
Corresponds to the JSON property name
      3269 3270 3271  | 
    
      # File 'lib/google/apis/serviceusage_v1/classes.rb', line 3269 def name @name end  | 
  
#options ⇒ Array<Google::Apis::ServiceusageV1::Option>
Any metadata attached to the method.
Corresponds to the JSON property options
      3274 3275 3276  | 
    
      # File 'lib/google/apis/serviceusage_v1/classes.rb', line 3274 def @options end  | 
  
#request_streaming ⇒ Boolean Also known as: request_streaming?
If true, the request is streamed.
Corresponds to the JSON property requestStreaming
      3279 3280 3281  | 
    
      # File 'lib/google/apis/serviceusage_v1/classes.rb', line 3279 def request_streaming @request_streaming end  | 
  
#request_type_url ⇒ String
A URL of the input message type.
Corresponds to the JSON property requestTypeUrl
      3285 3286 3287  | 
    
      # File 'lib/google/apis/serviceusage_v1/classes.rb', line 3285 def request_type_url @request_type_url end  | 
  
#response_streaming ⇒ Boolean Also known as: response_streaming?
If true, the response is streamed.
Corresponds to the JSON property responseStreaming
      3290 3291 3292  | 
    
      # File 'lib/google/apis/serviceusage_v1/classes.rb', line 3290 def response_streaming @response_streaming end  | 
  
#response_type_url ⇒ String
The URL of the output message type.
Corresponds to the JSON property responseTypeUrl
      3296 3297 3298  | 
    
      # File 'lib/google/apis/serviceusage_v1/classes.rb', line 3296 def response_type_url @response_type_url end  | 
  
#syntax ⇒ String
The source syntax of this method.
Corresponds to the JSON property syntax
      3301 3302 3303  | 
    
      # File 'lib/google/apis/serviceusage_v1/classes.rb', line 3301 def syntax @syntax end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3308 3309 3310 3311 3312 3313 3314 3315 3316  | 
    
      # File 'lib/google/apis/serviceusage_v1/classes.rb', line 3308 def update!(**args) @name = args[:name] if args.key?(:name) @options = args[:options] if args.key?(:options) @request_streaming = args[:request_streaming] if args.key?(:request_streaming) @request_type_url = args[:request_type_url] if args.key?(:request_type_url) @response_streaming = args[:response_streaming] if args.key?(:response_streaming) @response_type_url = args[:response_type_url] if args.key?(:response_type_url) @syntax = args[:syntax] if args.key?(:syntax) end  |