Class: Google::Apis::DeploymentmanagerV2beta::ValidationOptions

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/deploymentmanager_v2beta/classes.rb,
lib/google/apis/deploymentmanager_v2beta/representations.rb,
lib/google/apis/deploymentmanager_v2beta/representations.rb

Overview

Options for how to validate and process properties on a resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ValidationOptions

Returns a new instance of ValidationOptions.



2701
2702
2703
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2701

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#schema_validationString

Customize how deployment manager will validate the resource against schema errors. Corresponds to the JSON property schemaValidation

Returns:

  • (String)


2694
2695
2696
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2694

def schema_validation
  @schema_validation
end

#undeclared_propertiesString

Specify what to do with extra properties when executing a request. Corresponds to the JSON property undeclaredProperties

Returns:

  • (String)


2699
2700
2701
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2699

def undeclared_properties
  @undeclared_properties
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2706
2707
2708
2709
# File 'lib/google/apis/deploymentmanager_v2beta/classes.rb', line 2706

def update!(**args)
  @schema_validation = args[:schema_validation] if args.key?(:schema_validation)
  @undeclared_properties = args[:undeclared_properties] if args.key?(:undeclared_properties)
end