Skip to content

Commit 6ff5c4d

Browse files
Updated API models and rebuilt service gems.
1 parent 29e8fc6 commit 6ff5c4d

File tree

39 files changed

+654
-170
lines changed

39 files changed

+654
-170
lines changed

apis/bedrock-agent/2023-06-05/api-2.json

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,6 +916,25 @@
916916
],
917917
"idempotent":true
918918
},
919+
"StopIngestionJob":{
920+
"name":"StopIngestionJob",
921+
"http":{
922+
"method":"POST",
923+
"requestUri":"/knowledgebases/{knowledgeBaseId}/datasources/{dataSourceId}/ingestionjobs/{ingestionJobId}/stop",
924+
"responseCode":202
925+
},
926+
"input":{"shape":"StopIngestionJobRequest"},
927+
"output":{"shape":"StopIngestionJobResponse"},
928+
"errors":[
929+
{"shape":"ThrottlingException"},
930+
{"shape":"AccessDeniedException"},
931+
{"shape":"ValidationException"},
932+
{"shape":"InternalServerException"},
933+
{"shape":"ResourceNotFoundException"},
934+
{"shape":"ConflictException"}
935+
],
936+
"idempotent":true
937+
},
919938
"TagResource":{
920939
"name":"TagResource",
921940
"http":{
@@ -3521,7 +3540,9 @@
35213540
"STARTING",
35223541
"IN_PROGRESS",
35233542
"COMPLETE",
3524-
"FAILED"
3543+
"FAILED",
3544+
"STOPPING",
3545+
"STOPPED"
35253546
]
35263547
},
35273548
"IngestionJobSummaries":{
@@ -4997,6 +5018,38 @@
49975018
"type":"string",
49985019
"enum":["POST_CHUNKING"]
49995020
},
5021+
"StopIngestionJobRequest":{
5022+
"type":"structure",
5023+
"required":[
5024+
"dataSourceId",
5025+
"ingestionJobId",
5026+
"knowledgeBaseId"
5027+
],
5028+
"members":{
5029+
"dataSourceId":{
5030+
"shape":"Id",
5031+
"location":"uri",
5032+
"locationName":"dataSourceId"
5033+
},
5034+
"ingestionJobId":{
5035+
"shape":"Id",
5036+
"location":"uri",
5037+
"locationName":"ingestionJobId"
5038+
},
5039+
"knowledgeBaseId":{
5040+
"shape":"Id",
5041+
"location":"uri",
5042+
"locationName":"knowledgeBaseId"
5043+
}
5044+
}
5045+
},
5046+
"StopIngestionJobResponse":{
5047+
"type":"structure",
5048+
"required":["ingestionJob"],
5049+
"members":{
5050+
"ingestionJob":{"shape":"IngestionJob"}
5051+
}
5052+
},
50005053
"StopSequences":{
50015054
"type":"list",
50025055
"member":{"shape":"String"},

apis/bedrock-agent/2023-06-05/docs-2.json

Lines changed: 69 additions & 54 deletions
Large diffs are not rendered by default.

apis/codeartifact/2018-09-22/api-2.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,6 +1651,13 @@
16511651
"type":"list",
16521652
"member":{"shape":"DomainSummary"}
16531653
},
1654+
"EndpointType":{
1655+
"type":"string",
1656+
"enum":[
1657+
"dualstack",
1658+
"ipv4"
1659+
]
1660+
},
16541661
"ErrorMessage":{"type":"string"},
16551662
"ExternalConnectionName":{
16561663
"type":"string",
@@ -1920,6 +1927,11 @@
19201927
"shape":"PackageFormat",
19211928
"location":"querystring",
19221929
"locationName":"format"
1930+
},
1931+
"endpointType":{
1932+
"shape":"EndpointType",
1933+
"location":"querystring",
1934+
"locationName":"endpointType"
19231935
}
19241936
}
19251937
},

apis/codeartifact/2018-09-22/docs-2.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,6 +504,12 @@
504504
"ListDomainsResult$domains": "<p> The returned list of <a href=\"https://docs.aws.amazon.com/codeartifact/latest/APIReference/API_DomainSummary.html\">DomainSummary</a> objects. </p>"
505505
}
506506
},
507+
"EndpointType": {
508+
"base": null,
509+
"refs": {
510+
"GetRepositoryEndpointRequest$endpointType": "<p>A string that specifies the type of endpoint.</p>"
511+
}
512+
},
507513
"ErrorMessage": {
508514
"base": null,
509515
"refs": {
@@ -865,7 +871,7 @@
865871
"PublishPackageVersionRequest$format": "<p>A format that specifies the type of the package version with the requested asset file.</p> <p>The only supported value is <code>generic</code>.</p>",
866872
"PublishPackageVersionResult$format": "<p>The format of the package version.</p>",
867873
"PutPackageOriginConfigurationRequest$format": "<p>A format that specifies the type of the package to be updated.</p>",
868-
"RepositoryExternalConnectionInfo$packageFormat": "<p> The package format associated with a repository's external connection. The valid package formats are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> <li> <p> <code>nuget</code>: A NuGet package. </p> </li> </ul>",
874+
"RepositoryExternalConnectionInfo$packageFormat": "<p> The package format associated with a repository's external connection. The valid package formats are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> <li> <p> <code>nuget</code>: A NuGet package. </p> </li> <li> <p> <code>generic</code>: A generic package. </p> </li> <li> <p> <code>ruby</code>: A Ruby package. </p> </li> <li> <p> <code>swift</code>: A Swift package. </p> </li> <li> <p> <code>cargo</code>: A Cargo package. </p> </li> </ul>",
869875
"UpdatePackageVersionsStatusRequest$format": "<p> A format that specifies the type of the package with the statuses to update. </p>"
870876
}
871877
},

apis/rds/2014-10-31/api-2.json

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,8 @@
529529
{"shape":"MaxDBShardGroupLimitReached"},
530530
{"shape":"InvalidDBClusterStateFault"},
531531
{"shape":"UnsupportedDBEngineVersionFault"},
532-
{"shape":"InvalidVPCNetworkStateFault"}
532+
{"shape":"InvalidVPCNetworkStateFault"},
533+
{"shape":"NetworkTypeNotSupported"}
533534
]
534535
},
535536
"CreateDBSnapshot":{
@@ -3325,6 +3326,13 @@
33253326
"CertificateDetails":{"shape":"CertificateDetails"}
33263327
}
33273328
},
3329+
"ClusterScalabilityType":{
3330+
"type":"string",
3331+
"enum":[
3332+
"standard",
3333+
"limitless"
3334+
]
3335+
},
33283336
"ConnectionPoolConfiguration":{
33293337
"type":"structure",
33303338
"members":{
@@ -3586,6 +3594,7 @@
35863594
"EnableLimitlessDatabase":{"shape":"BooleanOptional"},
35873595
"ServerlessV2ScalingConfiguration":{"shape":"ServerlessV2ScalingConfiguration"},
35883596
"NetworkType":{"shape":"String"},
3597+
"ClusterScalabilityType":{"shape":"ClusterScalabilityType"},
35893598
"DBSystemId":{"shape":"String"},
35903599
"ManageMasterUserPassword":{"shape":"BooleanOptional"},
35913600
"MasterUserSecretKmsKeyId":{"shape":"String"},
@@ -3875,7 +3884,8 @@
38753884
"ComputeRedundancy":{"shape":"IntegerOptional"},
38763885
"MaxACU":{"shape":"DoubleOptional"},
38773886
"MinACU":{"shape":"DoubleOptional"},
3878-
"PubliclyAccessible":{"shape":"BooleanOptional"}
3887+
"PubliclyAccessible":{"shape":"BooleanOptional"},
3888+
"Tags":{"shape":"TagList"}
38793889
}
38803890
},
38813891
"CreateDBSnapshotMessage":{
@@ -4180,6 +4190,7 @@
41804190
"AwsBackupRecoveryPointArn":{"shape":"String"},
41814191
"LimitlessDatabase":{"shape":"LimitlessDatabase"},
41824192
"StorageThroughput":{"shape":"IntegerOptional"},
4193+
"ClusterScalabilityType":{"shape":"ClusterScalabilityType"},
41834194
"CertificateDetails":{"shape":"CertificateDetails"},
41844195
"EngineLifecycleSupport":{"shape":"String"}
41854196
},
@@ -5431,7 +5442,8 @@
54315442
"Status":{"shape":"String"},
54325443
"PubliclyAccessible":{"shape":"BooleanOptional"},
54335444
"Endpoint":{"shape":"String"},
5434-
"DBShardGroupArn":{"shape":"String"}
5445+
"DBShardGroupArn":{"shape":"String"},
5446+
"TagList":{"shape":"TagList"}
54355447
}
54365448
},
54375449
"DBShardGroupAlreadyExistsFault":{

apis/rds/2014-10-31/docs-2.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -810,6 +810,13 @@
810810
"DBCluster$PendingModifiedValues": "<p>Information about pending changes to the DB cluster. This information is returned only when there are pending changes. Specific changes are identified by subelements.</p>"
811811
}
812812
},
813+
"ClusterScalabilityType": {
814+
"base": null,
815+
"refs": {
816+
"CreateDBClusterMessage$ClusterScalabilityType": "<p>Specifies the scalability mode of the Aurora DB cluster. When set to <code>limitless</code>, the cluster operates as an Aurora Limitless Database. When set to <code>standard</code> (the default), the cluster uses normal DB instance creation.</p> <p>Valid for: Aurora DB clusters only</p> <note> <p>You can't modify this setting after you create the DB cluster.</p> </note>",
817+
"DBCluster$ClusterScalabilityType": "<p>The scalability mode of the Aurora DB cluster. When set to <code>limitless</code>, the cluster operates as an Aurora Limitless Database. When set to <code>standard</code> (the default), the cluster uses normal DB instance creation.</p>"
818+
}
819+
},
813820
"ConnectionPoolConfiguration": {
814821
"base": "<p>Specifies the settings that control the size and behavior of the connection pool associated with a <code>DBProxyTargetGroup</code>.</p>",
815822
"refs": {
@@ -5966,6 +5973,7 @@
59665973
"CreateDBProxyEndpointRequest$Tags": null,
59675974
"CreateDBProxyRequest$Tags": "<p>An optional set of key-value pairs to associate arbitrary data of your choosing with the proxy.</p>",
59685975
"CreateDBSecurityGroupMessage$Tags": "<p>Tags to assign to the DB security group.</p>",
5976+
"CreateDBShardGroupMessage$Tags": null,
59695977
"CreateDBSnapshotMessage$Tags": null,
59705978
"CreateDBSubnetGroupMessage$Tags": "<p>Tags to assign to the DB subnet group.</p>",
59715979
"CreateEventSubscriptionMessage$Tags": null,
@@ -5977,6 +5985,7 @@
59775985
"DBClusterSnapshot$TagList": null,
59785986
"DBEngineVersion$TagList": null,
59795987
"DBInstance$TagList": null,
5988+
"DBShardGroup$TagList": null,
59805989
"DBSnapshot$TagList": null,
59815990
"DBSnapshotTenantDatabase$TagList": null,
59825991
"GlobalCluster$TagList": null,

gems/aws-partitions/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Unreleased Changes
22
------------------
33

4+
1.982.0 (2024-10-01)
5+
------------------
6+
7+
* Feature - Updated the partitions source data the determines the AWS service regions and endpoints.
8+
49
1.981.0 (2024-09-27)
510
------------------
611

gems/aws-partitions/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.981.0
1+
1.982.0

gems/aws-partitions/partitions.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,7 @@
559559
"aoss" : {
560560
"endpoints" : {
561561
"ap-northeast-1" : { },
562+
"ap-northeast-2" : { },
562563
"ap-south-1" : { },
563564
"ap-southeast-1" : { },
564565
"ap-southeast-2" : { },
@@ -9138,6 +9139,7 @@
91389139
"ca-central-1" : { },
91399140
"eu-central-1" : { },
91409141
"eu-north-1" : { },
9142+
"eu-south-2" : { },
91419143
"eu-west-1" : { },
91429144
"eu-west-2" : { },
91439145
"sa-east-1" : { },
@@ -13001,6 +13003,7 @@
1300113003
"eu-central-1" : { },
1300213004
"eu-north-1" : { },
1300313005
"eu-south-1" : { },
13006+
"eu-south-2" : { },
1300413007
"eu-west-1" : { },
1300513008
"eu-west-2" : { },
1300613009
"eu-west-3" : { },

gems/aws-sdk-bedrockagent/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Unreleased Changes
22
------------------
33

4+
1.28.0 (2024-10-01)
5+
------------------
6+
7+
* Feature - This release adds support to stop an ongoing ingestion job using the StopIngestionJob API in Agents for Amazon Bedrock.
8+
49
1.27.0 (2024-09-24)
510
------------------
611

0 commit comments

Comments
 (0)