class Google::Apis::DeploymentmanagerV2beta::TypeInfo

Type Information. Contains detailed information about a composite type, base type, or base type with specific collection.

Attributes

description[RW]

The description of the type. Corresponds to the JSON property `description` @return [String]

kind[RW]

Output only. Type of the output. Always `deploymentManager#TypeInfo` for TypeInfo. Corresponds to the JSON property `kind` @return [String]

name[RW]

The base type or composite type name. Corresponds to the JSON property `name` @return [String]

schema[RW]

For base types with a collection, we return a schema and documentation link For template types, we return only a schema Corresponds to the JSON property `schema` @return [Google::Apis::DeploymentmanagerV2beta::TypeInfoSchemaInfo]

title[RW]

The title on the API descriptor URL provided. Corresponds to the JSON property `title` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 2194
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 2199
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