@byteplus/pulumi-bytepluscc 0.0.30 → 0.0.32
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 +7 -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 +7 -2
- package/config/vars.js +7 -0
- package/config/vars.js.map +1 -1
- package/iam/getRole.d.ts +4 -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 +3 -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 +14 -4
- 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
|
@@ -9063,6 +9063,30 @@ export declare namespace cloudidentity {
|
|
|
9063
9063
|
}
|
|
9064
9064
|
}
|
|
9065
9065
|
export declare namespace cloudmonitor {
|
|
9066
|
+
interface ContactGroupContact {
|
|
9067
|
+
/**
|
|
9068
|
+
* 联系人ID。
|
|
9069
|
+
*/
|
|
9070
|
+
contactId: string;
|
|
9071
|
+
}
|
|
9072
|
+
interface GetContactGroupContact {
|
|
9073
|
+
/**
|
|
9074
|
+
* 联系人ID。
|
|
9075
|
+
*/
|
|
9076
|
+
contactId: string;
|
|
9077
|
+
/**
|
|
9078
|
+
* 联系人邮箱地址。
|
|
9079
|
+
*/
|
|
9080
|
+
email: string;
|
|
9081
|
+
/**
|
|
9082
|
+
* 联系人名称。
|
|
9083
|
+
*/
|
|
9084
|
+
name: string;
|
|
9085
|
+
/**
|
|
9086
|
+
* 联系人手机号码。
|
|
9087
|
+
*/
|
|
9088
|
+
phone: string;
|
|
9089
|
+
}
|
|
9066
9090
|
interface GetRuleCondition {
|
|
9067
9091
|
/**
|
|
9068
9092
|
* 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.
|
|
@@ -13957,15 +13981,49 @@ export declare namespace iam {
|
|
|
13957
13981
|
projectName: string;
|
|
13958
13982
|
}
|
|
13959
13983
|
interface GetRolePolicy {
|
|
13984
|
+
/**
|
|
13985
|
+
* Policy binding time.
|
|
13986
|
+
*/
|
|
13987
|
+
attachDate: string;
|
|
13988
|
+
/**
|
|
13989
|
+
* Policy description.
|
|
13990
|
+
*/
|
|
13991
|
+
description: string;
|
|
13960
13992
|
/**
|
|
13961
13993
|
* Policy name
|
|
13962
13994
|
*/
|
|
13963
13995
|
policyName: string;
|
|
13996
|
+
/**
|
|
13997
|
+
* Policy authorization scope, specifically refers to the project scope.
|
|
13998
|
+
*/
|
|
13999
|
+
policyScopes: outputs.iam.GetRolePolicyPolicyScope[];
|
|
14000
|
+
/**
|
|
14001
|
+
* Policy TRN.
|
|
14002
|
+
*/
|
|
14003
|
+
policyTrn: string;
|
|
13964
14004
|
/**
|
|
13965
14005
|
* Policy type. Policy type. System indicates a system preset policy; Custom indicates a custom policy.
|
|
13966
14006
|
*/
|
|
13967
14007
|
policyType: string;
|
|
13968
14008
|
}
|
|
14009
|
+
interface GetRolePolicyPolicyScope {
|
|
14010
|
+
/**
|
|
14011
|
+
* Project authorization time.
|
|
14012
|
+
*/
|
|
14013
|
+
attachDate: string;
|
|
14014
|
+
/**
|
|
14015
|
+
* Authorization type. Global means global authorization (not limited to any project), Project means project-based authorization.
|
|
14016
|
+
*/
|
|
14017
|
+
policyScopeType: string;
|
|
14018
|
+
/**
|
|
14019
|
+
* Project display name for project-based authorization.
|
|
14020
|
+
*/
|
|
14021
|
+
projectDisplayName: string;
|
|
14022
|
+
/**
|
|
14023
|
+
* Project name for project-based authorization.
|
|
14024
|
+
*/
|
|
14025
|
+
projectName: string;
|
|
14026
|
+
}
|
|
13969
14027
|
interface GetRoleTag {
|
|
13970
14028
|
/**
|
|
13971
14029
|
* Tag key
|
|
@@ -14415,6 +14473,315 @@ export declare namespace iam {
|
|
|
14415
14473
|
value: string;
|
|
14416
14474
|
}
|
|
14417
14475
|
}
|
|
14476
|
+
export declare namespace id {
|
|
14477
|
+
interface GetServiceBackend {
|
|
14478
|
+
/**
|
|
14479
|
+
* Backend service domain name, for example api.example.com
|
|
14480
|
+
*/
|
|
14481
|
+
backendDomain: string;
|
|
14482
|
+
/**
|
|
14483
|
+
* Backend service port, default is 443
|
|
14484
|
+
*/
|
|
14485
|
+
backendPort: number;
|
|
14486
|
+
/**
|
|
14487
|
+
* Whether to enable TLS
|
|
14488
|
+
*/
|
|
14489
|
+
enableTls: boolean;
|
|
14490
|
+
/**
|
|
14491
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
14492
|
+
*/
|
|
14493
|
+
protocol: string;
|
|
14494
|
+
/**
|
|
14495
|
+
* Request timeout in seconds, default is 30 seconds
|
|
14496
|
+
*/
|
|
14497
|
+
timeoutSeconds: number;
|
|
14498
|
+
}
|
|
14499
|
+
interface GetServiceRoute {
|
|
14500
|
+
/**
|
|
14501
|
+
* API specification configuration
|
|
14502
|
+
*/
|
|
14503
|
+
apiSpec: outputs.id.GetServiceRouteApiSpec;
|
|
14504
|
+
/**
|
|
14505
|
+
* Authentication resource type
|
|
14506
|
+
*/
|
|
14507
|
+
authResourceType: string;
|
|
14508
|
+
/**
|
|
14509
|
+
* Route description
|
|
14510
|
+
*/
|
|
14511
|
+
description: string;
|
|
14512
|
+
/**
|
|
14513
|
+
* HTTP methods, separated by commas
|
|
14514
|
+
*/
|
|
14515
|
+
method: string;
|
|
14516
|
+
/**
|
|
14517
|
+
* Request path, 1–256 characters
|
|
14518
|
+
*/
|
|
14519
|
+
path: string;
|
|
14520
|
+
/**
|
|
14521
|
+
* Path match type, for example Exact, Prefix
|
|
14522
|
+
*/
|
|
14523
|
+
pathMatchType: string;
|
|
14524
|
+
/**
|
|
14525
|
+
* Permission pool name
|
|
14526
|
+
*/
|
|
14527
|
+
permissionPool: string;
|
|
14528
|
+
/**
|
|
14529
|
+
* Route priority, lower values indicate higher priority
|
|
14530
|
+
*/
|
|
14531
|
+
priority: number;
|
|
14532
|
+
/**
|
|
14533
|
+
* Resource type, for example Collection
|
|
14534
|
+
*/
|
|
14535
|
+
resourceType: string;
|
|
14536
|
+
/**
|
|
14537
|
+
* Route name, 1–64 characters
|
|
14538
|
+
*/
|
|
14539
|
+
routeName: string;
|
|
14540
|
+
}
|
|
14541
|
+
interface GetServiceRouteApiSpec {
|
|
14542
|
+
/**
|
|
14543
|
+
* Operation type, for example READ
|
|
14544
|
+
*/
|
|
14545
|
+
actionType: string;
|
|
14546
|
+
/**
|
|
14547
|
+
* Operation value, for example search
|
|
14548
|
+
*/
|
|
14549
|
+
actionValue: string;
|
|
14550
|
+
/**
|
|
14551
|
+
* Attribute extractor list
|
|
14552
|
+
*/
|
|
14553
|
+
extractors: outputs.id.GetServiceRouteApiSpecExtractor[];
|
|
14554
|
+
/**
|
|
14555
|
+
* Resource identifier type
|
|
14556
|
+
*/
|
|
14557
|
+
identifierType: number;
|
|
14558
|
+
/**
|
|
14559
|
+
* Resource identifier value, for example JSON Pointer
|
|
14560
|
+
*/
|
|
14561
|
+
identifierValue: string;
|
|
14562
|
+
/**
|
|
14563
|
+
* Response filter list
|
|
14564
|
+
*/
|
|
14565
|
+
responseFilters: outputs.id.GetServiceRouteApiSpecResponseFilter[];
|
|
14566
|
+
}
|
|
14567
|
+
interface GetServiceRouteApiSpecExtractor {
|
|
14568
|
+
/**
|
|
14569
|
+
* Whether used for authentication
|
|
14570
|
+
*/
|
|
14571
|
+
isAuth: boolean;
|
|
14572
|
+
/**
|
|
14573
|
+
* JSON Pointer expression
|
|
14574
|
+
*/
|
|
14575
|
+
path: string;
|
|
14576
|
+
/**
|
|
14577
|
+
* Extracted resource type
|
|
14578
|
+
*/
|
|
14579
|
+
resourceType: string;
|
|
14580
|
+
/**
|
|
14581
|
+
* Extraction source enumeration value
|
|
14582
|
+
*/
|
|
14583
|
+
source: number;
|
|
14584
|
+
}
|
|
14585
|
+
interface GetServiceRouteApiSpecResponseFilter {
|
|
14586
|
+
/**
|
|
14587
|
+
* Attribute mapping list
|
|
14588
|
+
*/
|
|
14589
|
+
attributes: outputs.id.GetServiceRouteApiSpecResponseFilterAttribute[];
|
|
14590
|
+
/**
|
|
14591
|
+
* Array path JSON Pointer
|
|
14592
|
+
*/
|
|
14593
|
+
filterPath: string;
|
|
14594
|
+
/**
|
|
14595
|
+
* ID field name
|
|
14596
|
+
*/
|
|
14597
|
+
idField: string;
|
|
14598
|
+
/**
|
|
14599
|
+
* Whether used for authentication
|
|
14600
|
+
*/
|
|
14601
|
+
isAuth: boolean;
|
|
14602
|
+
/**
|
|
14603
|
+
* Filter mode enumeration value
|
|
14604
|
+
*/
|
|
14605
|
+
mode: number;
|
|
14606
|
+
/**
|
|
14607
|
+
* Resource path JSON Pointer
|
|
14608
|
+
*/
|
|
14609
|
+
resourcePath: string;
|
|
14610
|
+
/**
|
|
14611
|
+
* Filtered resource type
|
|
14612
|
+
*/
|
|
14613
|
+
resourceType: string;
|
|
14614
|
+
}
|
|
14615
|
+
interface GetServiceRouteApiSpecResponseFilterAttribute {
|
|
14616
|
+
/**
|
|
14617
|
+
* Source field path JSON Pointer
|
|
14618
|
+
*/
|
|
14619
|
+
field: string;
|
|
14620
|
+
/**
|
|
14621
|
+
* Target attribute name
|
|
14622
|
+
*/
|
|
14623
|
+
target: string;
|
|
14624
|
+
}
|
|
14625
|
+
interface GetServiceTag {
|
|
14626
|
+
/**
|
|
14627
|
+
* Tag key
|
|
14628
|
+
*/
|
|
14629
|
+
key: string;
|
|
14630
|
+
/**
|
|
14631
|
+
* Tag value
|
|
14632
|
+
*/
|
|
14633
|
+
value: string;
|
|
14634
|
+
}
|
|
14635
|
+
interface ServiceBackend {
|
|
14636
|
+
/**
|
|
14637
|
+
* Backend service domain name, for example api.example.com
|
|
14638
|
+
*/
|
|
14639
|
+
backendDomain: string;
|
|
14640
|
+
/**
|
|
14641
|
+
* Backend service port, default is 443
|
|
14642
|
+
*/
|
|
14643
|
+
backendPort: number;
|
|
14644
|
+
/**
|
|
14645
|
+
* Whether to enable TLS
|
|
14646
|
+
*/
|
|
14647
|
+
enableTls: boolean;
|
|
14648
|
+
/**
|
|
14649
|
+
* Communication protocol, for example HTTP or HTTPS
|
|
14650
|
+
*/
|
|
14651
|
+
protocol: string;
|
|
14652
|
+
/**
|
|
14653
|
+
* Request timeout in seconds, default is 30 seconds
|
|
14654
|
+
*/
|
|
14655
|
+
timeoutSeconds: number;
|
|
14656
|
+
}
|
|
14657
|
+
interface ServiceRoute {
|
|
14658
|
+
/**
|
|
14659
|
+
* API specification configuration
|
|
14660
|
+
*/
|
|
14661
|
+
apiSpec: outputs.id.ServiceRouteApiSpec;
|
|
14662
|
+
/**
|
|
14663
|
+
* Authentication resource type
|
|
14664
|
+
*/
|
|
14665
|
+
authResourceType: string;
|
|
14666
|
+
/**
|
|
14667
|
+
* Route description
|
|
14668
|
+
*/
|
|
14669
|
+
description: string;
|
|
14670
|
+
/**
|
|
14671
|
+
* HTTP methods, separated by commas
|
|
14672
|
+
*/
|
|
14673
|
+
method: string;
|
|
14674
|
+
/**
|
|
14675
|
+
* Request path, 1–256 characters
|
|
14676
|
+
*/
|
|
14677
|
+
path: string;
|
|
14678
|
+
/**
|
|
14679
|
+
* Path match type, for example Exact, Prefix
|
|
14680
|
+
*/
|
|
14681
|
+
pathMatchType: string;
|
|
14682
|
+
/**
|
|
14683
|
+
* Permission pool name
|
|
14684
|
+
*/
|
|
14685
|
+
permissionPool: string;
|
|
14686
|
+
/**
|
|
14687
|
+
* Route priority, lower values indicate higher priority
|
|
14688
|
+
*/
|
|
14689
|
+
priority: number;
|
|
14690
|
+
/**
|
|
14691
|
+
* Resource type, for example Collection
|
|
14692
|
+
*/
|
|
14693
|
+
resourceType: string;
|
|
14694
|
+
/**
|
|
14695
|
+
* Route name, 1–64 characters
|
|
14696
|
+
*/
|
|
14697
|
+
routeName: string;
|
|
14698
|
+
}
|
|
14699
|
+
interface ServiceRouteApiSpec {
|
|
14700
|
+
/**
|
|
14701
|
+
* Operation type, for example READ
|
|
14702
|
+
*/
|
|
14703
|
+
actionType: string;
|
|
14704
|
+
/**
|
|
14705
|
+
* Operation value, for example search
|
|
14706
|
+
*/
|
|
14707
|
+
actionValue: string;
|
|
14708
|
+
extractors: outputs.id.ServiceRouteApiSpecExtractor[];
|
|
14709
|
+
/**
|
|
14710
|
+
* Resource identifier type
|
|
14711
|
+
*/
|
|
14712
|
+
identifierType: number;
|
|
14713
|
+
/**
|
|
14714
|
+
* Resource identifier value, for example JSON Pointer
|
|
14715
|
+
*/
|
|
14716
|
+
identifierValue: string;
|
|
14717
|
+
responseFilters: outputs.id.ServiceRouteApiSpecResponseFilter[];
|
|
14718
|
+
}
|
|
14719
|
+
interface ServiceRouteApiSpecExtractor {
|
|
14720
|
+
/**
|
|
14721
|
+
* Whether used for authentication
|
|
14722
|
+
*/
|
|
14723
|
+
isAuth: boolean;
|
|
14724
|
+
/**
|
|
14725
|
+
* JSON Pointer expression
|
|
14726
|
+
*/
|
|
14727
|
+
path: string;
|
|
14728
|
+
/**
|
|
14729
|
+
* Extracted resource type
|
|
14730
|
+
*/
|
|
14731
|
+
resourceType: string;
|
|
14732
|
+
/**
|
|
14733
|
+
* Extraction source enumeration value
|
|
14734
|
+
*/
|
|
14735
|
+
source: number;
|
|
14736
|
+
}
|
|
14737
|
+
interface ServiceRouteApiSpecResponseFilter {
|
|
14738
|
+
attributes: outputs.id.ServiceRouteApiSpecResponseFilterAttribute[];
|
|
14739
|
+
/**
|
|
14740
|
+
* Array path JSON Pointer
|
|
14741
|
+
*/
|
|
14742
|
+
filterPath: string;
|
|
14743
|
+
/**
|
|
14744
|
+
* ID field name
|
|
14745
|
+
*/
|
|
14746
|
+
idField: string;
|
|
14747
|
+
/**
|
|
14748
|
+
* Whether used for authentication
|
|
14749
|
+
*/
|
|
14750
|
+
isAuth: boolean;
|
|
14751
|
+
/**
|
|
14752
|
+
* Filter mode enumeration value
|
|
14753
|
+
*/
|
|
14754
|
+
mode: number;
|
|
14755
|
+
/**
|
|
14756
|
+
* Resource path JSON Pointer
|
|
14757
|
+
*/
|
|
14758
|
+
resourcePath: string;
|
|
14759
|
+
/**
|
|
14760
|
+
* Filtered resource type
|
|
14761
|
+
*/
|
|
14762
|
+
resourceType: string;
|
|
14763
|
+
}
|
|
14764
|
+
interface ServiceRouteApiSpecResponseFilterAttribute {
|
|
14765
|
+
/**
|
|
14766
|
+
* Source field path JSON Pointer
|
|
14767
|
+
*/
|
|
14768
|
+
field: string;
|
|
14769
|
+
/**
|
|
14770
|
+
* Target attribute name
|
|
14771
|
+
*/
|
|
14772
|
+
target: string;
|
|
14773
|
+
}
|
|
14774
|
+
interface ServiceTag {
|
|
14775
|
+
/**
|
|
14776
|
+
* Tag key
|
|
14777
|
+
*/
|
|
14778
|
+
key: string;
|
|
14779
|
+
/**
|
|
14780
|
+
* Tag value
|
|
14781
|
+
*/
|
|
14782
|
+
value: string;
|
|
14783
|
+
}
|
|
14784
|
+
}
|
|
14418
14785
|
export declare namespace kafka {
|
|
14419
14786
|
interface AllowListAssociatedInstance {
|
|
14420
14787
|
/**
|
|
@@ -14606,6 +14973,52 @@ export declare namespace kafka {
|
|
|
14606
14973
|
}
|
|
14607
14974
|
}
|
|
14608
14975
|
export declare namespace kms {
|
|
14976
|
+
interface GetKeyAsymmetricCiphertext {
|
|
14977
|
+
/**
|
|
14978
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
14979
|
+
*/
|
|
14980
|
+
algorithm: string;
|
|
14981
|
+
/**
|
|
14982
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
14983
|
+
*/
|
|
14984
|
+
ciphertextBlob: string;
|
|
14985
|
+
/**
|
|
14986
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
14987
|
+
*/
|
|
14988
|
+
plaintext: string;
|
|
14989
|
+
}
|
|
14990
|
+
interface GetKeyAsymmetricSignature {
|
|
14991
|
+
/**
|
|
14992
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
14993
|
+
*/
|
|
14994
|
+
algorithm: string;
|
|
14995
|
+
/**
|
|
14996
|
+
* Message to be signed, Base64-encoded.
|
|
14997
|
+
*/
|
|
14998
|
+
message: string;
|
|
14999
|
+
/**
|
|
15000
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
15001
|
+
*/
|
|
15002
|
+
messageType: string;
|
|
15003
|
+
/**
|
|
15004
|
+
* Signature result, Base64-encoded.
|
|
15005
|
+
*/
|
|
15006
|
+
signature: string;
|
|
15007
|
+
}
|
|
15008
|
+
interface GetKeyCiphertext {
|
|
15009
|
+
/**
|
|
15010
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15011
|
+
*/
|
|
15012
|
+
ciphertextBlob: string;
|
|
15013
|
+
/**
|
|
15014
|
+
* Encryption context JSON string.
|
|
15015
|
+
*/
|
|
15016
|
+
encryptionContext: string;
|
|
15017
|
+
/**
|
|
15018
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15019
|
+
*/
|
|
15020
|
+
plaintext: string;
|
|
15021
|
+
}
|
|
14609
15022
|
interface GetKeyMultiRegionConfiguration {
|
|
14610
15023
|
/**
|
|
14611
15024
|
* Multi-region key type.
|
|
@@ -14640,6 +15053,64 @@ export declare namespace kms {
|
|
|
14640
15053
|
*/
|
|
14641
15054
|
trn: string;
|
|
14642
15055
|
}
|
|
15056
|
+
interface GetKeyReEncrypt {
|
|
15057
|
+
/**
|
|
15058
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
15059
|
+
*/
|
|
15060
|
+
ciphertextBlob: string;
|
|
15061
|
+
/**
|
|
15062
|
+
* New encryption context JSON string.
|
|
15063
|
+
*/
|
|
15064
|
+
newEncryptionContext: string;
|
|
15065
|
+
/**
|
|
15066
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
15067
|
+
*/
|
|
15068
|
+
newKeyId: string;
|
|
15069
|
+
/**
|
|
15070
|
+
* Target key name.
|
|
15071
|
+
*/
|
|
15072
|
+
newKeyName: string;
|
|
15073
|
+
/**
|
|
15074
|
+
* Name of the keyring to which the target key belongs.
|
|
15075
|
+
*/
|
|
15076
|
+
newKeyringName: string;
|
|
15077
|
+
/**
|
|
15078
|
+
* Old encryption context JSON string.
|
|
15079
|
+
*/
|
|
15080
|
+
oldEncryptionContext: string;
|
|
15081
|
+
/**
|
|
15082
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
15083
|
+
*/
|
|
15084
|
+
sourceCiphertextBlob: string;
|
|
15085
|
+
}
|
|
15086
|
+
interface GetKeyReplicateKey {
|
|
15087
|
+
/**
|
|
15088
|
+
* Replica key description.
|
|
15089
|
+
*/
|
|
15090
|
+
description: string;
|
|
15091
|
+
/**
|
|
15092
|
+
* Replica key ID.
|
|
15093
|
+
*/
|
|
15094
|
+
replicaKeyId: string;
|
|
15095
|
+
/**
|
|
15096
|
+
* Target region of the replica key.
|
|
15097
|
+
*/
|
|
15098
|
+
replicaRegion: string;
|
|
15099
|
+
/**
|
|
15100
|
+
* Replica key label.
|
|
15101
|
+
*/
|
|
15102
|
+
tags: outputs.kms.GetKeyReplicateKeyTag[];
|
|
15103
|
+
}
|
|
15104
|
+
interface GetKeyReplicateKeyTag {
|
|
15105
|
+
/**
|
|
15106
|
+
* KMS key label key.
|
|
15107
|
+
*/
|
|
15108
|
+
key: string;
|
|
15109
|
+
/**
|
|
15110
|
+
* KMS key label value.
|
|
15111
|
+
*/
|
|
15112
|
+
value: string;
|
|
15113
|
+
}
|
|
14643
15114
|
interface GetKeyTag {
|
|
14644
15115
|
/**
|
|
14645
15116
|
* KMS key label key.
|
|
@@ -14650,6 +15121,52 @@ export declare namespace kms {
|
|
|
14650
15121
|
*/
|
|
14651
15122
|
value: string;
|
|
14652
15123
|
}
|
|
15124
|
+
interface KeyAsymmetricCiphertext {
|
|
15125
|
+
/**
|
|
15126
|
+
* Encryption algorithm. Optional values: RSAES*OAEP*SHA_256, SM2PKE.
|
|
15127
|
+
*/
|
|
15128
|
+
algorithm: string;
|
|
15129
|
+
/**
|
|
15130
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15131
|
+
*/
|
|
15132
|
+
ciphertextBlob: string;
|
|
15133
|
+
/**
|
|
15134
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15135
|
+
*/
|
|
15136
|
+
plaintext: string;
|
|
15137
|
+
}
|
|
15138
|
+
interface KeyAsymmetricSignature {
|
|
15139
|
+
/**
|
|
15140
|
+
* Signature algorithm, for example: RSA*PSS*SHA*256, RSA*PKCS1*SHA*256, ECDSA*SHA*256, SM2_DSA.
|
|
15141
|
+
*/
|
|
15142
|
+
algorithm: string;
|
|
15143
|
+
/**
|
|
15144
|
+
* Message to be signed, Base64-encoded.
|
|
15145
|
+
*/
|
|
15146
|
+
message: string;
|
|
15147
|
+
/**
|
|
15148
|
+
* Message type. Optional values: RAW, DIGEST.
|
|
15149
|
+
*/
|
|
15150
|
+
messageType: string;
|
|
15151
|
+
/**
|
|
15152
|
+
* Signature result, Base64-encoded.
|
|
15153
|
+
*/
|
|
15154
|
+
signature: string;
|
|
15155
|
+
}
|
|
15156
|
+
interface KeyCiphertext {
|
|
15157
|
+
/**
|
|
15158
|
+
* Ciphertext of encryption result, Base64-encoded.
|
|
15159
|
+
*/
|
|
15160
|
+
ciphertextBlob: string;
|
|
15161
|
+
/**
|
|
15162
|
+
* Encryption context JSON string.
|
|
15163
|
+
*/
|
|
15164
|
+
encryptionContext: string;
|
|
15165
|
+
/**
|
|
15166
|
+
* Plaintext to be encrypted, Base64-encoded.
|
|
15167
|
+
*/
|
|
15168
|
+
plaintext: string;
|
|
15169
|
+
}
|
|
14653
15170
|
interface KeyMultiRegionConfiguration {
|
|
14654
15171
|
/**
|
|
14655
15172
|
* Multi-region key type.
|
|
@@ -14681,6 +15198,61 @@ export declare namespace kms {
|
|
|
14681
15198
|
*/
|
|
14682
15199
|
trn: string;
|
|
14683
15200
|
}
|
|
15201
|
+
interface KeyReEncrypt {
|
|
15202
|
+
/**
|
|
15203
|
+
* Re-encrypted ciphertext, Base64-encoded.
|
|
15204
|
+
*/
|
|
15205
|
+
ciphertextBlob: string;
|
|
15206
|
+
/**
|
|
15207
|
+
* New encryption context JSON string.
|
|
15208
|
+
*/
|
|
15209
|
+
newEncryptionContext: string;
|
|
15210
|
+
/**
|
|
15211
|
+
* Target key ID. If not specified, you must provide NewKeyringName and NewKeyName.
|
|
15212
|
+
*/
|
|
15213
|
+
newKeyId: string;
|
|
15214
|
+
/**
|
|
15215
|
+
* Target key name.
|
|
15216
|
+
*/
|
|
15217
|
+
newKeyName: string;
|
|
15218
|
+
/**
|
|
15219
|
+
* Name of the keyring to which the target key belongs.
|
|
15220
|
+
*/
|
|
15221
|
+
newKeyringName: string;
|
|
15222
|
+
/**
|
|
15223
|
+
* Old encryption context JSON string.
|
|
15224
|
+
*/
|
|
15225
|
+
oldEncryptionContext: string;
|
|
15226
|
+
/**
|
|
15227
|
+
* Source ciphertext to be re-encrypted, Base64-encoded.
|
|
15228
|
+
*/
|
|
15229
|
+
sourceCiphertextBlob: string;
|
|
15230
|
+
}
|
|
15231
|
+
interface KeyReplicateKey {
|
|
15232
|
+
/**
|
|
15233
|
+
* Replica key description.
|
|
15234
|
+
*/
|
|
15235
|
+
description: string;
|
|
15236
|
+
/**
|
|
15237
|
+
* Replica key ID.
|
|
15238
|
+
*/
|
|
15239
|
+
replicaKeyId: string;
|
|
15240
|
+
/**
|
|
15241
|
+
* Target region of the replica key.
|
|
15242
|
+
*/
|
|
15243
|
+
replicaRegion: string;
|
|
15244
|
+
tags: outputs.kms.KeyReplicateKeyTag[];
|
|
15245
|
+
}
|
|
15246
|
+
interface KeyReplicateKeyTag {
|
|
15247
|
+
/**
|
|
15248
|
+
* KMS key label key.
|
|
15249
|
+
*/
|
|
15250
|
+
key: string;
|
|
15251
|
+
/**
|
|
15252
|
+
* KMS key label value.
|
|
15253
|
+
*/
|
|
15254
|
+
value: string;
|
|
15255
|
+
}
|
|
14684
15256
|
interface KeyTag {
|
|
14685
15257
|
/**
|
|
14686
15258
|
* KMS key label key.
|
|
@@ -18228,6 +18800,40 @@ export declare namespace rdspostgresql {
|
|
|
18228
18800
|
*/
|
|
18229
18801
|
value: string;
|
|
18230
18802
|
}
|
|
18803
|
+
interface GetParameterTemplateTemplateParam {
|
|
18804
|
+
/**
|
|
18805
|
+
* Parameter validation rules
|
|
18806
|
+
*/
|
|
18807
|
+
checkingCode: string;
|
|
18808
|
+
/**
|
|
18809
|
+
* Default value of the parameter
|
|
18810
|
+
*/
|
|
18811
|
+
defaultValue: string;
|
|
18812
|
+
/**
|
|
18813
|
+
* Parameter description information in English
|
|
18814
|
+
*/
|
|
18815
|
+
description: string;
|
|
18816
|
+
/**
|
|
18817
|
+
* Parameter description information in Chinese
|
|
18818
|
+
*/
|
|
18819
|
+
descriptionZh: string;
|
|
18820
|
+
/**
|
|
18821
|
+
* Whether modifying this parameter requires a restart
|
|
18822
|
+
*/
|
|
18823
|
+
forceRestart: boolean;
|
|
18824
|
+
/**
|
|
18825
|
+
* Parameter name
|
|
18826
|
+
*/
|
|
18827
|
+
name: string;
|
|
18828
|
+
/**
|
|
18829
|
+
* Data type of the parameter
|
|
18830
|
+
*/
|
|
18831
|
+
type: string;
|
|
18832
|
+
/**
|
|
18833
|
+
* Parameter value
|
|
18834
|
+
*/
|
|
18835
|
+
value: string;
|
|
18836
|
+
}
|
|
18231
18837
|
interface InstanceChargeDetail {
|
|
18232
18838
|
/**
|
|
18233
18839
|
* Enable auto-renewal for prepaid scenarios
|
|
@@ -18456,6 +19062,16 @@ export declare namespace rdspostgresql {
|
|
|
18456
19062
|
*/
|
|
18457
19063
|
value: string;
|
|
18458
19064
|
}
|
|
19065
|
+
interface ParameterTemplateTemplateParam {
|
|
19066
|
+
/**
|
|
19067
|
+
* Parameter name
|
|
19068
|
+
*/
|
|
19069
|
+
name: string;
|
|
19070
|
+
/**
|
|
19071
|
+
* Parameter value
|
|
19072
|
+
*/
|
|
19073
|
+
value: string;
|
|
19074
|
+
}
|
|
18459
19075
|
}
|
|
18460
19076
|
export declare namespace redis {
|
|
18461
19077
|
interface AllowListAssociatedInstance {
|