class Google::Apis::DeploymentmanagerV2beta::Options
Options
allows customized resource handling by Deployment
Manager.
Attributes
Options
regarding how to thread async requests. Corresponds to the JSON property `asyncOptions` @return [Array<Google::Apis::DeploymentmanagerV2beta::AsyncOptions>]
The mappings that apply for requests. Corresponds to the JSON property `inputMappings` @return [Array<Google::Apis::DeploymentmanagerV2beta::InputMapping>]
Options
for how to validate and process properties on a resource. Corresponds to the JSON property `validationOptions` @return [Google::Apis::DeploymentmanagerV2beta::ValidationOptions]
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
# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 1417 def initialize(**args) update!(**args) end
Public Instance Methods
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