Class: Google::Apis::DeploymentmanagerAlpha::TypeInfo
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DeploymentmanagerAlpha::TypeInfo
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_alpha/classes.rb,
 generated/google/apis/deploymentmanager_alpha/representations.rb,
 generated/google/apis/deploymentmanager_alpha/representations.rb
Overview
Contains detailed information about a composite type, base type, or base type with specific collection.
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The description of the type. 
- 
  
    
      #documentation_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    For swagger 2.0 externalDocs field will be used. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The base type or composite type name. 
- 
  
    
      #schema  ⇒ Google::Apis::DeploymentmanagerAlpha::TypeInfoSchemaInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property schema.
- 
  
    
      #self_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #title  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The title on the API descriptor URL provided. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TypeInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TypeInfo. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TypeInfo
Returns a new instance of TypeInfo
| 2485 2486 2487 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2485 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#description ⇒ String
The description of the type.
Corresponds to the JSON property description
| 2451 2452 2453 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2451 def description @description end | 
#documentation_link ⇒ String
For swagger 2.0 externalDocs field will be used. For swagger 1.2 this field
will be empty.
Corresponds to the JSON property documentationLink
| 2457 2458 2459 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2457 def documentation_link @documentation_link end | 
#kind ⇒ String
Output only. Type of the output. Always deploymentManager#TypeInfo for
TypeInfo.
Corresponds to the JSON property kind
| 2463 2464 2465 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2463 def kind @kind end | 
#name ⇒ String
The base type or composite type name.
Corresponds to the JSON property name
| 2468 2469 2470 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2468 def name @name end | 
#schema ⇒ Google::Apis::DeploymentmanagerAlpha::TypeInfoSchemaInfo
Corresponds to the JSON property schema
| 2473 2474 2475 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2473 def schema @schema end | 
#self_link ⇒ String
Output only. Server-defined URL for the resource.
Corresponds to the JSON property selfLink
| 2478 2479 2480 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2478 def self_link @self_link end | 
#title ⇒ String
The title on the API descriptor URL provided.
Corresponds to the JSON property title
| 2483 2484 2485 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2483 def title @title end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2490 2491 2492 2493 2494 2495 2496 2497 2498 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2490 def update!(**args) @description = args[:description] if args.key?(:description) @documentation_link = args[:documentation_link] if args.key?(:documentation_link) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @schema = args[:schema] if args.key?(:schema) @self_link = args[:self_link] if args.key?(:self_link) @title = args[:title] if args.key?(:title) end |