tencentcloud-sdk-nodejs-intl-en 3.0.1349 → 3.0.1350
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/package.json +1 -1
- package/tencentcloud/advisor/v20200721/models.js +11 -24
- package/tencentcloud/asr/v20190614/models.js +9 -2
- package/tencentcloud/billing/v20180709/billing_client.js +242 -64
- package/tencentcloud/billing/v20180709/models.js +10788 -4645
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/cloudaudit/v20190319/cloudaudit_client.js +2 -30
- package/tencentcloud/cloudaudit/v20190319/models.js +132 -247
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/faceid/v20180301/faceid_client.js +260 -143
- package/tencentcloud/faceid/v20180301/models.js +4283 -3113
- package/tencentcloud/organization/index.js +1 -1
- package/tencentcloud/organization/v20210331/models.js +1 -1
- package/tencentcloud/sms/index.js +1 -1
- package/tencentcloud/sms/v20210111/models.js +250 -31
- package/tencentcloud/sms/v20210111/sms_client.js +16 -3
- package/tencentcloud/sts/v20180813/models.js +42 -26
- package/tencentcloud/sts/v20180813/sts_client.js +30 -4
- package/tencentcloud/tag/v20180813/tag_client.js +1 -1
- package/tencentcloud/tchd/v20230306/models.js +1 -1
- package/tencentcloud/tem/index.js +1 -1
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/trtc/v20190722/models.js +263 -168
- package/tencentcloud/trtc/v20190722/trtc_client.js +11 -13
- package/tencentcloud/vod/index.js +1 -1
- package/tencentcloud/wedata/index.js +1 -1
|
@@ -41,7 +41,15 @@ class StsClient extends AbstractClient {
|
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
/**
|
|
44
|
-
* This API is used to
|
|
44
|
+
* This API is used to provide instructions.
|
|
45
|
+
|
|
46
|
+
This API is used to return a set of temporary access credentials. A typical application scenario is for proxy applications to centrally request temporary access credentials and distribute them to other distributed terminal applications within the enterprise network, such as terminal applications uploading files to COS. This API only supports calls with permanent keys.
|
|
47
|
+
|
|
48
|
+
This API is used to implement best practices.
|
|
49
|
+
|
|
50
|
+
1. This API is used to recommend reusing temporary access credentials within their validity period to avoid rate limiting due to increased business request rates.
|
|
51
|
+
2. This API is used to recommend granting temporary access credentials with the principle of least privilege.
|
|
52
|
+
3. This API is used to recommend not using the root account for permanent keys calling the API.
|
|
45
53
|
* @param {GetFederationTokenRequest} req
|
|
46
54
|
* @param {function(string, GetFederationTokenResponse):void} cb
|
|
47
55
|
* @public
|
|
@@ -52,7 +60,9 @@ class StsClient extends AbstractClient {
|
|
|
52
60
|
}
|
|
53
61
|
|
|
54
62
|
/**
|
|
55
|
-
* This API is used to request
|
|
63
|
+
* This API is used to request temporary access credentials for a role based on a SAML assertion.
|
|
64
|
+
|
|
65
|
+
Note: When called with signature method v3, header `X-TC-Token` could be ignored, and `Authorization` should be SKIP.
|
|
56
66
|
* @param {AssumeRoleWithSAMLRequest} req
|
|
57
67
|
* @param {function(string, AssumeRoleWithSAMLResponse):void} cb
|
|
58
68
|
* @public
|
|
@@ -63,7 +73,20 @@ class StsClient extends AbstractClient {
|
|
|
63
73
|
}
|
|
64
74
|
|
|
65
75
|
/**
|
|
66
|
-
* This API is used to request
|
|
76
|
+
* This API is used to request temporary access credentials for assuming a role.
|
|
77
|
+
|
|
78
|
+
This API is used to describe the composition of role policies.
|
|
79
|
+
|
|
80
|
+
This API is used to specify the role trust policy, which defines who can assume the role.
|
|
81
|
+
|
|
82
|
+
This API is used to specify the role permission policy, which defines what actions can be performed after assuming the role.
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
This API is used to describe the conditions under which a role can be assumed.
|
|
86
|
+
|
|
87
|
+
This API is used to bind a policy that allows a user to call AssumeRole.
|
|
88
|
+
|
|
89
|
+
This API is used to add a user as a principal in the role trust policy.
|
|
67
90
|
* @param {AssumeRoleRequest} req
|
|
68
91
|
* @param {function(string, AssumeRoleResponse):void} cb
|
|
69
92
|
* @public
|
|
@@ -75,7 +98,8 @@ class StsClient extends AbstractClient {
|
|
|
75
98
|
|
|
76
99
|
/**
|
|
77
100
|
* This API is used to get the identity information of the current caller.
|
|
78
|
-
|
|
101
|
+
|
|
102
|
+
This API is used to get the identity information using the persistent keys of the root account and sub-account as well as the temporary credentials generated by AssumeRole and GetFederationToken.
|
|
79
103
|
* @param {GetCallerIdentityRequest} req
|
|
80
104
|
* @param {function(string, GetCallerIdentityResponse):void} cb
|
|
81
105
|
* @public
|
|
@@ -87,6 +111,8 @@ The persistent keys of the root account and sub-account as well as the temporary
|
|
|
87
111
|
|
|
88
112
|
/**
|
|
89
113
|
* This API is used to apply for an OIDC role credential.
|
|
114
|
+
|
|
115
|
+
Note: When called with signature method v3, header `X-TC-Token` could be ignored, and `Authorization` should be SKIP.
|
|
90
116
|
* @param {AssumeRoleWithWebIdentityRequest} req
|
|
91
117
|
* @param {function(string, AssumeRoleWithWebIdentityResponse):void} cb
|
|
92
118
|
* @public
|
|
@@ -147,7 +147,7 @@ class DescribeEventsRequest extends AbstractModel {
|
|
|
147
147
|
this.ProductIds = null;
|
|
148
148
|
|
|
149
149
|
/**
|
|
150
|
-
* 1. Query by Region ID(s). Region ID examples: ap-guangzhou
|
|
150
|
+
* 1. Query by Region ID(s). Region ID examples: ap-guangzhou, ap-shanghai, ap-singapore.
|
|
151
151
|
2. The region ID for non-region-specific products should be set to non-regional.
|
|
152
152
|
* @type {Array.<string> || null}
|
|
153
153
|
*/
|