class Azure::Web::Mgmt::V2020_09_01::Models::StaticSiteBuildProperties

Build properties for the static site.

Attributes

api_location[RW]

@return [String] The path to the api code within the repository.

app_artifact_location[RW]

@return [String] The path of the app artifacts after building.

app_location[RW]

@return [String] The path to the app code within the repository.

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-09-01/generated/azure_mgmt_web/models/static_site_build_properties.rb, line 29
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'StaticSiteBuildProperties',
    type: {
      name: 'Composite',
      class_name: 'StaticSiteBuildProperties',
      model_properties: {
        app_location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'appLocation',
          type: {
            name: 'String'
          }
        },
        api_location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'apiLocation',
          type: {
            name: 'String'
          }
        },
        app_artifact_location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'appArtifactLocation',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end