Skip to content

Commit ca6631a

Browse files
Merging v1.0.26 release
2 parents c450e56 + b0be6e0 commit ca6631a

File tree

6 files changed

+62
-5
lines changed

6 files changed

+62
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [1.0.26] - 12/28/2023
4+
5+
### Features
6+
* (**codestarconnections**) New integration with the GitLab self-managed provider type.
7+
* (**kinesisvideoarchivedmedia**) NoDataRetentionException thrown when GetImages requested for a Stream that does not retain data (that is, has a DataRetentionInHours of 0).
8+
* (**sagemaker**) Amazon SageMaker Studio now supports Docker access from within app container
9+
310
## [1.0.25] - 12/27/2023
411

512
### Features

codegen/aws-sdk-codegen/src/main/resources/aws/sdk/kotlin/codegen/endpoints.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11619,6 +11619,7 @@
1161911619
"ap-south-1" : { },
1162011620
"ap-southeast-1" : { },
1162111621
"ap-southeast-2" : { },
11622+
"ap-southeast-4" : { },
1162211623
"ca-central-1" : { },
1162311624
"eu-central-1" : { },
1162411625
"eu-north-1" : { },
@@ -11640,6 +11641,7 @@
1164011641
"ap-south-1" : { },
1164111642
"ap-southeast-1" : { },
1164211643
"ap-southeast-2" : { },
11644+
"ap-southeast-4" : { },
1164311645
"ca-central-1" : { },
1164411646
"eu-central-1" : { },
1164511647
"eu-north-1" : { },
@@ -11661,6 +11663,7 @@
1166111663
"ap-south-1" : { },
1166211664
"ap-southeast-1" : { },
1166311665
"ap-southeast-2" : { },
11666+
"ap-southeast-4" : { },
1166411667
"ca-central-1" : { },
1166511668
"eu-central-1" : { },
1166611669
"eu-north-1" : { },

codegen/sdk/aws-models/codestar-connections.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2838,6 +2838,12 @@
28382838
"traits": {
28392839
"smithy.api#enumValue": "GitLab"
28402840
}
2841+
},
2842+
"GITLAB_SELF_MANAGED": {
2843+
"target": "smithy.api#Unit",
2844+
"traits": {
2845+
"smithy.api#enumValue": "GitLabSelfManaged"
2846+
}
28412847
}
28422848
}
28432849
},

codegen/sdk/aws-models/kinesis-video-archived-media.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1633,6 +1633,9 @@
16331633
{
16341634
"target": "com.amazonaws.kinesisvideoarchivedmedia#InvalidArgumentException"
16351635
},
1636+
{
1637+
"target": "com.amazonaws.kinesisvideoarchivedmedia#NoDataRetentionException"
1638+
},
16361639
{
16371640
"target": "com.amazonaws.kinesisvideoarchivedmedia#NotAuthorizedException"
16381641
},
@@ -1641,7 +1644,7 @@
16411644
}
16421645
],
16431646
"traits": {
1644-
"smithy.api#documentation": "<p>Retrieves a list of Images corresponding to each timestamp for a given time range, sampling interval, and image format configuration.</p>",
1647+
"smithy.api#documentation": "<p>Retrieves a list of images corresponding to each timestamp for a given time range,\n sampling interval, and image format configuration.</p>",
16451648
"smithy.api#http": {
16461649
"method": "POST",
16471650
"uri": "/getImages",
@@ -1694,7 +1697,7 @@
16941697
"SamplingInterval": {
16951698
"target": "com.amazonaws.kinesisvideoarchivedmedia#SamplingInterval",
16961699
"traits": {
1697-
"smithy.api#documentation": "<p>The time interval in milliseconds (ms) at which the images need to be generated from\n the stream, with a default of 3000 ms. The minimum value that can be provided is 200 ms.\n If the timestamp range is less than the sampling interval, the Image from the\n <code>startTimestamp</code> will be returned if available. </p>\n <note>\n <p>The minimum value of 200 ms is a hard limit.</p>\n </note>"
1700+
"smithy.api#documentation": "<p>The time interval in milliseconds (ms) at which the images need to be generated from the stream. The minimum value that can be provided is 200 ms (5 images per second). If the timestamp range is less than the sampling interval, the image from the <code>startTimestamp</code> will be returned if available.\n </p>"
16981701
}
16991702
},
17001703
"Format": {
@@ -2171,7 +2174,7 @@
21712174
"FragmentSelector": {
21722175
"target": "com.amazonaws.kinesisvideoarchivedmedia#FragmentSelector",
21732176
"traits": {
2174-
"smithy.api#documentation": "<p>Describes the timestamp range and timestamp origin for the range of fragments to\n return.</p>"
2177+
"smithy.api#documentation": "<p>Describes the timestamp range and timestamp origin for the range of fragments to\n return.</p>\n <note>\n <p>This is only required when the <code>NextToken</code> isn't passed in the API.</p>\n </note>"
21752178
}
21762179
}
21772180
},
@@ -2245,7 +2248,7 @@
22452248
}
22462249
},
22472250
"traits": {
2248-
"smithy.api#documentation": "<p>A streaming session was requested for a stream that does not retain data (that is, has\n a <code>DataRetentionInHours</code> of 0). </p>",
2251+
"smithy.api#documentation": "<p>\n <code>GetImages</code> was requested for a stream that does not retain data (that is, has\n a <code>DataRetentionInHours</code> of 0). </p>",
22492252
"smithy.api#error": "client",
22502253
"smithy.api#httpError": 400
22512254
}

codegen/sdk/aws-models/sagemaker.json

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24336,6 +24336,26 @@
2433624336
"smithy.api#output": {}
2433724337
}
2433824338
},
24339+
"com.amazonaws.sagemaker#DockerSettings": {
24340+
"type": "structure",
24341+
"members": {
24342+
"EnableDockerAccess": {
24343+
"target": "com.amazonaws.sagemaker#FeatureStatus",
24344+
"traits": {
24345+
"smithy.api#documentation": "<p>Indicates whether the domain can access Docker.</p>"
24346+
}
24347+
},
24348+
"VpcOnlyTrustedAccounts": {
24349+
"target": "com.amazonaws.sagemaker#VpcOnlyTrustedAccounts",
24350+
"traits": {
24351+
"smithy.api#documentation": "<p>The list of Amazon Web Services accounts that are trusted when the domain is created in VPC-only mode.</p>"
24352+
}
24353+
}
24354+
},
24355+
"traits": {
24356+
"smithy.api#documentation": "<p>A collection of settings that configure the domain's Docker interaction.</p>"
24357+
}
24358+
},
2433924359
"com.amazonaws.sagemaker#DocumentSchemaVersion": {
2434024360
"type": "string",
2434124361
"traits": {
@@ -24473,6 +24493,12 @@
2447324493
"traits": {
2447424494
"smithy.api#documentation": "<p>The configuration for attaching a SageMaker user profile name to the execution role as a\n <a href=\"https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_control-access_monitor.html\">sts:SourceIdentity key</a>.</p>"
2447524495
}
24496+
},
24497+
"DockerSettings": {
24498+
"target": "com.amazonaws.sagemaker#DockerSettings",
24499+
"traits": {
24500+
"smithy.api#documentation": "<p>A collection of settings that configure the domain's Docker interaction.</p>"
24501+
}
2447624502
}
2447724503
},
2447824504
"traits": {
@@ -24499,6 +24525,12 @@
2449924525
"traits": {
2450024526
"smithy.api#documentation": "<p>The security groups for the Amazon Virtual Private Cloud that the <code>Domain</code> uses for\n communication between Domain-level apps and user apps.</p>"
2450124527
}
24528+
},
24529+
"DockerSettings": {
24530+
"target": "com.amazonaws.sagemaker#DockerSettings",
24531+
"traits": {
24532+
"smithy.api#documentation": "<p>A collection of settings that configure the domain's Docker interaction.</p>"
24533+
}
2450224534
}
2450324535
},
2450424536
"traits": {
@@ -65462,6 +65494,12 @@
6546265494
"smithy.api#pattern": "^[-0-9a-zA-Z]+$"
6546365495
}
6546465496
},
65497+
"com.amazonaws.sagemaker#VpcOnlyTrustedAccounts": {
65498+
"type": "list",
65499+
"member": {
65500+
"target": "com.amazonaws.sagemaker#AccountId"
65501+
}
65502+
},
6546565503
"com.amazonaws.sagemaker#VpcSecurityGroupIds": {
6546665504
"type": "list",
6546765505
"member": {

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ kotlin.native.ignoreDisabledTargets=true
66
org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=2G
77

88
# sdk
9-
sdkVersion=1.0.26-SNAPSHOT
9+
sdkVersion=1.0.27-SNAPSHOT
1010

1111
# dokka config (values specified at build-time as needed)
1212
smithyKotlinDocBaseUrl=https://sdk.amazonaws.com/kotlin/api/smithy-kotlin/api/$smithyKotlinRuntimeVersion/

0 commit comments

Comments
 (0)