Skip to content

Commit

Permalink
Updated API models and rebuilt service gems.
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-ruby-automation committed Aug 28, 2024
1 parent ffd96a8 commit f187dd2
Show file tree
Hide file tree
Showing 97 changed files with 10,395 additions and 329 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,7 @@ RubyGems.org page under "LINKS" section.
| AWS Organizations | Aws::Organizations | aws-sdk-organizations | 2016-11-28 |
| AWS Outposts | Aws::Outposts | aws-sdk-outposts | 2019-12-03 |
| AWS Panorama | Aws::Panorama | aws-sdk-panorama | 2019-07-24 |
| AWS Parallel Computing Service | Aws::PCS | aws-sdk-pcs | 2023-02-10 |
| AWS Performance Insights | Aws::PI | aws-sdk-pi | 2018-02-27 |
| AWS Price List Service | Aws::Pricing | aws-sdk-pricing | 2017-10-15 |
| AWS Private 5G | Aws::PrivateNetworks | aws-sdk-privatenetworks | 2021-12-03 |
Expand Down
92 changes: 84 additions & 8 deletions apis/appconfig/2019-10-09/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,19 @@
{"shape":"InternalServerException"}
]
},
"GetAccountSettings":{
"name":"GetAccountSettings",
"http":{
"method":"GET",
"requestUri":"/settings",
"responseCode":200
},
"output":{"shape":"AccountSettings"},
"errors":[
{"shape":"InternalServerException"},
{"shape":"BadRequestException"}
]
},
"GetApplication":{
"name":"GetApplication",
"http":{
Expand Down Expand Up @@ -554,6 +567,20 @@
{"shape":"InternalServerException"}
]
},
"UpdateAccountSettings":{
"name":"UpdateAccountSettings",
"http":{
"method":"PATCH",
"requestUri":"/settings",
"responseCode":200
},
"input":{"shape":"UpdateAccountSettingsRequest"},
"output":{"shape":"AccountSettings"},
"errors":[
{"shape":"BadRequestException"},
{"shape":"InternalServerException"}
]
},
"UpdateApplication":{
"name":"UpdateApplication",
"http":{
Expand Down Expand Up @@ -661,6 +688,12 @@
}
},
"shapes":{
"AccountSettings":{
"type":"structure",
"members":{
"DeletionProtection":{"shape":"DeletionProtectionSettings"}
}
},
"Action":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -747,7 +780,7 @@
"type":"string",
"max":2048,
"min":20,
"pattern":"arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\\d{1})?:(\\d{12})?:[a-zA-Z0-9-_/:.]+"
"pattern":"arn:(aws[a-zA-Z-]*)?:[a-z]+:([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\\d{1})?:(\\d{12})?:[a-zA-Z0-9-_/:.]+"
},
"BadRequestDetails":{
"type":"structure",
Expand Down Expand Up @@ -1027,6 +1060,11 @@
"shape":"Id",
"location":"uri",
"locationName":"ConfigurationProfileId"
},
"DeletionProtectionCheck":{
"shape":"DeletionProtectionCheck",
"location":"header",
"locationName":"x-amzn-deletion-protection-check"
}
}
},
Expand All @@ -1044,19 +1082,24 @@
"DeleteEnvironmentRequest":{
"type":"structure",
"required":[
"ApplicationId",
"EnvironmentId"
"EnvironmentId",
"ApplicationId"
],
"members":{
"ApplicationId":{
"EnvironmentId":{
"shape":"Id",
"location":"uri",
"locationName":"ApplicationId"
"locationName":"EnvironmentId"
},
"EnvironmentId":{
"ApplicationId":{
"shape":"Id",
"location":"uri",
"locationName":"EnvironmentId"
"locationName":"ApplicationId"
},
"DeletionProtectionCheck":{
"shape":"DeletionProtectionCheck",
"location":"header",
"locationName":"x-amzn-deletion-protection-check"
}
}
},
Expand Down Expand Up @@ -1113,6 +1156,33 @@
}
}
},
"DeletionProtectionCheck":{
"type":"string",
"enum":[
"ACCOUNT_DEFAULT",
"APPLY",
"BYPASS"
]
},
"DeletionProtectionDuration":{
"type":"integer",
"box":true,
"max":1440,
"min":15
},
"DeletionProtectionSettings":{
"type":"structure",
"members":{
"Enabled":{
"shape":"Boolean",
"box":true
},
"ProtectionPeriodInMinutes":{
"shape":"DeletionProtectionDuration",
"box":true
}
}
},
"Deployment":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -2116,6 +2186,12 @@
}
}
},
"UpdateAccountSettingsRequest":{
"type":"structure",
"members":{
"DeletionProtection":{"shape":"DeletionProtectionSettings"}
}
},
"UpdateApplicationRequest":{
"type":"structure",
"required":["ApplicationId"],
Expand Down Expand Up @@ -2146,7 +2222,7 @@
"location":"uri",
"locationName":"ConfigurationProfileId"
},
"Name":{"shape":"Name"},
"Name":{"shape":"LongName"},
"Description":{"shape":"Description"},
"RetrievalRoleArn":{"shape":"RoleArn"},
"Validators":{"shape":"ValidatorList"},
Expand Down
Loading

0 comments on commit f187dd2

Please sign in to comment.