Skip to content

Commit

Permalink
Merge branch 'version-3' into cbor
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp authored Jun 11, 2024
2 parents 0ab6400 + e2d0811 commit 7cbf8c0
Show file tree
Hide file tree
Showing 2,434 changed files with 48,024 additions and 11,507 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,7 @@ RubyGems.org page under "LINKS" section.
| Amazon CloudSearch Domain | Aws::CloudSearchDomain | aws-sdk-cloudsearchdomain | 2013-01-01 |
| Amazon CloudWatch | Aws::CloudWatch | aws-sdk-cloudwatch | 2010-08-01 |
| Amazon CloudWatch Application Insights | Aws::ApplicationInsights | aws-sdk-applicationinsights | 2018-11-25 |
| Amazon CloudWatch Application Signals | Aws::ApplicationSignals | aws-sdk-applicationsignals | 2024-04-15 |
| Amazon CloudWatch Events | Aws::CloudWatchEvents | aws-sdk-cloudwatchevents | 2015-10-07 |
| Amazon CloudWatch Evidently | Aws::CloudWatchEvidently | aws-sdk-cloudwatchevidently | 2021-02-01 |
| Amazon CloudWatch Internet Monitor | Aws::InternetMonitor | aws-sdk-internetmonitor | 2021-06-03 |
Expand Down Expand Up @@ -705,6 +706,7 @@ RubyGems.org page under "LINKS" section.
| Schemas | Aws::Schemas | aws-sdk-schemas | 2019-12-02 |
| Service Quotas | Aws::ServiceQuotas | aws-sdk-servicequotas | 2019-06-24 |
| Synthetics | Aws::Synthetics | aws-sdk-synthetics | 2017-10-11 |
| Tax Settings | Aws::TaxSettings | aws-sdk-taxsettings | 2018-05-10 |
| Timestream InfluxDB | Aws::TimestreamInfluxDB | aws-sdk-timestreaminfluxdb | 2023-01-27 |
| TrustedAdvisor Public API | Aws::TrustedAdvisor | aws-sdk-trustedadvisor | 2022-09-15 |

Expand Down
120 changes: 120 additions & 0 deletions apis/account/2021-02-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,24 @@
"uid":"account-2021-02-01"
},
"operations":{
"AcceptPrimaryEmailUpdate":{
"name":"AcceptPrimaryEmailUpdate",
"http":{
"method":"POST",
"requestUri":"/acceptPrimaryEmailUpdate",
"responseCode":200
},
"input":{"shape":"AcceptPrimaryEmailUpdateRequest"},
"output":{"shape":"AcceptPrimaryEmailUpdateResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"ConflictException"},
{"shape":"AccessDeniedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalServerException"}
]
},
"DeleteAlternateContact":{
"name":"DeleteAlternateContact",
"http":{
Expand Down Expand Up @@ -95,6 +113,23 @@
{"shape":"InternalServerException"}
]
},
"GetPrimaryEmail":{
"name":"GetPrimaryEmail",
"http":{
"method":"POST",
"requestUri":"/getPrimaryEmail",
"responseCode":200
},
"input":{"shape":"GetPrimaryEmailRequest"},
"output":{"shape":"GetPrimaryEmailResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"AccessDeniedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalServerException"}
]
},
"GetRegionOptStatus":{
"name":"GetRegionOptStatus",
"http":{
Expand Down Expand Up @@ -158,9 +193,46 @@
{"shape":"InternalServerException"}
],
"idempotent":true
},
"StartPrimaryEmailUpdate":{
"name":"StartPrimaryEmailUpdate",
"http":{
"method":"POST",
"requestUri":"/startPrimaryEmailUpdate",
"responseCode":200
},
"input":{"shape":"StartPrimaryEmailUpdateRequest"},
"output":{"shape":"StartPrimaryEmailUpdateResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"ConflictException"},
{"shape":"AccessDeniedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalServerException"}
]
}
},
"shapes":{
"AcceptPrimaryEmailUpdateRequest":{
"type":"structure",
"required":[
"AccountId",
"Otp",
"PrimaryEmail"
],
"members":{
"AccountId":{"shape":"AccountId"},
"Otp":{"shape":"Otp"},
"PrimaryEmail":{"shape":"PrimaryEmailAddress"}
}
},
"AcceptPrimaryEmailUpdateResponse":{
"type":"structure",
"members":{
"Status":{"shape":"PrimaryEmailUpdateStatus"}
}
},
"AccessDeniedException":{
"type":"structure",
"required":["message"],
Expand Down Expand Up @@ -332,6 +404,19 @@
"ContactInformation":{"shape":"ContactInformation"}
}
},
"GetPrimaryEmailRequest":{
"type":"structure",
"required":["AccountId"],
"members":{
"AccountId":{"shape":"AccountId"}
}
},
"GetPrimaryEmailResponse":{
"type":"structure",
"members":{
"PrimaryEmail":{"shape":"PrimaryEmailAddress"}
}
},
"GetRegionOptStatusRequest":{
"type":"structure",
"required":["RegionName"],
Expand Down Expand Up @@ -391,6 +476,11 @@
"min":1,
"sensitive":true
},
"Otp":{
"type":"string",
"pattern":"^[a-zA-Z0-9]{6}$",
"sensitive":true
},
"PhoneNumber":{
"type":"string",
"max":25,
Expand All @@ -404,6 +494,19 @@
"min":1,
"sensitive":true
},
"PrimaryEmailAddress":{
"type":"string",
"max":64,
"min":5,
"sensitive":true
},
"PrimaryEmailUpdateStatus":{
"type":"string",
"enum":[
"PENDING",
"ACCEPTED"
]
},
"PutAlternateContactRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -476,6 +579,23 @@
"type":"string",
"sensitive":true
},
"StartPrimaryEmailUpdateRequest":{
"type":"structure",
"required":[
"AccountId",
"PrimaryEmail"
],
"members":{
"AccountId":{"shape":"AccountId"},
"PrimaryEmail":{"shape":"PrimaryEmailAddress"}
}
},
"StartPrimaryEmailUpdateResponse":{
"type":"structure",
"members":{
"Status":{"shape":"PrimaryEmailUpdateStatus"}
}
},
"StateOrRegion":{
"type":"string",
"max":50,
Expand Down
Loading

0 comments on commit 7cbf8c0

Please sign in to comment.