cdk-comprehend-s3olap 2.0.143 → 2.0.144

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 (26) hide show
  1. package/.jsii +3 -3
  2. package/lib/cdk-comprehend-s3olap.js +2 -2
  3. package/lib/comprehend-lambdas.js +2 -2
  4. package/lib/iam-roles.js +4 -4
  5. package/node_modules/aws-sdk/CHANGELOG.md +10 -1
  6. package/node_modules/aws-sdk/README.md +1 -1
  7. package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +42 -34
  8. package/node_modules/aws-sdk/apis/ec2-2016-11-15.paginators.json +6 -0
  9. package/node_modules/aws-sdk/apis/inspector2-2020-06-08.min.json +305 -133
  10. package/node_modules/aws-sdk/apis/iottwinmaker-2021-11-29.min.json +10 -3
  11. package/node_modules/aws-sdk/apis/network-firewall-2020-11-12.min.json +79 -68
  12. package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +102 -27
  13. package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +44 -39
  14. package/node_modules/aws-sdk/clients/appsync.d.ts +15 -2
  15. package/node_modules/aws-sdk/clients/inspector2.d.ts +181 -9
  16. package/node_modules/aws-sdk/clients/iottwinmaker.d.ts +15 -0
  17. package/node_modules/aws-sdk/clients/networkfirewall.d.ts +14 -4
  18. package/node_modules/aws-sdk/clients/opensearch.d.ts +139 -11
  19. package/node_modules/aws-sdk/clients/wellarchitected.d.ts +13 -2
  20. package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
  21. package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +8 -8
  22. package/node_modules/aws-sdk/dist/aws-sdk.js +9 -3
  23. package/node_modules/aws-sdk/dist/aws-sdk.min.js +60 -60
  24. package/node_modules/aws-sdk/lib/core.js +1 -1
  25. package/node_modules/aws-sdk/package.json +1 -1
  26. package/package.json +3 -3
@@ -155,6 +155,14 @@ declare class OpenSearch extends Service {
155
155
  * Returns the configuration of an Amazon OpenSearch Service domain.
156
156
  */
157
157
  describeDomainConfig(callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainConfigResponse) => void): Request<OpenSearch.Types.DescribeDomainConfigResponse, AWSError>;
158
+ /**
159
+ * Returns information about domain and node health, the standby Availability Zone, number of nodes per Availability Zone, and shard count per node.
160
+ */
161
+ describeDomainHealth(params: OpenSearch.Types.DescribeDomainHealthRequest, callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainHealthResponse) => void): Request<OpenSearch.Types.DescribeDomainHealthResponse, AWSError>;
162
+ /**
163
+ * Returns information about domain and node health, the standby Availability Zone, number of nodes per Availability Zone, and shard count per node.
164
+ */
165
+ describeDomainHealth(callback?: (err: AWSError, data: OpenSearch.Types.DescribeDomainHealthResponse) => void): Request<OpenSearch.Types.DescribeDomainHealthResponse, AWSError>;
158
166
  /**
159
167
  * Returns domain configuration information about the specified Amazon OpenSearch Service domains.
160
168
  */
@@ -244,11 +252,11 @@ declare class OpenSearch extends Service {
244
252
  */
245
253
  getCompatibleVersions(callback?: (err: AWSError, data: OpenSearch.Types.GetCompatibleVersionsResponse) => void): Request<OpenSearch.Types.GetCompatibleVersionsResponse, AWSError>;
246
254
  /**
247
- * Returns a list of Amazon OpenSearch Service package versions, along with their creation time and commit message. For more information, see Custom packages for Amazon OpenSearch Service.
255
+ * Returns a list of Amazon OpenSearch Service package versions, along with their creation time, commit message, and plugin properties (if the package is a zip plugin package). For more information, see Custom packages for Amazon OpenSearch Service.
248
256
  */
249
257
  getPackageVersionHistory(params: OpenSearch.Types.GetPackageVersionHistoryRequest, callback?: (err: AWSError, data: OpenSearch.Types.GetPackageVersionHistoryResponse) => void): Request<OpenSearch.Types.GetPackageVersionHistoryResponse, AWSError>;
250
258
  /**
251
- * Returns a list of Amazon OpenSearch Service package versions, along with their creation time and commit message. For more information, see Custom packages for Amazon OpenSearch Service.
259
+ * Returns a list of Amazon OpenSearch Service package versions, along with their creation time, commit message, and plugin properties (if the package is a zip plugin package). For more information, see Custom packages for Amazon OpenSearch Service.
252
260
  */
253
261
  getPackageVersionHistory(callback?: (err: AWSError, data: OpenSearch.Types.GetPackageVersionHistoryResponse) => void): Request<OpenSearch.Types.GetPackageVersionHistoryResponse, AWSError>;
254
262
  /**
@@ -717,6 +725,35 @@ declare namespace OpenSearch {
717
725
  PendingDeletion?: Boolean;
718
726
  }
719
727
  export type AutoTuneType = "SCHEDULED_ACTION"|string;
728
+ export type AvailabilityZone = string;
729
+ export interface AvailabilityZoneInfo {
730
+ /**
731
+ * The name of the Availability Zone.
732
+ */
733
+ AvailabilityZoneName?: AvailabilityZone;
734
+ /**
735
+ * The current state of the Availability Zone. Current options are Active and StandBy. Active - Data nodes in the Availability Zone are in use. StandBy - Data nodes in the Availability Zone are in a standby state. NotAvailable - Unable to retrieve information.
736
+ */
737
+ ZoneStatus?: ZoneStatus;
738
+ /**
739
+ * The total number of data nodes configured in the Availability Zone.
740
+ */
741
+ ConfiguredDataNodeCount?: NumberOfNodes;
742
+ /**
743
+ * The number of data nodes active in the Availability Zone.
744
+ */
745
+ AvailableDataNodeCount?: NumberOfNodes;
746
+ /**
747
+ * The total number of primary and replica shards in the Availability Zone.
748
+ */
749
+ TotalShards?: NumberOfShards;
750
+ /**
751
+ * The total number of primary and replica shards that aren't allocated to any of the nodes in the Availability Zone.
752
+ */
753
+ TotalUnAssignedShards?: NumberOfShards;
754
+ }
755
+ export type AvailabilityZoneInfoList = AvailabilityZoneInfo[];
756
+ export type AvailabilityZoneList = AvailabilityZone[];
720
757
  export type BackendRole = string;
721
758
  export type Boolean = boolean;
722
759
  export interface CancelServiceSoftwareUpdateRequest {
@@ -820,7 +857,7 @@ declare namespace OpenSearch {
820
857
  */
821
858
  DedicatedMasterType?: OpenSearchPartitionInstanceType;
822
859
  /**
823
- * Number of dedicated master nodes in the cluster. This number must be greater than 1, otherwise you receive a validation exception.
860
+ * Number of dedicated master nodes in the cluster. This number must be greater than 2 and not 4, otherwise you receive a validation exception.
824
861
  */
825
862
  DedicatedMasterCount?: IntegerClass;
826
863
  /**
@@ -839,6 +876,10 @@ declare namespace OpenSearch {
839
876
  * Container for cold storage configuration options.
840
877
  */
841
878
  ColdStorageOptions?: ColdStorageOptions;
879
+ /**
880
+ * A boolean that indicates whether a multi-AZ domain is turned on with a standby AZ. For more information, see Configuring a multi-AZ domain in Amazon OpenSearch Service.
881
+ */
882
+ MultiAZWithStandbyEnabled?: Boolean;
842
883
  }
843
884
  export interface ClusterConfigStatus {
844
885
  /**
@@ -1040,7 +1081,7 @@ declare namespace OpenSearch {
1040
1081
  */
1041
1082
  PackageName: PackageName;
1042
1083
  /**
1043
- * Type of package.
1084
+ * The type of package.
1044
1085
  */
1045
1086
  PackageType: PackageType;
1046
1087
  /**
@@ -1194,6 +1235,66 @@ declare namespace OpenSearch {
1194
1235
  */
1195
1236
  DomainConfig: DomainConfig;
1196
1237
  }
1238
+ export interface DescribeDomainHealthRequest {
1239
+ /**
1240
+ * The name of the domain.
1241
+ */
1242
+ DomainName: DomainName;
1243
+ }
1244
+ export interface DescribeDomainHealthResponse {
1245
+ /**
1246
+ * The current state of the domain. Processing - The domain has updates in progress. Active - Requested changes have been processed and deployed to the domain.
1247
+ */
1248
+ DomainState?: DomainState;
1249
+ /**
1250
+ * The number of Availability Zones configured for the domain. If the service is unable to fetch this information, it will return NotAvailable.
1251
+ */
1252
+ AvailabilityZoneCount?: NumberOfAZs;
1253
+ /**
1254
+ * The number of active Availability Zones configured for the domain. If the service is unable to fetch this information, it will return NotAvailable.
1255
+ */
1256
+ ActiveAvailabilityZoneCount?: NumberOfAZs;
1257
+ /**
1258
+ * The number of standby Availability Zones configured for the domain. If the service is unable to fetch this information, it will return NotAvailable.
1259
+ */
1260
+ StandByAvailabilityZoneCount?: NumberOfAZs;
1261
+ /**
1262
+ * The number of data nodes configured for the domain. If the service is unable to fetch this information, it will return NotAvailable.
1263
+ */
1264
+ DataNodeCount?: NumberOfNodes;
1265
+ /**
1266
+ * A boolean that indicates if dedicated master nodes are activated for the domain.
1267
+ */
1268
+ DedicatedMaster?: Boolean;
1269
+ /**
1270
+ * The number of nodes that can be elected as a master node. If dedicated master nodes is turned on, this value is the number of dedicated master nodes configured for the domain. If the service is unable to fetch this information, it will return NotAvailable.
1271
+ */
1272
+ MasterEligibleNodeCount?: NumberOfNodes;
1273
+ /**
1274
+ * The number of warm nodes configured for the domain.
1275
+ */
1276
+ WarmNodeCount?: NumberOfNodes;
1277
+ /**
1278
+ * Indicates whether the domain has an elected master node. Available - The domain has an elected master node. UnAvailable - The master node hasn't yet been elected, and a quorum to elect a new master node hasn't been reached.
1279
+ */
1280
+ MasterNode?: MasterNodeStatus;
1281
+ /**
1282
+ * The current health status of your cluster. Red - At least one primary shard is not allocated to any node. Yellow - All primary shards are allocated to nodes, but some replicas aren’t. Green - All primary shards and their replicas are allocated to nodes. NotAvailable - Unable to retrieve cluster health.
1283
+ */
1284
+ ClusterHealth?: DomainHealth;
1285
+ /**
1286
+ * The total number of primary and replica shards for the domain.
1287
+ */
1288
+ TotalShards?: NumberOfShards;
1289
+ /**
1290
+ * The total number of primary and replica shards not allocated to any of the nodes for the cluster.
1291
+ */
1292
+ TotalUnAssignedShards?: NumberOfShards;
1293
+ /**
1294
+ * A list of EnvironmentInfo for the domain.
1295
+ */
1296
+ EnvironmentInformation?: EnvironmentInfoList;
1297
+ }
1197
1298
  export interface DescribeDomainRequest {
1198
1299
  /**
1199
1300
  * The name of the domain that you want information about.
@@ -1537,6 +1638,7 @@ declare namespace OpenSearch {
1537
1638
  */
1538
1639
  Status: OptionStatus;
1539
1640
  }
1641
+ export type DomainHealth = "Red"|"Yellow"|"Green"|"NotAvailable"|string;
1540
1642
  export type DomainId = string;
1541
1643
  export interface DomainInfo {
1542
1644
  /**
@@ -1588,7 +1690,7 @@ declare namespace OpenSearch {
1588
1690
  */
1589
1691
  PackageVersion?: PackageVersion;
1590
1692
  /**
1591
- * Denotes the location of the package on the OpenSearch Service cluster nodes. It's the same as synonym_path for dictionary files.
1693
+ * The relative path of the package on the OpenSearch Service cluster nodes. This is synonym_path when the package is for synonym files.
1592
1694
  */
1593
1695
  ReferencePath?: ReferencePath;
1594
1696
  /**
@@ -1598,6 +1700,7 @@ declare namespace OpenSearch {
1598
1700
  }
1599
1701
  export type DomainPackageDetailsList = DomainPackageDetails[];
1600
1702
  export type DomainPackageStatus = "ASSOCIATING"|"ASSOCIATION_FAILED"|"ACTIVE"|"DISSOCIATING"|"DISSOCIATION_FAILED"|string;
1703
+ export type DomainState = "Active"|"Processing"|"NotAvailable"|string;
1601
1704
  export interface DomainStatus {
1602
1705
  /**
1603
1706
  * Unique identifier for the domain.
@@ -1810,6 +1913,13 @@ declare namespace OpenSearch {
1810
1913
  export type Endpoint = string;
1811
1914
  export type EndpointsMap = {[key: string]: ServiceUrl};
1812
1915
  export type EngineType = "OpenSearch"|"Elasticsearch"|string;
1916
+ export interface EnvironmentInfo {
1917
+ /**
1918
+ * A list of AvailabilityZoneInfo for the domain.
1919
+ */
1920
+ AvailabilityZoneInformation?: AvailabilityZoneInfoList;
1921
+ }
1922
+ export type EnvironmentInfoList = EnvironmentInfo[];
1813
1923
  export interface ErrorDetails {
1814
1924
  /**
1815
1925
  * The type of error that occurred.
@@ -2001,8 +2111,13 @@ declare namespace OpenSearch {
2001
2111
  * Whether the instance acts as a data node, a dedicated master node, or an UltraWarm node.
2002
2112
  */
2003
2113
  InstanceRole?: InstanceRoleList;
2114
+ /**
2115
+ * The supported Availability Zones for the instance type.
2116
+ */
2117
+ AvailabilityZones?: AvailabilityZoneList;
2004
2118
  }
2005
2119
  export type InstanceTypeDetailsList = InstanceTypeDetails[];
2120
+ export type InstanceTypeString = string;
2006
2121
  export type Integer = number;
2007
2122
  export type IntegerClass = number;
2008
2123
  export type Issue = string;
@@ -2065,11 +2180,11 @@ declare namespace OpenSearch {
2065
2180
  }
2066
2181
  export interface ListInstanceTypeDetailsRequest {
2067
2182
  /**
2068
- * Version of OpenSearch or Elasticsearch, in the format Elasticsearch_X.Y or OpenSearch_X.Y. Defaults to the latest version of OpenSearch.
2183
+ * The version of OpenSearch or Elasticsearch, in the format Elasticsearch_X.Y or OpenSearch_X.Y. Defaults to the latest version of OpenSearch.
2069
2184
  */
2070
2185
  EngineVersion: VersionString;
2071
2186
  /**
2072
- * Name of the domain to list instance type details for.
2187
+ * The name of the domain.
2073
2188
  */
2074
2189
  DomainName?: DomainName;
2075
2190
  /**
@@ -2080,6 +2195,14 @@ declare namespace OpenSearch {
2080
2195
  * If your initial ListInstanceTypeDetails operation returns a nextToken, you can include the returned nextToken in subsequent ListInstanceTypeDetails operations, which returns results in the next page.
2081
2196
  */
2082
2197
  NextToken?: NextToken;
2198
+ /**
2199
+ * An optional parameter that specifies the Availability Zones for the domain.
2200
+ */
2201
+ RetrieveAZs?: Boolean;
2202
+ /**
2203
+ * An optional parameter that lists information for a given instance type.
2204
+ */
2205
+ InstanceType?: InstanceTypeString;
2083
2206
  }
2084
2207
  export interface ListInstanceTypeDetailsResponse {
2085
2208
  /**
@@ -2250,6 +2373,7 @@ declare namespace OpenSearch {
2250
2373
  }
2251
2374
  export type LogType = "INDEX_SLOW_LOGS"|"SEARCH_SLOW_LOGS"|"ES_APPLICATION_LOGS"|"AUDIT_LOGS"|string;
2252
2375
  export type Long = number;
2376
+ export type MasterNodeStatus = "Available"|"UnAvailable"|string;
2253
2377
  export interface MasterUserOptions {
2254
2378
  /**
2255
2379
  * Amazon Resource Name (ARN) for the master user. Only specify if InternalUserDatabaseEnabled is false.
@@ -2286,6 +2410,9 @@ declare namespace OpenSearch {
2286
2410
  Status: OptionStatus;
2287
2411
  }
2288
2412
  export type NonEmptyString = string;
2413
+ export type NumberOfAZs = string;
2414
+ export type NumberOfNodes = string;
2415
+ export type NumberOfShards = string;
2289
2416
  export interface OffPeakWindow {
2290
2417
  /**
2291
2418
  * A custom start time for the off-peak window, in Coordinated Universal Time (UTC). The window length will always be 10 hours, so you can't specify an end time. For example, if you specify 11:00 P.M. UTC as a start time, the end time will automatically be set to 9:00 A.M.
@@ -2294,7 +2421,7 @@ declare namespace OpenSearch {
2294
2421
  }
2295
2422
  export interface OffPeakWindowOptions {
2296
2423
  /**
2297
- * Whether to enable an off-peak window. This option is only available when modifying a domain created prior to February 13, 2023, not when creating a new domain. All domains created after this date have the off-peak window enabled by default. You can't disable the off-peak window after it's enabled for a domain.
2424
+ * Whether to enable an off-peak window. This option is only available when modifying a domain created prior to February 16, 2023, not when creating a new domain. All domains created after this date have the off-peak window enabled by default. You can't disable the off-peak window after it's enabled for a domain.
2298
2425
  */
2299
2426
  Enabled?: Boolean;
2300
2427
  /**
@@ -2388,7 +2515,7 @@ declare namespace OpenSearch {
2388
2515
  */
2389
2516
  PackageID?: PackageID;
2390
2517
  /**
2391
- * User-specified name of the package.
2518
+ * The user-specified name of the package.
2392
2519
  */
2393
2520
  PackageName?: PackageName;
2394
2521
  /**
@@ -2400,7 +2527,7 @@ declare namespace OpenSearch {
2400
2527
  */
2401
2528
  PackageDescription?: PackageDescription;
2402
2529
  /**
2403
- * Current status of the package.
2530
+ * The current status of the package. The available options are AVAILABLE, COPYING, COPY_FAILED, VALIDATNG, VALIDATION_FAILED, DELETING, and DELETE_FAILED.
2404
2531
  */
2405
2532
  PackageStatus?: PackageStatus;
2406
2533
  /**
@@ -2915,7 +3042,7 @@ declare namespace OpenSearch {
2915
3042
  */
2916
3043
  CognitoOptions?: CognitoOptions;
2917
3044
  /**
2918
- * Key-value pairs to specify advanced configuration options. The following key-value pairs are supported: "rest.action.multi.allow_explicit_index": "true" | "false" - Note the use of a string rather than a boolean. Specifies whether explicit references to indexes are allowed inside the body of HTTP requests. If you want to configure access policies for domain sub-resources, such as specific indexes and domain APIs, you must disable this property. Default is true. "indices.fielddata.cache.size": "80" - Note the use of a string rather than a boolean. Specifies the percentage of heap space allocated to field data. Default is unbounded. "indices.query.bool.max_clause_count": "1024" - Note the use of a string rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean query. Default is 1,024. Queries with more than the permitted number of clauses result in a TooManyClauses error. "override_main_response_version": "true" | "false" - Note the use of a string rather than a boolean. Specifies whether the domain reports its version as 7.10 to allow Elasticsearch OSS clients and plugins to continue working with it. Default is false when creating a domain and true when upgrading a domain. For more information, see Advanced cluster parameters.
3045
+ * Key-value pairs to specify advanced configuration options. The following key-value pairs are supported: "rest.action.multi.allow_explicit_index": "true" | "false" - Note the use of a string rather than a boolean. Specifies whether explicit references to indexes are allowed inside the body of HTTP requests. If you want to configure access policies for domain sub-resources, such as specific indexes and domain APIs, you must disable this property. Default is true. "indices.fielddata.cache.size": "80" - Note the use of a string rather than a boolean. Specifies the percentage of heap space allocated to field data. Default is unbounded. "indices.query.bool.max_clause_count": "1024" - Note the use of a string rather than a boolean. Specifies the maximum number of clauses allowed in a Lucene boolean query. Default is 1,024. Queries with more than the permitted number of clauses result in a TooManyClauses error. For more information, see Advanced cluster parameters.
2919
3046
  */
2920
3047
  AdvancedOptions?: AdvancedOptions;
2921
3048
  /**
@@ -3277,6 +3404,7 @@ declare namespace OpenSearch {
3277
3404
  */
3278
3405
  AvailabilityZoneCount?: IntegerClass;
3279
3406
  }
3407
+ export type ZoneStatus = "Active"|"StandBy"|"NotAvailable"|string;
3280
3408
  /**
3281
3409
  * A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
3282
3410
  */
@@ -308,11 +308,11 @@ declare class WellArchitected extends Service {
308
308
  */
309
309
  updateAnswer(callback?: (err: AWSError, data: WellArchitected.Types.UpdateAnswerOutput) => void): Request<WellArchitected.Types.UpdateAnswerOutput, AWSError>;
310
310
  /**
311
- * Updates whether the Amazon Web Services account is opted into organization sharing features.
311
+ * Updates whether the Amazon Web Services account is opted into organization sharing and discovery integration features.
312
312
  */
313
313
  updateGlobalSettings(params: WellArchitected.Types.UpdateGlobalSettingsInput, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
314
314
  /**
315
- * Updates whether the Amazon Web Services account is opted into organization sharing features.
315
+ * Updates whether the Amazon Web Services account is opted into organization sharing and discovery integration features.
316
316
  */
317
317
  updateGlobalSettings(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
318
318
  /**
@@ -700,6 +700,7 @@ declare namespace WellArchitected {
700
700
  WorkloadId?: WorkloadId;
701
701
  ShareId?: ShareId;
702
702
  }
703
+ export type DefinitionType = "WORKLOAD_METADATA"|"APP_REGISTRY"|string;
703
704
  export interface DeleteLensInput {
704
705
  LensAlias: LensAlias;
705
706
  ClientRequestToken: ClientRequestToken;
@@ -727,6 +728,7 @@ declare namespace WellArchitected {
727
728
  WorkloadId: WorkloadId;
728
729
  LensAliases: LensAliases;
729
730
  }
731
+ export type DiscoveryIntegrationStatus = "ENABLED"|"DISABLED"|string;
730
732
  export type DisplayText = string;
731
733
  export interface ExportLensInput {
732
734
  LensAlias: LensAlias;
@@ -1463,6 +1465,10 @@ declare namespace WellArchitected {
1463
1465
  * The status of organization sharing settings.
1464
1466
  */
1465
1467
  OrganizationSharingStatus?: OrganizationSharingStatus;
1468
+ /**
1469
+ * The status of discovery support settings.
1470
+ */
1471
+ DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus;
1466
1472
  }
1467
1473
  export interface UpdateLensReviewInput {
1468
1474
  WorkloadId: WorkloadId;
@@ -1593,6 +1599,10 @@ declare namespace WellArchitected {
1593
1599
  * Discovery integration status in respect to Trusted Advisor for the workload.
1594
1600
  */
1595
1601
  TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus;
1602
+ /**
1603
+ * The mode to use for identifying resources associated with the workload. You can specify WORKLOAD_METADATA, APP_REGISTRY, or both.
1604
+ */
1605
+ WorkloadResourceDefinition?: WorkloadResourceDefinition;
1596
1606
  }
1597
1607
  export type WorkloadEnvironment = "PRODUCTION"|"PREPRODUCTION"|string;
1598
1608
  export type WorkloadId = string;
@@ -1605,6 +1615,7 @@ declare namespace WellArchitected {
1605
1615
  export type WorkloadNonAwsRegion = string;
1606
1616
  export type WorkloadNonAwsRegions = WorkloadNonAwsRegion[];
1607
1617
  export type WorkloadPillarPriorities = PillarId[];
1618
+ export type WorkloadResourceDefinition = DefinitionType[];
1608
1619
  export type WorkloadReviewOwner = string;
1609
1620
  export interface WorkloadShare {
1610
1621
  ShareId?: ShareId;
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1370.0',
86
+ VERSION: '2.1371.0',
87
87
 
88
88
  /**
89
89
  * @api private