@volcengine/pulumi-volcenginecc 0.0.34 → 0.0.37
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 +23 -23
- package/iam/accesskey.js +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/tos/bucketCors.d.ts +4 -11
- package/tos/bucketCors.js +4 -11
- package/tos/bucketCors.js.map +1 -1
- package/tos/bucketNotification.d.ts +4 -11
- package/tos/bucketNotification.js +4 -11
- package/tos/bucketNotification.js.map +1 -1
- package/tos/bucketRealtimeLog.d.ts +4 -11
- package/tos/bucketRealtimeLog.js +4 -11
- package/tos/bucketRealtimeLog.js.map +1 -1
- 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
|
@@ -15073,6 +15073,44 @@ export declare namespace mongodb {
|
|
|
15073
15073
|
*/
|
|
15074
15074
|
zoneId: string;
|
|
15075
15075
|
}
|
|
15076
|
+
interface GetInstanceInstanceParameter {
|
|
15077
|
+
/**
|
|
15078
|
+
* Parameter validation rule
|
|
15079
|
+
*/
|
|
15080
|
+
checkingCode: string;
|
|
15081
|
+
/**
|
|
15082
|
+
* Whether to force modification
|
|
15083
|
+
*/
|
|
15084
|
+
forceModify: boolean;
|
|
15085
|
+
/**
|
|
15086
|
+
* Requires instance restart to take effect after modification
|
|
15087
|
+
*/
|
|
15088
|
+
forceRestart: boolean;
|
|
15089
|
+
/**
|
|
15090
|
+
* Parameter default value
|
|
15091
|
+
*/
|
|
15092
|
+
parameterDefaultValue: string;
|
|
15093
|
+
/**
|
|
15094
|
+
* Parameter description
|
|
15095
|
+
*/
|
|
15096
|
+
parameterDescription: string;
|
|
15097
|
+
/**
|
|
15098
|
+
* Parameter name
|
|
15099
|
+
*/
|
|
15100
|
+
parameterName: string;
|
|
15101
|
+
/**
|
|
15102
|
+
* Parameter role. Optional values: Node, Shard, ConfigServer, Mongos
|
|
15103
|
+
*/
|
|
15104
|
+
parameterRole: string;
|
|
15105
|
+
/**
|
|
15106
|
+
* Parameter type. Optional values: String, Integer, Boolean, List, Float
|
|
15107
|
+
*/
|
|
15108
|
+
parameterType: string;
|
|
15109
|
+
/**
|
|
15110
|
+
* Parameter value
|
|
15111
|
+
*/
|
|
15112
|
+
parameterValue: string;
|
|
15113
|
+
}
|
|
15076
15114
|
interface GetInstanceMongo {
|
|
15077
15115
|
/**
|
|
15078
15116
|
* Mongos node ID
|
|
@@ -15271,6 +15309,20 @@ export declare namespace mongodb {
|
|
|
15271
15309
|
*/
|
|
15272
15310
|
zoneId: string;
|
|
15273
15311
|
}
|
|
15312
|
+
interface InstanceInstanceParameter {
|
|
15313
|
+
/**
|
|
15314
|
+
* Parameter name
|
|
15315
|
+
*/
|
|
15316
|
+
parameterName: string;
|
|
15317
|
+
/**
|
|
15318
|
+
* Parameter role. Optional values: Node, Shard, ConfigServer, Mongos
|
|
15319
|
+
*/
|
|
15320
|
+
parameterRole: string;
|
|
15321
|
+
/**
|
|
15322
|
+
* Parameter value
|
|
15323
|
+
*/
|
|
15324
|
+
parameterValue: string;
|
|
15325
|
+
}
|
|
15274
15326
|
interface InstanceMongo {
|
|
15275
15327
|
/**
|
|
15276
15328
|
* Mongos node ID
|
|
@@ -15948,6 +16000,34 @@ export declare namespace privatelink {
|
|
|
15948
16000
|
}
|
|
15949
16001
|
}
|
|
15950
16002
|
export declare namespace privatezone {
|
|
16003
|
+
interface GetPrivateZoneTag {
|
|
16004
|
+
/**
|
|
16005
|
+
* Tag key
|
|
16006
|
+
*/
|
|
16007
|
+
key: string;
|
|
16008
|
+
/**
|
|
16009
|
+
* Tag value
|
|
16010
|
+
*/
|
|
16011
|
+
value: string;
|
|
16012
|
+
}
|
|
16013
|
+
interface GetPrivateZoneVpc {
|
|
16014
|
+
/**
|
|
16015
|
+
* Account ID to which the VPC belongs
|
|
16016
|
+
*/
|
|
16017
|
+
accountId: string;
|
|
16018
|
+
/**
|
|
16019
|
+
* Region where the VPC is located
|
|
16020
|
+
*/
|
|
16021
|
+
region: string;
|
|
16022
|
+
/**
|
|
16023
|
+
* Name of the region where the VPC is located
|
|
16024
|
+
*/
|
|
16025
|
+
regionName: string;
|
|
16026
|
+
/**
|
|
16027
|
+
* VPC ID
|
|
16028
|
+
*/
|
|
16029
|
+
vpcId: string;
|
|
16030
|
+
}
|
|
15951
16031
|
interface GetRecordRecordSet {
|
|
15952
16032
|
/**
|
|
15953
16033
|
* Full domain name
|
|
@@ -16040,6 +16120,26 @@ export declare namespace privatezone {
|
|
|
16040
16120
|
*/
|
|
16041
16121
|
vpcId: string;
|
|
16042
16122
|
}
|
|
16123
|
+
interface PrivateZoneTag {
|
|
16124
|
+
/**
|
|
16125
|
+
* Tag key
|
|
16126
|
+
*/
|
|
16127
|
+
key: string;
|
|
16128
|
+
/**
|
|
16129
|
+
* Tag value
|
|
16130
|
+
*/
|
|
16131
|
+
value: string;
|
|
16132
|
+
}
|
|
16133
|
+
interface PrivateZoneVpc {
|
|
16134
|
+
/**
|
|
16135
|
+
* Region where the VPC is located
|
|
16136
|
+
*/
|
|
16137
|
+
region: string;
|
|
16138
|
+
/**
|
|
16139
|
+
* VPC ID
|
|
16140
|
+
*/
|
|
16141
|
+
vpcId: string;
|
|
16142
|
+
}
|
|
16043
16143
|
interface RecordRecordSet {
|
|
16044
16144
|
/**
|
|
16045
16145
|
* Full domain name
|
|
@@ -17798,14 +17898,6 @@ export declare namespace rdspostgresql {
|
|
|
17798
17898
|
* Instance ID.
|
|
17799
17899
|
*/
|
|
17800
17900
|
instanceId: string;
|
|
17801
|
-
/**
|
|
17802
|
-
* Instance name.
|
|
17803
|
-
*/
|
|
17804
|
-
instanceName: string;
|
|
17805
|
-
/**
|
|
17806
|
-
* VPC ID to which the instance belongs.
|
|
17807
|
-
*/
|
|
17808
|
-
vpc: string;
|
|
17809
17901
|
}
|
|
17810
17902
|
interface AllowListSecurityGroupBindInfo {
|
|
17811
17903
|
/**
|
|
@@ -17825,19 +17917,167 @@ export declare namespace rdspostgresql {
|
|
|
17825
17917
|
*/
|
|
17826
17918
|
securityGroupName: string;
|
|
17827
17919
|
}
|
|
17828
|
-
interface
|
|
17920
|
+
interface BackupBackupMeta {
|
|
17921
|
+
/**
|
|
17922
|
+
* Database name.
|
|
17923
|
+
*/
|
|
17924
|
+
dbName: string;
|
|
17925
|
+
}
|
|
17926
|
+
interface BackupBackupPolicy {
|
|
17927
|
+
/**
|
|
17928
|
+
* Backup retention days.
|
|
17929
|
+
*/
|
|
17930
|
+
backupRetentionPeriod: number;
|
|
17931
|
+
/**
|
|
17932
|
+
* Data incremental backup schedule.
|
|
17933
|
+
*/
|
|
17934
|
+
dataIncrBackupPeriods: string;
|
|
17935
|
+
/**
|
|
17936
|
+
* Full backup schedule, such as Monday,Tuesday.
|
|
17937
|
+
*/
|
|
17938
|
+
fullBackupPeriod: string;
|
|
17939
|
+
/**
|
|
17940
|
+
* Full backup time window, such as 00:00Z-01:00Z.
|
|
17941
|
+
*/
|
|
17942
|
+
fullBackupTime: string;
|
|
17943
|
+
/**
|
|
17944
|
+
* Enable hourly incremental backup.
|
|
17945
|
+
*/
|
|
17946
|
+
hourlyIncrBackupEnable: boolean;
|
|
17947
|
+
/**
|
|
17948
|
+
* Incremental backup frequency (hours).
|
|
17949
|
+
*/
|
|
17950
|
+
incrementBackupFrequency: number;
|
|
17951
|
+
/**
|
|
17952
|
+
* Enable WAL log space limit.
|
|
17953
|
+
*/
|
|
17954
|
+
walLogSpaceLimitEnable: boolean;
|
|
17955
|
+
}
|
|
17956
|
+
interface DbEndpointInnerAddresses {
|
|
17957
|
+
/**
|
|
17958
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
17959
|
+
*/
|
|
17960
|
+
crossRegionDomain: string;
|
|
17829
17961
|
/**
|
|
17830
17962
|
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
17831
17963
|
*/
|
|
17832
17964
|
dnsVisibility: boolean;
|
|
17965
|
+
/**
|
|
17966
|
+
* Connection domain name
|
|
17967
|
+
*/
|
|
17968
|
+
domain: string;
|
|
17833
17969
|
/**
|
|
17834
17970
|
* 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.
|
|
17835
17971
|
*/
|
|
17836
17972
|
domainPrefix: string;
|
|
17973
|
+
/**
|
|
17974
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
17975
|
+
*/
|
|
17976
|
+
domainVisibilitySetting: string;
|
|
17977
|
+
/**
|
|
17978
|
+
* EIP ID, valid only for Public addresses.
|
|
17979
|
+
*/
|
|
17980
|
+
eipId: string;
|
|
17981
|
+
/**
|
|
17982
|
+
* IP address
|
|
17983
|
+
*/
|
|
17984
|
+
ipAddress: string;
|
|
17985
|
+
/**
|
|
17986
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
17987
|
+
*/
|
|
17988
|
+
networkType: string;
|
|
17837
17989
|
/**
|
|
17838
17990
|
* Port number.
|
|
17839
17991
|
*/
|
|
17840
17992
|
port: string;
|
|
17993
|
+
/**
|
|
17994
|
+
* Subnet ID
|
|
17995
|
+
*/
|
|
17996
|
+
subnetId: string;
|
|
17997
|
+
}
|
|
17998
|
+
interface DbEndpointPrivateAddresses {
|
|
17999
|
+
/**
|
|
18000
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
18001
|
+
*/
|
|
18002
|
+
crossRegionDomain: string;
|
|
18003
|
+
/**
|
|
18004
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
18005
|
+
*/
|
|
18006
|
+
dnsVisibility: boolean;
|
|
18007
|
+
/**
|
|
18008
|
+
* Connection domain name
|
|
18009
|
+
*/
|
|
18010
|
+
domain: string;
|
|
18011
|
+
/**
|
|
18012
|
+
* 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.
|
|
18013
|
+
*/
|
|
18014
|
+
domainPrefix: string;
|
|
18015
|
+
/**
|
|
18016
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
18017
|
+
*/
|
|
18018
|
+
domainVisibilitySetting: string;
|
|
18019
|
+
/**
|
|
18020
|
+
* EIP ID, valid only for Public addresses.
|
|
18021
|
+
*/
|
|
18022
|
+
eipId: string;
|
|
18023
|
+
/**
|
|
18024
|
+
* IP address
|
|
18025
|
+
*/
|
|
18026
|
+
ipAddress: string;
|
|
18027
|
+
/**
|
|
18028
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
18029
|
+
*/
|
|
18030
|
+
networkType: string;
|
|
18031
|
+
/**
|
|
18032
|
+
* Port number.
|
|
18033
|
+
*/
|
|
18034
|
+
port: string;
|
|
18035
|
+
/**
|
|
18036
|
+
* Subnet ID
|
|
18037
|
+
*/
|
|
18038
|
+
subnetId: string;
|
|
18039
|
+
}
|
|
18040
|
+
interface DbEndpointPublicAddresses {
|
|
18041
|
+
/**
|
|
18042
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
18043
|
+
*/
|
|
18044
|
+
crossRegionDomain: string;
|
|
18045
|
+
/**
|
|
18046
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
18047
|
+
*/
|
|
18048
|
+
dnsVisibility: boolean;
|
|
18049
|
+
/**
|
|
18050
|
+
* Connection domain name
|
|
18051
|
+
*/
|
|
18052
|
+
domain: string;
|
|
18053
|
+
/**
|
|
18054
|
+
* 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.
|
|
18055
|
+
*/
|
|
18056
|
+
domainPrefix: string;
|
|
18057
|
+
/**
|
|
18058
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
18059
|
+
*/
|
|
18060
|
+
domainVisibilitySetting: string;
|
|
18061
|
+
/**
|
|
18062
|
+
* EIP ID, valid only for Public addresses.
|
|
18063
|
+
*/
|
|
18064
|
+
eipId: string;
|
|
18065
|
+
/**
|
|
18066
|
+
* IP address
|
|
18067
|
+
*/
|
|
18068
|
+
ipAddress: string;
|
|
18069
|
+
/**
|
|
18070
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
18071
|
+
*/
|
|
18072
|
+
networkType: string;
|
|
18073
|
+
/**
|
|
18074
|
+
* Port number.
|
|
18075
|
+
*/
|
|
18076
|
+
port: string;
|
|
18077
|
+
/**
|
|
18078
|
+
* Subnet ID
|
|
18079
|
+
*/
|
|
18080
|
+
subnetId: string;
|
|
17841
18081
|
}
|
|
17842
18082
|
interface DbEndpointReadOnlyNodeWeight {
|
|
17843
18083
|
/**
|
|
@@ -17885,7 +18125,127 @@ export declare namespace rdspostgresql {
|
|
|
17885
18125
|
*/
|
|
17886
18126
|
securityGroupName: string;
|
|
17887
18127
|
}
|
|
17888
|
-
interface
|
|
18128
|
+
interface GetBackupBackupMeta {
|
|
18129
|
+
/**
|
|
18130
|
+
* Database name.
|
|
18131
|
+
*/
|
|
18132
|
+
dbName: string;
|
|
18133
|
+
}
|
|
18134
|
+
interface GetBackupBackupPolicy {
|
|
18135
|
+
/**
|
|
18136
|
+
* Backup retention days.
|
|
18137
|
+
*/
|
|
18138
|
+
backupRetentionPeriod: number;
|
|
18139
|
+
/**
|
|
18140
|
+
* Data incremental backup schedule.
|
|
18141
|
+
*/
|
|
18142
|
+
dataIncrBackupPeriods: string;
|
|
18143
|
+
/**
|
|
18144
|
+
* Full backup schedule, such as Monday,Tuesday.
|
|
18145
|
+
*/
|
|
18146
|
+
fullBackupPeriod: string;
|
|
18147
|
+
/**
|
|
18148
|
+
* Full backup time window, such as 00:00Z-01:00Z.
|
|
18149
|
+
*/
|
|
18150
|
+
fullBackupTime: string;
|
|
18151
|
+
/**
|
|
18152
|
+
* Enable hourly incremental backup.
|
|
18153
|
+
*/
|
|
18154
|
+
hourlyIncrBackupEnable: boolean;
|
|
18155
|
+
/**
|
|
18156
|
+
* Incremental backup frequency (hours).
|
|
18157
|
+
*/
|
|
18158
|
+
incrementBackupFrequency: number;
|
|
18159
|
+
/**
|
|
18160
|
+
* Enable WAL log space limit.
|
|
18161
|
+
*/
|
|
18162
|
+
walLogSpaceLimitEnable: boolean;
|
|
18163
|
+
}
|
|
18164
|
+
interface GetDbEndpointInnerAddresses {
|
|
18165
|
+
/**
|
|
18166
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
18167
|
+
*/
|
|
18168
|
+
crossRegionDomain: string;
|
|
18169
|
+
/**
|
|
18170
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
18171
|
+
*/
|
|
18172
|
+
dnsVisibility: boolean;
|
|
18173
|
+
/**
|
|
18174
|
+
* Connection domain name
|
|
18175
|
+
*/
|
|
18176
|
+
domain: string;
|
|
18177
|
+
/**
|
|
18178
|
+
* 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.
|
|
18179
|
+
*/
|
|
18180
|
+
domainPrefix: string;
|
|
18181
|
+
/**
|
|
18182
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
18183
|
+
*/
|
|
18184
|
+
domainVisibilitySetting: string;
|
|
18185
|
+
/**
|
|
18186
|
+
* EIP ID, valid only for Public addresses.
|
|
18187
|
+
*/
|
|
18188
|
+
eipId: string;
|
|
18189
|
+
/**
|
|
18190
|
+
* IP address
|
|
18191
|
+
*/
|
|
18192
|
+
ipAddress: string;
|
|
18193
|
+
/**
|
|
18194
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
18195
|
+
*/
|
|
18196
|
+
networkType: string;
|
|
18197
|
+
/**
|
|
18198
|
+
* Port number.
|
|
18199
|
+
*/
|
|
18200
|
+
port: string;
|
|
18201
|
+
/**
|
|
18202
|
+
* Subnet ID
|
|
18203
|
+
*/
|
|
18204
|
+
subnetId: string;
|
|
18205
|
+
}
|
|
18206
|
+
interface GetDbEndpointPrivateAddresses {
|
|
18207
|
+
/**
|
|
18208
|
+
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
18209
|
+
*/
|
|
18210
|
+
crossRegionDomain: string;
|
|
18211
|
+
/**
|
|
18212
|
+
* Whether public network resolution is enabled. Values: false: Default, private network resolution. true: Both private and public network resolution.
|
|
18213
|
+
*/
|
|
18214
|
+
dnsVisibility: boolean;
|
|
18215
|
+
/**
|
|
18216
|
+
* Connection domain name
|
|
18217
|
+
*/
|
|
18218
|
+
domain: string;
|
|
18219
|
+
/**
|
|
18220
|
+
* 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.
|
|
18221
|
+
*/
|
|
18222
|
+
domainPrefix: string;
|
|
18223
|
+
/**
|
|
18224
|
+
* Type of private network address. Values: LocalDomain: Local region domain name. CrossRegionDomain: Domain name accessible across regions.
|
|
18225
|
+
*/
|
|
18226
|
+
domainVisibilitySetting: string;
|
|
18227
|
+
/**
|
|
18228
|
+
* EIP ID, valid only for Public addresses.
|
|
18229
|
+
*/
|
|
18230
|
+
eipId: string;
|
|
18231
|
+
/**
|
|
18232
|
+
* IP address
|
|
18233
|
+
*/
|
|
18234
|
+
ipAddress: string;
|
|
18235
|
+
/**
|
|
18236
|
+
* Network address type. Values: Private: private network connection address. Public: public network connection address. Inner: public service zone address.
|
|
18237
|
+
*/
|
|
18238
|
+
networkType: string;
|
|
18239
|
+
/**
|
|
18240
|
+
* Port number.
|
|
18241
|
+
*/
|
|
18242
|
+
port: string;
|
|
18243
|
+
/**
|
|
18244
|
+
* Subnet ID
|
|
18245
|
+
*/
|
|
18246
|
+
subnetId: string;
|
|
18247
|
+
}
|
|
18248
|
+
interface GetDbEndpointPublicAddresses {
|
|
17889
18249
|
/**
|
|
17890
18250
|
* Private network address accessible across regions. Note: If this address is unavailable, this field will not be returned.
|
|
17891
18251
|
*/
|
|
@@ -18570,6 +18930,46 @@ export declare namespace redis {
|
|
|
18570
18930
|
*/
|
|
18571
18931
|
vip: string;
|
|
18572
18932
|
}
|
|
18933
|
+
interface GetParameterGroupParamValue {
|
|
18934
|
+
/**
|
|
18935
|
+
* Parameter name
|
|
18936
|
+
*/
|
|
18937
|
+
name: string;
|
|
18938
|
+
/**
|
|
18939
|
+
* Parameter value
|
|
18940
|
+
*/
|
|
18941
|
+
value: string;
|
|
18942
|
+
}
|
|
18943
|
+
interface GetParameterGroupParameter {
|
|
18944
|
+
/**
|
|
18945
|
+
* Current parameter value
|
|
18946
|
+
*/
|
|
18947
|
+
currentValue: string;
|
|
18948
|
+
/**
|
|
18949
|
+
* Parameter description
|
|
18950
|
+
*/
|
|
18951
|
+
description: string;
|
|
18952
|
+
/**
|
|
18953
|
+
* Whether modifying this parameter requires a restart
|
|
18954
|
+
*/
|
|
18955
|
+
needReboot: boolean;
|
|
18956
|
+
/**
|
|
18957
|
+
* Parameter name
|
|
18958
|
+
*/
|
|
18959
|
+
paramName: string;
|
|
18960
|
+
/**
|
|
18961
|
+
* Parameter value range
|
|
18962
|
+
*/
|
|
18963
|
+
range: string;
|
|
18964
|
+
/**
|
|
18965
|
+
* Parameter type
|
|
18966
|
+
*/
|
|
18967
|
+
type: string;
|
|
18968
|
+
/**
|
|
18969
|
+
* Parameter unit
|
|
18970
|
+
*/
|
|
18971
|
+
unit: string;
|
|
18972
|
+
}
|
|
18573
18973
|
interface InstanceBackupRestore {
|
|
18574
18974
|
/**
|
|
18575
18975
|
* Backup ID, used to specify which backup to use when restoring from a backup set
|
|
@@ -18665,6 +19065,46 @@ export declare namespace redis {
|
|
|
18665
19065
|
*/
|
|
18666
19066
|
vip: string;
|
|
18667
19067
|
}
|
|
19068
|
+
interface ParameterGroupParamValue {
|
|
19069
|
+
/**
|
|
19070
|
+
* Parameter name
|
|
19071
|
+
*/
|
|
19072
|
+
name: string;
|
|
19073
|
+
/**
|
|
19074
|
+
* Parameter value
|
|
19075
|
+
*/
|
|
19076
|
+
value: string;
|
|
19077
|
+
}
|
|
19078
|
+
interface ParameterGroupParameter {
|
|
19079
|
+
/**
|
|
19080
|
+
* Current parameter value
|
|
19081
|
+
*/
|
|
19082
|
+
currentValue: string;
|
|
19083
|
+
/**
|
|
19084
|
+
* Parameter description
|
|
19085
|
+
*/
|
|
19086
|
+
description: string;
|
|
19087
|
+
/**
|
|
19088
|
+
* Whether modifying this parameter requires a restart
|
|
19089
|
+
*/
|
|
19090
|
+
needReboot: boolean;
|
|
19091
|
+
/**
|
|
19092
|
+
* Parameter name
|
|
19093
|
+
*/
|
|
19094
|
+
paramName: string;
|
|
19095
|
+
/**
|
|
19096
|
+
* Parameter value range
|
|
19097
|
+
*/
|
|
19098
|
+
range: string;
|
|
19099
|
+
/**
|
|
19100
|
+
* Parameter type
|
|
19101
|
+
*/
|
|
19102
|
+
type: string;
|
|
19103
|
+
/**
|
|
19104
|
+
* Parameter unit
|
|
19105
|
+
*/
|
|
19106
|
+
unit: string;
|
|
19107
|
+
}
|
|
18668
19108
|
}
|
|
18669
19109
|
export declare namespace rocketmq {
|
|
18670
19110
|
interface AllowListAssociatedInstance {
|
|
@@ -23183,6 +23623,20 @@ export declare namespace vefaas {
|
|
|
23183
23623
|
*/
|
|
23184
23624
|
destination: string;
|
|
23185
23625
|
}
|
|
23626
|
+
interface FunctionDependencyInstallStatus {
|
|
23627
|
+
/**
|
|
23628
|
+
* Task creation time.
|
|
23629
|
+
*/
|
|
23630
|
+
createTime: string;
|
|
23631
|
+
/**
|
|
23632
|
+
* 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.
|
|
23633
|
+
*/
|
|
23634
|
+
finishTime: string;
|
|
23635
|
+
/**
|
|
23636
|
+
* 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.
|
|
23637
|
+
*/
|
|
23638
|
+
status: string;
|
|
23639
|
+
}
|
|
23186
23640
|
interface FunctionEnv {
|
|
23187
23641
|
/**
|
|
23188
23642
|
* 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
|
|
@@ -23361,6 +23815,20 @@ export declare namespace vefaas {
|
|
|
23361
23815
|
*/
|
|
23362
23816
|
destination: string;
|
|
23363
23817
|
}
|
|
23818
|
+
interface GetFunctionDependencyInstallStatus {
|
|
23819
|
+
/**
|
|
23820
|
+
* Task creation time.
|
|
23821
|
+
*/
|
|
23822
|
+
createTime: string;
|
|
23823
|
+
/**
|
|
23824
|
+
* 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.
|
|
23825
|
+
*/
|
|
23826
|
+
finishTime: string;
|
|
23827
|
+
/**
|
|
23828
|
+
* 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.
|
|
23829
|
+
*/
|
|
23830
|
+
status: string;
|
|
23831
|
+
}
|
|
23364
23832
|
interface GetFunctionEnv {
|
|
23365
23833
|
/**
|
|
23366
23834
|
* 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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"}
|