@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/iam/accesskey.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* Access control (Identity and Access Management, IAM) is a permission management system provided by Volcano Engine
|
|
3
|
+
* Access control (Identity and Access Management, abbreviated as IAM) is a permission management system provided by Volcano Engine for customers to control access to cloud resources by different identities.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -34,43 +34,43 @@ export declare class Accesskey extends pulumi.CustomResource {
|
|
|
34
34
|
*/
|
|
35
35
|
static isInstance(obj: any): obj is Accesskey;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Access Key Id.
|
|
38
38
|
*/
|
|
39
39
|
readonly accessKeyId: pulumi.Output<string>;
|
|
40
40
|
/**
|
|
41
|
-
* Key creation time
|
|
41
|
+
* Key creation time. The time format is ISO8601.
|
|
42
42
|
*/
|
|
43
43
|
readonly createdTime: pulumi.Output<string>;
|
|
44
44
|
/**
|
|
45
|
-
* Last login time
|
|
45
|
+
* Last login time.
|
|
46
46
|
*/
|
|
47
47
|
readonly lastLoginDate: pulumi.Output<string>;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* The last region accessed by the API key.
|
|
50
50
|
*/
|
|
51
51
|
readonly region: pulumi.Output<string>;
|
|
52
52
|
/**
|
|
53
|
-
*
|
|
53
|
+
* The last time the API key was used.
|
|
54
54
|
*/
|
|
55
55
|
readonly requestTime: pulumi.Output<string>;
|
|
56
56
|
/**
|
|
57
|
-
* Secret Access Key
|
|
57
|
+
* Secret Access Key.
|
|
58
58
|
*/
|
|
59
59
|
readonly secretAccessKey: pulumi.Output<string>;
|
|
60
60
|
/**
|
|
61
|
-
* English abbreviation of the last accessed
|
|
61
|
+
* The English abbreviation of the last service accessed by the API key.
|
|
62
62
|
*/
|
|
63
63
|
readonly service: pulumi.Output<string>;
|
|
64
64
|
/**
|
|
65
|
-
* Key status.
|
|
65
|
+
* Key status. active means enabled, inactive means disabled.
|
|
66
66
|
*/
|
|
67
67
|
readonly status: pulumi.Output<string>;
|
|
68
68
|
/**
|
|
69
|
-
* Key update time
|
|
69
|
+
* Key update time. The time format is ISO8601.
|
|
70
70
|
*/
|
|
71
71
|
readonly updatedTime: pulumi.Output<string>;
|
|
72
72
|
/**
|
|
73
|
-
* User name. Used to create a key for
|
|
73
|
+
* User name. Used to create a key for the specified IAM user. If no user name is specified, a key is created for the current request identity (that is, if the primary account makes the request, the key is created for the primary account itself; if an IAM user makes the request, the key is created for the IAM user. Note: Roles do not support creating keys for themselves). If the IAM user has the AccessKeySelfManageAccess permission and needs to create a key for themselves, they must include their own UserName in the request.
|
|
74
74
|
*/
|
|
75
75
|
readonly userName: pulumi.Output<string>;
|
|
76
76
|
/**
|
|
@@ -87,43 +87,43 @@ export declare class Accesskey extends pulumi.CustomResource {
|
|
|
87
87
|
*/
|
|
88
88
|
export interface AccesskeyState {
|
|
89
89
|
/**
|
|
90
|
-
*
|
|
90
|
+
* Access Key Id.
|
|
91
91
|
*/
|
|
92
92
|
accessKeyId?: pulumi.Input<string>;
|
|
93
93
|
/**
|
|
94
|
-
* Key creation time
|
|
94
|
+
* Key creation time. The time format is ISO8601.
|
|
95
95
|
*/
|
|
96
96
|
createdTime?: pulumi.Input<string>;
|
|
97
97
|
/**
|
|
98
|
-
* Last login time
|
|
98
|
+
* Last login time.
|
|
99
99
|
*/
|
|
100
100
|
lastLoginDate?: pulumi.Input<string>;
|
|
101
101
|
/**
|
|
102
|
-
*
|
|
102
|
+
* The last region accessed by the API key.
|
|
103
103
|
*/
|
|
104
104
|
region?: pulumi.Input<string>;
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* The last time the API key was used.
|
|
107
107
|
*/
|
|
108
108
|
requestTime?: pulumi.Input<string>;
|
|
109
109
|
/**
|
|
110
|
-
* Secret Access Key
|
|
110
|
+
* Secret Access Key.
|
|
111
111
|
*/
|
|
112
112
|
secretAccessKey?: pulumi.Input<string>;
|
|
113
113
|
/**
|
|
114
|
-
* English abbreviation of the last accessed
|
|
114
|
+
* The English abbreviation of the last service accessed by the API key.
|
|
115
115
|
*/
|
|
116
116
|
service?: pulumi.Input<string>;
|
|
117
117
|
/**
|
|
118
|
-
* Key status.
|
|
118
|
+
* Key status. active means enabled, inactive means disabled.
|
|
119
119
|
*/
|
|
120
120
|
status?: pulumi.Input<string>;
|
|
121
121
|
/**
|
|
122
|
-
* Key update time
|
|
122
|
+
* Key update time. The time format is ISO8601.
|
|
123
123
|
*/
|
|
124
124
|
updatedTime?: pulumi.Input<string>;
|
|
125
125
|
/**
|
|
126
|
-
* User name. Used to create a key for
|
|
126
|
+
* User name. Used to create a key for the specified IAM user. If no user name is specified, a key is created for the current request identity (that is, if the primary account makes the request, the key is created for the primary account itself; if an IAM user makes the request, the key is created for the IAM user. Note: Roles do not support creating keys for themselves). If the IAM user has the AccessKeySelfManageAccess permission and needs to create a key for themselves, they must include their own UserName in the request.
|
|
127
127
|
*/
|
|
128
128
|
userName?: pulumi.Input<string>;
|
|
129
129
|
}
|
|
@@ -132,11 +132,11 @@ export interface AccesskeyState {
|
|
|
132
132
|
*/
|
|
133
133
|
export interface AccesskeyArgs {
|
|
134
134
|
/**
|
|
135
|
-
* Key status.
|
|
135
|
+
* Key status. active means enabled, inactive means disabled.
|
|
136
136
|
*/
|
|
137
137
|
status?: pulumi.Input<string>;
|
|
138
138
|
/**
|
|
139
|
-
* User name. Used to create a key for
|
|
139
|
+
* User name. Used to create a key for the specified IAM user. If no user name is specified, a key is created for the current request identity (that is, if the primary account makes the request, the key is created for the primary account itself; if an IAM user makes the request, the key is created for the IAM user. Note: Roles do not support creating keys for themselves). If the IAM user has the AccessKeySelfManageAccess permission and needs to create a key for themselves, they must include their own UserName in the request.
|
|
140
140
|
*/
|
|
141
141
|
userName?: pulumi.Input<string>;
|
|
142
142
|
}
|
package/iam/accesskey.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.Accesskey = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Access control (Identity and Access Management, IAM) is a permission management system provided by Volcano Engine
|
|
9
|
+
* Access control (Identity and Access Management, abbreviated as IAM) is a permission management system provided by Volcano Engine for customers to control access to cloud resources by different identities.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
package/iam/getAccesskey.d.ts
CHANGED
|
@@ -17,11 +17,11 @@ export interface GetAccesskeyArgs {
|
|
|
17
17
|
*/
|
|
18
18
|
export interface GetAccesskeyResult {
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Access Key Id.
|
|
21
21
|
*/
|
|
22
22
|
readonly accessKeyId: string;
|
|
23
23
|
/**
|
|
24
|
-
* Key creation time
|
|
24
|
+
* Key creation time. The time format is ISO8601.
|
|
25
25
|
*/
|
|
26
26
|
readonly createdTime: string;
|
|
27
27
|
/**
|
|
@@ -29,35 +29,35 @@ export interface GetAccesskeyResult {
|
|
|
29
29
|
*/
|
|
30
30
|
readonly id: string;
|
|
31
31
|
/**
|
|
32
|
-
* Last login time
|
|
32
|
+
* Last login time.
|
|
33
33
|
*/
|
|
34
34
|
readonly lastLoginDate: string;
|
|
35
35
|
/**
|
|
36
|
-
*
|
|
36
|
+
* The last region accessed by the API key.
|
|
37
37
|
*/
|
|
38
38
|
readonly region: string;
|
|
39
39
|
/**
|
|
40
|
-
*
|
|
40
|
+
* The last time the API key was used.
|
|
41
41
|
*/
|
|
42
42
|
readonly requestTime: string;
|
|
43
43
|
/**
|
|
44
|
-
* Secret Access Key
|
|
44
|
+
* Secret Access Key.
|
|
45
45
|
*/
|
|
46
46
|
readonly secretAccessKey: string;
|
|
47
47
|
/**
|
|
48
|
-
* English abbreviation of the last accessed
|
|
48
|
+
* The English abbreviation of the last service accessed by the API key.
|
|
49
49
|
*/
|
|
50
50
|
readonly service: string;
|
|
51
51
|
/**
|
|
52
|
-
* Key status.
|
|
52
|
+
* Key status. active means enabled, inactive means disabled.
|
|
53
53
|
*/
|
|
54
54
|
readonly status: string;
|
|
55
55
|
/**
|
|
56
|
-
* Key update time
|
|
56
|
+
* Key update time. The time format is ISO8601.
|
|
57
57
|
*/
|
|
58
58
|
readonly updatedTime: string;
|
|
59
59
|
/**
|
|
60
|
-
* User name. Used to create a key for
|
|
60
|
+
* User name. Used to create a key for the specified IAM user. If no user name is specified, a key is created for the current request identity (that is, if the primary account makes the request, the key is created for the primary account itself; if an IAM user makes the request, the key is created for the IAM user. Note: Roles do not support creating keys for themselves). If the IAM user has the AccessKeySelfManageAccess permission and needs to create a key for themselves, they must include their own UserName in the request.
|
|
61
61
|
*/
|
|
62
62
|
readonly userName: string;
|
|
63
63
|
}
|
package/mongodb/getInstance.d.ts
CHANGED
|
@@ -89,6 +89,10 @@ export interface GetInstanceResult {
|
|
|
89
89
|
* Instance name. The name must meet the following requirements: Cannot start with a digit or hyphen (-). Can only contain Chinese characters, letters, digits, underscores (_), and hyphens (-). Length must be 2–64 characters.
|
|
90
90
|
*/
|
|
91
91
|
readonly instanceName: string;
|
|
92
|
+
/**
|
|
93
|
+
* Instance parameter list
|
|
94
|
+
*/
|
|
95
|
+
readonly instanceParameters: outputs.mongodb.GetInstanceInstanceParameter[];
|
|
92
96
|
/**
|
|
93
97
|
* Instance status. Creating: Creating. Running: Running. Allowlist maintenance: AllowListMaintaining. Scaling: Scaling. Restarting: Restarting. Network maintaining: NetworkMaintaining. Restoring: Restoring. Upgrading: Upgrading. Unavailable: Unavailable. Closing: Closing. Deleting: Deleting. Closed: Closed. SSL updating: SSLUpdating. Switch mastering: SwitchMastering. Role changing: RoleChanging. Migrating: Migrating.
|
|
94
98
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInstance.js","sourceRoot":"","sources":["../../mongodb/getInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kCAKC;
|
|
1
|
+
{"version":3,"file":"getInstance.js","sourceRoot":"","sources":["../../mongodb/getInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kCAKC;AAyMD;;GAEG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC"}
|
package/mongodb/instance.d.ts
CHANGED
|
@@ -129,6 +129,7 @@ export declare class Instance extends pulumi.CustomResource {
|
|
|
129
129
|
* Instance name. The name must meet the following requirements: Cannot start with a digit or hyphen (-). Can only contain Chinese characters, letters, digits, underscores (_), and hyphens (-). Length must be 2–64 characters.
|
|
130
130
|
*/
|
|
131
131
|
readonly instanceName: pulumi.Output<string>;
|
|
132
|
+
readonly instanceParameters: pulumi.Output<outputs.mongodb.InstanceInstanceParameter[]>;
|
|
132
133
|
/**
|
|
133
134
|
* Instance status. Creating: Creating. Running: Running. Allowlist maintenance: AllowListMaintaining. Scaling: Scaling. Restarting: Restarting. Network maintaining: NetworkMaintaining. Restoring: Restoring. Upgrading: Upgrading. Unavailable: Unavailable. Closing: Closing. Deleting: Deleting. Closed: Closed. SSL updating: SSLUpdating. Switch mastering: SwitchMastering. Role changing: RoleChanging. Migrating: Migrating.
|
|
134
135
|
*/
|
|
@@ -300,6 +301,7 @@ export interface InstanceState {
|
|
|
300
301
|
* Instance name. The name must meet the following requirements: Cannot start with a digit or hyphen (-). Can only contain Chinese characters, letters, digits, underscores (_), and hyphens (-). Length must be 2–64 characters.
|
|
301
302
|
*/
|
|
302
303
|
instanceName?: pulumi.Input<string>;
|
|
304
|
+
instanceParameters?: pulumi.Input<pulumi.Input<inputs.mongodb.InstanceInstanceParameter>[]>;
|
|
303
305
|
/**
|
|
304
306
|
* Instance status. Creating: Creating. Running: Running. Allowlist maintenance: AllowListMaintaining. Scaling: Scaling. Restarting: Restarting. Network maintaining: NetworkMaintaining. Restoring: Restoring. Upgrading: Upgrading. Unavailable: Unavailable. Closing: Closing. Deleting: Deleting. Closed: Closed. SSL updating: SSLUpdating. Switch mastering: SwitchMastering. Role changing: RoleChanging. Migrating: Migrating.
|
|
305
307
|
*/
|
|
@@ -434,6 +436,7 @@ export interface InstanceArgs {
|
|
|
434
436
|
* Instance name. The name must meet the following requirements: Cannot start with a digit or hyphen (-). Can only contain Chinese characters, letters, digits, underscores (_), and hyphens (-). Length must be 2–64 characters.
|
|
435
437
|
*/
|
|
436
438
|
instanceName?: pulumi.Input<string>;
|
|
439
|
+
instanceParameters?: pulumi.Input<pulumi.Input<inputs.mongodb.InstanceInstanceParameter>[]>;
|
|
437
440
|
/**
|
|
438
441
|
* MongoDB instance type. Valid values: ReplicaSet (default): replica set. ShardedCluster: sharded cluster.
|
|
439
442
|
*/
|
package/mongodb/instance.js
CHANGED
|
@@ -97,6 +97,7 @@ class Instance extends pulumi.CustomResource {
|
|
|
97
97
|
resourceInputs["instanceCount"] = state ? state.instanceCount : undefined;
|
|
98
98
|
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
99
99
|
resourceInputs["instanceName"] = state ? state.instanceName : undefined;
|
|
100
|
+
resourceInputs["instanceParameters"] = state ? state.instanceParameters : undefined;
|
|
100
101
|
resourceInputs["instanceStatus"] = state ? state.instanceStatus : undefined;
|
|
101
102
|
resourceInputs["instanceType"] = state ? state.instanceType : undefined;
|
|
102
103
|
resourceInputs["mongos"] = state ? state.mongos : undefined;
|
|
@@ -151,6 +152,7 @@ class Instance extends pulumi.CustomResource {
|
|
|
151
152
|
resourceInputs["dbEngineVersion"] = args ? args.dbEngineVersion : undefined;
|
|
152
153
|
resourceInputs["instanceCount"] = args ? args.instanceCount : undefined;
|
|
153
154
|
resourceInputs["instanceName"] = args ? args.instanceName : undefined;
|
|
155
|
+
resourceInputs["instanceParameters"] = args ? args.instanceParameters : undefined;
|
|
154
156
|
resourceInputs["instanceType"] = args ? args.instanceType : undefined;
|
|
155
157
|
resourceInputs["mongosNodeNumber"] = args ? args.mongosNodeNumber : undefined;
|
|
156
158
|
resourceInputs["mongosNodeSpec"] = args ? args.mongosNodeSpec : undefined;
|
package/mongodb/instance.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instance.js","sourceRoot":"","sources":["../../mongodb/instance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;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":"instance.js","sourceRoot":"","sources":["../../mongodb/instance.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -46,6 +46,10 @@ export declare class EndpointService extends pulumi.CustomResource {
|
|
|
46
46
|
* Description of the endpoint service.
|
|
47
47
|
*/
|
|
48
48
|
readonly description: pulumi.Output<string>;
|
|
49
|
+
/**
|
|
50
|
+
* Verify the DNS name of the specified endpoint service. Only verification of public domain names is supported. true: enabled. false: not enabled.
|
|
51
|
+
*/
|
|
52
|
+
readonly enableVerifyPrivateDns: pulumi.Output<boolean>;
|
|
49
53
|
/**
|
|
50
54
|
* IP protocol type of the endpoint service. If the return value only contains ipv4, the endpoint service is IPv4 type and only supports IPv4 services. If the return value contains both ipv4 and ipv6, the endpoint service is dual-stack and supports both IPv4 and IPv6 services.
|
|
51
55
|
*/
|
|
@@ -161,6 +165,10 @@ export interface EndpointServiceState {
|
|
|
161
165
|
* Description of the endpoint service.
|
|
162
166
|
*/
|
|
163
167
|
description?: pulumi.Input<string>;
|
|
168
|
+
/**
|
|
169
|
+
* Verify the DNS name of the specified endpoint service. Only verification of public domain names is supported. true: enabled. false: not enabled.
|
|
170
|
+
*/
|
|
171
|
+
enableVerifyPrivateDns?: pulumi.Input<boolean>;
|
|
164
172
|
/**
|
|
165
173
|
* IP protocol type of the endpoint service. If the return value only contains ipv4, the endpoint service is IPv4 type and only supports IPv4 services. If the return value contains both ipv4 and ipv6, the endpoint service is dual-stack and supports both IPv4 and IPv6 services.
|
|
166
174
|
*/
|
|
@@ -256,6 +264,10 @@ export interface EndpointServiceArgs {
|
|
|
256
264
|
* Description of the endpoint service.
|
|
257
265
|
*/
|
|
258
266
|
description?: pulumi.Input<string>;
|
|
267
|
+
/**
|
|
268
|
+
* Verify the DNS name of the specified endpoint service. Only verification of public domain names is supported. true: enabled. false: not enabled.
|
|
269
|
+
*/
|
|
270
|
+
enableVerifyPrivateDns?: pulumi.Input<boolean>;
|
|
259
271
|
/**
|
|
260
272
|
* IP protocol type of the endpoint service. If the return value only contains ipv4, the endpoint service is IPv4 type and only supports IPv4 services. If the return value contains both ipv4 and ipv6, the endpoint service is dual-stack and supports both IPv4 and IPv6 services.
|
|
261
273
|
*/
|
|
@@ -47,6 +47,7 @@ class EndpointService extends pulumi.CustomResource {
|
|
|
47
47
|
resourceInputs["businessStatus"] = state ? state.businessStatus : undefined;
|
|
48
48
|
resourceInputs["createTime"] = state ? state.createTime : undefined;
|
|
49
49
|
resourceInputs["description"] = state ? state.description : undefined;
|
|
50
|
+
resourceInputs["enableVerifyPrivateDns"] = state ? state.enableVerifyPrivateDns : undefined;
|
|
50
51
|
resourceInputs["ipAddressVersions"] = state ? state.ipAddressVersions : undefined;
|
|
51
52
|
resourceInputs["payer"] = state ? state.payer : undefined;
|
|
52
53
|
resourceInputs["permitAccountIds"] = state ? state.permitAccountIds : undefined;
|
|
@@ -74,6 +75,7 @@ class EndpointService extends pulumi.CustomResource {
|
|
|
74
75
|
const args = argsOrState;
|
|
75
76
|
resourceInputs["autoAcceptEnabled"] = args ? args.autoAcceptEnabled : undefined;
|
|
76
77
|
resourceInputs["description"] = args ? args.description : undefined;
|
|
78
|
+
resourceInputs["enableVerifyPrivateDns"] = args ? args.enableVerifyPrivateDns : undefined;
|
|
77
79
|
resourceInputs["ipAddressVersions"] = args ? args.ipAddressVersions : undefined;
|
|
78
80
|
resourceInputs["payer"] = args ? args.payer : undefined;
|
|
79
81
|
resourceInputs["permitAccountIds"] = args ? args.permitAccountIds : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"endpointService.js","sourceRoot":"","sources":["../../privatelink/endpointService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;GAQG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IACtD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,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,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;
|
|
1
|
+
{"version":3,"file":"endpointService.js","sourceRoot":"","sources":["../../privatelink/endpointService.ts"],"names":[],"mappings":"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"}
|
|
@@ -37,6 +37,10 @@ export interface GetEndpointServiceResult {
|
|
|
37
37
|
* Description of the endpoint service.
|
|
38
38
|
*/
|
|
39
39
|
readonly description: string;
|
|
40
|
+
/**
|
|
41
|
+
* Verify the DNS name of the specified endpoint service. Only verification of public domain names is supported. true: enabled. false: not enabled.
|
|
42
|
+
*/
|
|
43
|
+
readonly enableVerifyPrivateDns: boolean;
|
|
40
44
|
/**
|
|
41
45
|
* Uniquely identifies the resource.
|
|
42
46
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getEndpointService.js","sourceRoot":"","sources":["../../privatelink/getEndpointService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE;QAC3F,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gDAKC;
|
|
1
|
+
{"version":3,"file":"getEndpointService.js","sourceRoot":"","sources":["../../privatelink/getEndpointService.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE;QAC3F,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gDAKC;AAqID;;GAEG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAAiC;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gEAAgE,EAAE;QACjG,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4DAKC"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
5
|
+
*/
|
|
6
|
+
export declare function getPrivateZone(args: GetPrivateZoneArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateZoneResult>;
|
|
7
|
+
/**
|
|
8
|
+
* A collection of arguments for invoking getPrivateZone.
|
|
9
|
+
*/
|
|
10
|
+
export interface GetPrivateZoneArgs {
|
|
11
|
+
/**
|
|
12
|
+
* Uniquely identifies the resource.
|
|
13
|
+
*/
|
|
14
|
+
id: string;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getPrivateZone.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetPrivateZoneResult {
|
|
20
|
+
/**
|
|
21
|
+
* Domain creation time
|
|
22
|
+
*/
|
|
23
|
+
readonly createdAt: string;
|
|
24
|
+
/**
|
|
25
|
+
* Uniquely identifies the resource.
|
|
26
|
+
*/
|
|
27
|
+
readonly id: string;
|
|
28
|
+
/**
|
|
29
|
+
* Most recent operator
|
|
30
|
+
*/
|
|
31
|
+
readonly lastOperator: string;
|
|
32
|
+
/**
|
|
33
|
+
* Enable load balancing: 0 to disable, 1 to enable. Default is 0
|
|
34
|
+
*/
|
|
35
|
+
readonly lineMode: number;
|
|
36
|
+
/**
|
|
37
|
+
* Name of the project the domain belongs to. Default is default
|
|
38
|
+
*/
|
|
39
|
+
readonly projectName: string;
|
|
40
|
+
/**
|
|
41
|
+
* Number of DNS records under the domain name
|
|
42
|
+
*/
|
|
43
|
+
readonly recordCount: number;
|
|
44
|
+
/**
|
|
45
|
+
* Enable recursive resolution: true to enable, false to disable. Default is false
|
|
46
|
+
*/
|
|
47
|
+
readonly recursionMode: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* Remarks. Default is an empty string
|
|
50
|
+
*/
|
|
51
|
+
readonly remark: string;
|
|
52
|
+
/**
|
|
53
|
+
* One or more tags associated with the domain. A resource can be associated with up to 50 tags
|
|
54
|
+
*/
|
|
55
|
+
readonly tags: outputs.privatezone.GetPrivateZoneTag[];
|
|
56
|
+
/**
|
|
57
|
+
* Most recent update time of the domain
|
|
58
|
+
*/
|
|
59
|
+
readonly updatedAt: string;
|
|
60
|
+
/**
|
|
61
|
+
* One or more VPCs associated with the domain. Domain resolution is only effective within the associated VPCs
|
|
62
|
+
*/
|
|
63
|
+
readonly vpcs: outputs.privatezone.GetPrivateZoneVpc[];
|
|
64
|
+
/**
|
|
65
|
+
* Unique ID identifying the domain name
|
|
66
|
+
*/
|
|
67
|
+
readonly zid: string;
|
|
68
|
+
/**
|
|
69
|
+
* Domain name, can be a second-level or multi-level domain
|
|
70
|
+
*/
|
|
71
|
+
readonly zoneName: string;
|
|
72
|
+
}
|
|
73
|
+
/**
|
|
74
|
+
* Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
75
|
+
*/
|
|
76
|
+
export declare function getPrivateZoneOutput(args: GetPrivateZoneOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateZoneResult>;
|
|
77
|
+
/**
|
|
78
|
+
* A collection of arguments for invoking getPrivateZone.
|
|
79
|
+
*/
|
|
80
|
+
export interface GetPrivateZoneOutputArgs {
|
|
81
|
+
/**
|
|
82
|
+
* Uniquely identifies the resource.
|
|
83
|
+
*/
|
|
84
|
+
id: pulumi.Input<string>;
|
|
85
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getPrivateZoneOutput = exports.getPrivateZone = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
10
|
+
*/
|
|
11
|
+
function getPrivateZone(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:privatezone/getPrivateZone:getPrivateZone", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getPrivateZone = getPrivateZone;
|
|
18
|
+
/**
|
|
19
|
+
* Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
20
|
+
*/
|
|
21
|
+
function getPrivateZoneOutput(args, opts) {
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invokeOutput("volcenginecc:privatezone/getPrivateZone:getPrivateZone", {
|
|
24
|
+
"id": args.id,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getPrivateZoneOutput = getPrivateZoneOutput;
|
|
28
|
+
//# sourceMappingURL=getPrivateZone.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPrivateZone.js","sourceRoot":"","sources":["../../privatezone/getPrivateZone.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC;AAqED;;GAEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wDAAwD,EAAE;QACzF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Plural Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
4
|
+
*/
|
|
5
|
+
export declare function getPrivateZones(opts?: pulumi.InvokeOptions): Promise<GetPrivateZonesResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of values returned by getPrivateZones.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetPrivateZonesResult {
|
|
10
|
+
/**
|
|
11
|
+
* Uniquely identifies the data source.
|
|
12
|
+
*/
|
|
13
|
+
readonly id: string;
|
|
14
|
+
/**
|
|
15
|
+
* Set of Resource Identifiers.
|
|
16
|
+
*/
|
|
17
|
+
readonly ids: string[];
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* Plural Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
21
|
+
*/
|
|
22
|
+
export declare function getPrivateZonesOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateZonesResult>;
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getPrivateZonesOutput = exports.getPrivateZones = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Plural Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
10
|
+
*/
|
|
11
|
+
function getPrivateZones(opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("volcenginecc:privatezone/getPrivateZones:getPrivateZones", {}, opts);
|
|
14
|
+
}
|
|
15
|
+
exports.getPrivateZones = getPrivateZones;
|
|
16
|
+
/**
|
|
17
|
+
* Plural Data Source schema for Volcengine::PrivateZone::PrivateZone
|
|
18
|
+
*/
|
|
19
|
+
function getPrivateZonesOutput(opts) {
|
|
20
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
21
|
+
return pulumi.runtime.invokeOutput("volcenginecc:privatezone/getPrivateZones:getPrivateZones", {}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getPrivateZonesOutput = getPrivateZonesOutput;
|
|
24
|
+
//# sourceMappingURL=getPrivateZones.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPrivateZones.js","sourceRoot":"","sources":["../../privatezone/getPrivateZones.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,eAAe,CAAC,IAA2B;IACvD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE,EACxF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,0CAIC;AAeD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAAiC;IACnE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE,EAC9F,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,sDAIC"}
|
package/privatezone/index.d.ts
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
export { GetPrivateZoneArgs, GetPrivateZoneResult, GetPrivateZoneOutputArgs } from "./getPrivateZone";
|
|
2
|
+
export declare const getPrivateZone: typeof import("./getPrivateZone").getPrivateZone;
|
|
3
|
+
export declare const getPrivateZoneOutput: typeof import("./getPrivateZone").getPrivateZoneOutput;
|
|
4
|
+
export { GetPrivateZonesResult } from "./getPrivateZones";
|
|
5
|
+
export declare const getPrivateZones: typeof import("./getPrivateZones").getPrivateZones;
|
|
6
|
+
export declare const getPrivateZonesOutput: typeof import("./getPrivateZones").getPrivateZonesOutput;
|
|
1
7
|
export { GetRecordArgs, GetRecordResult, GetRecordOutputArgs } from "./getRecord";
|
|
2
8
|
export declare const getRecord: typeof import("./getRecord").getRecord;
|
|
3
9
|
export declare const getRecordOutput: typeof import("./getRecord").getRecordOutput;
|
|
@@ -22,6 +28,9 @@ export declare const getUserVpcAuthorizationOutput: typeof import("./getUserVpcA
|
|
|
22
28
|
export { GetUserVpcAuthorizationsResult } from "./getUserVpcAuthorizations";
|
|
23
29
|
export declare const getUserVpcAuthorizations: typeof import("./getUserVpcAuthorizations").getUserVpcAuthorizations;
|
|
24
30
|
export declare const getUserVpcAuthorizationsOutput: typeof import("./getUserVpcAuthorizations").getUserVpcAuthorizationsOutput;
|
|
31
|
+
export { PrivateZoneArgs, PrivateZoneState } from "./privateZone";
|
|
32
|
+
export type PrivateZone = import("./privateZone").PrivateZone;
|
|
33
|
+
export declare const PrivateZone: typeof import("./privateZone").PrivateZone;
|
|
25
34
|
export { RecordArgs, RecordState } from "./record";
|
|
26
35
|
export type Record = import("./record").Record;
|
|
27
36
|
export declare const Record: typeof import("./record").Record;
|