class Azure::Web::Mgmt::V2016_06_01::Models::ApiResourceMetadata

Model object.

Attributes

api_type[RW]

@return [ApiType] Possible values include: 'NotSpecified', 'Rest', 'Soap'

brand_color[RW]

@return [String] Brand color

connection_type[RW]

@return [String] The connection type

hide_key[RW]

@return [String] Hide key

source[RW]

@return [String] The source

tags[RW]

@return [Hash{String => String}]

wsdl_import_method[RW]

@return [WsdlImportMethod] Possible values include: 'NotSpecified', 'SoapToRest', 'SoapPassThrough'

wsdl_service[RW]

@return [WsdlService]

Public Class Methods

mapper() click to toggle source

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

# File lib/2016-06-01/generated/azure_mgmt_web/models/api_resource_metadata.rb, line 47
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApiResourceMetadata',
    type: {
      name: 'Composite',
      class_name: 'ApiResourceMetadata',
      model_properties: {
        source: {
          client_side_validation: true,
          required: false,
          serialized_name: 'source',
          type: {
            name: 'String'
          }
        },
        brand_color: {
          client_side_validation: true,
          required: false,
          serialized_name: 'brandColor',
          type: {
            name: 'String'
          }
        },
        hide_key: {
          client_side_validation: true,
          required: false,
          serialized_name: 'hideKey',
          type: {
            name: 'String'
          }
        },
        tags: {
          client_side_validation: true,
          required: false,
          serialized_name: 'tags',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        api_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'apiType',
          type: {
            name: 'String'
          }
        },
        wsdl_service: {
          client_side_validation: true,
          required: false,
          serialized_name: 'wsdlService',
          type: {
            name: 'Composite',
            class_name: 'WsdlService'
          }
        },
        wsdl_import_method: {
          client_side_validation: true,
          required: false,
          serialized_name: 'wsdlImportMethod',
          type: {
            name: 'String'
          }
        },
        connection_type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'connectionType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end