@volcengine/pulumi-volcenginecc 0.0.38 → 0.0.40
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/README.md +8 -1
- package/cloudmonitor/contactGroup.d.ts +106 -0
- package/cloudmonitor/contactGroup.js +73 -0
- package/cloudmonitor/contactGroup.js.map +1 -0
- package/cloudmonitor/getContactGroup.d.ts +65 -0
- package/cloudmonitor/getContactGroup.js +28 -0
- package/cloudmonitor/getContactGroup.js.map +1 -0
- package/cloudmonitor/getContactGroups.d.ts +22 -0
- package/cloudmonitor/getContactGroups.js +24 -0
- package/cloudmonitor/getContactGroups.js.map +1 -0
- package/cloudmonitor/index.d.ts +9 -0
- package/cloudmonitor/index.js +12 -1
- package/cloudmonitor/index.js.map +1 -1
- package/config/vars.d.ts +5 -0
- package/config/vars.js +7 -0
- package/config/vars.js.map +1 -1
- package/iam/getRole.d.ts +10 -0
- package/iam/getRole.js.map +1 -1
- package/iam/role.d.ts +18 -34
- package/iam/role.js +3 -36
- package/iam/role.js.map +1 -1
- package/id/getService.d.ts +109 -0
- package/id/getService.js +28 -0
- package/id/getService.js.map +1 -0
- package/id/getServices.d.ts +22 -0
- package/id/getServices.js +24 -0
- package/id/getServices.js.map +1 -0
- package/id/index.d.ts +9 -0
- package/id/index.js +28 -0
- package/id/index.js.map +1 -0
- package/id/service.d.ts +209 -0
- package/id/service.js +101 -0
- package/id/service.js.map +1 -0
- package/index.d.ts +2 -1
- package/index.js +4 -1
- package/index.js.map +1 -1
- package/kms/getKey.d.ts +24 -0
- package/kms/getKey.js.map +1 -1
- package/kms/key.d.ts +72 -0
- package/kms/key.js +12 -0
- package/kms/key.js.map +1 -1
- package/package.json +1 -1
- package/provider.d.ts +10 -0
- package/provider.js +2 -1
- package/provider.js.map +1 -1
- package/rdspostgresql/getParameterTemplate.d.ts +89 -0
- package/rdspostgresql/getParameterTemplate.js +28 -0
- package/rdspostgresql/getParameterTemplate.js.map +1 -0
- package/rdspostgresql/getParameterTemplates.d.ts +22 -0
- package/rdspostgresql/getParameterTemplates.js +24 -0
- package/rdspostgresql/getParameterTemplates.js.map +1 -0
- package/rdspostgresql/index.d.ts +9 -0
- package/rdspostgresql/index.js +12 -1
- package/rdspostgresql/index.js.map +1 -1
- package/rdspostgresql/parameterTemplate.d.ts +186 -0
- package/rdspostgresql/parameterTemplate.js +118 -0
- package/rdspostgresql/parameterTemplate.js.map +1 -0
- package/redis/getInstance.d.ts +9 -5
- package/redis/getInstance.js.map +1 -1
- package/redis/instance.d.ts +25 -13
- package/redis/instance.js +2 -0
- package/redis/instance.js.map +1 -1
- package/types/input.d.ts +268 -0
- package/types/output.d.ts +616 -0
package/types/output.d.ts
CHANGED
|
@@ -9273,6 +9273,30 @@ export declare namespace cloudidentity {
|
|
|
9273
9273
|
}
|
|
9274
9274
|
}
|
|
9275
9275
|
export declare namespace cloudmonitor {
|
|
9276
|
+
interface ContactGroupContact {
|
|
9277
|
+
/**
|
|
9278
|
+
* 联系人ID。
|
|
9279
|
+
*/
|
|
9280
|
+
contactId: string;
|
|
9281
|
+
}
|
|
9282
|
+
interface GetContactGroupContact {
|
|
9283
|
+
/**
|
|
9284
|
+
* 联系人ID。
|
|
9285
|
+
*/
|
|
9286
|
+
contactId: string;
|
|
9287
|
+
/**
|
|
9288
|
+
* 联系人邮箱地址。
|
|
9289
|
+
*/
|
|
9290
|
+
email: string;
|
|
9291
|
+
/**
|
|
9292
|
+
* 联系人名称。
|
|
9293
|
+
*/
|
|
9294
|
+
name: string;
|
|
9295
|
+
/**
|
|
9296
|
+
* 联系人手机号码。
|
|
9297
|
+
*/
|
|
9298
|
+
phone: string;
|
|
9299
|
+
}
|
|
9276
9300
|
interface GetRuleCondition {
|
|
9277
9301
|
/**
|
|
9278
9302
|
* Comparison operators. Supports standard threshold alerting: >, >=, <, <=, !=, =, as well as the following period-over-period alerting: last*period*increase*pct: Increased compared to last period. last*period*decrease*pct: Decreased compared to last period. last*period*abs*pct: Increased or decreased compared to last period. last*day*increase*pct: Increased compared to the same period yesterday. last*day*decrease*pct: Decreased compared to the same period yesterday. last*day*abs*pct: Increased or decreased compared to the same period yesterday. last*week*increase*pct: Increased compared to the same period last week. last*week*decrease*pct: Decreased compared to the same period last week. last*week*abs_pct: Increased or decreased compared to the same period last week.
|
|
@@ -14337,15 +14361,49 @@ export declare namespace iam {
|
|
|
14337
14361
|
projectName: string;
|
|
14338
14362
|
}
|
|
14339
14363
|
interface GetRolePolicy {
|
|
14364
|
+
/**
|
|
14365
|
+
* Policy binding time.
|
|
14366
|
+
*/
|
|
14367
|
+
attachDate: string;
|
|
14368
|
+
/**
|
|
14369
|
+
* Policy description.
|
|
14370
|
+
*/
|
|
14371
|
+
description: string;
|
|
14340
14372
|
/**
|
|
14341
14373
|
* Policy name
|
|
14342
14374
|
*/
|
|
14343
14375
|
policyName: string;
|
|
14376
|
+
/**
|
|
14377
|
+
* Policy authorization scope, specifically refers to the project scope.
|
|
14378
|
+
*/
|
|
14379
|
+
policyScopes: outputs.iam.GetRolePolicyPolicyScope[];
|
|
14380
|
+
/**
|
|
14381
|
+
* Policy TRN.
|
|
14382
|
+
*/
|
|
14383
|
+
policyTrn: string;
|
|
14344
14384
|
/**
|
|
14345
14385
|
* Policy type. Policy type. System indicates a system preset policy; Custom indicates a custom policy.
|
|
14346
14386
|
*/
|
|
14347
14387
|
policyType: string;
|
|
14348
14388
|
}
|
|
14389
|
+
interface GetRolePolicyPolicyScope {
|
|
14390
|
+
/**
|
|
14391
|
+
* Project authorization time.
|
|
14392
|
+
*/
|
|
14393
|
+
attachDate: string;
|
|
14394
|
+
/**
|
|
14395
|
+
* Authorization type. Global means global authorization (not limited to any project), Project means project-based authorization.
|
|
14396
|
+
*/
|
|
14397
|
+
policyScopeType: string;
|
|
14398
|
+
/**
|
|
14399
|
+
* Project display name for project-based authorization.
|
|
14400
|
+
*/
|
|
14401
|
+
projectDisplayName: string;
|
|
14402
|
+
/**
|
|
14403
|
+
* Project name for project-based authorization.
|
|
14404
|
+
*/
|
|
14405
|
+
projectName: string;
|
|
14406
|
+
}
|
|
14349
14407
|
interface GetRoleTag {
|
|
14350
14408
|
/**
|
|
14351
14409
|
* Tag key
|
|
@@ -14795,6 +14853,315 @@ export declare namespace iam {
|
|
|
14795
14853
|
value: string;
|
|
14796
14854
|
}
|
|
14797
14855
|
}
|
|
14856
|
+
export declare namespace id {
|
|
14857
|
+
interface GetServiceBackend {
|
|
14858
|
+
/**
|
|
14859
|
+
* Backend service domain name, for example api.example.com
|
|
14860
|
+
*/
|
|
14861
|
+
backendDomain: string;
|
|
14862
|
+
/**
|
|
14863
|
+
* Backend service port, default is 443
|
|
14864
|
+
*/
|
|
14865
|
+
backendPort: number;
|
|
14866
|
+
/**
|
|
14867
|
+
* Whether to enable TLS
|
|
14868
|
+
*/
|
|
14869
|
+
enableTls: boolean;
|
|
14870
|
+
/**
|
|
14871
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
14872
|
+
*/
|
|
14873
|
+
protocol: string;
|
|
14874
|
+
/**
|
|
14875
|
+
* Request timeout in seconds, default is 30 seconds
|
|
14876
|
+
*/
|
|
14877
|
+
timeoutSeconds: number;
|
|
14878
|
+
}
|
|
14879
|
+
interface GetServiceRoute {
|
|
14880
|
+
/**
|
|
14881
|
+
* API specification configuration
|
|
14882
|
+
*/
|
|
14883
|
+
apiSpec: outputs.id.GetServiceRouteApiSpec;
|
|
14884
|
+
/**
|
|
14885
|
+
* Authentication resource type
|
|
14886
|
+
*/
|
|
14887
|
+
authResourceType: string;
|
|
14888
|
+
/**
|
|
14889
|
+
* Route description
|
|
14890
|
+
*/
|
|
14891
|
+
description: string;
|
|
14892
|
+
/**
|
|
14893
|
+
* HTTP methods, separated by commas
|
|
14894
|
+
*/
|
|
14895
|
+
method: string;
|
|
14896
|
+
/**
|
|
14897
|
+
* Request path, 1–256 characters
|
|
14898
|
+
*/
|
|
14899
|
+
path: string;
|
|
14900
|
+
/**
|
|
14901
|
+
* Path match type, for example Exact, Prefix
|
|
14902
|
+
*/
|
|
14903
|
+
pathMatchType: string;
|
|
14904
|
+
/**
|
|
14905
|
+
* Permission pool name
|
|
14906
|
+
*/
|
|
14907
|
+
permissionPool: string;
|
|
14908
|
+
/**
|
|
14909
|
+
* Route priority, lower values indicate higher priority
|
|
14910
|
+
*/
|
|
14911
|
+
priority: number;
|
|
14912
|
+
/**
|
|
14913
|
+
* Resource type, for example Collection
|
|
14914
|
+
*/
|
|
14915
|
+
resourceType: string;
|
|
14916
|
+
/**
|
|
14917
|
+
* Route name, 1–64 characters
|
|
14918
|
+
*/
|
|
14919
|
+
routeName: string;
|
|
14920
|
+
}
|
|
14921
|
+
interface GetServiceRouteApiSpec {
|
|
14922
|
+
/**
|
|
14923
|
+
* Operation type, for example READ
|
|
14924
|
+
*/
|
|
14925
|
+
actionType: string;
|
|
14926
|
+
/**
|
|
14927
|
+
* Operation value, for example search
|
|
14928
|
+
*/
|
|
14929
|
+
actionValue: string;
|
|
14930
|
+
/**
|
|
14931
|
+
* Attribute extractor list
|
|
14932
|
+
*/
|
|
14933
|
+
extractors: outputs.id.GetServiceRouteApiSpecExtractor[];
|
|
14934
|
+
/**
|
|
14935
|
+
* Resource identifier type
|
|
14936
|
+
*/
|
|
14937
|
+
identifierType: number;
|
|
14938
|
+
/**
|
|
14939
|
+
* Resource identifier value, for example JSON Pointer
|
|
14940
|
+
*/
|
|
14941
|
+
identifierValue: string;
|
|
14942
|
+
/**
|
|
14943
|
+
* Response filter list
|
|
14944
|
+
*/
|
|
14945
|
+
responseFilters: outputs.id.GetServiceRouteApiSpecResponseFilter[];
|
|
14946
|
+
}
|
|
14947
|
+
interface GetServiceRouteApiSpecExtractor {
|
|
14948
|
+
/**
|
|
14949
|
+
* Whether used for authentication
|
|
14950
|
+
*/
|
|
14951
|
+
isAuth: boolean;
|
|
14952
|
+
/**
|
|
14953
|
+
* JSON Pointer expression
|
|
14954
|
+
*/
|
|
14955
|
+
path: string;
|
|
14956
|
+
/**
|
|
14957
|
+
* Extracted resource type
|
|
14958
|
+
*/
|
|
14959
|
+
resourceType: string;
|
|
14960
|
+
/**
|
|
14961
|
+
* Extraction source enumeration value
|
|
14962
|
+
*/
|
|
14963
|
+
source: number;
|
|
14964
|
+
}
|
|
14965
|
+
interface GetServiceRouteApiSpecResponseFilter {
|
|
14966
|
+
/**
|
|
14967
|
+
* Attribute mapping list
|
|
14968
|
+
*/
|
|
14969
|
+
attributes: outputs.id.GetServiceRouteApiSpecResponseFilterAttribute[];
|
|
14970
|
+
/**
|
|
14971
|
+
* Array path JSON Pointer
|
|
14972
|
+
*/
|
|
14973
|
+
filterPath: string;
|
|
14974
|
+
/**
|
|
14975
|
+
* ID field name
|
|
14976
|
+
*/
|
|
14977
|
+
idField: string;
|
|
14978
|
+
/**
|
|
14979
|
+
* Whether used for authentication
|
|
14980
|
+
*/
|
|
14981
|
+
isAuth: boolean;
|
|
14982
|
+
/**
|
|
14983
|
+
* Filter mode enumeration value
|
|
14984
|
+
*/
|
|
14985
|
+
mode: number;
|
|
14986
|
+
/**
|
|
14987
|
+
* Resource path JSON Pointer
|
|
14988
|
+
*/
|
|
14989
|
+
resourcePath: string;
|
|
14990
|
+
/**
|
|
14991
|
+
* Filtered resource type
|
|
14992
|
+
*/
|
|
14993
|
+
resourceType: string;
|
|
14994
|
+
}
|
|
14995
|
+
interface GetServiceRouteApiSpecResponseFilterAttribute {
|
|
14996
|
+
/**
|
|
14997
|
+
* Source field path JSON Pointer
|
|
14998
|
+
*/
|
|
14999
|
+
field: string;
|
|
15000
|
+
/**
|
|
15001
|
+
* Target attribute name
|
|
15002
|
+
*/
|
|
15003
|
+
target: string;
|
|
15004
|
+
}
|
|
15005
|
+
interface GetServiceTag {
|
|
15006
|
+
/**
|
|
15007
|
+
* Tag key
|
|
15008
|
+
*/
|
|
15009
|
+
key: string;
|
|
15010
|
+
/**
|
|
15011
|
+
* Tag value
|
|
15012
|
+
*/
|
|
15013
|
+
value: string;
|
|
15014
|
+
}
|
|
15015
|
+
interface ServiceBackend {
|
|
15016
|
+
/**
|
|
15017
|
+
* Backend service domain name, for example api.example.com
|
|
15018
|
+
*/
|
|
15019
|
+
backendDomain: string;
|
|
15020
|
+
/**
|
|
15021
|
+
* Backend service port, default is 443
|
|
15022
|
+
*/
|
|
15023
|
+
backendPort: number;
|
|
15024
|
+
/**
|
|
15025
|
+
* Whether to enable TLS
|
|
15026
|
+
*/
|
|
15027
|
+
enableTls: boolean;
|
|
15028
|
+
/**
|
|
15029
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
15030
|
+
*/
|
|
15031
|
+
protocol: string;
|
|
15032
|
+
/**
|
|
15033
|
+
* Request timeout in seconds, default is 30 seconds
|
|
15034
|
+
*/
|
|
15035
|
+
timeoutSeconds: number;
|
|
15036
|
+
}
|
|
15037
|
+
interface ServiceRoute {
|
|
15038
|
+
/**
|
|
15039
|
+
* API specification configuration
|
|
15040
|
+
*/
|
|
15041
|
+
apiSpec: outputs.id.ServiceRouteApiSpec;
|
|
15042
|
+
/**
|
|
15043
|
+
* Authentication resource type
|
|
15044
|
+
*/
|
|
15045
|
+
authResourceType: string;
|
|
15046
|
+
/**
|
|
15047
|
+
* Route description
|
|
15048
|
+
*/
|
|
15049
|
+
description: string;
|
|
15050
|
+
/**
|
|
15051
|
+
* HTTP methods, separated by commas
|
|
15052
|
+
*/
|
|
15053
|
+
method: string;
|
|
15054
|
+
/**
|
|
15055
|
+
* Request path, 1–256 characters
|
|
15056
|
+
*/
|
|
15057
|
+
path: string;
|
|
15058
|
+
/**
|
|
15059
|
+
* Path match type, for example Exact, Prefix
|
|
15060
|
+
*/
|
|
15061
|
+
pathMatchType: string;
|
|
15062
|
+
/**
|
|
15063
|
+
* Permission pool name
|
|
15064
|
+
*/
|
|
15065
|
+
permissionPool: string;
|
|
15066
|
+
/**
|
|
15067
|
+
* Route priority, lower values indicate higher priority
|
|
15068
|
+
*/
|
|
15069
|
+
priority: number;
|
|
15070
|
+
/**
|
|
15071
|
+
* Resource type, for example Collection
|
|
15072
|
+
*/
|
|
15073
|
+
resourceType: string;
|
|
15074
|
+
/**
|
|
15075
|
+
* Route name, 1–64 characters
|
|
15076
|
+
*/
|
|
15077
|
+
routeName: string;
|
|
15078
|
+
}
|
|
15079
|
+
interface ServiceRouteApiSpec {
|
|
15080
|
+
/**
|
|
15081
|
+
* Operation type, for example READ
|
|
15082
|
+
*/
|
|
15083
|
+
actionType: string;
|
|
15084
|
+
/**
|
|
15085
|
+
* Operation value, for example search
|
|
15086
|
+
*/
|
|
15087
|
+
actionValue: string;
|
|
15088
|
+
extractors: outputs.id.ServiceRouteApiSpecExtractor[];
|
|
15089
|
+
/**
|
|
15090
|
+
* Resource identifier type
|
|
15091
|
+
*/
|
|
15092
|
+
identifierType: number;
|
|
15093
|
+
/**
|
|
15094
|
+
* Resource identifier value, for example JSON Pointer
|
|
15095
|
+
*/
|
|
15096
|
+
identifierValue: string;
|
|
15097
|
+
responseFilters: outputs.id.ServiceRouteApiSpecResponseFilter[];
|
|
15098
|
+
}
|
|
15099
|
+
interface ServiceRouteApiSpecExtractor {
|
|
15100
|
+
/**
|
|
15101
|
+
* Whether used for authentication
|
|
15102
|
+
*/
|
|
15103
|
+
isAuth: boolean;
|
|
15104
|
+
/**
|
|
15105
|
+
* JSON Pointer expression
|
|
15106
|
+
*/
|
|
15107
|
+
path: string;
|
|
15108
|
+
/**
|
|
15109
|
+
* Extracted resource type
|
|
15110
|
+
*/
|
|
15111
|
+
resourceType: string;
|
|
15112
|
+
/**
|
|
15113
|
+
* Extraction source enumeration value
|
|
15114
|
+
*/
|
|
15115
|
+
source: number;
|
|
15116
|
+
}
|
|
15117
|
+
interface ServiceRouteApiSpecResponseFilter {
|
|
15118
|
+
attributes: outputs.id.ServiceRouteApiSpecResponseFilterAttribute[];
|
|
15119
|
+
/**
|
|
15120
|
+
* Array path JSON Pointer
|
|
15121
|
+
*/
|
|
15122
|
+
filterPath: string;
|
|
15123
|
+
/**
|
|
15124
|
+
* ID field name
|
|
15125
|
+
*/
|
|
15126
|
+
idField: string;
|
|
15127
|
+
/**
|
|
15128
|
+
* Whether used for authentication
|
|
15129
|
+
*/
|
|
15130
|
+
isAuth: boolean;
|
|
15131
|
+
/**
|
|
15132
|
+
* Filter mode enumeration value
|
|
15133
|
+
*/
|
|
15134
|
+
mode: number;
|
|
15135
|
+
/**
|
|
15136
|
+
* Resource path JSON Pointer
|
|
15137
|
+
*/
|
|
15138
|
+
resourcePath: string;
|
|
15139
|
+
/**
|
|
15140
|
+
* Filtered resource type
|
|
15141
|
+
*/
|
|
15142
|
+
resourceType: string;
|
|
15143
|
+
}
|
|
15144
|
+
interface ServiceRouteApiSpecResponseFilterAttribute {
|
|
15145
|
+
/**
|
|
15146
|
+
* Source field path JSON Pointer
|
|
15147
|
+
*/
|
|
15148
|
+
field: string;
|
|
15149
|
+
/**
|
|
15150
|
+
* Target attribute name
|
|
15151
|
+
*/
|
|
15152
|
+
target: string;
|
|
15153
|
+
}
|
|
15154
|
+
interface ServiceTag {
|
|
15155
|
+
/**
|
|
15156
|
+
* Tag key
|
|
15157
|
+
*/
|
|
15158
|
+
key: string;
|
|
15159
|
+
/**
|
|
15160
|
+
* Tag value
|
|
15161
|
+
*/
|
|
15162
|
+
value: string;
|
|
15163
|
+
}
|
|
15164
|
+
}
|
|
14798
15165
|
export declare namespace kafka {
|
|
14799
15166
|
interface AllowListAssociatedInstance {
|
|
14800
15167
|
/**
|
|
@@ -14986,6 +15353,52 @@ export declare namespace kafka {
|
|
|
14986
15353
|
}
|
|
14987
15354
|
}
|
|
14988
15355
|
export declare namespace kms {
|
|
15356
|
+
interface GetKeyAsymmetricCiphertext {
|
|
15357
|
+
/**
|
|
15358
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
15359
|
+
*/
|
|
15360
|
+
algorithm: string;
|
|
15361
|
+
/**
|
|
15362
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15363
|
+
*/
|
|
15364
|
+
ciphertextBlob: string;
|
|
15365
|
+
/**
|
|
15366
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15367
|
+
*/
|
|
15368
|
+
plaintext: string;
|
|
15369
|
+
}
|
|
15370
|
+
interface GetKeyAsymmetricSignature {
|
|
15371
|
+
/**
|
|
15372
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
15373
|
+
*/
|
|
15374
|
+
algorithm: string;
|
|
15375
|
+
/**
|
|
15376
|
+
* Message to be signed, Base64-encoded.
|
|
15377
|
+
*/
|
|
15378
|
+
message: string;
|
|
15379
|
+
/**
|
|
15380
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
15381
|
+
*/
|
|
15382
|
+
messageType: string;
|
|
15383
|
+
/**
|
|
15384
|
+
* Signature result, Base64-encoded.
|
|
15385
|
+
*/
|
|
15386
|
+
signature: string;
|
|
15387
|
+
}
|
|
15388
|
+
interface GetKeyCiphertext {
|
|
15389
|
+
/**
|
|
15390
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15391
|
+
*/
|
|
15392
|
+
ciphertextBlob: string;
|
|
15393
|
+
/**
|
|
15394
|
+
* Encryption context JSON string.
|
|
15395
|
+
*/
|
|
15396
|
+
encryptionContext: string;
|
|
15397
|
+
/**
|
|
15398
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15399
|
+
*/
|
|
15400
|
+
plaintext: string;
|
|
15401
|
+
}
|
|
14989
15402
|
interface GetKeyMultiRegionConfiguration {
|
|
14990
15403
|
/**
|
|
14991
15404
|
* Multi-region key type.
|
|
@@ -15020,6 +15433,64 @@ export declare namespace kms {
|
|
|
15020
15433
|
*/
|
|
15021
15434
|
trn: string;
|
|
15022
15435
|
}
|
|
15436
|
+
interface GetKeyReEncrypt {
|
|
15437
|
+
/**
|
|
15438
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
15439
|
+
*/
|
|
15440
|
+
ciphertextBlob: string;
|
|
15441
|
+
/**
|
|
15442
|
+
* New encryption context JSON string.
|
|
15443
|
+
*/
|
|
15444
|
+
newEncryptionContext: string;
|
|
15445
|
+
/**
|
|
15446
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
15447
|
+
*/
|
|
15448
|
+
newKeyId: string;
|
|
15449
|
+
/**
|
|
15450
|
+
* Target key name.
|
|
15451
|
+
*/
|
|
15452
|
+
newKeyName: string;
|
|
15453
|
+
/**
|
|
15454
|
+
* Name of the keyring to which the target key belongs.
|
|
15455
|
+
*/
|
|
15456
|
+
newKeyringName: string;
|
|
15457
|
+
/**
|
|
15458
|
+
* Old encryption context JSON string.
|
|
15459
|
+
*/
|
|
15460
|
+
oldEncryptionContext: string;
|
|
15461
|
+
/**
|
|
15462
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
15463
|
+
*/
|
|
15464
|
+
sourceCiphertextBlob: string;
|
|
15465
|
+
}
|
|
15466
|
+
interface GetKeyReplicateKey {
|
|
15467
|
+
/**
|
|
15468
|
+
* Replica key description.
|
|
15469
|
+
*/
|
|
15470
|
+
description: string;
|
|
15471
|
+
/**
|
|
15472
|
+
* Replica key ID.
|
|
15473
|
+
*/
|
|
15474
|
+
replicaKeyId: string;
|
|
15475
|
+
/**
|
|
15476
|
+
* Target region of the replica key.
|
|
15477
|
+
*/
|
|
15478
|
+
replicaRegion: string;
|
|
15479
|
+
/**
|
|
15480
|
+
* Replica key label.
|
|
15481
|
+
*/
|
|
15482
|
+
tags: outputs.kms.GetKeyReplicateKeyTag[];
|
|
15483
|
+
}
|
|
15484
|
+
interface GetKeyReplicateKeyTag {
|
|
15485
|
+
/**
|
|
15486
|
+
* KMS key label key.
|
|
15487
|
+
*/
|
|
15488
|
+
key: string;
|
|
15489
|
+
/**
|
|
15490
|
+
* KMS key label value.
|
|
15491
|
+
*/
|
|
15492
|
+
value: string;
|
|
15493
|
+
}
|
|
15023
15494
|
interface GetKeyTag {
|
|
15024
15495
|
/**
|
|
15025
15496
|
* KMS key label key.
|
|
@@ -15030,6 +15501,52 @@ export declare namespace kms {
|
|
|
15030
15501
|
*/
|
|
15031
15502
|
value: string;
|
|
15032
15503
|
}
|
|
15504
|
+
interface KeyAsymmetricCiphertext {
|
|
15505
|
+
/**
|
|
15506
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
15507
|
+
*/
|
|
15508
|
+
algorithm: string;
|
|
15509
|
+
/**
|
|
15510
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15511
|
+
*/
|
|
15512
|
+
ciphertextBlob: string;
|
|
15513
|
+
/**
|
|
15514
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15515
|
+
*/
|
|
15516
|
+
plaintext: string;
|
|
15517
|
+
}
|
|
15518
|
+
interface KeyAsymmetricSignature {
|
|
15519
|
+
/**
|
|
15520
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
15521
|
+
*/
|
|
15522
|
+
algorithm: string;
|
|
15523
|
+
/**
|
|
15524
|
+
* Message to be signed, Base64-encoded.
|
|
15525
|
+
*/
|
|
15526
|
+
message: string;
|
|
15527
|
+
/**
|
|
15528
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
15529
|
+
*/
|
|
15530
|
+
messageType: string;
|
|
15531
|
+
/**
|
|
15532
|
+
* Signature result, Base64-encoded.
|
|
15533
|
+
*/
|
|
15534
|
+
signature: string;
|
|
15535
|
+
}
|
|
15536
|
+
interface KeyCiphertext {
|
|
15537
|
+
/**
|
|
15538
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15539
|
+
*/
|
|
15540
|
+
ciphertextBlob: string;
|
|
15541
|
+
/**
|
|
15542
|
+
* Encryption context JSON string.
|
|
15543
|
+
*/
|
|
15544
|
+
encryptionContext: string;
|
|
15545
|
+
/**
|
|
15546
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15547
|
+
*/
|
|
15548
|
+
plaintext: string;
|
|
15549
|
+
}
|
|
15033
15550
|
interface KeyMultiRegionConfiguration {
|
|
15034
15551
|
/**
|
|
15035
15552
|
* Multi-region key type.
|
|
@@ -15061,6 +15578,61 @@ export declare namespace kms {
|
|
|
15061
15578
|
*/
|
|
15062
15579
|
trn: string;
|
|
15063
15580
|
}
|
|
15581
|
+
interface KeyReEncrypt {
|
|
15582
|
+
/**
|
|
15583
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
15584
|
+
*/
|
|
15585
|
+
ciphertextBlob: string;
|
|
15586
|
+
/**
|
|
15587
|
+
* New encryption context JSON string.
|
|
15588
|
+
*/
|
|
15589
|
+
newEncryptionContext: string;
|
|
15590
|
+
/**
|
|
15591
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
15592
|
+
*/
|
|
15593
|
+
newKeyId: string;
|
|
15594
|
+
/**
|
|
15595
|
+
* Target key name.
|
|
15596
|
+
*/
|
|
15597
|
+
newKeyName: string;
|
|
15598
|
+
/**
|
|
15599
|
+
* Name of the keyring to which the target key belongs.
|
|
15600
|
+
*/
|
|
15601
|
+
newKeyringName: string;
|
|
15602
|
+
/**
|
|
15603
|
+
* Old encryption context JSON string.
|
|
15604
|
+
*/
|
|
15605
|
+
oldEncryptionContext: string;
|
|
15606
|
+
/**
|
|
15607
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
15608
|
+
*/
|
|
15609
|
+
sourceCiphertextBlob: string;
|
|
15610
|
+
}
|
|
15611
|
+
interface KeyReplicateKey {
|
|
15612
|
+
/**
|
|
15613
|
+
* Replica key description.
|
|
15614
|
+
*/
|
|
15615
|
+
description: string;
|
|
15616
|
+
/**
|
|
15617
|
+
* Replica key ID.
|
|
15618
|
+
*/
|
|
15619
|
+
replicaKeyId: string;
|
|
15620
|
+
/**
|
|
15621
|
+
* Target region of the replica key.
|
|
15622
|
+
*/
|
|
15623
|
+
replicaRegion: string;
|
|
15624
|
+
tags: outputs.kms.KeyReplicateKeyTag[];
|
|
15625
|
+
}
|
|
15626
|
+
interface KeyReplicateKeyTag {
|
|
15627
|
+
/**
|
|
15628
|
+
* KMS key label key.
|
|
15629
|
+
*/
|
|
15630
|
+
key: string;
|
|
15631
|
+
/**
|
|
15632
|
+
* KMS key label value.
|
|
15633
|
+
*/
|
|
15634
|
+
value: string;
|
|
15635
|
+
}
|
|
15064
15636
|
interface KeyTag {
|
|
15065
15637
|
/**
|
|
15066
15638
|
* KMS key label key.
|
|
@@ -18608,6 +19180,40 @@ export declare namespace rdspostgresql {
|
|
|
18608
19180
|
*/
|
|
18609
19181
|
value: string;
|
|
18610
19182
|
}
|
|
19183
|
+
interface GetParameterTemplateTemplateParam {
|
|
19184
|
+
/**
|
|
19185
|
+
* Parameter validation rules
|
|
19186
|
+
*/
|
|
19187
|
+
checkingCode: string;
|
|
19188
|
+
/**
|
|
19189
|
+
* Default value of the parameter
|
|
19190
|
+
*/
|
|
19191
|
+
defaultValue: string;
|
|
19192
|
+
/**
|
|
19193
|
+
* Parameter description information in English
|
|
19194
|
+
*/
|
|
19195
|
+
description: string;
|
|
19196
|
+
/**
|
|
19197
|
+
* Parameter description information in Chinese
|
|
19198
|
+
*/
|
|
19199
|
+
descriptionZh: string;
|
|
19200
|
+
/**
|
|
19201
|
+
* Whether modifying this parameter requires a restart
|
|
19202
|
+
*/
|
|
19203
|
+
forceRestart: boolean;
|
|
19204
|
+
/**
|
|
19205
|
+
* Parameter name
|
|
19206
|
+
*/
|
|
19207
|
+
name: string;
|
|
19208
|
+
/**
|
|
19209
|
+
* Data type of the parameter
|
|
19210
|
+
*/
|
|
19211
|
+
type: string;
|
|
19212
|
+
/**
|
|
19213
|
+
* Parameter value
|
|
19214
|
+
*/
|
|
19215
|
+
value: string;
|
|
19216
|
+
}
|
|
18611
19217
|
interface InstanceChargeDetail {
|
|
18612
19218
|
/**
|
|
18613
19219
|
* Enable auto-renewal for prepaid scenarios
|
|
@@ -18836,6 +19442,16 @@ export declare namespace rdspostgresql {
|
|
|
18836
19442
|
*/
|
|
18837
19443
|
value: string;
|
|
18838
19444
|
}
|
|
19445
|
+
interface ParameterTemplateTemplateParam {
|
|
19446
|
+
/**
|
|
19447
|
+
* Parameter name
|
|
19448
|
+
*/
|
|
19449
|
+
name: string;
|
|
19450
|
+
/**
|
|
19451
|
+
* Parameter value
|
|
19452
|
+
*/
|
|
19453
|
+
value: string;
|
|
19454
|
+
}
|
|
18839
19455
|
}
|
|
18840
19456
|
export declare namespace redis {
|
|
18841
19457
|
interface AllowListAssociatedInstance {
|