class Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionImplementationInfo
Contains information for manual implementation for an Azure
SQL
Database, Server
or Elastic Pool Recommended Action.
Attributes
method[RW]
@return [ImplementationMethod] Gets the method in which this recommended action can be manually implemented. e.g., TSql, AzurePowerShell. Possible values include: 'TSql', 'AzurePowerShell'
script[RW]
@return [String] Gets the manual implementation script. e.g., T-SQL script that could be executed on the database.
Private Class Methods
mapper()
click to toggle source
Mapper for RecommendedActionImplementationInfo
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-05-01-preview/generated/azure_mgmt_sql/models/recommended_action_implementation_info.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RecommendedActionImplementationInfo', type: { name: 'Composite', class_name: 'RecommendedActionImplementationInfo', model_properties: { method: { client_side_validation: true, required: false, read_only: true, serialized_name: 'method', type: { name: 'Enum', module: 'ImplementationMethod' } }, script: { client_side_validation: true, required: false, read_only: true, serialized_name: 'script', type: { name: 'String' } } } } } end