cdk-docker-image-deployment 0.0.173 → 0.0.175
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/.jsii +5 -5
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/@types/aws-lambda/README.md +1 -1
- package/node_modules/@types/aws-lambda/package.json +2 -2
- package/node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts +32 -1
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +3 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +2 -1
- package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +31 -7
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +209 -182
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +143 -116
- package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +328 -18
- package/node_modules/aws-sdk/apis/location-2020-11-19.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +758 -432
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.paginators.json +12 -0
- package/node_modules/aws-sdk/clients/appflow.d.ts +4 -0
- package/node_modules/aws-sdk/clients/connect.d.ts +4 -0
- package/node_modules/aws-sdk/clients/connectcases.d.ts +22 -6
- package/node_modules/aws-sdk/clients/ecs.d.ts +64 -39
- package/node_modules/aws-sdk/clients/grafana.d.ts +11 -11
- package/node_modules/aws-sdk/clients/guardduty.d.ts +34 -34
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +21 -9
- package/node_modules/aws-sdk/clients/location.d.ts +336 -55
- package/node_modules/aws-sdk/clients/macie2.d.ts +40 -40
- package/node_modules/aws-sdk/clients/redshift.d.ts +9 -9
- package/node_modules/aws-sdk/clients/securityhub.d.ts +371 -7
- package/node_modules/aws-sdk/clients/servicecatalog.d.ts +10 -10
- package/node_modules/aws-sdk/clients/wafv2.d.ts +49 -49
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +58 -44
- package/node_modules/aws-sdk/dist/aws-sdk.js +548 -204
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +77 -77
- package/node_modules/aws-sdk/dist/xml2js.js +24 -17
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +8 -8
|
@@ -140,11 +140,11 @@ declare class Grafana extends Service {
|
|
|
140
140
|
*/
|
|
141
141
|
updateWorkspace(callback?: (err: AWSError, data: Grafana.Types.UpdateWorkspaceResponse) => void): Request<Grafana.Types.UpdateWorkspaceResponse, AWSError>;
|
|
142
142
|
/**
|
|
143
|
-
* Use this operation to define the identity provider (IdP) that this workspace authenticates users from, using SAML. You can also map SAML assertion attributes to workspace user information and define which groups in the assertion attribute are to have the Admin and Editor roles in the workspace.
|
|
143
|
+
* Use this operation to define the identity provider (IdP) that this workspace authenticates users from, using SAML. You can also map SAML assertion attributes to workspace user information and define which groups in the assertion attribute are to have the Admin and Editor roles in the workspace. Changes to the authentication method for a workspace may take a few minutes to take effect.
|
|
144
144
|
*/
|
|
145
145
|
updateWorkspaceAuthentication(params: Grafana.Types.UpdateWorkspaceAuthenticationRequest, callback?: (err: AWSError, data: Grafana.Types.UpdateWorkspaceAuthenticationResponse) => void): Request<Grafana.Types.UpdateWorkspaceAuthenticationResponse, AWSError>;
|
|
146
146
|
/**
|
|
147
|
-
* Use this operation to define the identity provider (IdP) that this workspace authenticates users from, using SAML. You can also map SAML assertion attributes to workspace user information and define which groups in the assertion attribute are to have the Admin and Editor roles in the workspace.
|
|
147
|
+
* Use this operation to define the identity provider (IdP) that this workspace authenticates users from, using SAML. You can also map SAML assertion attributes to workspace user information and define which groups in the assertion attribute are to have the Admin and Editor roles in the workspace. Changes to the authentication method for a workspace may take a few minutes to take effect.
|
|
148
148
|
*/
|
|
149
149
|
updateWorkspaceAuthentication(callback?: (err: AWSError, data: Grafana.Types.UpdateWorkspaceAuthenticationResponse) => void): Request<Grafana.Types.UpdateWorkspaceAuthenticationResponse, AWSError>;
|
|
150
150
|
/**
|
|
@@ -298,7 +298,7 @@ declare namespace Grafana {
|
|
|
298
298
|
*/
|
|
299
299
|
organizationRoleName?: OrganizationRoleName;
|
|
300
300
|
/**
|
|
301
|
-
*
|
|
301
|
+
* When creating a workspace through the Amazon Web Services API, CLI or Amazon Web Services CloudFormation, you must manage IAM roles and provision the permissions that the workspace needs to use Amazon Web Services data sources and notification channels. You must also specify a workspaceRoleArn for a role that you will manage for the workspace to use when accessing those datasources and notification channels. The ability for Amazon Managed Grafana to create and update IAM roles on behalf of the user is supported only in the Amazon Managed Grafana console, where this value may be set to SERVICE_MANAGED. Use only the CUSTOMER_MANAGED permission type when creating a workspace with the API, CLI or Amazon Web Services CloudFormation. For more information, see Amazon Managed Grafana permissions and policies for Amazon Web Services data sources and notification channels.
|
|
302
302
|
*/
|
|
303
303
|
permissionType: PermissionType;
|
|
304
304
|
/**
|
|
@@ -314,7 +314,7 @@ declare namespace Grafana {
|
|
|
314
314
|
*/
|
|
315
315
|
vpcConfiguration?: VpcConfiguration;
|
|
316
316
|
/**
|
|
317
|
-
*
|
|
317
|
+
* This parameter is for internal use only, and should not be used.
|
|
318
318
|
*/
|
|
319
319
|
workspaceDataSources?: DataSourceTypesList;
|
|
320
320
|
/**
|
|
@@ -334,7 +334,7 @@ declare namespace Grafana {
|
|
|
334
334
|
*/
|
|
335
335
|
workspaceOrganizationalUnits?: OrganizationalUnitList;
|
|
336
336
|
/**
|
|
337
|
-
*
|
|
337
|
+
* Specified the IAM role that grants permissions to the Amazon Web Services resources that the workspace will view data from, including both data sources and notification channels. You are responsible for managing the permissions for this role as new data sources or notification channels are added.
|
|
338
338
|
*/
|
|
339
339
|
workspaceRoleArn?: IamRoleArn;
|
|
340
340
|
}
|
|
@@ -721,11 +721,11 @@ declare namespace Grafana {
|
|
|
721
721
|
*/
|
|
722
722
|
networkAccessControl?: NetworkAccessConfiguration;
|
|
723
723
|
/**
|
|
724
|
-
* The name of an IAM role that already exists to use to access resources through Organizations.
|
|
724
|
+
* The name of an IAM role that already exists to use to access resources through Organizations. This can only be used with a workspace that has the permissionType set to CUSTOMER_MANAGED.
|
|
725
725
|
*/
|
|
726
726
|
organizationRoleName?: OrganizationRoleName;
|
|
727
727
|
/**
|
|
728
|
-
*
|
|
728
|
+
* Use this parameter if you want to change a workspace from SERVICE_MANAGED to CUSTOMER_MANAGED. This allows you to manage the permissions that the workspace uses to access datasources and notification channels. If the workspace is in a member Amazon Web Services account of an organization, and that account is not a delegated administrator account, and you want the workspace to access data sources in other Amazon Web Services accounts in the organization, you must choose CUSTOMER_MANAGED. If you specify this as CUSTOMER_MANAGED, you must also specify a workspaceRoleArn that the workspace will use for accessing Amazon Web Services resources. For more information on the role and permissions needed, see Amazon Managed Grafana permissions and policies for Amazon Web Services data sources and notification channels Do not use this to convert a CUSTOMER_MANAGED workspace to SERVICE_MANAGED. Do not include this parameter if you want to leave the workspace as SERVICE_MANAGED. You can convert a CUSTOMER_MANAGED workspace to SERVICE_MANAGED using the Amazon Managed Grafana console. For more information, see Managing permissions for data sources and notification channels.
|
|
729
729
|
*/
|
|
730
730
|
permissionType?: PermissionType;
|
|
731
731
|
/**
|
|
@@ -745,7 +745,7 @@ declare namespace Grafana {
|
|
|
745
745
|
*/
|
|
746
746
|
vpcConfiguration?: VpcConfiguration;
|
|
747
747
|
/**
|
|
748
|
-
*
|
|
748
|
+
* This parameter is for internal use only, and should not be used.
|
|
749
749
|
*/
|
|
750
750
|
workspaceDataSources?: DataSourceTypesList;
|
|
751
751
|
/**
|
|
@@ -769,7 +769,7 @@ declare namespace Grafana {
|
|
|
769
769
|
*/
|
|
770
770
|
workspaceOrganizationalUnits?: OrganizationalUnitList;
|
|
771
771
|
/**
|
|
772
|
-
*
|
|
772
|
+
* Specifies an IAM role that grants permissions to Amazon Web Services resources that the workspace accesses, such as data sources and notification channels. If this workspace has permissionType CUSTOMER_MANAGED, then this role is required.
|
|
773
773
|
*/
|
|
774
774
|
workspaceRoleArn?: IamRoleArn;
|
|
775
775
|
}
|
|
@@ -817,7 +817,7 @@ declare namespace Grafana {
|
|
|
817
817
|
*/
|
|
818
818
|
created: Timestamp;
|
|
819
819
|
/**
|
|
820
|
-
* Specifies the Amazon Web Services data sources that have been configured to have IAM roles and permissions created to allow Amazon Managed Grafana to read data from these sources.
|
|
820
|
+
* Specifies the Amazon Web Services data sources that have been configured to have IAM roles and permissions created to allow Amazon Managed Grafana to read data from these sources. This list is only used when the workspace was created through the Amazon Web Services console, and the permissionType is SERVICE_MANAGED.
|
|
821
821
|
*/
|
|
822
822
|
dataSources: DataSourceTypesList;
|
|
823
823
|
/**
|
|
@@ -877,7 +877,7 @@ declare namespace Grafana {
|
|
|
877
877
|
*/
|
|
878
878
|
organizationalUnits?: OrganizationalUnitList;
|
|
879
879
|
/**
|
|
880
|
-
* If this is SERVICE_MANAGED, Amazon Managed Grafana automatically creates the IAM roles and provisions the permissions that the workspace needs to use Amazon Web Services data sources and notification channels. If this is CUSTOMER_MANAGED, you manage those roles and permissions yourself. If you are
|
|
880
|
+
* If this is SERVICE_MANAGED, and the workplace was created through the Amazon Managed Grafana console, then Amazon Managed Grafana automatically creates the IAM roles and provisions the permissions that the workspace needs to use Amazon Web Services data sources and notification channels. If this is CUSTOMER_MANAGED, you must manage those roles and permissions yourself. If you are working with a workspace in a member account of an organization and that account is not a delegated administrator account, and you want the workspace to access data sources in other Amazon Web Services accounts in the organization, this parameter must be set to CUSTOMER_MANAGED. For more information about converting between customer and service managed, see Managing permissions for data sources and notification channels. For more information about the roles and permissions that must be managed for customer managed workspaces, see Amazon Managed Grafana permissions and policies for Amazon Web Services data sources and notification channels
|
|
881
881
|
*/
|
|
882
882
|
permissionType?: PermissionType;
|
|
883
883
|
/**
|
|
@@ -36,11 +36,11 @@ declare class GuardDuty extends Service {
|
|
|
36
36
|
*/
|
|
37
37
|
archiveFindings(callback?: (err: AWSError, data: GuardDuty.Types.ArchiveFindingsResponse) => void): Request<GuardDuty.Types.ArchiveFindingsResponse, AWSError>;
|
|
38
38
|
/**
|
|
39
|
-
* Creates a single Amazon GuardDuty detector. A detector is a resource that represents the GuardDuty service. To start using GuardDuty, you must create a detector in each Region where you enable the service. You can have only one detector per account per Region. All data sources are enabled in a new detector by default.
|
|
39
|
+
* Creates a single Amazon GuardDuty detector. A detector is a resource that represents the GuardDuty service. To start using GuardDuty, you must create a detector in each Region where you enable the service. You can have only one detector per account per Region. All data sources are enabled in a new detector by default. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
40
40
|
*/
|
|
41
41
|
createDetector(params: GuardDuty.Types.CreateDetectorRequest, callback?: (err: AWSError, data: GuardDuty.Types.CreateDetectorResponse) => void): Request<GuardDuty.Types.CreateDetectorResponse, AWSError>;
|
|
42
42
|
/**
|
|
43
|
-
* Creates a single Amazon GuardDuty detector. A detector is a resource that represents the GuardDuty service. To start using GuardDuty, you must create a detector in each Region where you enable the service. You can have only one detector per account per Region. All data sources are enabled in a new detector by default.
|
|
43
|
+
* Creates a single Amazon GuardDuty detector. A detector is a resource that represents the GuardDuty service. To start using GuardDuty, you must create a detector in each Region where you enable the service. You can have only one detector per account per Region. All data sources are enabled in a new detector by default. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
44
44
|
*/
|
|
45
45
|
createDetector(callback?: (err: AWSError, data: GuardDuty.Types.CreateDetectorResponse) => void): Request<GuardDuty.Types.CreateDetectorResponse, AWSError>;
|
|
46
46
|
/**
|
|
@@ -60,11 +60,11 @@ declare class GuardDuty extends Service {
|
|
|
60
60
|
*/
|
|
61
61
|
createIPSet(callback?: (err: AWSError, data: GuardDuty.Types.CreateIPSetResponse) => void): Request<GuardDuty.Types.CreateIPSetResponse, AWSError>;
|
|
62
62
|
/**
|
|
63
|
-
* Creates member accounts of the current Amazon Web Services account by specifying a list of Amazon Web Services account IDs. This step is a prerequisite for managing the associated member accounts either by invitation or through an organization. When using Create Members as an organizations delegated administrator this action will enable GuardDuty in the added member accounts, with the exception of the organization delegated administrator account, which must enable GuardDuty prior to being added as a member. If you are adding accounts by invitation use this action after GuardDuty has
|
|
63
|
+
* Creates member accounts of the current Amazon Web Services account by specifying a list of Amazon Web Services account IDs. This step is a prerequisite for managing the associated member accounts either by invitation or through an organization. When using Create Members as an organizations delegated administrator this action will enable GuardDuty in the added member accounts, with the exception of the organization delegated administrator account, which must enable GuardDuty prior to being added as a member. If you are adding accounts by invitation, use this action after GuardDuty has bee enabled in potential member accounts and before using InviteMembers.
|
|
64
64
|
*/
|
|
65
65
|
createMembers(params: GuardDuty.Types.CreateMembersRequest, callback?: (err: AWSError, data: GuardDuty.Types.CreateMembersResponse) => void): Request<GuardDuty.Types.CreateMembersResponse, AWSError>;
|
|
66
66
|
/**
|
|
67
|
-
* Creates member accounts of the current Amazon Web Services account by specifying a list of Amazon Web Services account IDs. This step is a prerequisite for managing the associated member accounts either by invitation or through an organization. When using Create Members as an organizations delegated administrator this action will enable GuardDuty in the added member accounts, with the exception of the organization delegated administrator account, which must enable GuardDuty prior to being added as a member. If you are adding accounts by invitation use this action after GuardDuty has
|
|
67
|
+
* Creates member accounts of the current Amazon Web Services account by specifying a list of Amazon Web Services account IDs. This step is a prerequisite for managing the associated member accounts either by invitation or through an organization. When using Create Members as an organizations delegated administrator this action will enable GuardDuty in the added member accounts, with the exception of the organization delegated administrator account, which must enable GuardDuty prior to being added as a member. If you are adding accounts by invitation, use this action after GuardDuty has bee enabled in potential member accounts and before using InviteMembers.
|
|
68
68
|
*/
|
|
69
69
|
createMembers(callback?: (err: AWSError, data: GuardDuty.Types.CreateMembersResponse) => void): Request<GuardDuty.Types.CreateMembersResponse, AWSError>;
|
|
70
70
|
/**
|
|
@@ -76,11 +76,11 @@ declare class GuardDuty extends Service {
|
|
|
76
76
|
*/
|
|
77
77
|
createPublishingDestination(callback?: (err: AWSError, data: GuardDuty.Types.CreatePublishingDestinationResponse) => void): Request<GuardDuty.Types.CreatePublishingDestinationResponse, AWSError>;
|
|
78
78
|
/**
|
|
79
|
-
* Generates
|
|
79
|
+
* Generates sample findings of types specified by the list of finding types. If 'NULL' is specified for findingTypes, the API generates sample findings of all supported finding types.
|
|
80
80
|
*/
|
|
81
81
|
createSampleFindings(params: GuardDuty.Types.CreateSampleFindingsRequest, callback?: (err: AWSError, data: GuardDuty.Types.CreateSampleFindingsResponse) => void): Request<GuardDuty.Types.CreateSampleFindingsResponse, AWSError>;
|
|
82
82
|
/**
|
|
83
|
-
* Generates
|
|
83
|
+
* Generates sample findings of types specified by the list of finding types. If 'NULL' is specified for findingTypes, the API generates sample findings of all supported finding types.
|
|
84
84
|
*/
|
|
85
85
|
createSampleFindings(callback?: (err: AWSError, data: GuardDuty.Types.CreateSampleFindingsResponse) => void): Request<GuardDuty.Types.CreateSampleFindingsResponse, AWSError>;
|
|
86
86
|
/**
|
|
@@ -156,19 +156,19 @@ declare class GuardDuty extends Service {
|
|
|
156
156
|
*/
|
|
157
157
|
deleteThreatIntelSet(callback?: (err: AWSError, data: GuardDuty.Types.DeleteThreatIntelSetResponse) => void): Request<GuardDuty.Types.DeleteThreatIntelSetResponse, AWSError>;
|
|
158
158
|
/**
|
|
159
|
-
* Returns a list of malware scans. Each member account can view the malware scans for their own accounts. An administrator can view the malware scans for all the member accounts.
|
|
159
|
+
* Returns a list of malware scans. Each member account can view the malware scans for their own accounts. An administrator can view the malware scans for all the member accounts. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
160
160
|
*/
|
|
161
161
|
describeMalwareScans(params: GuardDuty.Types.DescribeMalwareScansRequest, callback?: (err: AWSError, data: GuardDuty.Types.DescribeMalwareScansResponse) => void): Request<GuardDuty.Types.DescribeMalwareScansResponse, AWSError>;
|
|
162
162
|
/**
|
|
163
|
-
* Returns a list of malware scans. Each member account can view the malware scans for their own accounts. An administrator can view the malware scans for all the member accounts.
|
|
163
|
+
* Returns a list of malware scans. Each member account can view the malware scans for their own accounts. An administrator can view the malware scans for all the member accounts. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
164
164
|
*/
|
|
165
165
|
describeMalwareScans(callback?: (err: AWSError, data: GuardDuty.Types.DescribeMalwareScansResponse) => void): Request<GuardDuty.Types.DescribeMalwareScansResponse, AWSError>;
|
|
166
166
|
/**
|
|
167
|
-
* Returns information about the account selected as the delegated administrator for GuardDuty.
|
|
167
|
+
* Returns information about the account selected as the delegated administrator for GuardDuty. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
168
168
|
*/
|
|
169
169
|
describeOrganizationConfiguration(params: GuardDuty.Types.DescribeOrganizationConfigurationRequest, callback?: (err: AWSError, data: GuardDuty.Types.DescribeOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.DescribeOrganizationConfigurationResponse, AWSError>;
|
|
170
170
|
/**
|
|
171
|
-
* Returns information about the account selected as the delegated administrator for GuardDuty.
|
|
171
|
+
* Returns information about the account selected as the delegated administrator for GuardDuty. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
172
172
|
*/
|
|
173
173
|
describeOrganizationConfiguration(callback?: (err: AWSError, data: GuardDuty.Types.DescribeOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.DescribeOrganizationConfigurationResponse, AWSError>;
|
|
174
174
|
/**
|
|
@@ -228,11 +228,11 @@ declare class GuardDuty extends Service {
|
|
|
228
228
|
*/
|
|
229
229
|
getAdministratorAccount(callback?: (err: AWSError, data: GuardDuty.Types.GetAdministratorAccountResponse) => void): Request<GuardDuty.Types.GetAdministratorAccountResponse, AWSError>;
|
|
230
230
|
/**
|
|
231
|
-
* Retrieves an Amazon GuardDuty detector specified by the detectorId.
|
|
231
|
+
* Retrieves an Amazon GuardDuty detector specified by the detectorId. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
232
232
|
*/
|
|
233
233
|
getDetector(params: GuardDuty.Types.GetDetectorRequest, callback?: (err: AWSError, data: GuardDuty.Types.GetDetectorResponse) => void): Request<GuardDuty.Types.GetDetectorResponse, AWSError>;
|
|
234
234
|
/**
|
|
235
|
-
* Retrieves an Amazon GuardDuty detector specified by the detectorId.
|
|
235
|
+
* Retrieves an Amazon GuardDuty detector specified by the detectorId. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
236
236
|
*/
|
|
237
237
|
getDetector(callback?: (err: AWSError, data: GuardDuty.Types.GetDetectorResponse) => void): Request<GuardDuty.Types.GetDetectorResponse, AWSError>;
|
|
238
238
|
/**
|
|
@@ -276,11 +276,11 @@ declare class GuardDuty extends Service {
|
|
|
276
276
|
*/
|
|
277
277
|
getInvitationsCount(callback?: (err: AWSError, data: GuardDuty.Types.GetInvitationsCountResponse) => void): Request<GuardDuty.Types.GetInvitationsCountResponse, AWSError>;
|
|
278
278
|
/**
|
|
279
|
-
* Returns the details of the malware scan settings.
|
|
279
|
+
* Returns the details of the malware scan settings. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
280
280
|
*/
|
|
281
281
|
getMalwareScanSettings(params: GuardDuty.Types.GetMalwareScanSettingsRequest, callback?: (err: AWSError, data: GuardDuty.Types.GetMalwareScanSettingsResponse) => void): Request<GuardDuty.Types.GetMalwareScanSettingsResponse, AWSError>;
|
|
282
282
|
/**
|
|
283
|
-
* Returns the details of the malware scan settings.
|
|
283
|
+
* Returns the details of the malware scan settings. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
284
284
|
*/
|
|
285
285
|
getMalwareScanSettings(callback?: (err: AWSError, data: GuardDuty.Types.GetMalwareScanSettingsResponse) => void): Request<GuardDuty.Types.GetMalwareScanSettingsResponse, AWSError>;
|
|
286
286
|
/**
|
|
@@ -292,11 +292,11 @@ declare class GuardDuty extends Service {
|
|
|
292
292
|
*/
|
|
293
293
|
getMasterAccount(callback?: (err: AWSError, data: GuardDuty.Types.GetMasterAccountResponse) => void): Request<GuardDuty.Types.GetMasterAccountResponse, AWSError>;
|
|
294
294
|
/**
|
|
295
|
-
* Describes which data sources are enabled for the member account's detector.
|
|
295
|
+
* Describes which data sources are enabled for the member account's detector. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
296
296
|
*/
|
|
297
297
|
getMemberDetectors(params: GuardDuty.Types.GetMemberDetectorsRequest, callback?: (err: AWSError, data: GuardDuty.Types.GetMemberDetectorsResponse) => void): Request<GuardDuty.Types.GetMemberDetectorsResponse, AWSError>;
|
|
298
298
|
/**
|
|
299
|
-
* Describes which data sources are enabled for the member account's detector.
|
|
299
|
+
* Describes which data sources are enabled for the member account's detector. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
300
300
|
*/
|
|
301
301
|
getMemberDetectors(callback?: (err: AWSError, data: GuardDuty.Types.GetMemberDetectorsResponse) => void): Request<GuardDuty.Types.GetMemberDetectorsResponse, AWSError>;
|
|
302
302
|
/**
|
|
@@ -460,11 +460,11 @@ declare class GuardDuty extends Service {
|
|
|
460
460
|
*/
|
|
461
461
|
untagResource(callback?: (err: AWSError, data: GuardDuty.Types.UntagResourceResponse) => void): Request<GuardDuty.Types.UntagResourceResponse, AWSError>;
|
|
462
462
|
/**
|
|
463
|
-
* Updates the Amazon GuardDuty detector specified by the detectorId.
|
|
463
|
+
* Updates the Amazon GuardDuty detector specified by the detectorId. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
464
464
|
*/
|
|
465
465
|
updateDetector(params: GuardDuty.Types.UpdateDetectorRequest, callback?: (err: AWSError, data: GuardDuty.Types.UpdateDetectorResponse) => void): Request<GuardDuty.Types.UpdateDetectorResponse, AWSError>;
|
|
466
466
|
/**
|
|
467
|
-
* Updates the Amazon GuardDuty detector specified by the detectorId.
|
|
467
|
+
* Updates the Amazon GuardDuty detector specified by the detectorId. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
468
468
|
*/
|
|
469
469
|
updateDetector(callback?: (err: AWSError, data: GuardDuty.Types.UpdateDetectorResponse) => void): Request<GuardDuty.Types.UpdateDetectorResponse, AWSError>;
|
|
470
470
|
/**
|
|
@@ -492,27 +492,27 @@ declare class GuardDuty extends Service {
|
|
|
492
492
|
*/
|
|
493
493
|
updateIPSet(callback?: (err: AWSError, data: GuardDuty.Types.UpdateIPSetResponse) => void): Request<GuardDuty.Types.UpdateIPSetResponse, AWSError>;
|
|
494
494
|
/**
|
|
495
|
-
* Updates the malware scan settings.
|
|
495
|
+
* Updates the malware scan settings. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
496
496
|
*/
|
|
497
497
|
updateMalwareScanSettings(params: GuardDuty.Types.UpdateMalwareScanSettingsRequest, callback?: (err: AWSError, data: GuardDuty.Types.UpdateMalwareScanSettingsResponse) => void): Request<GuardDuty.Types.UpdateMalwareScanSettingsResponse, AWSError>;
|
|
498
498
|
/**
|
|
499
|
-
* Updates the malware scan settings.
|
|
499
|
+
* Updates the malware scan settings. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
500
500
|
*/
|
|
501
501
|
updateMalwareScanSettings(callback?: (err: AWSError, data: GuardDuty.Types.UpdateMalwareScanSettingsResponse) => void): Request<GuardDuty.Types.UpdateMalwareScanSettingsResponse, AWSError>;
|
|
502
502
|
/**
|
|
503
|
-
* Contains information on member accounts to be updated.
|
|
503
|
+
* Contains information on member accounts to be updated. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
504
504
|
*/
|
|
505
505
|
updateMemberDetectors(params: GuardDuty.Types.UpdateMemberDetectorsRequest, callback?: (err: AWSError, data: GuardDuty.Types.UpdateMemberDetectorsResponse) => void): Request<GuardDuty.Types.UpdateMemberDetectorsResponse, AWSError>;
|
|
506
506
|
/**
|
|
507
|
-
* Contains information on member accounts to be updated.
|
|
507
|
+
* Contains information on member accounts to be updated. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
508
508
|
*/
|
|
509
509
|
updateMemberDetectors(callback?: (err: AWSError, data: GuardDuty.Types.UpdateMemberDetectorsResponse) => void): Request<GuardDuty.Types.UpdateMemberDetectorsResponse, AWSError>;
|
|
510
510
|
/**
|
|
511
|
-
* Updates the delegated administrator account with the values provided.
|
|
511
|
+
* Updates the delegated administrator account with the values provided. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
512
512
|
*/
|
|
513
513
|
updateOrganizationConfiguration(params: GuardDuty.Types.UpdateOrganizationConfigurationRequest, callback?: (err: AWSError, data: GuardDuty.Types.UpdateOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.UpdateOrganizationConfigurationResponse, AWSError>;
|
|
514
514
|
/**
|
|
515
|
-
* Updates the delegated administrator account with the values provided.
|
|
515
|
+
* Updates the delegated administrator account with the values provided. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
516
516
|
*/
|
|
517
517
|
updateOrganizationConfiguration(callback?: (err: AWSError, data: GuardDuty.Types.UpdateOrganizationConfigurationResponse) => void): Request<GuardDuty.Types.UpdateOrganizationConfigurationResponse, AWSError>;
|
|
518
518
|
/**
|
|
@@ -892,7 +892,7 @@ declare namespace GuardDuty {
|
|
|
892
892
|
*/
|
|
893
893
|
FindingPublishingFrequency?: FindingPublishingFrequency;
|
|
894
894
|
/**
|
|
895
|
-
* Describes which data sources will be enabled for the detector.
|
|
895
|
+
* Describes which data sources will be enabled for the detector. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
896
896
|
*/
|
|
897
897
|
DataSources?: DataSourceConfigurations;
|
|
898
898
|
/**
|
|
@@ -920,7 +920,7 @@ declare namespace GuardDuty {
|
|
|
920
920
|
*/
|
|
921
921
|
Name: FilterName;
|
|
922
922
|
/**
|
|
923
|
-
* The description of the filter. Valid
|
|
923
|
+
* The description of the filter. Valid characters include alphanumeric characters, and special characters such as -, ., :, { }, [ ], ( ), /, \t, \n, \x0B, \f, \r, _, and whitespace.
|
|
924
924
|
*/
|
|
925
925
|
Description?: FilterDescription;
|
|
926
926
|
/**
|
|
@@ -932,7 +932,7 @@ declare namespace GuardDuty {
|
|
|
932
932
|
*/
|
|
933
933
|
Rank?: FilterRank;
|
|
934
934
|
/**
|
|
935
|
-
* Represents the criteria to be used in the filter for querying findings. You can only use the following attributes to query findings: accountId region
|
|
935
|
+
* Represents the criteria to be used in the filter for querying findings. You can only use the following attributes to query findings: accountId region id resource.accessKeyDetails.accessKeyId resource.accessKeyDetails.principalId resource.accessKeyDetails.userName resource.accessKeyDetails.userType resource.instanceDetails.iamInstanceProfile.id resource.instanceDetails.imageId resource.instanceDetails.instanceId resource.instanceDetails.outpostArn resource.instanceDetails.networkInterfaces.ipv6Addresses resource.instanceDetails.networkInterfaces.privateIpAddresses.privateIpAddress resource.instanceDetails.networkInterfaces.publicDnsName resource.instanceDetails.networkInterfaces.publicIp resource.instanceDetails.networkInterfaces.securityGroups.groupId resource.instanceDetails.networkInterfaces.securityGroups.groupName resource.instanceDetails.networkInterfaces.subnetId resource.instanceDetails.networkInterfaces.vpcId resource.instanceDetails.tags.key resource.instanceDetails.tags.value resource.resourceType service.action.actionType service.action.awsApiCallAction.api service.action.awsApiCallAction.callerType service.action.awsApiCallAction.errorCode service.action.awsApiCallAction.userAgent service.action.awsApiCallAction.remoteIpDetails.city.cityName service.action.awsApiCallAction.remoteIpDetails.country.countryName service.action.awsApiCallAction.remoteIpDetails.ipAddressV4 service.action.awsApiCallAction.remoteIpDetails.organization.asn service.action.awsApiCallAction.remoteIpDetails.organization.asnOrg service.action.awsApiCallAction.serviceName service.action.dnsRequestAction.domain service.action.networkConnectionAction.blocked service.action.networkConnectionAction.connectionDirection service.action.networkConnectionAction.localPortDetails.port service.action.networkConnectionAction.protocol service.action.networkConnectionAction.localIpDetails.ipAddressV4 service.action.networkConnectionAction.remoteIpDetails.city.cityName service.action.networkConnectionAction.remoteIpDetails.country.countryName service.action.networkConnectionAction.remoteIpDetails.ipAddressV4 service.action.networkConnectionAction.remoteIpDetails.organization.asn service.action.networkConnectionAction.remoteIpDetails.organization.asnOrg service.action.networkConnectionAction.remotePortDetails.port service.additionalInfo.threatListName resource.s3BucketDetails.publicAccess.effectivePermissions resource.s3BucketDetails.name resource.s3BucketDetails.tags.key resource.s3BucketDetails.tags.value resource.s3BucketDetails.type service.resourceRole severity type updatedAt Type: ISO 8601 string format: YYYY-MM-DDTHH:MM:SS.SSSZ or YYYY-MM-DDTHH:MM:SSZ depending on whether the value contains milliseconds.
|
|
936
936
|
*/
|
|
937
937
|
FindingCriteria: FindingCriteria;
|
|
938
938
|
/**
|
|
@@ -956,7 +956,7 @@ declare namespace GuardDuty {
|
|
|
956
956
|
*/
|
|
957
957
|
DetectorId: DetectorId;
|
|
958
958
|
/**
|
|
959
|
-
* The user-friendly name to identify the IPSet. Allowed characters are
|
|
959
|
+
* The user-friendly name to identify the IPSet. Allowed characters are alphanumeric, whitespace, dash (-), and underscores (_).
|
|
960
960
|
*/
|
|
961
961
|
Name: Name;
|
|
962
962
|
/**
|
|
@@ -1281,7 +1281,7 @@ declare namespace GuardDuty {
|
|
|
1281
1281
|
*/
|
|
1282
1282
|
FilterCriteria?: FilterCriteria;
|
|
1283
1283
|
/**
|
|
1284
|
-
* Represents the criteria used for sorting scan entries.
|
|
1284
|
+
* Represents the criteria used for sorting scan entries. The attributeName is required and it must be scanStartTime.
|
|
1285
1285
|
*/
|
|
1286
1286
|
SortCriteria?: SortCriteria;
|
|
1287
1287
|
}
|
|
@@ -2950,7 +2950,7 @@ declare namespace GuardDuty {
|
|
|
2950
2950
|
}
|
|
2951
2951
|
export interface Resource {
|
|
2952
2952
|
/**
|
|
2953
|
-
* The IAM access key details (
|
|
2953
|
+
* The IAM access key details (user information) of a user that engaged in the activity that prompted GuardDuty to generate a finding.
|
|
2954
2954
|
*/
|
|
2955
2955
|
AccessKeyDetails?: AccessKeyDetails;
|
|
2956
2956
|
/**
|
|
@@ -3296,7 +3296,7 @@ declare namespace GuardDuty {
|
|
|
3296
3296
|
}
|
|
3297
3297
|
export interface SortCriteria {
|
|
3298
3298
|
/**
|
|
3299
|
-
* Represents the finding attribute
|
|
3299
|
+
* Represents the finding attribute, such as accountId, that sorts the findings.
|
|
3300
3300
|
*/
|
|
3301
3301
|
AttributeName?: String;
|
|
3302
3302
|
/**
|
|
@@ -3418,7 +3418,7 @@ declare namespace GuardDuty {
|
|
|
3418
3418
|
}
|
|
3419
3419
|
export interface TriggerDetails {
|
|
3420
3420
|
/**
|
|
3421
|
-
* The ID of the GuardDuty finding that triggered the
|
|
3421
|
+
* The ID of the GuardDuty finding that triggered the malware scan.
|
|
3422
3422
|
*/
|
|
3423
3423
|
GuardDutyFindingId?: NonEmptyString;
|
|
3424
3424
|
/**
|
|
@@ -3478,7 +3478,7 @@ declare namespace GuardDuty {
|
|
|
3478
3478
|
*/
|
|
3479
3479
|
FindingPublishingFrequency?: FindingPublishingFrequency;
|
|
3480
3480
|
/**
|
|
3481
|
-
* Describes which data sources will be updated.
|
|
3481
|
+
* Describes which data sources will be updated. There might be regional differences because some data sources might not be available in all the Amazon Web Services Regions where GuardDuty is presently supported. For more information, see Regions and endpoints.
|
|
3482
3482
|
*/
|
|
3483
3483
|
DataSources?: DataSourceConfigurations;
|
|
3484
3484
|
}
|
|
@@ -3494,7 +3494,7 @@ declare namespace GuardDuty {
|
|
|
3494
3494
|
*/
|
|
3495
3495
|
FilterName: String;
|
|
3496
3496
|
/**
|
|
3497
|
-
* The description of the filter. Valid special characters
|
|
3497
|
+
* The description of the filter. Valid characters include alphanumeric characters, and special characters such as hyphen, period, colon, underscore, parentheses ({ }, [ ], and ( )), forward slash, horizontal tab, vertical tab, newline, form feed, return, and whitespace.
|
|
3498
3498
|
*/
|
|
3499
3499
|
Description?: FilterDescription;
|
|
3500
3500
|
/**
|
|
@@ -412,11 +412,11 @@ declare class IoTWireless extends Service {
|
|
|
412
412
|
*/
|
|
413
413
|
getResourceLogLevel(callback?: (err: AWSError, data: IoTWireless.Types.GetResourceLogLevelResponse) => void): Request<IoTWireless.Types.GetResourceLogLevelResponse, AWSError>;
|
|
414
414
|
/**
|
|
415
|
-
* Get the position information for a given wireless device or a wireless gateway resource. The
|
|
415
|
+
* Get the position information for a given wireless device or a wireless gateway resource. The position information uses the World Geodetic System (WGS84).
|
|
416
416
|
*/
|
|
417
417
|
getResourcePosition(params: IoTWireless.Types.GetResourcePositionRequest, callback?: (err: AWSError, data: IoTWireless.Types.GetResourcePositionResponse) => void): Request<IoTWireless.Types.GetResourcePositionResponse, AWSError>;
|
|
418
418
|
/**
|
|
419
|
-
* Get the position information for a given wireless device or a wireless gateway resource. The
|
|
419
|
+
* Get the position information for a given wireless device or a wireless gateway resource. The position information uses the World Geodetic System (WGS84).
|
|
420
420
|
*/
|
|
421
421
|
getResourcePosition(callback?: (err: AWSError, data: IoTWireless.Types.GetResourcePositionResponse) => void): Request<IoTWireless.Types.GetResourcePositionResponse, AWSError>;
|
|
422
422
|
/**
|
|
@@ -796,11 +796,11 @@ declare class IoTWireless extends Service {
|
|
|
796
796
|
*/
|
|
797
797
|
updateResourceEventConfiguration(callback?: (err: AWSError, data: IoTWireless.Types.UpdateResourceEventConfigurationResponse) => void): Request<IoTWireless.Types.UpdateResourceEventConfigurationResponse, AWSError>;
|
|
798
798
|
/**
|
|
799
|
-
* Update the position information of a given wireless device or a wireless gateway resource. The
|
|
799
|
+
* Update the position information of a given wireless device or a wireless gateway resource. The position coordinates are based on the World Geodetic System (WGS84).
|
|
800
800
|
*/
|
|
801
801
|
updateResourcePosition(params: IoTWireless.Types.UpdateResourcePositionRequest, callback?: (err: AWSError, data: IoTWireless.Types.UpdateResourcePositionResponse) => void): Request<IoTWireless.Types.UpdateResourcePositionResponse, AWSError>;
|
|
802
802
|
/**
|
|
803
|
-
* Update the position information of a given wireless device or a wireless gateway resource. The
|
|
803
|
+
* Update the position information of a given wireless device or a wireless gateway resource. The position coordinates are based on the World Geodetic System (WGS84).
|
|
804
804
|
*/
|
|
805
805
|
updateResourcePosition(callback?: (err: AWSError, data: IoTWireless.Types.UpdateResourcePositionResponse) => void): Request<IoTWireless.Types.UpdateResourcePositionResponse, AWSError>;
|
|
806
806
|
/**
|
|
@@ -1051,7 +1051,7 @@ declare namespace IoTWireless {
|
|
|
1051
1051
|
*/
|
|
1052
1052
|
BaseLat?: BaseLat;
|
|
1053
1053
|
/**
|
|
1054
|
-
* CDMA base station
|
|
1054
|
+
* CDMA base station longitude in degrees.
|
|
1055
1055
|
*/
|
|
1056
1056
|
BaseLng?: BaseLng;
|
|
1057
1057
|
/**
|
|
@@ -1193,6 +1193,9 @@ declare namespace IoTWireless {
|
|
|
1193
1193
|
FirmwareUpdateImage: FirmwareUpdateImage;
|
|
1194
1194
|
FirmwareUpdateRole: FirmwareUpdateRole;
|
|
1195
1195
|
Tags?: TagList;
|
|
1196
|
+
RedundancyPercent?: RedundancyPercent;
|
|
1197
|
+
FragmentSizeBytes?: FragmentSizeBytes;
|
|
1198
|
+
FragmentIntervalMS?: FragmentIntervalMS;
|
|
1196
1199
|
}
|
|
1197
1200
|
export interface CreateFuotaTaskResponse {
|
|
1198
1201
|
Arn?: FuotaTaskArn;
|
|
@@ -1701,6 +1704,8 @@ declare namespace IoTWireless {
|
|
|
1701
1704
|
export type Fingerprint = string;
|
|
1702
1705
|
export type FirmwareUpdateImage = string;
|
|
1703
1706
|
export type FirmwareUpdateRole = string;
|
|
1707
|
+
export type FragmentIntervalMS = number;
|
|
1708
|
+
export type FragmentSizeBytes = number;
|
|
1704
1709
|
export type FuotaDeviceStatus = "Initial"|"Package_Not_Supported"|"FragAlgo_unsupported"|"Not_enough_memory"|"FragIndex_unsupported"|"Wrong_descriptor"|"SessionCnt_replay"|"MissingFrag"|"MemoryError"|"MICError"|"Successful"|string;
|
|
1705
1710
|
export interface FuotaTask {
|
|
1706
1711
|
Id?: FuotaTaskId;
|
|
@@ -1821,6 +1826,9 @@ declare namespace IoTWireless {
|
|
|
1821
1826
|
FirmwareUpdateImage?: FirmwareUpdateImage;
|
|
1822
1827
|
FirmwareUpdateRole?: FirmwareUpdateRole;
|
|
1823
1828
|
CreatedAt?: CreatedAt;
|
|
1829
|
+
RedundancyPercent?: RedundancyPercent;
|
|
1830
|
+
FragmentSizeBytes?: FragmentSizeBytes;
|
|
1831
|
+
FragmentIntervalMS?: FragmentIntervalMS;
|
|
1824
1832
|
}
|
|
1825
1833
|
export interface GetLogLevelsByResourceTypesRequest {
|
|
1826
1834
|
}
|
|
@@ -1925,7 +1933,7 @@ declare namespace IoTWireless {
|
|
|
1925
1933
|
*/
|
|
1926
1934
|
Gnss?: Gnss;
|
|
1927
1935
|
/**
|
|
1928
|
-
* Optional information that specifies the time when the position information will be resolved. It uses the
|
|
1936
|
+
* Optional information that specifies the time when the position information will be resolved. It uses the Unix timestamp format. If not specified, the time at which the request was received will be used.
|
|
1929
1937
|
*/
|
|
1930
1938
|
Timestamp?: CreationDate;
|
|
1931
1939
|
}
|
|
@@ -2019,7 +2027,7 @@ declare namespace IoTWireless {
|
|
|
2019
2027
|
}
|
|
2020
2028
|
export interface GetResourcePositionRequest {
|
|
2021
2029
|
/**
|
|
2022
|
-
* The identifier of the resource for which position information is retrieved. It can be the wireless device ID or the wireless gateway ID depending on the resource type.
|
|
2030
|
+
* The identifier of the resource for which position information is retrieved. It can be the wireless device ID or the wireless gateway ID, depending on the resource type.
|
|
2023
2031
|
*/
|
|
2024
2032
|
ResourceIdentifier: PositionResourceIdentifier;
|
|
2025
2033
|
/**
|
|
@@ -2321,7 +2329,7 @@ declare namespace IoTWireless {
|
|
|
2321
2329
|
*/
|
|
2322
2330
|
CaptureTimeAccuracy?: CaptureTimeAccuracy;
|
|
2323
2331
|
/**
|
|
2324
|
-
* Optional assistance position information, specified using latitude and longitude values in degrees. The
|
|
2332
|
+
* Optional assistance position information, specified using latitude and longitude values in degrees. The coordinates are inside the WGS84 reference frame.
|
|
2325
2333
|
*/
|
|
2326
2334
|
AssistPosition?: AssistPosition;
|
|
2327
2335
|
/**
|
|
@@ -3427,6 +3435,7 @@ declare namespace IoTWireless {
|
|
|
3427
3435
|
export type RSRQ = number;
|
|
3428
3436
|
export type RSS = number;
|
|
3429
3437
|
export type RaAllowed = boolean;
|
|
3438
|
+
export type RedundancyPercent = number;
|
|
3430
3439
|
export type RegParamsRevision = string;
|
|
3431
3440
|
export type RegistrationZone = number;
|
|
3432
3441
|
export type ReportDevStatusBattery = boolean;
|
|
@@ -3921,6 +3930,9 @@ declare namespace IoTWireless {
|
|
|
3921
3930
|
LoRaWAN?: LoRaWANFuotaTask;
|
|
3922
3931
|
FirmwareUpdateImage?: FirmwareUpdateImage;
|
|
3923
3932
|
FirmwareUpdateRole?: FirmwareUpdateRole;
|
|
3933
|
+
RedundancyPercent?: RedundancyPercent;
|
|
3934
|
+
FragmentSizeBytes?: FragmentSizeBytes;
|
|
3935
|
+
FragmentIntervalMS?: FragmentIntervalMS;
|
|
3924
3936
|
}
|
|
3925
3937
|
export interface UpdateFuotaTaskResponse {
|
|
3926
3938
|
}
|
|
@@ -4032,7 +4044,7 @@ declare namespace IoTWireless {
|
|
|
4032
4044
|
}
|
|
4033
4045
|
export interface UpdateResourcePositionRequest {
|
|
4034
4046
|
/**
|
|
4035
|
-
* The identifier of the resource for which position information is updated. It can be the wireless device ID or the wireless gateway ID depending on the resource type.
|
|
4047
|
+
* The identifier of the resource for which position information is updated. It can be the wireless device ID or the wireless gateway ID, depending on the resource type.
|
|
4036
4048
|
*/
|
|
4037
4049
|
ResourceIdentifier: PositionResourceIdentifier;
|
|
4038
4050
|
/**
|