class Google::Apis::DeploymentmanagerV2beta::TypeInfo
Type
Information. Contains detailed information about a composite type, base type, or base type with specific collection.
Attributes
The description of the type. Corresponds to the JSON property `description` @return [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` @return [String]
The base type or composite type name. Corresponds to the JSON property `name` @return [String]
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]
Output only. Self link for the type provider. Corresponds to the JSON property `selfLink` @return [String]
The title on the API descriptor URL provided. Corresponds to the JSON property `title` @return [String]
Public Class Methods
# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 2194 def initialize(**args) update!(**args) end
Public Instance Methods
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