class Azure::Web::Mgmt::V2018_02_01::Models::FunctionEnvelope

Web Job Information.

Attributes

config[RW]

@return Config information.

config_href[RW]

@return [String] Config URI.

files[RW]

@return [Hash{String => String}] File list.

function_app_id[RW]

@return [String] Function App ID.

href[RW]

@return [String] Function URI.

script_href[RW]

@return [String] Script URI.

script_root_path_href[RW]

@return [String] Script root path URI.

secrets_file_href[RW]

@return [String] Secrets file URI.

test_data[RW]

@return [String] Test data used when testing via the Azure Portal.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-02-01/generated/azure_mgmt_web/models/function_envelope.rb, line 47
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'FunctionEnvelope',
    type: {
      name: 'Composite',
      class_name: 'FunctionEnvelope',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        kind: {
          client_side_validation: true,
          required: false,
          serialized_name: 'kind',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        function_app_id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.function_app_id',
          type: {
            name: 'String'
          }
        },
        script_root_path_href: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.script_root_path_href',
          type: {
            name: 'String'
          }
        },
        script_href: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.script_href',
          type: {
            name: 'String'
          }
        },
        config_href: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.config_href',
          type: {
            name: 'String'
          }
        },
        secrets_file_href: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.secrets_file_href',
          type: {
            name: 'String'
          }
        },
        href: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.href',
          type: {
            name: 'String'
          }
        },
        config: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.config',
          type: {
            name: 'Object'
          }
        },
        files: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.files',
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        test_data: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.test_data',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end