@byteplus/pulumi-bytepluscc 0.0.26 → 0.0.29
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/iam/accesskey.d.ts +27 -23
- package/iam/accesskey.js +2 -2
- package/iam/accesskey.js.map +1 -1
- package/iam/getAccesskey.d.ts +10 -10
- package/mongodb/getInstance.d.ts +4 -0
- package/mongodb/getInstance.js.map +1 -1
- package/mongodb/instance.d.ts +3 -0
- package/mongodb/instance.js +2 -0
- package/mongodb/instance.js.map +1 -1
- package/package.json +1 -1
- package/privatelink/endpointService.d.ts +12 -0
- package/privatelink/endpointService.js +2 -0
- package/privatelink/endpointService.js.map +1 -1
- package/privatelink/getEndpointService.d.ts +4 -0
- package/privatelink/getEndpointService.js.map +1 -1
- package/privatezone/getPrivateZone.d.ts +85 -0
- package/privatezone/getPrivateZone.js +28 -0
- package/privatezone/getPrivateZone.js.map +1 -0
- package/privatezone/getPrivateZones.d.ts +22 -0
- package/privatezone/getPrivateZones.js +24 -0
- package/privatezone/getPrivateZones.js.map +1 -0
- package/privatezone/index.d.ts +9 -0
- package/privatezone/index.js +12 -1
- package/privatezone/index.js.map +1 -1
- package/privatezone/privateZone.d.ts +153 -0
- package/privatezone/privateZone.js +83 -0
- package/privatezone/privateZone.js.map +1 -0
- package/rdspostgresql/allowList.d.ts +1 -22
- package/rdspostgresql/allowList.js +2 -20
- package/rdspostgresql/allowList.js.map +1 -1
- package/rdspostgresql/backup.d.ts +222 -0
- package/rdspostgresql/backup.js +97 -0
- package/rdspostgresql/backup.js.map +1 -0
- package/rdspostgresql/dbEndpoint.d.ts +36 -18
- package/rdspostgresql/dbEndpoint.js +6 -17
- package/rdspostgresql/dbEndpoint.js.map +1 -1
- package/rdspostgresql/getBackup.d.ts +113 -0
- package/rdspostgresql/getBackup.js +28 -0
- package/rdspostgresql/getBackup.js.map +1 -0
- package/rdspostgresql/getBackups.d.ts +22 -0
- package/rdspostgresql/getBackups.js +24 -0
- package/rdspostgresql/getBackups.js.map +1 -0
- package/rdspostgresql/getDbEndpoint.d.ts +12 -4
- package/rdspostgresql/getDbEndpoint.js.map +1 -1
- package/rdspostgresql/index.d.ts +9 -0
- package/rdspostgresql/index.js +12 -1
- package/rdspostgresql/index.js.map +1 -1
- package/redis/getParameterGroup.d.ts +77 -0
- package/redis/getParameterGroup.js +28 -0
- package/redis/getParameterGroup.js.map +1 -0
- package/redis/getParameterGroups.d.ts +22 -0
- package/redis/getParameterGroups.js +24 -0
- package/redis/getParameterGroups.js.map +1 -0
- package/redis/index.d.ts +9 -0
- package/redis/index.js +12 -1
- package/redis/index.js.map +1 -1
- package/redis/parameterGroup.d.ts +151 -0
- package/redis/parameterGroup.js +108 -0
- package/redis/parameterGroup.js.map +1 -0
- package/types/input.d.ts +237 -9
- package/types/output.d.ts +478 -10
- package/vefaas/function.d.ts +20 -0
- package/vefaas/function.js +4 -0
- package/vefaas/function.js.map +1 -1
- package/vefaas/getFunction.d.ts +8 -0
- package/vefaas/getFunction.js.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -14693,6 +14693,44 @@ export declare namespace mongodb {
|
|
|
14693
14693
|
*/
|
|
14694
14694
|
zoneId: string;
|
|
14695
14695
|
}
|
|
14696
|
+
interface GetInstanceInstanceParameter {
|
|
14697
|
+
/**
|
|
14698
|
+
* Parameter validation rule
|
|
14699
|
+
*/
|
|
14700
|
+
checkingCode: string;
|
|
14701
|
+
/**
|
|
14702
|
+
* Whether to force modification
|
|
14703
|
+
*/
|
|
14704
|
+
forceModify: boolean;
|
|
14705
|
+
/**
|
|
14706
|
+
* Requires instance restart to take effect after modification
|
|
14707
|
+
*/
|
|
14708
|
+
forceRestart: boolean;
|
|
14709
|
+
/**
|
|
14710
|
+
* Parameter default value
|
|
14711
|
+
*/
|
|
14712
|
+
parameterDefaultValue: string;
|
|
14713
|
+
/**
|
|
14714
|
+
* Parameter description
|
|
14715
|
+
*/
|
|
14716
|
+
parameterDescription: string;
|
|
14717
|
+
/**
|
|
14718
|
+
* Parameter name
|
|
14719
|
+
*/
|
|
14720
|
+
parameterName: string;
|
|
14721
|
+
/**
|
|
14722
|
+
* Parameter role. Optional values: Node, Shard, ConfigServer, Mongos
|
|
14723
|
+
*/
|
|
14724
|
+
parameterRole: string;
|
|
14725
|
+
/**
|
|
14726
|
+
* Parameter type. Optional values: String, Integer, Boolean, List, Float
|
|
14727
|
+
*/
|
|
14728
|
+
parameterType: string;
|
|
14729
|
+
/**
|
|
14730
|
+
* Parameter value
|
|
14731
|
+
*/
|
|
14732
|
+
parameterValue: string;
|
|
14733
|
+
}
|
|
14696
14734
|
interface GetInstanceMongo {
|
|
14697
14735
|
/**
|
|
14698
14736
|
* Mongos node ID
|
|
@@ -14891,6 +14929,20 @@ export declare namespace mongodb {
|
|
|
14891
14929
|
*/
|
|
14892
14930
|
zoneId: string;
|
|
14893
14931
|
}
|
|
14932
|
+
interface InstanceInstanceParameter {
|
|
14933
|
+
/**
|
|
14934
|
+
* Parameter name
|
|
14935
|
+
*/
|
|
14936
|
+
parameterName: string;
|
|
14937
|
+
/**
|
|
14938
|
+
* Parameter role. Optional values: Node, Shard, ConfigServer, Mongos
|
|
14939
|
+
*/
|
|
14940
|
+
parameterRole: string;
|
|
14941
|
+
/**
|
|
14942
|
+
* Parameter value
|
|
14943
|
+
*/
|
|
14944
|
+
parameterValue: string;
|
|
14945
|
+
}
|
|
14894
14946
|
interface InstanceMongo {
|
|
14895
14947
|
/**
|
|
14896
14948
|
* Mongos node ID
|
|
@@ -15568,6 +15620,34 @@ export declare namespace privatelink {
|
|
|
15568
15620
|
}
|
|
15569
15621
|
}
|
|
15570
15622
|
export declare namespace privatezone {
|
|
15623
|
+
interface GetPrivateZoneTag {
|
|
15624
|
+
/**
|
|
15625
|
+
* Tag key
|
|
15626
|
+
*/
|
|
15627
|
+
key: string;
|
|
15628
|
+
/**
|
|
15629
|
+
* Tag value
|
|
15630
|
+
*/
|
|
15631
|
+
value: string;
|
|
15632
|
+
}
|
|
15633
|
+
interface GetPrivateZoneVpc {
|
|
15634
|
+
/**
|
|
15635
|
+
* Account ID to which the VPC belongs
|
|
15636
|
+
*/
|
|
15637
|
+
accountId: string;
|
|
15638
|
+
/**
|
|
15639
|
+
* Region where the VPC is located
|
|
15640
|
+
*/
|
|
15641
|
+
region: string;
|
|
15642
|
+
/**
|
|
15643
|
+
* Name of the region where the VPC is located
|
|
15644
|
+
*/
|
|
15645
|
+
regionName: string;
|
|
15646
|
+
/**
|
|
15647
|
+
* VPC ID
|
|
15648
|
+
*/
|
|
15649
|
+
vpcId: string;
|
|
15650
|
+
}
|
|
15571
15651
|
interface GetRecordRecordSet {
|
|
15572
15652
|
/**
|
|
15573
15653
|
* Full domain name
|
|
@@ -15660,6 +15740,26 @@ export declare namespace privatezone {
|
|
|
15660
15740
|
*/
|
|
15661
15741
|
vpcId: string;
|
|
15662
15742
|
}
|
|
15743
|
+
interface PrivateZoneTag {
|
|
15744
|
+
/**
|
|
15745
|
+
* Tag key
|
|
15746
|
+
*/
|
|
15747
|
+
key: string;
|
|
15748
|
+
/**
|
|
15749
|
+
* Tag value
|
|
15750
|
+
*/
|
|
15751
|
+
value: string;
|
|
15752
|
+
}
|
|
15753
|
+
interface PrivateZoneVpc {
|
|
15754
|
+
/**
|
|
15755
|
+
* Region where the VPC is located
|
|
15756
|
+
*/
|
|
15757
|
+
region: string;
|
|
15758
|
+
/**
|
|
15759
|
+
* VPC ID
|
|
15760
|
+
*/
|
|
15761
|
+
vpcId: string;
|
|
15762
|
+
}
|
|
15663
15763
|
interface RecordRecordSet {
|
|
15664
15764
|
/**
|
|
15665
15765
|
* Full domain name
|
|
@@ -17418,14 +17518,6 @@ export declare namespace rdspostgresql {
|
|
|
17418
17518
|
* Instance ID.
|
|
17419
17519
|
*/
|
|
17420
17520
|
instanceId: string;
|
|
17421
|
-
/**
|
|
17422
|
-
* Instance name.
|
|
17423
|
-
*/
|
|
17424
|
-
instanceName: string;
|
|
17425
|
-
/**
|
|
17426
|
-
* VPC ID to which the instance belongs.
|
|
17427
|
-
*/
|
|
17428
|
-
vpc: string;
|
|
17429
17521
|
}
|
|
17430
17522
|
interface AllowListSecurityGroupBindInfo {
|
|
17431
17523
|
/**
|
|
@@ -17445,19 +17537,167 @@ export declare namespace rdspostgresql {
|
|
|
17445
17537
|
*/
|
|
17446
17538
|
securityGroupName: string;
|
|
17447
17539
|
}
|
|
17448
|
-
interface
|
|
17540
|
+
interface BackupBackupMeta {
|
|
17541
|
+
/**
|
|
17542
|
+
* Database name.
|
|
17543
|
+
*/
|
|
17544
|
+
dbName: string;
|
|
17545
|
+
}
|
|
17546
|
+
interface BackupBackupPolicy {
|
|
17547
|
+
/**
|
|
17548
|
+
* Backup retention days.
|
|
17549
|
+
*/
|
|
17550
|
+
backupRetentionPeriod: number;
|
|
17551
|
+
/**
|
|
17552
|
+
* Data incremental backup schedule.
|
|
17553
|
+
*/
|
|
17554
|
+
dataIncrBackupPeriods: string;
|
|
17555
|
+
/**
|
|
17556
|
+
* Full backup schedule, such as Monday,Tuesday.
|
|
17557
|
+
*/
|
|
17558
|
+
fullBackupPeriod: string;
|
|
17559
|
+
/**
|
|
17560
|
+
* Full backup time window, such as 00:00Z-01:00Z.
|
|
17561
|
+
*/
|
|
17562
|
+
fullBackupTime: string;
|
|
17563
|
+
/**
|
|
17564
|
+
* Enable hourly incremental backup.
|
|
17565
|
+
*/
|
|
17566
|
+
hourlyIncrBackupEnable: boolean;
|
|
17567
|
+
/**
|
|
17568
|
+
* Incremental backup frequency (hours).
|
|
17569
|
+
*/
|
|
17570
|
+
incrementBackupFrequency: number;
|
|
17571
|
+
/**
|
|
17572
|
+
* Enable WAL log space limit.
|
|
17573
|
+
*/
|
|
17574
|
+
walLogSpaceLimitEnable: boolean;
|
|
17575
|
+
}
|
|
17576
|
+
interface DbEndpointInnerAddresses {
|
|
17577
|
+
/**
|
|
17578
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
17579
|
+
*/
|
|
17580
|
+
crossRegionDomain: string;
|
|
17449
17581
|
/**
|
|
17450
17582
|
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
17451
17583
|
*/
|
|
17452
17584
|
dnsVisibility: boolean;
|
|
17585
|
+
/**
|
|
17586
|
+
* Connection domain name
|
|
17587
|
+
*/
|
|
17588
|
+
domain: string;
|
|
17453
17589
|
/**
|
|
17454
17590
|
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
17455
17591
|
*/
|
|
17456
17592
|
domainPrefix: string;
|
|
17593
|
+
/**
|
|
17594
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
17595
|
+
*/
|
|
17596
|
+
domainVisibilitySetting: string;
|
|
17597
|
+
/**
|
|
17598
|
+
* EIP ID, valid only for Public addresses.
|
|
17599
|
+
*/
|
|
17600
|
+
eipId: string;
|
|
17601
|
+
/**
|
|
17602
|
+
* IP address
|
|
17603
|
+
*/
|
|
17604
|
+
ipAddress: string;
|
|
17605
|
+
/**
|
|
17606
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
17607
|
+
*/
|
|
17608
|
+
networkType: string;
|
|
17457
17609
|
/**
|
|
17458
17610
|
* Port number.
|
|
17459
17611
|
*/
|
|
17460
17612
|
port: string;
|
|
17613
|
+
/**
|
|
17614
|
+
* Subnet ID
|
|
17615
|
+
*/
|
|
17616
|
+
subnetId: string;
|
|
17617
|
+
}
|
|
17618
|
+
interface DbEndpointPrivateAddresses {
|
|
17619
|
+
/**
|
|
17620
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
17621
|
+
*/
|
|
17622
|
+
crossRegionDomain: string;
|
|
17623
|
+
/**
|
|
17624
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
17625
|
+
*/
|
|
17626
|
+
dnsVisibility: boolean;
|
|
17627
|
+
/**
|
|
17628
|
+
* Connection domain name
|
|
17629
|
+
*/
|
|
17630
|
+
domain: string;
|
|
17631
|
+
/**
|
|
17632
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
17633
|
+
*/
|
|
17634
|
+
domainPrefix: string;
|
|
17635
|
+
/**
|
|
17636
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
17637
|
+
*/
|
|
17638
|
+
domainVisibilitySetting: string;
|
|
17639
|
+
/**
|
|
17640
|
+
* EIP ID, valid only for Public addresses.
|
|
17641
|
+
*/
|
|
17642
|
+
eipId: string;
|
|
17643
|
+
/**
|
|
17644
|
+
* IP address
|
|
17645
|
+
*/
|
|
17646
|
+
ipAddress: string;
|
|
17647
|
+
/**
|
|
17648
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
17649
|
+
*/
|
|
17650
|
+
networkType: string;
|
|
17651
|
+
/**
|
|
17652
|
+
* Port number.
|
|
17653
|
+
*/
|
|
17654
|
+
port: string;
|
|
17655
|
+
/**
|
|
17656
|
+
* Subnet ID
|
|
17657
|
+
*/
|
|
17658
|
+
subnetId: string;
|
|
17659
|
+
}
|
|
17660
|
+
interface DbEndpointPublicAddresses {
|
|
17661
|
+
/**
|
|
17662
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
17663
|
+
*/
|
|
17664
|
+
crossRegionDomain: string;
|
|
17665
|
+
/**
|
|
17666
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
17667
|
+
*/
|
|
17668
|
+
dnsVisibility: boolean;
|
|
17669
|
+
/**
|
|
17670
|
+
* Connection domain name
|
|
17671
|
+
*/
|
|
17672
|
+
domain: string;
|
|
17673
|
+
/**
|
|
17674
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
17675
|
+
*/
|
|
17676
|
+
domainPrefix: string;
|
|
17677
|
+
/**
|
|
17678
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
17679
|
+
*/
|
|
17680
|
+
domainVisibilitySetting: string;
|
|
17681
|
+
/**
|
|
17682
|
+
* EIP ID, valid only for Public addresses.
|
|
17683
|
+
*/
|
|
17684
|
+
eipId: string;
|
|
17685
|
+
/**
|
|
17686
|
+
* IP address
|
|
17687
|
+
*/
|
|
17688
|
+
ipAddress: string;
|
|
17689
|
+
/**
|
|
17690
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
17691
|
+
*/
|
|
17692
|
+
networkType: string;
|
|
17693
|
+
/**
|
|
17694
|
+
* Port number.
|
|
17695
|
+
*/
|
|
17696
|
+
port: string;
|
|
17697
|
+
/**
|
|
17698
|
+
* Subnet ID
|
|
17699
|
+
*/
|
|
17700
|
+
subnetId: string;
|
|
17461
17701
|
}
|
|
17462
17702
|
interface DbEndpointReadOnlyNodeWeight {
|
|
17463
17703
|
/**
|
|
@@ -17505,7 +17745,127 @@ export declare namespace rdspostgresql {
|
|
|
17505
17745
|
*/
|
|
17506
17746
|
securityGroupName: string;
|
|
17507
17747
|
}
|
|
17508
|
-
interface
|
|
17748
|
+
interface GetBackupBackupMeta {
|
|
17749
|
+
/**
|
|
17750
|
+
* Database name.
|
|
17751
|
+
*/
|
|
17752
|
+
dbName: string;
|
|
17753
|
+
}
|
|
17754
|
+
interface GetBackupBackupPolicy {
|
|
17755
|
+
/**
|
|
17756
|
+
* Backup retention days.
|
|
17757
|
+
*/
|
|
17758
|
+
backupRetentionPeriod: number;
|
|
17759
|
+
/**
|
|
17760
|
+
* Data incremental backup schedule.
|
|
17761
|
+
*/
|
|
17762
|
+
dataIncrBackupPeriods: string;
|
|
17763
|
+
/**
|
|
17764
|
+
* Full backup schedule, such as Monday,Tuesday.
|
|
17765
|
+
*/
|
|
17766
|
+
fullBackupPeriod: string;
|
|
17767
|
+
/**
|
|
17768
|
+
* Full backup time window, such as 00:00Z-01:00Z.
|
|
17769
|
+
*/
|
|
17770
|
+
fullBackupTime: string;
|
|
17771
|
+
/**
|
|
17772
|
+
* Enable hourly incremental backup.
|
|
17773
|
+
*/
|
|
17774
|
+
hourlyIncrBackupEnable: boolean;
|
|
17775
|
+
/**
|
|
17776
|
+
* Incremental backup frequency (hours).
|
|
17777
|
+
*/
|
|
17778
|
+
incrementBackupFrequency: number;
|
|
17779
|
+
/**
|
|
17780
|
+
* Enable WAL log space limit.
|
|
17781
|
+
*/
|
|
17782
|
+
walLogSpaceLimitEnable: boolean;
|
|
17783
|
+
}
|
|
17784
|
+
interface GetDbEndpointInnerAddresses {
|
|
17785
|
+
/**
|
|
17786
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
17787
|
+
*/
|
|
17788
|
+
crossRegionDomain: string;
|
|
17789
|
+
/**
|
|
17790
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
17791
|
+
*/
|
|
17792
|
+
dnsVisibility: boolean;
|
|
17793
|
+
/**
|
|
17794
|
+
* Connection domain name
|
|
17795
|
+
*/
|
|
17796
|
+
domain: string;
|
|
17797
|
+
/**
|
|
17798
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
17799
|
+
*/
|
|
17800
|
+
domainPrefix: string;
|
|
17801
|
+
/**
|
|
17802
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
17803
|
+
*/
|
|
17804
|
+
domainVisibilitySetting: string;
|
|
17805
|
+
/**
|
|
17806
|
+
* EIP ID, valid only for Public addresses.
|
|
17807
|
+
*/
|
|
17808
|
+
eipId: string;
|
|
17809
|
+
/**
|
|
17810
|
+
* IP address
|
|
17811
|
+
*/
|
|
17812
|
+
ipAddress: string;
|
|
17813
|
+
/**
|
|
17814
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
17815
|
+
*/
|
|
17816
|
+
networkType: string;
|
|
17817
|
+
/**
|
|
17818
|
+
* Port number.
|
|
17819
|
+
*/
|
|
17820
|
+
port: string;
|
|
17821
|
+
/**
|
|
17822
|
+
* Subnet ID
|
|
17823
|
+
*/
|
|
17824
|
+
subnetId: string;
|
|
17825
|
+
}
|
|
17826
|
+
interface GetDbEndpointPrivateAddresses {
|
|
17827
|
+
/**
|
|
17828
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
17829
|
+
*/
|
|
17830
|
+
crossRegionDomain: string;
|
|
17831
|
+
/**
|
|
17832
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
17833
|
+
*/
|
|
17834
|
+
dnsVisibility: boolean;
|
|
17835
|
+
/**
|
|
17836
|
+
* Connection domain name
|
|
17837
|
+
*/
|
|
17838
|
+
domain: string;
|
|
17839
|
+
/**
|
|
17840
|
+
* New access address prefix. The access address prefix must meet the following rules: consists of lowercase letters, numbers, and hyphens (-). Must contain at least 8 characters. The total length (including suffix) must not exceed 63 characters. Must start with a lowercase letter and end with a lowercase letter or number.
|
|
17841
|
+
*/
|
|
17842
|
+
domainPrefix: string;
|
|
17843
|
+
/**
|
|
17844
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
17845
|
+
*/
|
|
17846
|
+
domainVisibilitySetting: string;
|
|
17847
|
+
/**
|
|
17848
|
+
* EIP ID, valid only for Public addresses.
|
|
17849
|
+
*/
|
|
17850
|
+
eipId: string;
|
|
17851
|
+
/**
|
|
17852
|
+
* IP address
|
|
17853
|
+
*/
|
|
17854
|
+
ipAddress: string;
|
|
17855
|
+
/**
|
|
17856
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
17857
|
+
*/
|
|
17858
|
+
networkType: string;
|
|
17859
|
+
/**
|
|
17860
|
+
* Port number.
|
|
17861
|
+
*/
|
|
17862
|
+
port: string;
|
|
17863
|
+
/**
|
|
17864
|
+
* Subnet ID
|
|
17865
|
+
*/
|
|
17866
|
+
subnetId: string;
|
|
17867
|
+
}
|
|
17868
|
+
interface GetDbEndpointPublicAddresses {
|
|
17509
17869
|
/**
|
|
17510
17870
|
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
17511
17871
|
*/
|
|
@@ -18190,6 +18550,46 @@ export declare namespace redis {
|
|
|
18190
18550
|
*/
|
|
18191
18551
|
vip: string;
|
|
18192
18552
|
}
|
|
18553
|
+
interface GetParameterGroupParamValue {
|
|
18554
|
+
/**
|
|
18555
|
+
* Parameter name
|
|
18556
|
+
*/
|
|
18557
|
+
name: string;
|
|
18558
|
+
/**
|
|
18559
|
+
* Parameter value
|
|
18560
|
+
*/
|
|
18561
|
+
value: string;
|
|
18562
|
+
}
|
|
18563
|
+
interface GetParameterGroupParameter {
|
|
18564
|
+
/**
|
|
18565
|
+
* Current parameter value
|
|
18566
|
+
*/
|
|
18567
|
+
currentValue: string;
|
|
18568
|
+
/**
|
|
18569
|
+
* Parameter description
|
|
18570
|
+
*/
|
|
18571
|
+
description: string;
|
|
18572
|
+
/**
|
|
18573
|
+
* Whether modifying this parameter requires a restart
|
|
18574
|
+
*/
|
|
18575
|
+
needReboot: boolean;
|
|
18576
|
+
/**
|
|
18577
|
+
* Parameter name
|
|
18578
|
+
*/
|
|
18579
|
+
paramName: string;
|
|
18580
|
+
/**
|
|
18581
|
+
* Parameter value range
|
|
18582
|
+
*/
|
|
18583
|
+
range: string;
|
|
18584
|
+
/**
|
|
18585
|
+
* Parameter type
|
|
18586
|
+
*/
|
|
18587
|
+
type: string;
|
|
18588
|
+
/**
|
|
18589
|
+
* Parameter unit
|
|
18590
|
+
*/
|
|
18591
|
+
unit: string;
|
|
18592
|
+
}
|
|
18193
18593
|
interface InstanceBackupRestore {
|
|
18194
18594
|
/**
|
|
18195
18595
|
* Backup ID, used to specify which backup to use when restoring from a backup set
|
|
@@ -18285,6 +18685,46 @@ export declare namespace redis {
|
|
|
18285
18685
|
*/
|
|
18286
18686
|
vip: string;
|
|
18287
18687
|
}
|
|
18688
|
+
interface ParameterGroupParamValue {
|
|
18689
|
+
/**
|
|
18690
|
+
* Parameter name
|
|
18691
|
+
*/
|
|
18692
|
+
name: string;
|
|
18693
|
+
/**
|
|
18694
|
+
* Parameter value
|
|
18695
|
+
*/
|
|
18696
|
+
value: string;
|
|
18697
|
+
}
|
|
18698
|
+
interface ParameterGroupParameter {
|
|
18699
|
+
/**
|
|
18700
|
+
* Current parameter value
|
|
18701
|
+
*/
|
|
18702
|
+
currentValue: string;
|
|
18703
|
+
/**
|
|
18704
|
+
* Parameter description
|
|
18705
|
+
*/
|
|
18706
|
+
description: string;
|
|
18707
|
+
/**
|
|
18708
|
+
* Whether modifying this parameter requires a restart
|
|
18709
|
+
*/
|
|
18710
|
+
needReboot: boolean;
|
|
18711
|
+
/**
|
|
18712
|
+
* Parameter name
|
|
18713
|
+
*/
|
|
18714
|
+
paramName: string;
|
|
18715
|
+
/**
|
|
18716
|
+
* Parameter value range
|
|
18717
|
+
*/
|
|
18718
|
+
range: string;
|
|
18719
|
+
/**
|
|
18720
|
+
* Parameter type
|
|
18721
|
+
*/
|
|
18722
|
+
type: string;
|
|
18723
|
+
/**
|
|
18724
|
+
* Parameter unit
|
|
18725
|
+
*/
|
|
18726
|
+
unit: string;
|
|
18727
|
+
}
|
|
18288
18728
|
}
|
|
18289
18729
|
export declare namespace storageebs {
|
|
18290
18730
|
interface GetSnapshotGroupSnapshot {
|
|
@@ -21717,6 +22157,20 @@ export declare namespace vefaas {
|
|
|
21717
22157
|
*/
|
|
21718
22158
|
destination: string;
|
|
21719
22159
|
}
|
|
22160
|
+
interface FunctionDependencyInstallStatus {
|
|
22161
|
+
/**
|
|
22162
|
+
* Task creation time.
|
|
22163
|
+
*/
|
|
22164
|
+
createTime: string;
|
|
22165
|
+
/**
|
|
22166
|
+
* Task completion time. The task is considered complete when it is in one of the following statuses: Canceled: Canceled. Timeout: Timed out. Failed: Failed. Succeeded: Succeeded.
|
|
22167
|
+
*/
|
|
22168
|
+
finishTime: string;
|
|
22169
|
+
/**
|
|
22170
|
+
* Task status. Possible values are as follows: Enqueued: Queued. Dequeued: Dequeued. InProgress: In progress. Canceling/Canceled: Canceling/Canceled. Timeout: Timed out. Failed: Failed. Succeeded: Succeeded.
|
|
22171
|
+
*/
|
|
22172
|
+
status: string;
|
|
22173
|
+
}
|
|
21720
22174
|
interface FunctionEnv {
|
|
21721
22175
|
/**
|
|
21722
22176
|
* Environment variable key. 1–63 characters; can include letters, numbers, and underscores (_), but cannot start with a number. Key must be unique within the same function
|
|
@@ -21895,6 +22349,20 @@ export declare namespace vefaas {
|
|
|
21895
22349
|
*/
|
|
21896
22350
|
destination: string;
|
|
21897
22351
|
}
|
|
22352
|
+
interface GetFunctionDependencyInstallStatus {
|
|
22353
|
+
/**
|
|
22354
|
+
* Task creation time.
|
|
22355
|
+
*/
|
|
22356
|
+
createTime: string;
|
|
22357
|
+
/**
|
|
22358
|
+
* Task completion time. The task is considered complete when it is in one of the following statuses: Canceled: Canceled. Timeout: Timed out. Failed: Failed. Succeeded: Succeeded.
|
|
22359
|
+
*/
|
|
22360
|
+
finishTime: string;
|
|
22361
|
+
/**
|
|
22362
|
+
* Task status. Possible values are as follows: Enqueued: Queued. Dequeued: Dequeued. InProgress: In progress. Canceling/Canceled: Canceling/Canceled. Timeout: Timed out. Failed: Failed. Succeeded: Succeeded.
|
|
22363
|
+
*/
|
|
22364
|
+
status: string;
|
|
22365
|
+
}
|
|
21898
22366
|
interface GetFunctionEnv {
|
|
21899
22367
|
/**
|
|
21900
22368
|
* Environment variable key. 1–63 characters; can include letters, numbers, and underscores (_), but cannot start with a number. Key must be unique within the same function
|
package/vefaas/function.d.ts
CHANGED
|
@@ -50,6 +50,10 @@ export declare class Function extends pulumi.CustomResource {
|
|
|
50
50
|
* Function creation time
|
|
51
51
|
*/
|
|
52
52
|
readonly creationTime: pulumi.Output<string>;
|
|
53
|
+
/**
|
|
54
|
+
* Dependency installation task status.
|
|
55
|
+
*/
|
|
56
|
+
readonly dependencyInstallStatus: pulumi.Output<outputs.vefaas.FunctionDependencyInstallStatus>;
|
|
53
57
|
/**
|
|
54
58
|
* Function description. Up to 1000 Unicode characters
|
|
55
59
|
*/
|
|
@@ -58,6 +62,10 @@ export declare class Function extends pulumi.CustomResource {
|
|
|
58
62
|
* Whether to enable application monitoring
|
|
59
63
|
*/
|
|
60
64
|
readonly enableApmplus: pulumi.Output<boolean>;
|
|
65
|
+
/**
|
|
66
|
+
* Enable function dependency installation. true: Enabled. The function installs dependencies after creation. false: Disabled. The function does not automatically install dependencies.
|
|
67
|
+
*/
|
|
68
|
+
readonly enableDependencyInstall: pulumi.Output<boolean>;
|
|
61
69
|
readonly envs: pulumi.Output<outputs.vefaas.FunctionEnv[]>;
|
|
62
70
|
/**
|
|
63
71
|
* Exclusive mode switch. true: disables multi-concurrency per instance, i.e., exclusive mode where a single instance can only handle one request at a time. false (default): enables multi-concurrency per instance, i.e., non-exclusive mode where a single instance can handle multiple requests at the same time. You can set the maximum concurrent requests per instance using MaxConcurrency.
|
|
@@ -185,6 +193,10 @@ export interface FunctionState {
|
|
|
185
193
|
* Function creation time
|
|
186
194
|
*/
|
|
187
195
|
creationTime?: pulumi.Input<string>;
|
|
196
|
+
/**
|
|
197
|
+
* Dependency installation task status.
|
|
198
|
+
*/
|
|
199
|
+
dependencyInstallStatus?: pulumi.Input<inputs.vefaas.FunctionDependencyInstallStatus>;
|
|
188
200
|
/**
|
|
189
201
|
* Function description. Up to 1000 Unicode characters
|
|
190
202
|
*/
|
|
@@ -193,6 +205,10 @@ export interface FunctionState {
|
|
|
193
205
|
* Whether to enable application monitoring
|
|
194
206
|
*/
|
|
195
207
|
enableApmplus?: pulumi.Input<boolean>;
|
|
208
|
+
/**
|
|
209
|
+
* Enable function dependency installation. true: Enabled. The function installs dependencies after creation. false: Disabled. The function does not automatically install dependencies.
|
|
210
|
+
*/
|
|
211
|
+
enableDependencyInstall?: pulumi.Input<boolean>;
|
|
196
212
|
envs?: pulumi.Input<pulumi.Input<inputs.vefaas.FunctionEnv>[]>;
|
|
197
213
|
/**
|
|
198
214
|
* Exclusive mode switch. true: disables multi-concurrency per instance, i.e., exclusive mode where a single instance can only handle one request at a time. false (default): enables multi-concurrency per instance, i.e., non-exclusive mode where a single instance can handle multiple requests at the same time. You can set the maximum concurrent requests per instance using MaxConcurrency.
|
|
@@ -308,6 +324,10 @@ export interface FunctionArgs {
|
|
|
308
324
|
* Whether to enable application monitoring
|
|
309
325
|
*/
|
|
310
326
|
enableApmplus?: pulumi.Input<boolean>;
|
|
327
|
+
/**
|
|
328
|
+
* Enable function dependency installation. true: Enabled. The function installs dependencies after creation. false: Disabled. The function does not automatically install dependencies.
|
|
329
|
+
*/
|
|
330
|
+
enableDependencyInstall?: pulumi.Input<boolean>;
|
|
311
331
|
envs?: pulumi.Input<pulumi.Input<inputs.vefaas.FunctionEnv>[]>;
|
|
312
332
|
/**
|
|
313
333
|
* Exclusive mode switch. true: disables multi-concurrency per instance, i.e., exclusive mode where a single instance can only handle one request at a time. false (default): enables multi-concurrency per instance, i.e., non-exclusive mode where a single instance can handle multiple requests at the same time. You can set the maximum concurrent requests per instance using MaxConcurrency.
|
package/vefaas/function.js
CHANGED
|
@@ -48,8 +48,10 @@ class Function extends pulumi.CustomResource {
|
|
|
48
48
|
resourceInputs["command"] = state ? state.command : undefined;
|
|
49
49
|
resourceInputs["cpuStrategy"] = state ? state.cpuStrategy : undefined;
|
|
50
50
|
resourceInputs["creationTime"] = state ? state.creationTime : undefined;
|
|
51
|
+
resourceInputs["dependencyInstallStatus"] = state ? state.dependencyInstallStatus : undefined;
|
|
51
52
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
52
53
|
resourceInputs["enableApmplus"] = state ? state.enableApmplus : undefined;
|
|
54
|
+
resourceInputs["enableDependencyInstall"] = state ? state.enableDependencyInstall : undefined;
|
|
53
55
|
resourceInputs["envs"] = state ? state.envs : undefined;
|
|
54
56
|
resourceInputs["exclusiveMode"] = state ? state.exclusiveMode : undefined;
|
|
55
57
|
resourceInputs["functionId"] = state ? state.functionId : undefined;
|
|
@@ -82,6 +84,7 @@ class Function extends pulumi.CustomResource {
|
|
|
82
84
|
resourceInputs["cpuStrategy"] = args ? args.cpuStrategy : undefined;
|
|
83
85
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
84
86
|
resourceInputs["enableApmplus"] = args ? args.enableApmplus : undefined;
|
|
87
|
+
resourceInputs["enableDependencyInstall"] = args ? args.enableDependencyInstall : undefined;
|
|
85
88
|
resourceInputs["envs"] = args ? args.envs : undefined;
|
|
86
89
|
resourceInputs["exclusiveMode"] = args ? args.exclusiveMode : undefined;
|
|
87
90
|
resourceInputs["initializerSec"] = args ? args.initializerSec : undefined;
|
|
@@ -104,6 +107,7 @@ class Function extends pulumi.CustomResource {
|
|
|
104
107
|
resourceInputs["codeSize"] = undefined /*out*/;
|
|
105
108
|
resourceInputs["codeSizeLimit"] = undefined /*out*/;
|
|
106
109
|
resourceInputs["creationTime"] = undefined /*out*/;
|
|
110
|
+
resourceInputs["dependencyInstallStatus"] = undefined /*out*/;
|
|
107
111
|
resourceInputs["functionId"] = undefined /*out*/;
|
|
108
112
|
resourceInputs["instanceType"] = undefined /*out*/;
|
|
109
113
|
resourceInputs["lastUpdateTime"] = undefined /*out*/;
|
package/vefaas/function.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"function.js","sourceRoot":"","sources":["../../vefaas/function.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,QAAS,SAAQ,MAAM,CAAC,cAAc;IAC/C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqB,EAAE,IAAmC;QACnH,OAAO,IAAI,QAAQ,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,QAAQ,CAAC,YAAY,CAAC;IACzD,CAAC;
|
|
1
|
+
{"version":3,"file":"function.js","sourceRoot":"","sources":["../../vefaas/function.ts"],"names":[],"mappings":"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"}
|