aws-sdk 2.945.0 → 2.949.0
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.
- package/CHANGELOG.md +25 -1
- package/README.md +1 -1
- package/apis/chime-2018-05-01.min.json +259 -258
- package/apis/dms-2016-01-01.min.json +127 -97
- package/apis/ec2-2016-11-15.min.json +1236 -930
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/emr-containers-2020-10-01.min.json +25 -23
- package/apis/glue-2017-03-31.min.json +254 -220
- package/apis/health-2016-08-04.min.json +29 -29
- package/apis/healthlake-2017-07-01.min.json +258 -60
- package/apis/healthlake-2017-07-01.paginators.json +10 -0
- package/apis/iotsitewise-2019-12-02.min.json +46 -25
- package/apis/lightsail-2016-11-28.min.json +557 -192
- package/apis/location-2020-11-19.min.json +205 -0
- package/apis/robomaker-2018-06-29.min.json +6 -3
- package/apis/wellarchitected-2020-03-31.min.json +60 -19
- package/clients/acm.d.ts +16 -16
- package/clients/appintegrations.d.ts +22 -22
- package/clients/auditmanager.d.ts +138 -138
- package/clients/chime.d.ts +5 -0
- package/clients/cognitoidentityserviceprovider.d.ts +72 -72
- package/clients/directconnect.d.ts +11 -8
- package/clients/dms.d.ts +253 -204
- package/clients/ec2.d.ts +332 -6
- package/clients/ecs.d.ts +83 -83
- package/clients/emrcontainers.d.ts +12 -2
- package/clients/glue.d.ts +38 -3
- package/clients/health.d.ts +3 -2
- package/clients/healthlake.d.ts +220 -5
- package/clients/imagebuilder.d.ts +27 -27
- package/clients/lexmodelbuildingservice.d.ts +1 -1
- package/clients/lightsail.d.ts +610 -150
- package/clients/location.d.ts +227 -35
- package/clients/robomaker.d.ts +12 -0
- package/clients/wellarchitected.d.ts +76 -5
- package/dist/aws-sdk-core-react-native.js +6 -1
- package/dist/aws-sdk-react-native.js +20 -15
- package/dist/aws-sdk.js +1455 -933
- package/dist/aws-sdk.min.js +65 -65
- package/lib/core.d.ts +1 -0
- package/lib/core.js +1 -1
- package/lib/json/builder.js +3 -0
- package/lib/json/parser.js +1 -0
- package/lib/model/index.d.ts +4 -0
- package/lib/model/shape.js +1 -0
- package/package.json +1 -1
- package/scripts/lib/ts-generator.js +16 -0
|
@@ -228,19 +228,19 @@ declare class Imagebuilder extends Service {
|
|
|
228
228
|
*/
|
|
229
229
|
importComponent(callback?: (err: AWSError, data: Imagebuilder.Types.ImportComponentResponse) => void): Request<Imagebuilder.Types.ImportComponentResponse, AWSError>;
|
|
230
230
|
/**
|
|
231
|
-
* Returns the list of component build versions for the specified semantic version.
|
|
231
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
232
232
|
*/
|
|
233
233
|
listComponentBuildVersions(params: Imagebuilder.Types.ListComponentBuildVersionsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentBuildVersionsResponse) => void): Request<Imagebuilder.Types.ListComponentBuildVersionsResponse, AWSError>;
|
|
234
234
|
/**
|
|
235
|
-
* Returns the list of component build versions for the specified semantic version.
|
|
235
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
236
236
|
*/
|
|
237
237
|
listComponentBuildVersions(callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentBuildVersionsResponse) => void): Request<Imagebuilder.Types.ListComponentBuildVersionsResponse, AWSError>;
|
|
238
238
|
/**
|
|
239
|
-
* Returns the list of component build versions for the specified semantic version.
|
|
239
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
240
240
|
*/
|
|
241
241
|
listComponents(params: Imagebuilder.Types.ListComponentsRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentsResponse) => void): Request<Imagebuilder.Types.ListComponentsResponse, AWSError>;
|
|
242
242
|
/**
|
|
243
|
-
* Returns the list of component build versions for the specified semantic version.
|
|
243
|
+
* Returns the list of component build versions for the specified semantic version. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
244
244
|
*/
|
|
245
245
|
listComponents(callback?: (err: AWSError, data: Imagebuilder.Types.ListComponentsResponse) => void): Request<Imagebuilder.Types.ListComponentsResponse, AWSError>;
|
|
246
246
|
/**
|
|
@@ -656,7 +656,7 @@ declare namespace Imagebuilder {
|
|
|
656
656
|
export type ComponentType = "BUILD"|"TEST"|string;
|
|
657
657
|
export interface ComponentVersion {
|
|
658
658
|
/**
|
|
659
|
-
* The Amazon Resource Name (ARN) of the component.
|
|
659
|
+
* The Amazon Resource Name (ARN) of the component. Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to that object as follows: Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either left off entirely, or they are specified as wildcards, for example: x.x.x. Version ARNs have only the first three nodes: <major>.<minor>.<patch> Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
|
|
660
660
|
*/
|
|
661
661
|
arn?: ImageBuilderArn;
|
|
662
662
|
/**
|
|
@@ -664,7 +664,7 @@ declare namespace Imagebuilder {
|
|
|
664
664
|
*/
|
|
665
665
|
name?: ResourceName;
|
|
666
666
|
/**
|
|
667
|
-
* The semantic version of the component.
|
|
667
|
+
* The semantic version of the component. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number, and that is not open for updates. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
668
668
|
*/
|
|
669
669
|
version?: VersionNumber;
|
|
670
670
|
/**
|
|
@@ -722,7 +722,7 @@ declare namespace Imagebuilder {
|
|
|
722
722
|
export type ContainerList = Container[];
|
|
723
723
|
export interface ContainerRecipe {
|
|
724
724
|
/**
|
|
725
|
-
* The Amazon Resource Name (ARN) of the container recipe.
|
|
725
|
+
* The Amazon Resource Name (ARN) of the container recipe. Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to that object as follows: Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either left off entirely, or they are specified as wildcards, for example: x.x.x. Version ARNs have only the first three nodes: <major>.<minor>.<patch> Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
|
|
726
726
|
*/
|
|
727
727
|
arn?: ImageBuilderArn;
|
|
728
728
|
/**
|
|
@@ -746,7 +746,7 @@ declare namespace Imagebuilder {
|
|
|
746
746
|
*/
|
|
747
747
|
owner?: NonEmptyString;
|
|
748
748
|
/**
|
|
749
|
-
* The semantic version of the container recipe
|
|
749
|
+
* The semantic version of the container recipe. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number, and that is not open for updates. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
750
750
|
*/
|
|
751
751
|
version?: VersionNumber;
|
|
752
752
|
/**
|
|
@@ -834,7 +834,7 @@ declare namespace Imagebuilder {
|
|
|
834
834
|
*/
|
|
835
835
|
name: ResourceName;
|
|
836
836
|
/**
|
|
837
|
-
* The semantic version of the component. This version follows the semantic version syntax. For
|
|
837
|
+
* The semantic version of the component. This version follows the semantic version syntax. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number, and that is not open for updates. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01.
|
|
838
838
|
*/
|
|
839
839
|
semanticVersion: VersionNumber;
|
|
840
840
|
/**
|
|
@@ -902,7 +902,7 @@ declare namespace Imagebuilder {
|
|
|
902
902
|
*/
|
|
903
903
|
description?: NonEmptyString;
|
|
904
904
|
/**
|
|
905
|
-
* The semantic version of the container recipe
|
|
905
|
+
* The semantic version of the container recipe. This version follows the semantic version syntax. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number, and that is not open for updates. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01.
|
|
906
906
|
*/
|
|
907
907
|
semanticVersion: VersionNumber;
|
|
908
908
|
/**
|
|
@@ -1078,7 +1078,7 @@ declare namespace Imagebuilder {
|
|
|
1078
1078
|
*/
|
|
1079
1079
|
description?: NonEmptyString;
|
|
1080
1080
|
/**
|
|
1081
|
-
* The semantic version of the image recipe.
|
|
1081
|
+
* The semantic version of the image recipe. This version follows the semantic version syntax. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number, and that is not open for updates. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01.
|
|
1082
1082
|
*/
|
|
1083
1083
|
semanticVersion: VersionNumber;
|
|
1084
1084
|
/**
|
|
@@ -1670,7 +1670,7 @@ declare namespace Imagebuilder {
|
|
|
1670
1670
|
}
|
|
1671
1671
|
export interface Image {
|
|
1672
1672
|
/**
|
|
1673
|
-
* The Amazon Resource Name (ARN) of the image.
|
|
1673
|
+
* The Amazon Resource Name (ARN) of the image. Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to that object as follows: Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either left off entirely, or they are specified as wildcards, for example: x.x.x. Version ARNs have only the first three nodes: <major>.<minor>.<patch> Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
|
|
1674
1674
|
*/
|
|
1675
1675
|
arn?: ImageBuilderArn;
|
|
1676
1676
|
/**
|
|
@@ -1682,7 +1682,7 @@ declare namespace Imagebuilder {
|
|
|
1682
1682
|
*/
|
|
1683
1683
|
name?: ResourceName;
|
|
1684
1684
|
/**
|
|
1685
|
-
* The semantic version of the image.
|
|
1685
|
+
* The semantic version of the image. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number, and that is not open for updates. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
1686
1686
|
*/
|
|
1687
1687
|
version?: VersionNumber;
|
|
1688
1688
|
/**
|
|
@@ -1706,7 +1706,7 @@ declare namespace Imagebuilder {
|
|
|
1706
1706
|
*/
|
|
1707
1707
|
imageRecipe?: ImageRecipe;
|
|
1708
1708
|
/**
|
|
1709
|
-
* The
|
|
1709
|
+
* The recipe that is used to create an Image Builder container image.
|
|
1710
1710
|
*/
|
|
1711
1711
|
containerRecipe?: ContainerRecipe;
|
|
1712
1712
|
/**
|
|
@@ -1989,35 +1989,35 @@ declare namespace Imagebuilder {
|
|
|
1989
1989
|
export type ImageType = "AMI"|"DOCKER"|string;
|
|
1990
1990
|
export interface ImageVersion {
|
|
1991
1991
|
/**
|
|
1992
|
-
* The Amazon Resource Name (ARN) of
|
|
1992
|
+
* The Amazon Resource Name (ARN) of a specific version of an Image Builder image. Semantic versioning is included in each object's Amazon Resource Name (ARN), at the level that applies to that object as follows: Versionless ARNs and Name ARNs do not include specific values in any of the nodes. The nodes are either left off entirely, or they are specified as wildcards, for example: x.x.x. Version ARNs have only the first three nodes: <major>.<minor>.<patch> Build version ARNs have all four nodes, and point to a specific build for a specific version of an object.
|
|
1993
1993
|
*/
|
|
1994
1994
|
arn?: ImageBuilderArn;
|
|
1995
1995
|
/**
|
|
1996
|
-
* The name of
|
|
1996
|
+
* The name of this specific version of an Image Builder image.
|
|
1997
1997
|
*/
|
|
1998
1998
|
name?: ResourceName;
|
|
1999
1999
|
/**
|
|
2000
|
-
* Specifies whether this is an AMI or container image.
|
|
2000
|
+
* Specifies whether this image is an AMI or a container image.
|
|
2001
2001
|
*/
|
|
2002
2002
|
type?: ImageType;
|
|
2003
2003
|
/**
|
|
2004
|
-
* The semantic version of the
|
|
2004
|
+
* Details for a specific version of an Image Builder image. This version follows the semantic version syntax. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Assignment: For the first three nodes you can assign any positive integer value, including zero, with an upper limit of 2^30-1, or 1073741823 for each node. Image Builder automatically assigns the build number, and that is not open for updates. Patterns: You can use any numeric pattern that adheres to the assignment requirements for the nodes that you can assign. For example, you might choose a software version pattern, such as 1.0.0, or a date, such as 2021.01.01. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
2005
2005
|
*/
|
|
2006
2006
|
version?: VersionNumber;
|
|
2007
2007
|
/**
|
|
2008
|
-
* The platform of the image
|
|
2008
|
+
* The platform of the image version, for example "Windows" or "Linux".
|
|
2009
2009
|
*/
|
|
2010
2010
|
platform?: Platform;
|
|
2011
2011
|
/**
|
|
2012
|
-
* The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.
|
|
2012
|
+
* The operating system version of the Amazon EC2 build instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019.
|
|
2013
2013
|
*/
|
|
2014
2014
|
osVersion?: OsVersion;
|
|
2015
2015
|
/**
|
|
2016
|
-
* The owner of the image
|
|
2016
|
+
* The owner of the image version.
|
|
2017
2017
|
*/
|
|
2018
2018
|
owner?: NonEmptyString;
|
|
2019
2019
|
/**
|
|
2020
|
-
* The date
|
|
2020
|
+
* The date on which this specific version of the Image Builder image was created.
|
|
2021
2021
|
*/
|
|
2022
2022
|
dateCreated?: DateTime;
|
|
2023
2023
|
}
|
|
@@ -2030,7 +2030,7 @@ declare namespace Imagebuilder {
|
|
|
2030
2030
|
*/
|
|
2031
2031
|
name: ResourceName;
|
|
2032
2032
|
/**
|
|
2033
|
-
* The semantic version of the component. This version follows the semantic version syntax.
|
|
2033
|
+
* The semantic version of the component. This version follows the semantic version syntax. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
2034
2034
|
*/
|
|
2035
2035
|
semanticVersion: VersionNumber;
|
|
2036
2036
|
/**
|
|
@@ -2042,7 +2042,7 @@ declare namespace Imagebuilder {
|
|
|
2042
2042
|
*/
|
|
2043
2043
|
changeDescription?: NonEmptyString;
|
|
2044
2044
|
/**
|
|
2045
|
-
* The type of the component denotes whether the component is used to build the image or only to test it.
|
|
2045
|
+
* The type of the component denotes whether the component is used to build the image, or only to test it.
|
|
2046
2046
|
*/
|
|
2047
2047
|
type: ComponentType;
|
|
2048
2048
|
/**
|
|
@@ -2290,7 +2290,7 @@ declare namespace Imagebuilder {
|
|
|
2290
2290
|
*/
|
|
2291
2291
|
filters?: FilterList;
|
|
2292
2292
|
/**
|
|
2293
|
-
* Returns the list of component build versions for the specified
|
|
2293
|
+
* Returns the list of component build versions for the specified name.
|
|
2294
2294
|
*/
|
|
2295
2295
|
byName?: Boolean;
|
|
2296
2296
|
/**
|
|
@@ -2308,7 +2308,7 @@ declare namespace Imagebuilder {
|
|
|
2308
2308
|
*/
|
|
2309
2309
|
requestId?: NonEmptyString;
|
|
2310
2310
|
/**
|
|
2311
|
-
* The list of component semantic versions.
|
|
2311
|
+
* The list of component semantic versions. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them.
|
|
2312
2312
|
*/
|
|
2313
2313
|
componentVersionList?: ComponentVersionList;
|
|
2314
2314
|
/**
|
|
@@ -2560,7 +2560,7 @@ declare namespace Imagebuilder {
|
|
|
2560
2560
|
*/
|
|
2561
2561
|
requestId?: NonEmptyString;
|
|
2562
2562
|
/**
|
|
2563
|
-
* The list of image semantic versions.
|
|
2563
|
+
* The list of image semantic versions. The semantic version has four nodes: <major>.<minor>.<patch>/<build>. You can assign values for the first three, and can filter on all of them. Filtering: When you retrieve or reference a resource with a semantic version, you can use wildcards (x) to filter your results. When you use a wildcard in any node, all nodes to the right of the first wildcard must also be wildcards. For example, specifying "1.2.x", or "1.x.x" works to filter list results, but neither "1.x.2", nor "x.2.x" will work. You do not have to specify the build - Image Builder automatically uses a wildcard for that, if applicable.
|
|
2564
2564
|
*/
|
|
2565
2565
|
imageVersionList?: ImageVersionList;
|
|
2566
2566
|
/**
|
|
@@ -1729,7 +1729,7 @@ declare namespace LexModelBuildingService {
|
|
|
1729
1729
|
tags?: TagList;
|
|
1730
1730
|
}
|
|
1731
1731
|
export type ListsOfUtterances = UtteranceList[];
|
|
1732
|
-
export type Locale = "de-DE"|"en-AU"|"en-GB"|"en-US"|"es-419"|"es-ES"|"es-US"|"fr-FR"|"fr-CA"|"it-IT"|"ja-JP"|string;
|
|
1732
|
+
export type Locale = "de-DE"|"en-AU"|"en-GB"|"en-IN"|"en-US"|"es-419"|"es-ES"|"es-US"|"fr-FR"|"fr-CA"|"it-IT"|"ja-JP"|string;
|
|
1733
1733
|
export type LocaleList = Locale[];
|
|
1734
1734
|
export interface LogSettingsRequest {
|
|
1735
1735
|
/**
|