Skip to content

Commit

Permalink
Merge branch 'version-3' into s3-crc32
Browse files Browse the repository at this point in the history
  • Loading branch information
mullermp authored Sep 6, 2024
2 parents 573e34b + aa27c50 commit 6159f6d
Show file tree
Hide file tree
Showing 3,027 changed files with 47,193 additions and 11,693 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v44
uses: tj-actions/changed-files@v45
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ group :test do
gem 'addressable'
gem 'cucumber'
gem 'webmock'

gem 'multipart-post'
gem 'rspec'
gem 'opentelemetry-sdk'
end
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 6159f6d

Please sign in to comment.