openapi: 3.0.0 info: version: 2019-12-03 x-release: v4 title: AWS Outposts description: Amazon Web Services Outposts is a fully managed service that extends Amazon Web Services infrastructure, APIs, and tools to customer premises. By providing local access to Amazon Web Services managed infrastructure, Amazon Web Services Outposts enables customers to build and run applications on premises using the same programming interfaces as in Amazon Web Services Regions, while using local compute and storage resources for lower latency and local data processing needs. x-logo: url: https://api.apis.guru/v2/cache/logo/https_twitter.com_awscloud_profile_image.png backgroundColor: "#FFFFFF" termsOfService: https://aws.amazon.com/service-terms/ contact: name: Mike Ralphson email: mike.ralphson@gmail.com url: https://github.com/mermade/aws2openapi x-twitter: PermittedSoc license: name: Apache 2.0 License url: http://www.apache.org/licenses/ x-providerName: amazonaws.com x-serviceName: outposts x-aws-signingName: outposts x-origin: - contentType: application/json url: https://raw.githubusercontent.com/aws/aws-sdk-js/master/apis/outposts-2019-12-03.normal.json converter: url: https://github.com/mermade/aws2openapi version: 1.0.0 x-apisguru-driver: external x-apiClientRegistration: url: https://portal.aws.amazon.com/gp/aws/developer/registration/index.html?nc2=h_ct x-apisguru-categories: - cloud x-preferred: true externalDocs: description: Amazon Web Services documentation url: https://docs.aws.amazon.com/outposts/ servers: - url: http://outposts.{region}.amazonaws.com variables: region: description: The AWS region enum: - us-east-1 - us-east-2 - us-west-1 - us-west-2 - us-gov-west-1 - us-gov-east-1 - ca-central-1 - eu-north-1 - eu-west-1 - eu-west-2 - eu-west-3 - eu-central-1 - eu-south-1 - af-south-1 - ap-northeast-1 - ap-northeast-2 - ap-northeast-3 - ap-southeast-1 - ap-southeast-2 - ap-east-1 - ap-south-1 - sa-east-1 - me-south-1 default: us-east-1 description: The Outposts multi-region endpoint - url: https://outposts.{region}.amazonaws.com variables: region: description: The AWS region enum: - us-east-1 - us-east-2 - us-west-1 - us-west-2 - us-gov-west-1 - us-gov-east-1 - ca-central-1 - eu-north-1 - eu-west-1 - eu-west-2 - eu-west-3 - eu-central-1 - eu-south-1 - af-south-1 - ap-northeast-1 - ap-northeast-2 - ap-northeast-3 - ap-southeast-1 - ap-southeast-2 - ap-east-1 - ap-south-1 - sa-east-1 - me-south-1 default: us-east-1 description: The Outposts multi-region endpoint - url: http://outposts.{region}.amazonaws.com.cn variables: region: description: The AWS region enum: - cn-north-1 - cn-northwest-1 default: cn-north-1 description: The Outposts endpoint for China (Beijing) and China (Ningxia) - url: https://outposts.{region}.amazonaws.com.cn variables: region: description: The AWS region enum: - cn-north-1 - cn-northwest-1 default: cn-north-1 description: The Outposts endpoint for China (Beijing) and China (Ningxia) x-hasEquivalentPaths: true paths: "/orders/{OrderId}/cancel": post: operationId: CancelOrder description: Cancels the specified order for an Outpost. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/CancelOrderOutput" "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: ConflictException content: application/json: schema: $ref: "#/components/schemas/ConflictException" "482": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "483": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "484": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: OrderId in: path required: true description: " The ID of the order. " schema: type: string pattern: oo-[a-f0-9]{17}$ minLength: 1 maxLength: 20 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Cancel Order parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" /orders: post: operationId: CreateOrder description: Creates an order for an Outpost. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/CreateOrderOutput" examples: CreateOrder200Example: summary: Default CreateOrder 200 response x-microcks-default: true value: Order: example-string "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: ConflictException content: application/json: schema: $ref: "#/components/schemas/ConflictException" "482": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "483": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "484": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" "485": description: ServiceQuotaExceededException content: application/json: schema: $ref: "#/components/schemas/ServiceQuotaExceededException" parameters: [] requestBody: required: true content: application/json: schema: type: object required: - OutpostIdentifier - LineItems - PaymentOption properties: OutpostIdentifier: description: " The ID or the Amazon Resource Name (ARN) of the Outpost. " type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:outpost/)?op-[a-f0-9]{17}$ minLength: 1 maxLength: 180 LineItems: description: The line items that make up the order. type: array items: $ref: "#/components/schemas/LineItemRequest" minItems: 1 maxItems: 20 PaymentOption: description: The payment option. type: string enum: - ALL_UPFRONT - NO_UPFRONT - PARTIAL_UPFRONT PaymentTerm: description: The payment terms. type: string enum: - THREE_YEARS - ONE_YEAR x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Create Order parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" /outposts: post: operationId: CreateOutpost description:
Creates an Outpost.
You can specify either an Availability one or an AZ ID.
responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/CreateOutpostOutput" examples: CreateOutpost200Example: summary: Default CreateOutpost 200 response x-microcks-default: true value: Outpost: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: ConflictException content: application/json: schema: $ref: "#/components/schemas/ConflictException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "484": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" "485": description: ServiceQuotaExceededException content: application/json: schema: $ref: "#/components/schemas/ServiceQuotaExceededException" parameters: [] requestBody: required: true content: application/json: schema: type: object required: - Name - SiteId properties: Name: description: The name of the Outpost. type: string pattern: ^[\S ]+$ minLength: 1 maxLength: 255 Description: description: The description of the Outpost. type: string pattern: ^[\S ]*$ minLength: 0 maxLength: 1000 SiteId: description: The ID of the site. type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:site/)?(os-[a-f0-9]{17})$ minLength: 1 maxLength: 255 AvailabilityZone: description: The Availability Zone. type: string pattern: ^([a-zA-Z]+-){1,3}([a-zA-Z]+)?(\d+[a-zA-Z]?)?$ minLength: 1 maxLength: 1000 AvailabilityZoneId: description: The ID of the Availability Zone. type: string pattern: ^[a-zA-Z]+\d-[a-zA-Z]+\d$ minLength: 1 maxLength: 255 Tags: description: The tags to apply to the Outpost. type: object minProperties: 1 maxProperties: 50 additionalProperties: $ref: "#/components/schemas/TagValue" SupportedHardwareType: description: " The type of hardware for this Outpost. " type: string enum: - RACK - SERVER x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Create Outpost parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" get: operationId: ListOutposts description:Lists the Outposts for your Amazon Web Services account.
Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/ListOutpostsOutput" examples: ListOutposts200Example: summary: Default ListOutposts 200 response x-microcks-default: true value: Outposts: example-ref NextToken: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "482": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: NextToken in: query required: false description: "" schema: type: string pattern: ^(\d+)##(\S+)$ description: The pagination token. minLength: 1 maxLength: 2048 - name: MaxResults in: query required: false description: "" schema: type: integer description: The maximum page size. minimum: 1 maximum: 1000 - name: LifeCycleStatusFilter in: query required: false description: Filters the results by the lifecycle status. schema: type: array items: $ref: "#/components/schemas/LifeCycleStatus" minItems: 1 maxItems: 5 - name: AvailabilityZoneFilter in: query required: false description: Filters the results by Availability Zone (for example,us-east-1a).
schema:
type: array
items:
$ref: "#/components/schemas/AvailabilityZone"
minItems: 1
maxItems: 5
- name: AvailabilityZoneIdFilter
in: query
required: false
description: Filters the results by AZ ID (for example, use1-az1).
schema:
type: array
items:
$ref: "#/components/schemas/AvailabilityZoneId"
minItems: 1
maxItems: 5
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
summary: Amazon Outposts List Outposts
/sites:
post:
operationId: CreateSite
description: " Creates a site for an Outpost. "
responses:
"200":
description: Success
content:
application/json:
schema:
$ref: "#/components/schemas/CreateSiteOutput"
examples:
CreateSite200Example:
summary: Default CreateSite 200 response
x-microcks-default: true
value:
Site: example-ref
"480":
description: ValidationException
content:
application/json:
schema:
$ref: "#/components/schemas/ValidationException"
"481":
description: ConflictException
content:
application/json:
schema:
$ref: "#/components/schemas/ConflictException"
"482":
description: AccessDeniedException
content:
application/json:
schema:
$ref: "#/components/schemas/AccessDeniedException"
"483":
description: InternalServerException
content:
application/json:
schema:
$ref: "#/components/schemas/InternalServerException"
"484":
description: ServiceQuotaExceededException
content:
application/json:
schema:
$ref: "#/components/schemas/ServiceQuotaExceededException"
parameters: []
requestBody:
required: true
content:
application/json:
schema:
type: object
required:
- Name
properties:
Name:
description: The name of the site.
type: string
pattern: ^[\S ]+$
minLength: 1
maxLength: 1000
Description:
description: The description of the site.
type: string
pattern: ^[\S ]+$
minLength: 1
maxLength: 1001
Notes:
description: "Additional information that you provide about site access requirements, electrician scheduling, personal protective equipment, or regulation of equipment materials that could
affect your installation process. "
type: string
pattern: ^[\S \n]+$
minLength: 1
maxLength: 2000
Tags:
description: " The tags to apply to a site. "
type: object
minProperties: 1
maxProperties: 50
additionalProperties:
$ref: "#/components/schemas/TagValue"
OperatingAddress:
description: " Information about an address. "
type: object
properties:
ContactName:
allOf:
- $ref: "#/components/schemas/ContactName"
- description: The name of the contact.
ContactPhoneNumber:
allOf:
- $ref: "#/components/schemas/ContactPhoneNumber"
- description: The phone number of the contact.
AddressLine1:
allOf:
- $ref: "#/components/schemas/AddressLine1"
- description: The first line of the address.
AddressLine2:
allOf:
- $ref: "#/components/schemas/AddressLine2"
- description: The second line of the address.
AddressLine3:
allOf:
- $ref: "#/components/schemas/AddressLine3"
- description: The third line of the address.
City:
allOf:
- $ref: "#/components/schemas/City"
- description: The city for the address.
StateOrRegion:
allOf:
- $ref: "#/components/schemas/StateOrRegion"
- description: The state for the address.
DistrictOrCounty:
allOf:
- $ref: "#/components/schemas/DistrictOrCounty"
- description: The district or county for the address.
PostalCode:
allOf:
- $ref: "#/components/schemas/PostalCode"
- description: The postal code for the address.
CountryCode:
allOf:
- $ref: "#/components/schemas/CountryCode"
- description: The ISO-3166 two-letter country code for the address.
Municipality:
allOf:
- $ref: "#/components/schemas/Municipality"
- description: The municipality for the address.
ShippingAddress:
description: " Information about an address. "
type: object
properties:
ContactName:
allOf:
- $ref: "#/components/schemas/ContactName"
- description: The name of the contact.
ContactPhoneNumber:
allOf:
- $ref: "#/components/schemas/ContactPhoneNumber"
- description: The phone number of the contact.
AddressLine1:
allOf:
- $ref: "#/components/schemas/AddressLine1"
- description: The first line of the address.
AddressLine2:
allOf:
- $ref: "#/components/schemas/AddressLine2"
- description: The second line of the address.
AddressLine3:
allOf:
- $ref: "#/components/schemas/AddressLine3"
- description: The third line of the address.
City:
allOf:
- $ref: "#/components/schemas/City"
- description: The city for the address.
StateOrRegion:
allOf:
- $ref: "#/components/schemas/StateOrRegion"
- description: The state for the address.
DistrictOrCounty:
allOf:
- $ref: "#/components/schemas/DistrictOrCounty"
- description: The district or county for the address.
PostalCode:
allOf:
- $ref: "#/components/schemas/PostalCode"
- description: The postal code for the address.
CountryCode:
allOf:
- $ref: "#/components/schemas/CountryCode"
- description: The ISO-3166 two-letter country code for the address.
Municipality:
allOf:
- $ref: "#/components/schemas/Municipality"
- description: The municipality for the address.
RackPhysicalProperties:
description: ' Information about the physical and logistical details for racks at sites. For more information about hardware requirements for racks, see Network
readiness checklist in the Amazon Web Services Outposts User Guide. '
type: object
properties:
PowerDrawKva:
allOf:
- $ref: "#/components/schemas/PowerDrawKva"
- description: "The power draw available at the hardware placement position for the rack. "
PowerPhase:
allOf:
- $ref: "#/components/schemas/PowerPhase"
- description: The power option that you can provide for hardware.
PowerConnector:
allOf:
- $ref: "#/components/schemas/PowerConnector"
- description: "The power connector for the hardware. "
PowerFeedDrop:
allOf:
- $ref: "#/components/schemas/PowerFeedDrop"
- description: The position of the power feed.
UplinkGbps:
allOf:
- $ref: "#/components/schemas/UplinkGbps"
- description: "The uplink speed the rack supports for the connection to the Region. "
UplinkCount:
allOf:
- $ref: "#/components/schemas/UplinkCount"
- description: The number of uplinks each Outpost network device.
FiberOpticCableType:
allOf:
- $ref: "#/components/schemas/FiberOpticCableType"
- description: "The type of fiber used to attach the Outpost to the network. "
OpticalStandard:
allOf:
- $ref: "#/components/schemas/OpticalStandard"
- description: 'The type of optical standard used to attach the Outpost to the network. This field is dependent on uplink speed, fiber type, and distance to the upstream device. For
more information about networking requirements for racks, see Network
in the Amazon Web Services Outposts User Guide. '
MaximumSupportedWeightLbs:
allOf:
- $ref: "#/components/schemas/MaximumSupportedWeightLbs"
- description: "The maximum rack weight that this site can support. NO_LIMIT is over 2000 lbs (907 kg). "
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
summary: Amazon Outposts Create Site
parameters:
- $ref: "#/components/parameters/X-Amz-Content-Sha256"
- $ref: "#/components/parameters/X-Amz-Date"
- $ref: "#/components/parameters/X-Amz-Algorithm"
- $ref: "#/components/parameters/X-Amz-Credential"
- $ref: "#/components/parameters/X-Amz-Security-Token"
- $ref: "#/components/parameters/X-Amz-Signature"
- $ref: "#/components/parameters/X-Amz-SignedHeaders"
get:
operationId: ListSites
description: Lists the Outpost sites for your Amazon Web Services account. Use filters to return specific results.
Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/ListSitesOutput" examples: ListSites200Example: summary: Default ListSites 200 response x-microcks-default: true value: Sites: example-ref NextToken: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "482": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: NextToken in: query required: false description: "" schema: type: string pattern: ^(\d+)##(\S+)$ description: The pagination token. minLength: 1 maxLength: 2048 - name: MaxResults in: query required: false description: "" schema: type: integer description: The maximum page size. minimum: 1 maximum: 1000 - name: OperatingAddressCountryCodeFilter in: query required: false description: Filters the results by country code. schema: type: array items: $ref: "#/components/schemas/CountryCode" - name: OperatingAddressStateOrRegionFilter in: query required: false description: Filters the results by state or region. schema: type: array items: $ref: "#/components/schemas/StateOrRegion" - name: OperatingAddressCityFilter in: query required: false description: Filters the results by city. schema: type: array items: $ref: "#/components/schemas/City" x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts List Sites "/outposts/{OutpostId}": delete: operationId: DeleteOutpost description: Deletes the specified Outpost. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/DeleteOutpostOutput" "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: ConflictException content: application/json: schema: $ref: "#/components/schemas/ConflictException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "484": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: OutpostId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the Outpost. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:outpost/)?op-[a-f0-9]{17}$ minLength: 1 maxLength: 180 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Delete Outpost parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" get: operationId: GetOutpost description: Gets information about the specified Outpost. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/GetOutpostOutput" examples: GetOutpost200Example: summary: Default GetOutpost 200 response x-microcks-default: true value: Outpost: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "482": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "483": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: OutpostId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the Outpost. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:outpost/)?op-[a-f0-9]{17}$ minLength: 1 maxLength: 180 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Get Outpost patch: operationId: UpdateOutpost description: " Updates an Outpost. " responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/UpdateOutpostOutput" examples: UpdateOutpost200Example: summary: Default UpdateOutpost 200 response x-microcks-default: true value: Outpost: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: ConflictException content: application/json: schema: $ref: "#/components/schemas/ConflictException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "484": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: OutpostId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the Outpost. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:outpost/)?op-[a-f0-9]{17}$ minLength: 1 maxLength: 180 requestBody: required: true content: application/json: schema: type: object properties: Name: description: The name of the Outpost. type: string pattern: ^[\S ]+$ minLength: 1 maxLength: 255 Description: description: The description of the Outpost. type: string pattern: ^[\S ]*$ minLength: 0 maxLength: 1000 SupportedHardwareType: description: " The type of hardware for this Outpost. " type: string enum: - RACK - SERVER x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Update Outpost "/sites/{SiteId}": delete: operationId: DeleteSite description: Deletes the specified site. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/DeleteSiteOutput" "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: ConflictException content: application/json: schema: $ref: "#/components/schemas/ConflictException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "484": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: SiteId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the site. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:site/)?(os-[a-f0-9]{17})$ description: The ID of the site. minLength: 1 maxLength: 255 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Delete Site parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" get: operationId: GetSite description: Gets information about the specified Outpost site. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/GetSiteOutput" examples: GetSite200Example: summary: Default GetSite 200 response x-microcks-default: true value: Site: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "482": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "483": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: SiteId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the site. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:site/)?(os-[a-f0-9]{17})$ description: The ID of the site. minLength: 1 maxLength: 255 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Get Site patch: operationId: UpdateSite description: Updates the specified site. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/UpdateSiteOutput" examples: UpdateSite200Example: summary: Default UpdateSite 200 response x-microcks-default: true value: Site: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: ConflictException content: application/json: schema: $ref: "#/components/schemas/ConflictException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "484": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: SiteId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the site. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:site/)?(os-[a-f0-9]{17})$ description: The ID of the site. minLength: 1 maxLength: 255 requestBody: required: true content: application/json: schema: type: object properties: Name: description: The name of the site. type: string pattern: ^[\S ]+$ minLength: 1 maxLength: 1000 Description: description: The description of the site. type: string pattern: ^[\S ]+$ minLength: 1 maxLength: 1001 Notes: description: Notes about a site. type: string pattern: ^[\S \n]+$ minLength: 1 maxLength: 2000 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Update Site "/catalog/item/{CatalogItemId}": get: operationId: GetCatalogItem description: Gets information about the specified catalog item. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/GetCatalogItemOutput" examples: GetCatalogItem200Example: summary: Default GetCatalogItem 200 response x-microcks-default: true value: CatalogItem: example-string "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "482": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: CatalogItemId in: path required: true description: The ID of the catalog item. schema: type: string pattern: OR-[A-Z0-9]{7} minLength: 1 maxLength: 10 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Get Catalog Item parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" "/connections/{ConnectionId}": get: operationId: GetConnection description:Amazon Web Services uses this action to install Outpost servers.
Gets information about the specified connection.
Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For more information, see Amazon Web Services managed policies for Amazon Web Services Outposts and Logging Amazon Web Services Outposts API calls with Amazon Web Services CloudTrail in the Amazon Web Services Outposts User Guide.
responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/GetConnectionResponse" examples: GetConnection200Example: summary: Default GetConnection 200 response x-microcks-default: true value: ConnectionId: resource-abc123 ConnectionDetails: example-string "480": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "481": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: ConnectionId in: path required: true description: " The ID of the connection. " schema: type: string pattern: ^[a-zA-Z0-9+/=]{1,1024}$ minLength: 1 maxLength: 1024 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Get Connection parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" "/orders/{OrderId}": get: operationId: GetOrder description: Gets information about the specified order. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/GetOrderOutput" examples: GetOrder200Example: summary: Default GetOrder 200 response x-microcks-default: true value: Order: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "482": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: OrderId in: path required: true description: The ID of the order. schema: type: string pattern: oo-[a-f0-9]{17}$ minLength: 1 maxLength: 20 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Get Order parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" "/outposts/{OutpostId}/instanceTypes": get: operationId: GetOutpostInstanceTypes description: Gets the instance types for the specified Outpost. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/GetOutpostInstanceTypesOutput" examples: GetOutpostInstanceTypes200Example: summary: Default GetOutpostInstanceTypes 200 response x-microcks-default: true value: InstanceTypes: example-ref NextToken: example-ref OutpostId: resource-abc123 OutpostArn: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "482": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "483": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: OutpostId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the Outpost. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:outpost/)?op-[a-f0-9]{17}$ minLength: 1 maxLength: 180 - name: NextToken in: query required: false description: "" schema: type: string pattern: ^(\d+)##(\S+)$ description: The pagination token. minLength: 1 maxLength: 2048 - name: MaxResults in: query required: false description: "" schema: type: integer description: The maximum page size. minimum: 1 maximum: 1000 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Get Outpost Instance Types parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" "/sites/{SiteId}/address#AddressType": get: operationId: GetSiteAddress description: " Gets the site address of the specified site. " responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/GetSiteAddressOutput" examples: GetSiteAddress200Example: summary: Default GetSiteAddress 200 response x-microcks-default: true value: SiteId: example-ref AddressType: standard Address: example-string "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: SiteId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the site. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:site/)?(os-[a-f0-9]{17})$ description: The ID of the site. minLength: 1 maxLength: 255 - name: AddressType in: query required: true description: "The type of the address you request. " schema: type: string enum: - SHIPPING_ADDRESS - OPERATING_ADDRESS x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Get Site Address parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" "/outposts/{OutpostId}/assets": get: operationId: ListAssets description:Lists the hardware assets for the specified Outpost.
Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/ListAssetsOutput" examples: ListAssets200Example: summary: Default ListAssets 200 response x-microcks-default: true value: Assets: example-string NextToken: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: OutpostId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the Outpost. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:outpost/)?op-[a-f0-9]{17}$ minLength: 1 maxLength: 180 - name: HostIdFilter in: query required: false description: Filters the results by the host ID of a Dedicated Host. schema: type: array items: $ref: "#/components/schemas/HostId" - name: MaxResults in: query required: false description: "" schema: type: integer description: The maximum page size. minimum: 1 maximum: 1000 - name: NextToken in: query required: false description: "" schema: type: string pattern: ^(\d+)##(\S+)$ description: The pagination token. minLength: 1 maxLength: 2048 - name: StatusFilter in: query required: false description: Filters the results by state. schema: type: array items: $ref: "#/components/schemas/AssetState" minItems: 1 maxItems: 2 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts List Assets parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" /catalog/items: get: operationId: ListCatalogItems description:Lists the items in the catalog.
Use filters to return specific results. If you specify multiple filters, the results include only the resources that match all of the specified filters. For a filter where you can specify multiple values, the results include items that match any of the values that you specify for the filter.
responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/ListCatalogItemsOutput" examples: ListCatalogItems200Example: summary: Default ListCatalogItems 200 response x-microcks-default: true value: CatalogItems: example-string NextToken: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "482": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: NextToken in: query required: false description: "" schema: type: string pattern: ^(\d+)##(\S+)$ description: The pagination token. minLength: 1 maxLength: 2048 - name: MaxResults in: query required: false description: "" schema: type: integer description: The maximum page size. minimum: 1 maximum: 1000 - name: ItemClassFilter in: query required: false description: Filters the results by item class. schema: type: array items: $ref: "#/components/schemas/CatalogItemClass" - name: SupportedStorageFilter in: query required: false description: Filters the results by storage option. schema: type: array items: $ref: "#/components/schemas/SupportedStorageEnum" - name: EC2FamilyFilter in: query required: false description: Filters the results by EC2 family (for example, M5). schema: type: array items: $ref: "#/components/schemas/Family" x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts List Catalog Items parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" /list-orders: get: operationId: ListOrders description: Lists the Outpost orders for your Amazon Web Services account. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/ListOrdersOutput" examples: ListOrders200Example: summary: Default ListOrders 200 response x-microcks-default: true value: Orders: example-string NextToken: example-ref "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "482": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "483": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: OutpostIdentifierFilter in: query required: false description: " The ID or the Amazon Resource Name (ARN) of the Outpost. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:outpost/)?op-[a-f0-9]{17}$ minLength: 1 maxLength: 180 - name: NextToken in: query required: false description: "" schema: type: string pattern: ^(\d+)##(\S+)$ description: The pagination token. minLength: 1 maxLength: 2048 - name: MaxResults in: query required: false description: "" schema: type: integer description: The maximum page size. minimum: 1 maximum: 1000 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts List Orders parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" "/tags/{ResourceArn}": get: operationId: ListTagsForResource description: Lists the tags for the specified resource. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/ListTagsForResourceResponse" examples: ListTagsForResource200Example: summary: Default ListTagsForResource 200 response x-microcks-default: true value: Tags: example-string "480": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" "481": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" parameters: - name: ResourceArn in: path required: true description: The Amazon Resource Name (ARN) of the resource. schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:([a-z\d-]+)/)[a-z]{2,8}-[a-f0-9]{17}$ maxLength: 1011 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts List Tags for Resource parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" post: operationId: TagResource description: Adds tags to the specified resource. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/TagResourceResponse" "480": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" "481": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" parameters: - name: ResourceArn in: path required: true description: The Amazon Resource Name (ARN) of the resource. schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:([a-z\d-]+)/)[a-z]{2,8}-[a-f0-9]{17}$ maxLength: 1011 requestBody: required: true content: application/json: schema: type: object required: - Tags properties: Tags: description: The tags to add to the resource. type: object minProperties: 1 maxProperties: 50 additionalProperties: $ref: "#/components/schemas/TagValue" x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Tag Resource /connections: post: operationId: StartConnection description:Amazon Web Services uses this action to install Outpost servers.
Starts the connection required for Outpost server installation.
Use CloudTrail to monitor this action or Amazon Web Services managed policy for Amazon Web Services Outposts to secure it. For more information, see Amazon Web Services managed policies for Amazon Web Services Outposts and Logging Amazon Web Services Outposts API calls with Amazon Web Services CloudTrail in the Amazon Web Services Outposts User Guide.
responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/StartConnectionResponse" examples: StartConnection200Example: summary: Default StartConnection 200 response x-microcks-default: true value: ConnectionId: resource-abc123 UnderlayIpAddress: example-string "480": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "481": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: [] requestBody: required: true content: application/json: schema: type: object required: - DeviceSerialNumber - AssetId - ClientPublicKey - NetworkInterfaceDeviceIndex properties: DeviceSerialNumber: description: " The serial number of the dongle. " type: string pattern: ^(\w+)$ minLength: 1 maxLength: 100 AssetId: description: " The ID of the Outpost server. " type: string pattern: ^(\w+)$ minLength: 1 maxLength: 100 ClientPublicKey: description: " The public key of the client. " type: string pattern: ^[a-zA-Z0-9/+]{43}=$ minLength: 44 maxLength: 44 NetworkInterfaceDeviceIndex: description: " The device index of the network interface on the Outpost server. " type: integer minimum: 0 maximum: 1 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Start Connection parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" "/tags/{ResourceArn}#tagKeys": delete: operationId: UntagResource description: Removes tags from the specified resource. responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/UntagResourceResponse" "480": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" "481": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" parameters: - name: ResourceArn in: path required: true description: The Amazon Resource Name (ARN) of the resource. schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:([a-z\d-]+)/)[a-z]{2,8}-[a-f0-9]{17}$ maxLength: 1011 - name: tagKeys in: query required: true description: The tag keys. schema: type: array items: $ref: "#/components/schemas/TagKey" minItems: 1 maxItems: 50 x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Untag Resource parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" "/sites/{SiteId}/address": put: operationId: UpdateSiteAddress description:Updates the address of the specified site.
You can't update a site address if there is an order in progress. You must wait for the order to complete or cancel the order.
You can update the operating address before you place an order at the site, or after all Outposts that belong to the site have been deactivated.
responses: "200": description: Success content: application/json: schema: $ref: "#/components/schemas/UpdateSiteAddressOutput" examples: UpdateSiteAddress200Example: summary: Default UpdateSiteAddress 200 response x-microcks-default: true value: AddressType: standard Address: example-string "480": description: ValidationException content: application/json: schema: $ref: "#/components/schemas/ValidationException" "481": description: AccessDeniedException content: application/json: schema: $ref: "#/components/schemas/AccessDeniedException" "482": description: NotFoundException content: application/json: schema: $ref: "#/components/schemas/NotFoundException" "483": description: ConflictException content: application/json: schema: $ref: "#/components/schemas/ConflictException" "484": description: InternalServerException content: application/json: schema: $ref: "#/components/schemas/InternalServerException" parameters: - name: SiteId in: path required: true description: " The ID or the Amazon Resource Name (ARN) of the site. " schema: type: string pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:site/)?(os-[a-f0-9]{17})$ description: The ID of the site. minLength: 1 maxLength: 255 requestBody: required: true content: application/json: schema: type: object required: - AddressType - Address properties: AddressType: description: " The type of the address. " type: string enum: - SHIPPING_ADDRESS - OPERATING_ADDRESS Address: description: " Information about an address. " type: object properties: ContactName: allOf: - $ref: "#/components/schemas/ContactName" - description: The name of the contact. ContactPhoneNumber: allOf: - $ref: "#/components/schemas/ContactPhoneNumber" - description: The phone number of the contact. AddressLine1: allOf: - $ref: "#/components/schemas/AddressLine1" - description: The first line of the address. AddressLine2: allOf: - $ref: "#/components/schemas/AddressLine2" - description: The second line of the address. AddressLine3: allOf: - $ref: "#/components/schemas/AddressLine3" - description: The third line of the address. City: allOf: - $ref: "#/components/schemas/City" - description: The city for the address. StateOrRegion: allOf: - $ref: "#/components/schemas/StateOrRegion" - description: The state for the address. DistrictOrCounty: allOf: - $ref: "#/components/schemas/DistrictOrCounty" - description: The district or county for the address. PostalCode: allOf: - $ref: "#/components/schemas/PostalCode" - description: The postal code for the address. CountryCode: allOf: - $ref: "#/components/schemas/CountryCode" - description: The ISO-3166 two-letter country code for the address. Municipality: allOf: - $ref: "#/components/schemas/Municipality" - description: The municipality for the address. x-microcks-operation: delay: 0 dispatcher: FALLBACK summary: Amazon Outposts Update Site Address parameters: - $ref: "#/components/parameters/X-Amz-Content-Sha256" - $ref: "#/components/parameters/X-Amz-Date" - $ref: "#/components/parameters/X-Amz-Algorithm" - $ref: "#/components/parameters/X-Amz-Credential" - $ref: "#/components/parameters/X-Amz-Security-Token" - $ref: "#/components/parameters/X-Amz-Signature" - $ref: "#/components/parameters/X-Amz-SignedHeaders" "/sites/{SiteId}/rackPhysicalProperties": patch: operationId: UpdateSiteRackPhysicalProperties description:Update the physical and logistical details for a rack at a site. For more information about hardware requirements for racks, see Network readiness checklist in the Amazon Web Services Outposts User Guide.
To
update a rack at a site with an order of IN_PROGRESS, you must wait for the order to complete or cancel the order.
The power option that you can provide for hardware.
Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz
Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz
The power connector that Amazon Web Services should plan to provide for connections to the hardware. Note the correlation between PowerPhase and
PowerConnector.
Single-phase AC feed
L6-30P – (common in US); 30A; single phase
IEC309 (blue) – P+N+E, 6hr; 32 A; single phase
Three-phase AC feed
AH530P7W (red) – 3P+N+E, 7hr; 30A; three phase
AH532P6W (red) – 3P+N+E, 6hr; 32A; three phase
Racks come with two Outpost network devices. Depending on the supported uplink speed at the site, the Outpost network devices provide a variable number of uplinks. Specify
the number of uplinks for each Outpost network device that you intend to use to connect the rack to your network. Note the correlation between UplinkGbps and UplinkCount.
1Gbps - Uplinks available: 1, 2, 4, 6, 8
10Gbps - Uplinks available: 1, 2, 4, 8, 12, 16
40 and 100 Gbps- Uplinks available: 1, 2, 4
The type of optical standard that you will use to attach the Outpost to your network. This field is dependent on uplink speed, fiber type, and distance to the upstream device. For more information about networking requirements for racks, see Network in the Amazon Web Services Outposts User Guide.
OPTIC_10GBASE_SR: 10GBASE-SR
OPTIC_10GBASE_IR: 10GBASE-IR
OPTIC_10GBASE_LR: 10GBASE-LR
OPTIC_40GBASE_SR: 40GBASE-SR
OPTIC_40GBASE_ESR: 40GBASE-ESR
OPTIC_40GBASE_IR4_LR4L: 40GBASE-IR (LR4L)
OPTIC_40GBASE_LR4: 40GBASE-LR4
OPTIC_100GBASE_SR4: 100GBASE-SR4
OPTIC_100GBASE_CWDM4: 100GBASE-CWDM4
OPTIC_100GBASE_LR4: 100GBASE-LR4
OPTIC_100G_PSM4_MSA:
100G PSM4 MSA
OPTIC_1000BASE_LX: 1000Base-LX
OPTIC_1000BASE_SX : 1000Base-SX
NO_LIMIT is over 2000lbs. "
type: string
enum:
- NO_LIMIT
- MAX_1400_LBS
- MAX_1600_LBS
- MAX_1800_LBS
- MAX_2000_LBS
x-microcks-operation:
delay: 0
dispatcher: FALLBACK
summary: Amazon Outposts Update Site Rack Physical Properties
parameters:
- $ref: "#/components/parameters/X-Amz-Content-Sha256"
- $ref: "#/components/parameters/X-Amz-Date"
- $ref: "#/components/parameters/X-Amz-Algorithm"
- $ref: "#/components/parameters/X-Amz-Credential"
- $ref: "#/components/parameters/X-Amz-Security-Token"
- $ref: "#/components/parameters/X-Amz-Signature"
- $ref: "#/components/parameters/X-Amz-SignedHeaders"
components:
parameters:
X-Amz-Content-Sha256:
name: X-Amz-Content-Sha256
in: header
schema:
type: string
required: false
X-Amz-Date:
name: X-Amz-Date
in: header
schema:
type: string
required: false
X-Amz-Algorithm:
name: X-Amz-Algorithm
in: header
schema:
type: string
required: false
X-Amz-Credential:
name: X-Amz-Credential
in: header
schema:
type: string
required: false
X-Amz-Security-Token:
name: X-Amz-Security-Token
in: header
schema:
type: string
required: false
X-Amz-Signature:
name: X-Amz-Signature
in: header
schema:
type: string
required: false
X-Amz-SignedHeaders:
name: X-Amz-SignedHeaders
in: header
schema:
type: string
required: false
securitySchemes:
hmac:
type: apiKey
name: Authorization
in: header
description: Amazon Signature authorization v4
x-amazon-apigateway-authtype: awsSigv4
schemas:
CancelOrderOutput:
type: object
properties: {}
ValidationException: {}
ConflictException: {}
AccessDeniedException: {}
NotFoundException: {}
InternalServerException: {}
CreateOrderOutput:
type: object
properties:
Order:
allOf:
- $ref: "#/components/schemas/Order"
- description: Information about this order.
LineItemRequest:
type: object
properties:
CatalogItemId:
allOf:
- $ref: "#/components/schemas/SkuCode"
- description: The ID of the catalog item.
Quantity:
allOf:
- $ref: "#/components/schemas/LineItemQuantity"
- description: The quantity of a line item request.
description: Information about a line item request.
ServiceQuotaExceededException: {}
CreateOutpostOutput:
type: object
properties:
Outpost:
$ref: "#/components/schemas/Outpost"
TagValue:
type: string
pattern: ^[\S \n]+$
maxLength: 256
CreateSiteOutput:
type: object
properties:
Site:
$ref: "#/components/schemas/Site"
ContactName:
type: string
pattern: ^\S[\S ]*$
minLength: 1
maxLength: 255
ContactPhoneNumber:
type: string
pattern: ^[\S ]+$
minLength: 1
maxLength: 20
AddressLine1:
type: string
pattern: ^\S[\S ]*$
minLength: 1
maxLength: 180
AddressLine2:
type: string
pattern: ^\S[\S ]*$
minLength: 0
maxLength: 60
AddressLine3:
type: string
pattern: ^\S[\S ]*$
minLength: 0
maxLength: 60
City:
type: string
pattern: ^\S[\S ]*$
minLength: 1
maxLength: 50
StateOrRegion:
type: string
pattern: ^\S[\S ]*$
minLength: 1
maxLength: 50
DistrictOrCounty:
type: string
pattern: ^\S[\S ]*
minLength: 1
maxLength: 60
PostalCode:
type: string
pattern: ^[a-zA-Z0-9 -]+$
minLength: 1
maxLength: 20
CountryCode:
type: string
pattern: ^[A-Z]{2}$
minLength: 2
maxLength: 2
Municipality:
type: string
pattern: ^\S[\S ]*$
minLength: 0
maxLength: 180
PowerDrawKva:
type: string
enum:
- POWER_5_KVA
- POWER_10_KVA
- POWER_15_KVA
- POWER_30_KVA
PowerPhase:
type: string
enum:
- SINGLE_PHASE
- THREE_PHASE
PowerConnector:
type: string
enum:
- L6_30P
- IEC309
- AH530P7W
- AH532P6W
PowerFeedDrop:
type: string
enum:
- ABOVE_RACK
- BELOW_RACK
UplinkGbps:
type: string
enum:
- UPLINK_1G
- UPLINK_10G
- UPLINK_40G
- UPLINK_100G
UplinkCount:
type: string
enum:
- UPLINK_COUNT_1
- UPLINK_COUNT_2
- UPLINK_COUNT_3
- UPLINK_COUNT_4
- UPLINK_COUNT_5
- UPLINK_COUNT_6
- UPLINK_COUNT_7
- UPLINK_COUNT_8
- UPLINK_COUNT_12
- UPLINK_COUNT_16
FiberOpticCableType:
type: string
enum:
- SINGLE_MODE
- MULTI_MODE
OpticalStandard:
type: string
enum:
- OPTIC_10GBASE_SR
- OPTIC_10GBASE_IR
- OPTIC_10GBASE_LR
- OPTIC_40GBASE_SR
- OPTIC_40GBASE_ESR
- OPTIC_40GBASE_IR4_LR4L
- OPTIC_40GBASE_LR4
- OPTIC_100GBASE_SR4
- OPTIC_100GBASE_CWDM4
- OPTIC_100GBASE_LR4
- OPTIC_100G_PSM4_MSA
- OPTIC_1000BASE_LX
- OPTIC_1000BASE_SX
MaximumSupportedWeightLbs:
type: string
enum:
- NO_LIMIT
- MAX_1400_LBS
- MAX_1600_LBS
- MAX_1800_LBS
- MAX_2000_LBS
DeleteOutpostOutput:
type: object
properties: {}
DeleteSiteOutput:
type: object
properties: {}
GetCatalogItemOutput:
type: object
properties:
CatalogItem:
allOf:
- $ref: "#/components/schemas/CatalogItem"
- description: Information about this catalog item.
GetConnectionResponse:
type: object
properties:
ConnectionId:
allOf:
- $ref: "#/components/schemas/ConnectionId"
- description: " The ID of the connection. "
ConnectionDetails:
allOf:
- $ref: "#/components/schemas/ConnectionDetails"
- description: " Information about the connection. "
GetOrderOutput:
type: object
properties:
Order:
$ref: "#/components/schemas/Order"
GetOutpostOutput:
type: object
properties:
Outpost:
$ref: "#/components/schemas/Outpost"
GetOutpostInstanceTypesOutput:
type: object
properties:
InstanceTypes:
$ref: "#/components/schemas/InstanceTypeListDefinition"
NextToken:
$ref: "#/components/schemas/Token"
OutpostId:
allOf:
- $ref: "#/components/schemas/OutpostId"
- description: " The ID of the Outpost. "
OutpostArn:
$ref: "#/components/schemas/OutpostArn"
GetSiteOutput:
type: object
properties:
Site:
$ref: "#/components/schemas/Site"
GetSiteAddressOutput:
type: object
properties:
SiteId:
$ref: "#/components/schemas/SiteId"
AddressType:
allOf:
- $ref: "#/components/schemas/AddressType"
- description: "The type of the address you receive. "
Address:
allOf:
- $ref: "#/components/schemas/Address"
- description: " Information about the address. "
ListAssetsOutput:
type: object
properties:
Assets:
allOf:
- $ref: "#/components/schemas/AssetListDefinition"
- description: Information about the hardware assets.
NextToken:
$ref: "#/components/schemas/Token"
HostId:
type: string
pattern: ^[A-Za-z0-9-]*$
minLength: 1
maxLength: 50
AssetState:
type: string
enum:
- ACTIVE
- RETIRING
ListCatalogItemsOutput:
type: object
properties:
CatalogItems:
allOf:
- $ref: "#/components/schemas/CatalogItemListDefinition"
- description: Information about the catalog items.
NextToken:
$ref: "#/components/schemas/Token"
CatalogItemClass:
type: string
enum:
- RACK
- SERVER
SupportedStorageEnum:
type: string
enum:
- EBS
- S3
Family:
type: string
pattern: "[a-z0-9]+"
minLength: 1
maxLength: 10
ListOrdersOutput:
type: object
properties:
Orders:
allOf:
- $ref: "#/components/schemas/OrderSummaryListDefinition"
- description: " Information about the orders. "
NextToken:
$ref: "#/components/schemas/Token"
ListOutpostsOutput:
type: object
properties:
Outposts:
$ref: "#/components/schemas/outpostListDefinition"
NextToken:
$ref: "#/components/schemas/Token"
LifeCycleStatus:
type: string
pattern: ^[ A-Za-z]+$
description: The life cycle status.
minLength: 1
maxLength: 20
AvailabilityZone:
type: string
pattern: ^([a-zA-Z]+-){1,3}([a-zA-Z]+)?(\d+[a-zA-Z]?)?$
description: The Availability Zone.
minLength: 1
maxLength: 1000
AvailabilityZoneId:
type: string
pattern: ^[a-zA-Z]+\d-[a-zA-Z]+\d$
description: The ID of the Availability Zone.
minLength: 1
maxLength: 255
ListSitesOutput:
type: object
properties:
Sites:
$ref: "#/components/schemas/siteListDefinition"
NextToken:
$ref: "#/components/schemas/Token"
ListTagsForResourceResponse:
type: object
properties:
Tags:
allOf:
- $ref: "#/components/schemas/TagMap"
- description: The resource tags.
StartConnectionResponse:
type: object
properties:
ConnectionId:
allOf:
- $ref: "#/components/schemas/ConnectionId"
- description: " The ID of the connection. "
UnderlayIpAddress:
allOf:
- $ref: "#/components/schemas/UnderlayIpAddress"
- description: " The underlay IP address. "
TagResourceResponse:
type: object
properties: {}
UntagResourceResponse:
type: object
properties: {}
TagKey:
type: string
pattern: ^(?!aws:)[a-zA-Z+-=._:/]+$
minLength: 1
maxLength: 128
UpdateOutpostOutput:
type: object
properties:
Outpost:
$ref: "#/components/schemas/Outpost"
UpdateSiteOutput:
type: object
properties:
Site:
$ref: "#/components/schemas/Site"
UpdateSiteAddressOutput:
type: object
properties:
AddressType:
allOf:
- $ref: "#/components/schemas/AddressType"
- description: " The type of the address. "
Address:
allOf:
- $ref: "#/components/schemas/Address"
- description: " Information about an address. "
UpdateSiteRackPhysicalPropertiesOutput:
type: object
properties:
Site:
$ref: "#/components/schemas/Site"
AccountId:
type: string
pattern: \d{12}
description: The ID of the Amazon Web Services account.
minLength: 12
maxLength: 12
Address:
type: object
required:
- AddressLine1
- City
- StateOrRegion
- PostalCode
- CountryCode
properties:
ContactName:
allOf:
- $ref: "#/components/schemas/ContactName"
- description: The name of the contact.
ContactPhoneNumber:
allOf:
- $ref: "#/components/schemas/ContactPhoneNumber"
- description: The phone number of the contact.
AddressLine1:
allOf:
- $ref: "#/components/schemas/AddressLine1"
- description: The first line of the address.
AddressLine2:
allOf:
- $ref: "#/components/schemas/AddressLine2"
- description: The second line of the address.
AddressLine3:
allOf:
- $ref: "#/components/schemas/AddressLine3"
- description: The third line of the address.
City:
allOf:
- $ref: "#/components/schemas/City"
- description: The city for the address.
StateOrRegion:
allOf:
- $ref: "#/components/schemas/StateOrRegion"
- description: The state for the address.
DistrictOrCounty:
allOf:
- $ref: "#/components/schemas/DistrictOrCounty"
- description: The district or county for the address.
PostalCode:
allOf:
- $ref: "#/components/schemas/PostalCode"
- description: The postal code for the address.
CountryCode:
allOf:
- $ref: "#/components/schemas/CountryCode"
- description: The ISO-3166 two-letter country code for the address.
Municipality:
allOf:
- $ref: "#/components/schemas/Municipality"
- description: The municipality for the address.
description: " Information about an address. "
AddressType:
type: string
enum:
- SHIPPING_ADDRESS
- OPERATING_ADDRESS
Arn:
type: string
pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:([a-z\d-]+)/)[a-z]{2,8}-[a-f0-9]{17}$
maxLength: 1011
AssetId:
type: string
pattern: ^(\w+)$
minLength: 1
maxLength: 100
RackId:
type: string
pattern: ^[\S \n]+$
minLength: 5
maxLength: 20
AssetType:
type: string
enum:
- COMPUTE
ComputeAttributes:
type: object
properties:
HostId:
allOf:
- $ref: "#/components/schemas/HostId"
- description: " The host ID of the Dedicated Host on the asset. "
State:
allOf:
- $ref: "#/components/schemas/ComputeAssetState"
- description: The state.
ACTIVE - The asset is available and can provide capacity for new compute resources.
ISOLATED - The asset is undergoing maintenance and can't provide capacity for new compute resources. Existing compute resources on the asset are not affected.
RETIRING - The underlying hardware for the asset is degraded. Capacity for new compute resources is reduced. Amazon Web Services sends notifications for resources that must be stopped before the asset can be replaced.
The status of the order.
PREPARING - Order is received and being prepared.
IN_PROGRESS - Order is either being
built, shipped, or installed. To get more details, see the line item status.
COMPLETED - Order is complete.
CANCELLED - Order
is cancelled.
ERROR - Customer should contact support.
The following status are deprecated: RECEIVED, PENDING,
PROCESSING, INSTALLING, and FULFILLED.
NO_LIMIT is over 2000 lbs (907 kg). "
description: ' Information about the physical and logistical details for racks at sites. For more information about hardware requirements for racks, see Network
readiness checklist in the Amazon Web Services Outposts User Guide. '
CreateSiteInput:
type: object
required:
- Name
title: CreateSiteInput
properties:
Name:
$ref: "#/components/schemas/SiteName"
Description:
$ref: "#/components/schemas/SiteDescription"
Notes:
allOf:
- $ref: "#/components/schemas/SiteNotes"
- description: "Additional information that you provide about site access requirements, electrician scheduling, personal protective equipment, or regulation of equipment materials that could affect
your installation process. "
Tags:
allOf:
- $ref: "#/components/schemas/TagMap"
- description: " The tags to apply to a site. "
OperatingAddress:
allOf:
- $ref: "#/components/schemas/Address"
- description: " The location to install and power on the hardware. This address might be different from the shipping address. "
ShippingAddress:
allOf:
- $ref: "#/components/schemas/Address"
- description: " The location to ship the hardware. This address might be different from the operating address. "
RackPhysicalProperties:
allOf:
- $ref: "#/components/schemas/RackPhysicalProperties"
- description: ' Information about the physical and logistical details for the rack at this site. For more information about hardware requirements for racks, see Network
readiness checklist in the Amazon Web Services Outposts User Guide. '
Site:
type: object
properties:
SiteId:
$ref: "#/components/schemas/SiteId"
AccountId:
$ref: "#/components/schemas/AccountId"
Name:
$ref: "#/components/schemas/SiteName"
Description:
$ref: "#/components/schemas/SiteDescription"
Tags:
allOf:
- $ref: "#/components/schemas/TagMap"
- description: The site tags.
SiteArn:
$ref: "#/components/schemas/SiteArn"
Notes:
allOf:
- $ref: "#/components/schemas/SiteNotes"
- description: " Notes about a site. "
OperatingAddressCountryCode:
allOf:
- $ref: "#/components/schemas/CountryCode"
- description: " The ISO-3166 two-letter country code where the hardware is installed and powered on. "
OperatingAddressStateOrRegion:
allOf:
- $ref: "#/components/schemas/StateOrRegion"
- description: " State or region where the hardware is installed and powered on. "
OperatingAddressCity:
allOf:
- $ref: "#/components/schemas/City"
- description: " City where the hardware is installed and powered on. "
RackPhysicalProperties:
allOf:
- $ref: "#/components/schemas/RackPhysicalProperties"
- description: " Information about the physical and logistical details for a rack at the site. "
description: Information about a site.
OutpostId:
type: string
pattern: ^(arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:outpost/)?op-[a-f0-9]{17}$
minLength: 1
maxLength: 180
DeleteOutpostInput:
type: object
title: DeleteOutpostInput
properties: {}
DeleteSiteInput:
type: object
title: DeleteSiteInput
properties: {}
DeviceSerialNumber:
type: string
pattern: ^(\w+)$
minLength: 1
maxLength: 100
MaxSize:
type: string
Quantity:
type: string
EC2Capacity:
type: object
properties:
Family:
allOf:
- $ref: "#/components/schemas/Family"
- description: " The family of the EC2 capacity. "
MaxSize:
allOf:
- $ref: "#/components/schemas/MaxSize"
- description: " The maximum size of the EC2 capacity. "
Quantity:
allOf:
- $ref: "#/components/schemas/Quantity"
- description: " The quantity of the EC2 capacity. "
description: " Information about EC2 capacity. "
EC2FamilyList:
type: array
items:
$ref: "#/components/schemas/Family"
GetCatalogItemInput:
type: object
title: GetCatalogItemInput
properties: {}
GetConnectionRequest:
type: object
title: GetConnectionRequest
properties: {}
GetOrderInput:
type: object
title: GetOrderInput
properties: {}
GetOutpostInput:
type: object
title: GetOutpostInput
properties: {}
Token:
type: string
pattern: ^(\d+)##(\S+)$
description: The pagination token.
minLength: 1
maxLength: 2048
MaxResults1000:
type: integer
description: The maximum page size.
minimum: 1
maximum: 1000
GetOutpostInstanceTypesInput:
type: object
title: GetOutpostInstanceTypesInput
properties: {}
InstanceTypeListDefinition:
type: array
description: Information about the instance types.
items:
$ref: "#/components/schemas/InstanceTypeItem"
OutpostArn:
type: string
pattern: ^arn:aws([a-z-]+)?:outposts:[a-z\d-]+:\d{12}:outpost/op-[a-f0-9]{17}$
description: The Amazon Resource Name (ARN) of the Outpost.
minLength: 1
maxLength: 255
GetSiteAddressInput:
type: object
title: GetSiteAddressInput
properties: {}
GetSiteInput:
type: object
title: GetSiteInput
properties: {}
HostIdList:
type: array
items:
$ref: "#/components/schemas/HostId"
ISO8601Timestamp:
type: string
format: date-time
InstanceType:
type: string
description: The instance type.
InstanceTypeItem:
type: object
properties:
InstanceType:
$ref: "#/components/schemas/InstanceType"
description: Information about an instance type.
LifeCycleStatusList:
type: array
items:
$ref: "#/components/schemas/LifeCycleStatus"
minItems: 1
maxItems: 5
LineItemId:
type: string
pattern: ooi-[a-f0-9]{17}
LineItemQuantity:
type: integer
minimum: 1
maximum: 20
LineItemStatus:
type: string
enum:
- PREPARING
- BUILDING
- SHIPPED
- DELIVERED
- INSTALLING
- INSTALLED
- ERROR
- CANCELLED
- REPLACED
ShipmentInformation:
type: object
properties:
ShipmentTrackingNumber:
allOf:
- $ref: "#/components/schemas/TrackingId"
- description: " The tracking number of the shipment. "
ShipmentCarrier:
allOf:
- $ref: "#/components/schemas/ShipmentCarrier"
- description: " The carrier of the shipment. "
description: " Information about a line item shipment. "
LineItemAssetInformationList:
type: array
items:
$ref: "#/components/schemas/LineItemAssetInformation"
LineItem:
type: object
properties:
CatalogItemId:
allOf:
- $ref: "#/components/schemas/SkuCode"
- description: " The ID of the catalog item. "
LineItemId:
allOf:
- $ref: "#/components/schemas/LineItemId"
- description: The ID of the line item.
Quantity:
allOf:
- $ref: "#/components/schemas/LineItemQuantity"
- description: The quantity of the line item.
Status:
allOf:
- $ref: "#/components/schemas/LineItemStatus"
- description: The status of the line item.
ShipmentInformation:
allOf:
- $ref: "#/components/schemas/ShipmentInformation"
- description: " Information about a line item shipment. "
AssetInformationList:
allOf:
- $ref: "#/components/schemas/LineItemAssetInformationList"
- description: " Information about assets. "
PreviousLineItemId:
allOf:
- $ref: "#/components/schemas/LineItemId"
- description: The ID of the previous line item.
PreviousOrderId:
allOf:
- $ref: "#/components/schemas/OrderId"
- description: The ID of the previous order.
description: Information about a line item.
MacAddressList:
type: array
items:
$ref: "#/components/schemas/MacAddress"
LineItemAssetInformation:
type: object
properties:
AssetId:
allOf:
- $ref: "#/components/schemas/AssetId"
- description: " The ID of the asset. "
MacAddressList:
allOf:
- $ref: "#/components/schemas/MacAddressList"
- description: " The MAC addresses of the asset. "
description: " Information about a line item asset. "
LineItemListDefinition:
type: array
items:
$ref: "#/components/schemas/LineItem"
LineItemStatusCounts:
type: object
additionalProperties:
$ref: "#/components/schemas/LineItemQuantity"
StatusList:
type: array
items:
$ref: "#/components/schemas/AssetState"
minItems: 1
maxItems: 2
ListAssetsInput:
type: object
title: ListAssetsInput
properties: {}
ListCatalogItemsInput:
type: object
title: ListCatalogItemsInput
properties: {}
ListOrdersInput:
type: object
title: ListOrdersInput
properties: {}
OrderSummaryListDefinition:
type: array
items:
$ref: "#/components/schemas/OrderSummary"
ListOutpostsInput:
type: object
title: ListOutpostsInput
properties: {}
outpostListDefinition:
type: array
description: Information about the Outposts.
items:
$ref: "#/components/schemas/Outpost"
StateOrRegionList:
type: array
items:
$ref: "#/components/schemas/StateOrRegion"
ListSitesInput:
type: object
title: ListSitesInput
properties: {}
siteListDefinition:
type: array
description: Information about the sites.
items:
$ref: "#/components/schemas/Site"
ListTagsForResourceRequest:
type: object
title: ListTagsForResourceRequest
properties: {}
MacAddress:
type: string
pattern: ^([0-9A-Fa-f]{2}[:-]){5}([0-9A-Fa-f]{2})$
minLength: 17
maxLength: 17
NetworkInterfaceDeviceIndex:
type: integer
minimum: 0
maximum: 1
OutpostIdOnly:
type: string
pattern: ^op-[a-f0-9]{17}$
minLength: 1
maxLength: 20
OrderStatus:
type: string
enum:
- RECEIVED
- PENDING
- PROCESSING
- INSTALLING
- FULFILLED
- CANCELLED
- PREPARING
- IN_PROGRESS
- COMPLETED
- ERROR
OrderType:
type: string
enum:
- OUTPOST
- REPLACEMENT
OrderSummary:
type: object
properties:
OutpostId:
allOf:
- $ref: "#/components/schemas/OutpostIdOnly"
- description: " The ID of the Outpost. "
OrderId:
allOf:
- $ref: "#/components/schemas/OrderId"
- description: " The ID of the order. "
OrderType:
allOf:
- $ref: "#/components/schemas/OrderType"
- description: The type of order.
Status:
allOf:
- $ref: "#/components/schemas/OrderStatus"
- description: "The status of the order.
PREPARING - Order is received and is being prepared.
IN_PROGRESS - Order is either being
built, shipped, or installed. For more information, see the LineItem status.
COMPLETED - Order is complete.
CANCELLED
- Order is cancelled.
ERROR - Customer should contact support.
The following statuses are deprecated: RECEIVED, PENDING,
PROCESSING, INSTALLING, and FULFILLED.
The power option that you can provide for hardware.
Single-phase AC feed: 200 V to 277 V, 50 Hz or 60 Hz
Three-phase AC feed: 346 V to 480 V, 50 Hz or 60 Hz
The power connector that Amazon Web Services should plan to provide for connections to the hardware. Note the correlation between PowerPhase and
PowerConnector.
Single-phase AC feed
L6-30P – (common in US); 30A; single phase
IEC309 (blue) – P+N+E, 6hr; 32 A; single phase
Three-phase AC feed
AH530P7W (red) – 3P+N+E, 7hr; 30A; three phase
AH532P6W (red) – 3P+N+E, 6hr; 32A; three phase
Racks come with two Outpost network devices. Depending on the supported uplink speed at the site, the Outpost network devices provide a variable number of uplinks. Specify the
number of uplinks for each Outpost network device that you intend to use to connect the rack to your network. Note the correlation between UplinkGbps and UplinkCount.
1Gbps - Uplinks available: 1, 2, 4, 6, 8
10Gbps - Uplinks available: 1, 2, 4, 8, 12, 16
40 and 100 Gbps- Uplinks available: 1, 2, 4
The type of optical standard that you will use to attach the Outpost to your network. This field is dependent on uplink speed, fiber type, and distance to the upstream device. For more information about networking requirements for racks, see Network in the Amazon Web Services Outposts User Guide.
OPTIC_10GBASE_SR: 10GBASE-SR
OPTIC_10GBASE_IR: 10GBASE-IR
OPTIC_10GBASE_LR: 10GBASE-LR
OPTIC_40GBASE_SR: 40GBASE-SR
OPTIC_40GBASE_ESR: 40GBASE-ESR
OPTIC_40GBASE_IR4_LR4L:
40GBASE-IR (LR4L)
OPTIC_40GBASE_LR4: 40GBASE-LR4
OPTIC_100GBASE_SR4: 100GBASE-SR4
OPTIC_100GBASE_CWDM4:
100GBASE-CWDM4
OPTIC_100GBASE_LR4: 100GBASE-LR4
OPTIC_100G_PSM4_MSA: 100G PSM4 MSA
OPTIC_1000BASE_LX:
1000Base-LX
OPTIC_1000BASE_SX : 1000Base-SX
NO_LIMIT is over 2000lbs. "
security:
- hmac: []