class Google::Apis::DeploymentmanagerV2beta::Options

Options allows customized resource handling by Deployment Manager.

Attributes

async_options[RW]

Options regarding how to thread async requests. Corresponds to the JSON property `asyncOptions` @return [Array<Google::Apis::DeploymentmanagerV2beta::AsyncOptions>]

input_mappings[RW]

The mappings that apply for requests. Corresponds to the JSON property `inputMappings` @return [Array<Google::Apis::DeploymentmanagerV2beta::InputMapping>]

validation_options[RW]

Options for how to validate and process properties on a resource. Corresponds to the JSON property `validationOptions` @return [Google::Apis::DeploymentmanagerV2beta::ValidationOptions]

virtual_properties[RW]

Additional properties block described as a jsonSchema, these properties will never be part of the json payload, but they can be consumed by InputMappings, this must be a valid json schema draft-04. The properties specified here will be decouple in a different section. This schema will be merged to the schema validation, and properties here will be extracted From the payload and consumed explicitly by InputMappings. ex: field1: type: string field2: type: number Corresponds to the JSON property `virtualProperties` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 1417
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 1422
def update!(**args)
  @async_options = args[:async_options] if args.key?(:async_options)
  @input_mappings = args[:input_mappings] if args.key?(:input_mappings)
  @validation_options = args[:validation_options] if args.key?(:validation_options)
  @virtual_properties = args[:virtual_properties] if args.key?(:virtual_properties)
end