cdk-docker-image-deployment 0.0.197 → 0.0.199

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/.jsii +3 -3
  2. package/lib/destination.js +1 -1
  3. package/lib/docker-image-deployment.js +1 -1
  4. package/lib/source.js +1 -1
  5. package/node_modules/aws-sdk/CHANGELOG.md +14 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/application-autoscaling-2016-02-06.examples.json +155 -0
  8. package/node_modules/aws-sdk/apis/application-autoscaling-2016-02-06.min.json +70 -1
  9. package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +141 -50
  10. package/node_modules/aws-sdk/apis/cleanrooms-2022-02-17.min.json +160 -57
  11. package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1032 -794
  12. package/node_modules/aws-sdk/apis/iotsitewise-2019-12-02.min.json +8 -4
  13. package/node_modules/aws-sdk/apis/mgn-2020-02-26.min.json +389 -45
  14. package/node_modules/aws-sdk/apis/mgn-2020-02-26.paginators.json +24 -0
  15. package/node_modules/aws-sdk/apis/neptune-2014-10-31.min.json +130 -103
  16. package/node_modules/aws-sdk/apis/s3outposts-2017-07-25.min.json +8 -1
  17. package/node_modules/aws-sdk/apis/workdocs-2016-05-01.min.json +234 -32
  18. package/node_modules/aws-sdk/apis/workdocs-2016-05-01.paginators.json +42 -0
  19. package/node_modules/aws-sdk/clients/applicationautoscaling.d.ts +88 -11
  20. package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +70 -0
  21. package/node_modules/aws-sdk/clients/cleanrooms.d.ts +82 -1
  22. package/node_modules/aws-sdk/clients/ec2.d.ts +257 -24
  23. package/node_modules/aws-sdk/clients/iotsitewise.d.ts +9 -1
  24. package/node_modules/aws-sdk/clients/mgn.d.ts +472 -1
  25. package/node_modules/aws-sdk/clients/neptune.d.ts +39 -1
  26. package/node_modules/aws-sdk/clients/s3outposts.d.ts +17 -1
  27. package/node_modules/aws-sdk/clients/workdocs.d.ts +196 -0
  28. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  29. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +12 -12
  30. package/node_modules/aws-sdk/dist/aws-sdk.js +1381 -830
  31. package/node_modules/aws-sdk/dist/aws-sdk.min.js +98 -98
  32. package/node_modules/aws-sdk/lib/core.js +1 -1
  33. package/node_modules/aws-sdk/package.json +1 -1
  34. package/package.json +7 -7
@@ -141,12 +141,27 @@ declare namespace S3Outposts {
141
141
  * The ID of the customer-owned IPv4 address pool used for the endpoint.
142
142
  */
143
143
  CustomerOwnedIpv4Pool?: CustomerOwnedIpv4Pool;
144
+ /**
145
+ * The failure reason, if any, for a create or delete endpoint operation.
146
+ */
147
+ FailedReason?: FailedReason;
144
148
  }
145
149
  export type EndpointAccessType = "Private"|"CustomerOwnedIp"|string;
146
150
  export type EndpointArn = string;
147
151
  export type EndpointId = string;
148
- export type EndpointStatus = "Pending"|"Available"|"Deleting"|string;
152
+ export type EndpointStatus = "Pending"|"Available"|"Deleting"|"Create_Failed"|"Delete_Failed"|string;
149
153
  export type Endpoints = Endpoint[];
154
+ export type ErrorCode = string;
155
+ export interface FailedReason {
156
+ /**
157
+ * The failure code, if any, for a create or delete endpoint operation.
158
+ */
159
+ ErrorCode?: ErrorCode;
160
+ /**
161
+ * Additional error details describing the endpoint failure and recommended action.
162
+ */
163
+ Message?: Message;
164
+ }
150
165
  export interface ListEndpointsRequest {
151
166
  /**
152
167
  * If a previous response from this operation included a NextToken value, provide that value here to retrieve the next page of results.
@@ -212,6 +227,7 @@ declare namespace S3Outposts {
212
227
  NextToken?: NextToken;
213
228
  }
214
229
  export type MaxResults = number;
230
+ export type Message = string;
215
231
  export interface NetworkInterface {
216
232
  /**
217
233
  * The ID for the network interface.
@@ -323,6 +323,14 @@ declare class WorkDocs extends Service {
323
323
  * Recovers a deleted version of an Amazon WorkDocs document.
324
324
  */
325
325
  restoreDocumentVersions(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
326
+ /**
327
+ * Searches metadata and the content of folders, documents, document versions, and comments.
328
+ */
329
+ searchResources(params: WorkDocs.Types.SearchResourcesRequest, callback?: (err: AWSError, data: WorkDocs.Types.SearchResourcesResponse) => void): Request<WorkDocs.Types.SearchResourcesResponse, AWSError>;
330
+ /**
331
+ * Searches metadata and the content of folders, documents, document versions, and comments.
332
+ */
333
+ searchResources(callback?: (err: AWSError, data: WorkDocs.Types.SearchResourcesResponse) => void): Request<WorkDocs.Types.SearchResourcesResponse, AWSError>;
326
334
  /**
327
335
  * Updates the specified attributes of a document. The user must have access to both the document and its parent folder, if applicable.
328
336
  */
@@ -451,6 +459,8 @@ declare namespace WorkDocs {
451
459
  */
452
460
  ShareResults?: ShareResultsList;
453
461
  }
462
+ export type AdditionalResponseFieldType = "WEBURL"|string;
463
+ export type AdditionalResponseFieldsList = AdditionalResponseFieldType[];
454
464
  export type AuthenticationHeaderType = string;
455
465
  export type BooleanEnumType = "TRUE"|"FALSE"|string;
456
466
  export type BooleanType = boolean;
@@ -515,10 +525,15 @@ declare namespace WorkDocs {
515
525
  * The ID of the user being replied to.
516
526
  */
517
527
  RecipientId?: IdType;
528
+ /**
529
+ * The ID of the user who made the comment.
530
+ */
531
+ ContributorId?: IdType;
518
532
  }
519
533
  export type CommentStatusType = "DRAFT"|"PUBLISHED"|"DELETED"|string;
520
534
  export type CommentTextType = string;
521
535
  export type CommentVisibilityType = "PUBLIC"|"PRIVATE"|string;
536
+ export type ContentCategoryType = "IMAGE"|"DOCUMENT"|"PDF"|"SPREADSHEET"|"PRESENTATION"|"AUDIO"|"VIDEO"|"SOURCE_CODE"|"OTHER"|string;
522
537
  export interface CreateCommentRequest {
523
538
  /**
524
539
  * Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
@@ -687,6 +702,16 @@ declare namespace WorkDocs {
687
702
  export type CustomMetadataKeyType = string;
688
703
  export type CustomMetadataMap = {[key: string]: CustomMetadataValueType};
689
704
  export type CustomMetadataValueType = string;
705
+ export interface DateRangeType {
706
+ /**
707
+ * Timestamp range start value (in epochs)
708
+ */
709
+ StartValue?: TimestampType;
710
+ /**
711
+ * Timestamp range end value (in epochs).
712
+ */
713
+ EndValue?: TimestampType;
714
+ }
690
715
  export interface DeactivateUserRequest {
691
716
  /**
692
717
  * The ID of the user.
@@ -1263,6 +1288,48 @@ declare namespace WorkDocs {
1263
1288
  export type DocumentVersionStatus = "ACTIVE"|string;
1264
1289
  export type EmailAddressType = string;
1265
1290
  export type FieldNamesType = string;
1291
+ export interface Filters {
1292
+ /**
1293
+ * Filters by the locale of the content or comment.
1294
+ */
1295
+ TextLocales?: TextLocaleTypeList;
1296
+ /**
1297
+ * Filters by content category.
1298
+ */
1299
+ ContentCategories?: SearchContentCategoryTypeList;
1300
+ /**
1301
+ * Filters based on entity type.
1302
+ */
1303
+ ResourceTypes?: SearchResourceTypeList;
1304
+ /**
1305
+ * Filter by labels using exact match.
1306
+ */
1307
+ Labels?: SearchLabelList;
1308
+ /**
1309
+ * Filter based on UserIds or GroupIds.
1310
+ */
1311
+ Principals?: SearchPrincipalTypeList;
1312
+ /**
1313
+ * Filter based on resource’s path.
1314
+ */
1315
+ AncestorIds?: SearchAncestorIdList;
1316
+ /**
1317
+ * Filter based on file groupings.
1318
+ */
1319
+ SearchCollectionTypes?: SearchCollectionTypeList;
1320
+ /**
1321
+ * Filter based on size (in bytes).
1322
+ */
1323
+ SizeRange?: LongRangeType;
1324
+ /**
1325
+ * Filter based on resource’s creation timestamp.
1326
+ */
1327
+ CreatedRange?: DateRangeType;
1328
+ /**
1329
+ * Filter based on resource’s modified timestamp.
1330
+ */
1331
+ ModifiedRange?: DateRangeType;
1332
+ }
1266
1333
  export type FolderContentType = "ALL"|"DOCUMENT"|"FOLDER"|string;
1267
1334
  export interface FolderMetadata {
1268
1335
  /**
@@ -1555,10 +1622,23 @@ declare namespace WorkDocs {
1555
1622
  */
1556
1623
  UploadMetadata?: UploadMetadata;
1557
1624
  }
1625
+ export type LanguageCodeType = "AR"|"BG"|"BN"|"DA"|"DE"|"CS"|"EL"|"EN"|"ES"|"FA"|"FI"|"FR"|"HI"|"HU"|"ID"|"IT"|"JA"|"KO"|"LT"|"LV"|"NL"|"NO"|"PT"|"RO"|"RU"|"SV"|"SW"|"TH"|"TR"|"ZH"|"DEFAULT"|string;
1558
1626
  export type LimitType = number;
1559
1627
  export type LocaleType = "en"|"fr"|"ko"|"de"|"es"|"ja"|"ru"|"zh_CN"|"zh_TW"|"pt_BR"|"default"|string;
1628
+ export interface LongRangeType {
1629
+ /**
1630
+ * The size start range (in bytes).
1631
+ */
1632
+ StartValue?: LongType;
1633
+ /**
1634
+ * The size end range (in bytes).
1635
+ */
1636
+ EndValue?: LongType;
1637
+ }
1638
+ export type LongType = number;
1560
1639
  export type MarkerType = string;
1561
1640
  export type MessageType = string;
1641
+ export type NextMarkerType = string;
1562
1642
  export interface NotificationOptions {
1563
1643
  /**
1564
1644
  * Boolean value to indicate an email notification should be sent to the recipients.
@@ -1569,6 +1649,7 @@ declare namespace WorkDocs {
1569
1649
  */
1570
1650
  EmailMessage?: MessageType;
1571
1651
  }
1652
+ export type OrderByFieldType = "RELEVANCE"|"NAME"|"SIZE"|"CREATED_TIMESTAMP"|"MODIFIED_TIMESTAMP"|string;
1572
1653
  export type OrderType = "ASCENDING"|"DESCENDING"|string;
1573
1654
  export type OrganizationUserList = User[];
1574
1655
  export type PageMarkerType = string;
@@ -1611,6 +1692,7 @@ declare namespace WorkDocs {
1611
1692
  Roles?: PermissionInfoList;
1612
1693
  }
1613
1694
  export type PrincipalList = Principal[];
1695
+ export type PrincipalRoleType = "VIEWER"|"CONTRIBUTOR"|"OWNER"|"COOWNER"|string;
1614
1696
  export type PrincipalType = "USER"|"GROUP"|"INVITE"|"ANONYMOUS"|"ORGANIZATION"|string;
1615
1697
  export interface RemoveAllResourcePermissionsRequest {
1616
1698
  /**
@@ -1693,6 +1775,35 @@ declare namespace WorkDocs {
1693
1775
  export type ResourceSortType = "DATE"|"NAME"|string;
1694
1776
  export type ResourceStateType = "ACTIVE"|"RESTORING"|"RECYCLING"|"RECYCLED"|string;
1695
1777
  export type ResourceType = "FOLDER"|"DOCUMENT"|string;
1778
+ export interface ResponseItem {
1779
+ /**
1780
+ * The type of item being returned.
1781
+ */
1782
+ ResourceType?: ResponseItemType;
1783
+ /**
1784
+ * The webUrl of the item being returned.
1785
+ */
1786
+ WebUrl?: ResponseItemWebUrl;
1787
+ /**
1788
+ * The document that matches the query.
1789
+ */
1790
+ DocumentMetadata?: DocumentMetadata;
1791
+ /**
1792
+ * The folder that matches the query.
1793
+ */
1794
+ FolderMetadata?: FolderMetadata;
1795
+ /**
1796
+ * The comment that matches the query.
1797
+ */
1798
+ CommentMetadata?: CommentMetadata;
1799
+ /**
1800
+ * The document version that matches the metadata.
1801
+ */
1802
+ DocumentVersionMetadata?: DocumentVersionMetadata;
1803
+ }
1804
+ export type ResponseItemType = "DOCUMENT"|"FOLDER"|"COMMENT"|"DOCUMENT_VERSION"|string;
1805
+ export type ResponseItemWebUrl = string;
1806
+ export type ResponseItemsList = ResponseItem[];
1696
1807
  export interface RestoreDocumentVersionsRequest {
1697
1808
  /**
1698
1809
  * Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
@@ -1705,8 +1816,91 @@ declare namespace WorkDocs {
1705
1816
  }
1706
1817
  export type RolePermissionType = "DIRECT"|"INHERITED"|string;
1707
1818
  export type RoleType = "VIEWER"|"CONTRIBUTOR"|"OWNER"|"COOWNER"|string;
1819
+ export type SearchAncestorId = string;
1820
+ export type SearchAncestorIdList = SearchAncestorId[];
1821
+ export type SearchCollectionType = "OWNED"|"SHARED_WITH_ME"|string;
1822
+ export type SearchCollectionTypeList = SearchCollectionType[];
1823
+ export type SearchContentCategoryTypeList = ContentCategoryType[];
1824
+ export type SearchLabel = string;
1825
+ export type SearchLabelList = SearchLabel[];
1708
1826
  export type SearchMarkerType = string;
1827
+ export type SearchPrincipalRoleList = PrincipalRoleType[];
1828
+ export interface SearchPrincipalType {
1829
+ /**
1830
+ * UserIds or GroupIds.
1831
+ */
1832
+ Id: IdType;
1833
+ /**
1834
+ * The Role of a User or Group.
1835
+ */
1836
+ Roles?: SearchPrincipalRoleList;
1837
+ }
1838
+ export type SearchPrincipalTypeList = SearchPrincipalType[];
1839
+ export type SearchQueryScopeType = "NAME"|"CONTENT"|string;
1840
+ export type SearchQueryScopeTypeList = SearchQueryScopeType[];
1709
1841
  export type SearchQueryType = string;
1842
+ export type SearchResourceType = "FOLDER"|"DOCUMENT"|"COMMENT"|"DOCUMENT_VERSION"|string;
1843
+ export type SearchResourceTypeList = SearchResourceType[];
1844
+ export interface SearchResourcesRequest {
1845
+ /**
1846
+ * Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
1847
+ */
1848
+ AuthenticationToken?: AuthenticationHeaderType;
1849
+ /**
1850
+ * The String to search for. Searches across different text fields based on request parameters. Use double quotes around the query string for exact phrase matches.
1851
+ */
1852
+ QueryText?: SearchQueryType;
1853
+ /**
1854
+ * Filter based on the text field type. A Folder has only a name and no content. A Comment has only content and no name. A Document or Document Version has a name and content
1855
+ */
1856
+ QueryScopes?: SearchQueryScopeTypeList;
1857
+ /**
1858
+ * Filters based on the resource owner OrgId. This is a mandatory parameter when using Admin SigV4 credentials.
1859
+ */
1860
+ OrganizationId?: IdType;
1861
+ /**
1862
+ * A list of attributes to include in the response. Used to request fields that are not normally returned in a standard response.
1863
+ */
1864
+ AdditionalResponseFields?: AdditionalResponseFieldsList;
1865
+ /**
1866
+ * Filters results based on entity metadata.
1867
+ */
1868
+ Filters?: Filters;
1869
+ /**
1870
+ * Order by results in one or more categories.
1871
+ */
1872
+ OrderBy?: SearchResultSortList;
1873
+ /**
1874
+ * Max results count per page.
1875
+ */
1876
+ Limit?: SearchResultsLimitType;
1877
+ /**
1878
+ * The marker for the next set of results.
1879
+ */
1880
+ Marker?: NextMarkerType;
1881
+ }
1882
+ export interface SearchResourcesResponse {
1883
+ /**
1884
+ * List of Documents, Folders, Comments, and Document Versions matching the query.
1885
+ */
1886
+ Items?: ResponseItemsList;
1887
+ /**
1888
+ * The marker to use when requesting the next set of results. If there are no additional results, the string is empty.
1889
+ */
1890
+ Marker?: NextMarkerType;
1891
+ }
1892
+ export type SearchResultSortList = SearchSortResult[];
1893
+ export type SearchResultsLimitType = number;
1894
+ export interface SearchSortResult {
1895
+ /**
1896
+ * Sort search results based on this field name.
1897
+ */
1898
+ Field?: OrderByFieldType;
1899
+ /**
1900
+ * Sort direction.
1901
+ */
1902
+ Order?: SortOrder;
1903
+ }
1710
1904
  export interface SharePrincipal {
1711
1905
  /**
1712
1906
  * The ID of the recipient.
@@ -1754,6 +1948,7 @@ declare namespace WorkDocs {
1754
1948
  export type SharedLabels = SharedLabel[];
1755
1949
  export type SignedHeaderMap = {[key: string]: HeaderValueType};
1756
1950
  export type SizeType = number;
1951
+ export type SortOrder = "ASC"|"DESC"|string;
1757
1952
  export interface StorageRuleType {
1758
1953
  /**
1759
1954
  * The amount of storage allocated, in bytes.
@@ -1783,6 +1978,7 @@ declare namespace WorkDocs {
1783
1978
  export type SubscriptionList = Subscription[];
1784
1979
  export type SubscriptionProtocolType = "HTTPS"|"SQS"|string;
1785
1980
  export type SubscriptionType = "ALL"|string;
1981
+ export type TextLocaleTypeList = LanguageCodeType[];
1786
1982
  export type TimeZoneIdType = string;
1787
1983
  export type TimestampType = Date;
1788
1984
  export interface UpdateDocumentRequest {
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1338.0',
86
+ VERSION: '2.1340.0',
87
87
 
88
88
  /**
89
89
  * @api private