Skip to content

Commit 958bf70

Browse files
NoDataRetentionException thrown when GetImages requested for a Stream that does not retain data (that is, has a DataRetentionInHours of 0).
Amazon SageMaker Studio now supports Docker access from within app container New integration with the GitLab self-managed provider type.
1 parent 2a4d18d commit 958bf70

File tree

18 files changed

+519
-159
lines changed

18 files changed

+519
-159
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.233
1+
1.11.234

generated/src/aws-cpp-sdk-codestar-connections/include/aws/codestar-connections/model/ProviderType.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ namespace Model
1919
Bitbucket,
2020
GitHub,
2121
GitHubEnterpriseServer,
22-
GitLab
22+
GitLab,
23+
GitLabSelfManaged
2324
};
2425

2526
namespace ProviderTypeMapper

generated/src/aws-cpp-sdk-codestar-connections/source/model/ProviderType.cpp

+7
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ namespace Aws
2424
static const int GitHub_HASH = HashingUtils::HashString("GitHub");
2525
static const int GitHubEnterpriseServer_HASH = HashingUtils::HashString("GitHubEnterpriseServer");
2626
static const int GitLab_HASH = HashingUtils::HashString("GitLab");
27+
static const int GitLabSelfManaged_HASH = HashingUtils::HashString("GitLabSelfManaged");
2728

2829

2930
ProviderType GetProviderTypeForName(const Aws::String& name)
@@ -45,6 +46,10 @@ namespace Aws
4546
{
4647
return ProviderType::GitLab;
4748
}
49+
else if (hashCode == GitLabSelfManaged_HASH)
50+
{
51+
return ProviderType::GitLabSelfManaged;
52+
}
4853
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
4954
if(overflowContainer)
5055
{
@@ -69,6 +74,8 @@ namespace Aws
6974
return "GitHubEnterpriseServer";
7075
case ProviderType::GitLab:
7176
return "GitLab";
77+
case ProviderType::GitLabSelfManaged:
78+
return "GitLabSelfManaged";
7279
default:
7380
EnumParseOverflowContainer* overflowContainer = Aws::GetEnumOverflowContainer();
7481
if(overflowContainer)

generated/src/aws-cpp-sdk-kinesis-video-archived-media/include/aws/kinesis-video-archived-media/KinesisVideoArchivedMediaClient.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ namespace KinesisVideoArchivedMedia
410410
}
411411

412412
/**
413-
* <p>Retrieves a list of Images corresponding to each timestamp for a given time
413+
* <p>Retrieves a list of images corresponding to each timestamp for a given time
414414
* range, sampling interval, and image format configuration.</p><p><h3>See
415415
* Also:</h3> <a
416416
* href="http://docs.aws.amazon.com/goto/WebAPI/kinesis-video-archived-media-2017-09-30/GetImages">AWS

generated/src/aws-cpp-sdk-kinesis-video-archived-media/include/aws/kinesis-video-archived-media/model/GetImagesRequest.h

+16-20
Original file line numberDiff line numberDiff line change
@@ -274,41 +274,37 @@ namespace Model
274274

275275
/**
276276
* <p>The time interval in milliseconds (ms) at which the images need to be
277-
* generated from the stream, with a default of 3000 ms. The minimum value that can
278-
* be provided is 200 ms. If the timestamp range is less than the sampling
279-
* interval, the Image from the <code>startTimestamp</code> will be returned if
280-
* available. </p> <p>The minimum value of 200 ms is a hard limit.</p>
281-
*
277+
* generated from the stream. The minimum value that can be provided is 200 ms (5
278+
* images per second). If the timestamp range is less than the sampling interval,
279+
* the image from the <code>startTimestamp</code> will be returned if available.
280+
* </p>
282281
*/
283282
inline int GetSamplingInterval() const{ return m_samplingInterval; }
284283

285284
/**
286285
* <p>The time interval in milliseconds (ms) at which the images need to be
287-
* generated from the stream, with a default of 3000 ms. The minimum value that can
288-
* be provided is 200 ms. If the timestamp range is less than the sampling
289-
* interval, the Image from the <code>startTimestamp</code> will be returned if
290-
* available. </p> <p>The minimum value of 200 ms is a hard limit.</p>
291-
*
286+
* generated from the stream. The minimum value that can be provided is 200 ms (5
287+
* images per second). If the timestamp range is less than the sampling interval,
288+
* the image from the <code>startTimestamp</code> will be returned if available.
289+
* </p>
292290
*/
293291
inline bool SamplingIntervalHasBeenSet() const { return m_samplingIntervalHasBeenSet; }
294292

295293
/**
296294
* <p>The time interval in milliseconds (ms) at which the images need to be
297-
* generated from the stream, with a default of 3000 ms. The minimum value that can
298-
* be provided is 200 ms. If the timestamp range is less than the sampling
299-
* interval, the Image from the <code>startTimestamp</code> will be returned if
300-
* available. </p> <p>The minimum value of 200 ms is a hard limit.</p>
301-
*
295+
* generated from the stream. The minimum value that can be provided is 200 ms (5
296+
* images per second). If the timestamp range is less than the sampling interval,
297+
* the image from the <code>startTimestamp</code> will be returned if available.
298+
* </p>
302299
*/
303300
inline void SetSamplingInterval(int value) { m_samplingIntervalHasBeenSet = true; m_samplingInterval = value; }
304301

305302
/**
306303
* <p>The time interval in milliseconds (ms) at which the images need to be
307-
* generated from the stream, with a default of 3000 ms. The minimum value that can
308-
* be provided is 200 ms. If the timestamp range is less than the sampling
309-
* interval, the Image from the <code>startTimestamp</code> will be returned if
310-
* available. </p> <p>The minimum value of 200 ms is a hard limit.</p>
311-
*
304+
* generated from the stream. The minimum value that can be provided is 200 ms (5
305+
* images per second). If the timestamp range is less than the sampling interval,
306+
* the image from the <code>startTimestamp</code> will be returned if available.
307+
* </p>
312308
*/
313309
inline GetImagesRequest& WithSamplingInterval(int value) { SetSamplingInterval(value); return *this;}
314310

generated/src/aws-cpp-sdk-kinesis-video-archived-media/include/aws/kinesis-video-archived-media/model/ListFragmentsRequest.h

+12-6
Original file line numberDiff line numberDiff line change
@@ -223,37 +223,43 @@ namespace Model
223223

224224
/**
225225
* <p>Describes the timestamp range and timestamp origin for the range of fragments
226-
* to return.</p>
226+
* to return.</p> <p>This is only required when the <code>NextToken</code>
227+
* isn't passed in the API.</p>
227228
*/
228229
inline const FragmentSelector& GetFragmentSelector() const{ return m_fragmentSelector; }
229230

230231
/**
231232
* <p>Describes the timestamp range and timestamp origin for the range of fragments
232-
* to return.</p>
233+
* to return.</p> <p>This is only required when the <code>NextToken</code>
234+
* isn't passed in the API.</p>
233235
*/
234236
inline bool FragmentSelectorHasBeenSet() const { return m_fragmentSelectorHasBeenSet; }
235237

236238
/**
237239
* <p>Describes the timestamp range and timestamp origin for the range of fragments
238-
* to return.</p>
240+
* to return.</p> <p>This is only required when the <code>NextToken</code>
241+
* isn't passed in the API.</p>
239242
*/
240243
inline void SetFragmentSelector(const FragmentSelector& value) { m_fragmentSelectorHasBeenSet = true; m_fragmentSelector = value; }
241244

242245
/**
243246
* <p>Describes the timestamp range and timestamp origin for the range of fragments
244-
* to return.</p>
247+
* to return.</p> <p>This is only required when the <code>NextToken</code>
248+
* isn't passed in the API.</p>
245249
*/
246250
inline void SetFragmentSelector(FragmentSelector&& value) { m_fragmentSelectorHasBeenSet = true; m_fragmentSelector = std::move(value); }
247251

248252
/**
249253
* <p>Describes the timestamp range and timestamp origin for the range of fragments
250-
* to return.</p>
254+
* to return.</p> <p>This is only required when the <code>NextToken</code>
255+
* isn't passed in the API.</p>
251256
*/
252257
inline ListFragmentsRequest& WithFragmentSelector(const FragmentSelector& value) { SetFragmentSelector(value); return *this;}
253258

254259
/**
255260
* <p>Describes the timestamp range and timestamp origin for the range of fragments
256-
* to return.</p>
261+
* to return.</p> <p>This is only required when the <code>NextToken</code>
262+
* isn't passed in the API.</p>
257263
*/
258264
inline ListFragmentsRequest& WithFragmentSelector(FragmentSelector&& value) { SetFragmentSelector(std::move(value)); return *this;}
259265

0 commit comments

Comments
 (0)