class Azure::OperationsManagement::Mgmt::V2015_11_01_preview::Models::SolutionProperties

Solution properties supported by the OperationsManagement resource provider.

Attributes

contained_resources[RW]

@return [Array<String>] The azure resources that will be contained within the solutions. They will be locked and gets deleted automatically when the solution is deleted.

provisioning_state[RW]

@return [String] The provisioning state for the solution.

referenced_resources[RW]

@return [Array<String>] The resources that will be referenced from this solution. Deleting any of those solution out of band will break the solution.

workspace_resource_id[RW]

@return [String] The azure resourceId for the workspace where the solution will be deployed/enabled.

Private Class Methods

mapper() click to toggle source

Mapper for SolutionProperties class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2015-11-01-preview/generated/azure_mgmt_operations_management/models/solution_properties.rb, line 38
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'SolutionProperties',
    type: {
      name: 'Composite',
      class_name: 'SolutionProperties',
      model_properties: {
        workspace_resource_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'workspaceResourceId',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'provisioningState',
          type: {
            name: 'String'
          }
        },
        contained_resources: {
          client_side_validation: true,
          required: false,
          serialized_name: 'containedResources',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        referenced_resources: {
          client_side_validation: true,
          required: false,
          serialized_name: 'referencedResources',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end