@volcengine/pulumi 0.0.30 → 0.0.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/cloud_identity/permissionSetAssignment.d.ts +15 -0
  2. package/cloud_identity/permissionSetAssignment.js +2 -0
  3. package/cloud_identity/permissionSetAssignment.js.map +1 -1
  4. package/cloud_identity/permissionSetProvisioning.d.ts +5 -3
  5. package/cloud_identity/permissionSetProvisioning.js +5 -3
  6. package/cloud_identity/permissionSetProvisioning.js.map +1 -1
  7. package/dns/backup.d.ts +10 -1
  8. package/dns/backup.js +10 -1
  9. package/dns/backup.js.map +1 -1
  10. package/dns/zone.d.ts +1 -1
  11. package/dns/zone.js +1 -1
  12. package/ebs/getMaxExtraPerformances.d.ts +82 -0
  13. package/ebs/getMaxExtraPerformances.js +30 -0
  14. package/ebs/getMaxExtraPerformances.js.map +1 -0
  15. package/ebs/index.d.ts +6 -0
  16. package/ebs/index.js +7 -1
  17. package/ebs/index.js.map +1 -1
  18. package/ebs/maxExtraPerformances.d.ts +84 -0
  19. package/ebs/maxExtraPerformances.js +33 -0
  20. package/ebs/maxExtraPerformances.js.map +1 -0
  21. package/ebs/volume.d.ts +22 -14
  22. package/ebs/volume.js +7 -2
  23. package/ebs/volume.js.map +1 -1
  24. package/escloud_v2/escloudInstanceV2.d.ts +19 -3
  25. package/escloud_v2/escloudInstanceV2.js +19 -3
  26. package/escloud_v2/escloudInstanceV2.js.map +1 -1
  27. package/kafka/instance.d.ts +37 -0
  28. package/kafka/instance.js +37 -0
  29. package/kafka/instance.js.map +1 -1
  30. package/mongodb/instance.d.ts +66 -11
  31. package/mongodb/instance.js +40 -11
  32. package/mongodb/instance.js.map +1 -1
  33. package/nas/fileSystem.d.ts +58 -0
  34. package/nas/fileSystem.js +58 -0
  35. package/nas/fileSystem.js.map +1 -1
  36. package/nas/getMountPoints.d.ts +112 -0
  37. package/nas/getMountPoints.js +112 -0
  38. package/nas/getMountPoints.js.map +1 -1
  39. package/nas/mountPoint.d.ts +53 -0
  40. package/nas/mountPoint.js +53 -0
  41. package/nas/mountPoint.js.map +1 -1
  42. package/nas/mountPoints.d.ts +112 -0
  43. package/nas/mountPoints.js +112 -0
  44. package/nas/mountPoints.js.map +1 -1
  45. package/package.json +1 -1
  46. package/rds_mysql/instance.d.ts +42 -8
  47. package/rds_mysql/instance.js +42 -8
  48. package/rds_mysql/instance.js.map +1 -1
  49. package/rds_postgresql/instance.d.ts +54 -3
  50. package/rds_postgresql/instance.js +54 -3
  51. package/rds_postgresql/instance.js.map +1 -1
  52. package/redis/instance.d.ts +8 -1
  53. package/redis/instance.js +8 -1
  54. package/redis/instance.js.map +1 -1
  55. package/types/output.d.ts +220 -0
  56. package/vke/getPermissions.d.ts +137 -0
  57. package/vke/getPermissions.js +55 -0
  58. package/vke/getPermissions.js.map +1 -0
  59. package/vke/index.d.ts +9 -0
  60. package/vke/index.js +12 -1
  61. package/vke/index.js.map +1 -1
  62. package/vke/permission.d.ts +269 -0
  63. package/vke/permission.js +165 -0
  64. package/vke/permission.js.map +1 -0
  65. package/vke/permissions.d.ts +139 -0
  66. package/vke/permissions.js +58 -0
  67. package/vke/permissions.js.map +1 -0
  68. package/vpc/routeEntry.d.ts +27 -6
  69. package/vpc/routeEntry.js +27 -6
  70. package/vpc/routeEntry.js.map +1 -1
package/types/output.d.ts CHANGED
@@ -11107,6 +11107,50 @@ export declare namespace ebs {
11107
11107
  */
11108
11108
  value: string;
11109
11109
  }
11110
+ interface GetMaxExtraPerformancesPerformance {
11111
+ /**
11112
+ * The baseline of the performance.
11113
+ */
11114
+ baselines: outputs.ebs.GetMaxExtraPerformancesPerformanceBaseline[];
11115
+ /**
11116
+ * The limit of the extra performance.
11117
+ */
11118
+ limits: outputs.ebs.GetMaxExtraPerformancesPerformanceLimit[];
11119
+ /**
11120
+ * The max extra performance can purchase.
11121
+ */
11122
+ maxExtraPerformanceCanPurchases: outputs.ebs.GetMaxExtraPerformancesPerformanceMaxExtraPerformanceCanPurchase[];
11123
+ }
11124
+ interface GetMaxExtraPerformancesPerformanceBaseline {
11125
+ /**
11126
+ * The limit of the iops.
11127
+ */
11128
+ iops: number;
11129
+ /**
11130
+ * The limit of the throughput.
11131
+ */
11132
+ throughput: number;
11133
+ }
11134
+ interface GetMaxExtraPerformancesPerformanceLimit {
11135
+ /**
11136
+ * The limit of the iops.
11137
+ */
11138
+ iops: number;
11139
+ /**
11140
+ * The limit of the throughput.
11141
+ */
11142
+ throughput: number;
11143
+ }
11144
+ interface GetMaxExtraPerformancesPerformanceMaxExtraPerformanceCanPurchase {
11145
+ /**
11146
+ * The type of the extra performance.
11147
+ */
11148
+ extraPerformanceTypeId: string;
11149
+ /**
11150
+ * The limit of the extra performance.
11151
+ */
11152
+ limit: number;
11153
+ }
11110
11154
  interface GetSnapshotGroupsSnapshotGroup {
11111
11155
  /**
11112
11156
  * The creation time of the snapshot.
@@ -11444,6 +11488,50 @@ export declare namespace ebs {
11444
11488
  */
11445
11489
  throughput: number;
11446
11490
  }
11491
+ interface MaxExtraPerformancesPerformance {
11492
+ /**
11493
+ * The baseline of the performance.
11494
+ */
11495
+ baselines: outputs.ebs.MaxExtraPerformancesPerformanceBaseline[];
11496
+ /**
11497
+ * The limit of the extra performance.
11498
+ */
11499
+ limits: outputs.ebs.MaxExtraPerformancesPerformanceLimit[];
11500
+ /**
11501
+ * The max extra performance can purchase.
11502
+ */
11503
+ maxExtraPerformanceCanPurchases: outputs.ebs.MaxExtraPerformancesPerformanceMaxExtraPerformanceCanPurchase[];
11504
+ }
11505
+ interface MaxExtraPerformancesPerformanceBaseline {
11506
+ /**
11507
+ * The limit of the iops.
11508
+ */
11509
+ iops: number;
11510
+ /**
11511
+ * The limit of the throughput.
11512
+ */
11513
+ throughput: number;
11514
+ }
11515
+ interface MaxExtraPerformancesPerformanceLimit {
11516
+ /**
11517
+ * The limit of the iops.
11518
+ */
11519
+ iops: number;
11520
+ /**
11521
+ * The limit of the throughput.
11522
+ */
11523
+ throughput: number;
11524
+ }
11525
+ interface MaxExtraPerformancesPerformanceMaxExtraPerformanceCanPurchase {
11526
+ /**
11527
+ * The type of the extra performance.
11528
+ */
11529
+ extraPerformanceTypeId: string;
11530
+ /**
11531
+ * The limit of the extra performance.
11532
+ */
11533
+ limit: number;
11534
+ }
11447
11535
  interface SnapshotGroupTag {
11448
11536
  /**
11449
11537
  * The Key of Tags.
@@ -43204,6 +43292,72 @@ export declare namespace vke {
43204
43292
  */
43205
43293
  phase?: string;
43206
43294
  }
43295
+ interface GetPermissionsAccessPolicy {
43296
+ /**
43297
+ * The authorized time of the RBAC Permission.
43298
+ */
43299
+ authorizedAt: string;
43300
+ /**
43301
+ * The ID of the Authorizer.
43302
+ */
43303
+ authorizerId: number;
43304
+ /**
43305
+ * The name of the Authorizer.
43306
+ */
43307
+ authorizerName: string;
43308
+ /**
43309
+ * The type of the Authorizer.
43310
+ */
43311
+ authorizerType: string;
43312
+ /**
43313
+ * The ID of the Cluster.
43314
+ */
43315
+ clusterId: string;
43316
+ /**
43317
+ * The granted time of the RBAC Permission.
43318
+ */
43319
+ grantedAt: string;
43320
+ /**
43321
+ * The ID of the Grantee.
43322
+ */
43323
+ granteeId: number;
43324
+ /**
43325
+ * The type of Grantee. Valid values: `User`, `Role`.
43326
+ */
43327
+ granteeType: string;
43328
+ /**
43329
+ * The id of the RBAC Permission.
43330
+ */
43331
+ id: string;
43332
+ /**
43333
+ * Whether the RBAC Role is custom role.
43334
+ */
43335
+ isCustomRole: boolean;
43336
+ /**
43337
+ * The name of the Kube Role Binding.
43338
+ */
43339
+ kubeRoleBindingName: string;
43340
+ /**
43341
+ * The message of the RBAC Permission.
43342
+ */
43343
+ message: string;
43344
+ /**
43345
+ * The Namespace of the RBAC Permission.
43346
+ */
43347
+ namespace: string;
43348
+ /**
43349
+ * The revoked time of the RBAC Permission.
43350
+ */
43351
+ revokedAt: string;
43352
+ /**
43353
+ * The name of the RBAC Role.
43354
+ */
43355
+ roleName: string;
43356
+ /**
43357
+ * The status of RBAC Permission.
43358
+ */
43359
+ status: string;
43360
+ }
43207
43361
  interface GetSupportAddonsAddon {
43208
43362
  /**
43209
43363
  * The categories of addons, the value is `Storage` or `Network` or `Monitor` or `Scheduler` or `Dns` or `Security` or `Gpu` or `Image`.
@@ -44064,6 +44218,72 @@ export declare namespace vke {
44064
44218
  */
44065
44219
  phase?: string;
44066
44220
  }
44221
+ interface PermissionsAccessPolicy {
44222
+ /**
44223
+ * The authorized time of the RBAC Permission.
44224
+ */
44225
+ authorizedAt: string;
44226
+ /**
44227
+ * The ID of the Authorizer.
44228
+ */
44229
+ authorizerId: number;
44230
+ /**
44231
+ * The name of the Authorizer.
44232
+ */
44233
+ authorizerName: string;
44234
+ /**
44235
+ * The type of the Authorizer.
44236
+ */
44237
+ authorizerType: string;
44238
+ /**
44239
+ * The ID of the Cluster.
44240
+ */
44241
+ clusterId: string;
44242
+ /**
44243
+ * The granted time of the RBAC Permission.
44244
+ */
44245
+ grantedAt: string;
44246
+ /**
44247
+ * The ID of the Grantee.
44248
+ */
44249
+ granteeId: number;
44250
+ /**
44251
+ * The type of Grantee. Valid values: `User`, `Role`.
44252
+ */
44253
+ granteeType: string;
44254
+ /**
44255
+ * The id of the RBAC Permission.
44256
+ */
44257
+ id: string;
44258
+ /**
44259
+ * Whether the RBAC Role is custom role.
44260
+ */
44261
+ isCustomRole: boolean;
44262
+ /**
44263
+ * The name of the Kube Role Binding.
44264
+ */
44265
+ kubeRoleBindingName: string;
44266
+ /**
44267
+ * The message of the RBAC Permission.
44268
+ */
44269
+ message: string;
44270
+ /**
44271
+ * The Namespace of the RBAC Permission.
44272
+ */
44273
+ namespace: string;
44274
+ /**
44275
+ * The revoked time of the RBAC Permission.
44276
+ */
44277
+ revokedAt: string;
44278
+ /**
44279
+ * The name of the RBAC Role.
44280
+ */
44281
+ roleName: string;
44282
+ /**
44283
+ * The status of RBAC Permission.
44284
+ */
44285
+ status: string;
44286
+ }
44067
44287
  interface SupportAddonsAddon {
44068
44288
  /**
44069
44289
  * The categories of addons, the value is `Storage` or `Network` or `Monitor` or `Scheduler` or `Dns` or `Security` or `Gpu` or `Image`.
@@ -0,0 +1,137 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "../types/output";
3
+ /**
4
+ * Use this data source to query detailed information of vke permissions
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as volcengine from "@pulumi/volcengine";
10
+ *
11
+ * const foo = volcengine.vke.getPermissions({
12
+ * granteeType: "User",
13
+ * ids: ["apd10o9jhqqno0ba25****"],
14
+ * });
15
+ * ```
16
+ */
17
+ export declare function getPermissions(args?: GetPermissionsArgs, opts?: pulumi.InvokeOptions): Promise<GetPermissionsResult>;
18
+ /**
19
+ * A collection of arguments for invoking getPermissions.
20
+ */
21
+ export interface GetPermissionsArgs {
22
+ /**
23
+ * A list of Cluster IDs.
24
+ */
25
+ clusterIds?: string[];
26
+ /**
27
+ * A list of Grantee IDs.
28
+ */
29
+ granteeIds?: number[];
30
+ /**
31
+ * The type of Grantee. Valid values: `User`, `Role`.
32
+ */
33
+ granteeType?: string;
34
+ /**
35
+ * A list of RBAC Permission IDs.
36
+ */
37
+ ids?: string[];
38
+ /**
39
+ * A list of Namespaces.
40
+ */
41
+ namespaces?: string[];
42
+ /**
43
+ * File name where to save data source results.
44
+ */
45
+ outputFile?: string;
46
+ /**
47
+ * A list of RBAC Role Names.
48
+ */
49
+ roleNames?: string[];
50
+ /**
51
+ * The status of RBAC Permission.
52
+ */
53
+ status?: string;
54
+ }
55
+ /**
56
+ * A collection of values returned by getPermissions.
57
+ */
58
+ export interface GetPermissionsResult {
59
+ /**
60
+ * The collection of query.
61
+ */
62
+ readonly accessPolicies: outputs.vke.GetPermissionsAccessPolicy[];
63
+ readonly clusterIds?: string[];
64
+ readonly granteeIds?: number[];
65
+ /**
66
+ * The type of the Grantee.
67
+ */
68
+ readonly granteeType?: string;
69
+ /**
70
+ * The provider-assigned unique ID for this managed resource.
71
+ */
72
+ readonly id: string;
73
+ readonly ids?: string[];
74
+ readonly namespaces?: string[];
75
+ readonly outputFile?: string;
76
+ readonly roleNames?: string[];
77
+ /**
78
+ * The status of the RBAC Permission.
79
+ */
80
+ readonly status?: string;
81
+ /**
82
+ * The total count of query.
83
+ */
84
+ readonly totalCount: number;
85
+ }
86
+ /**
87
+ * Use this data source to query detailed information of vke permissions
88
+ * ## Example Usage
89
+ *
90
+ * ```typescript
91
+ * import * as pulumi from "@pulumi/pulumi";
92
+ * import * as volcengine from "@pulumi/volcengine";
93
+ *
94
+ * const foo = volcengine.vke.getPermissions({
95
+ * granteeType: "User",
96
+ * ids: ["apd10o9jhqqno0ba25****"],
97
+ * });
98
+ * ```
99
+ */
100
+ export declare function getPermissionsOutput(args?: GetPermissionsOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetPermissionsResult>;
101
+ /**
102
+ * A collection of arguments for invoking getPermissions.
103
+ */
104
+ export interface GetPermissionsOutputArgs {
105
+ /**
106
+ * A list of Cluster IDs.
107
+ */
108
+ clusterIds?: pulumi.Input<pulumi.Input<string>[]>;
109
+ /**
110
+ * A list of Grantee IDs.
111
+ */
112
+ granteeIds?: pulumi.Input<pulumi.Input<number>[]>;
113
+ /**
114
+ * The type of Grantee. Valid values: `User`, `Role`.
115
+ */
116
+ granteeType?: pulumi.Input<string>;
117
+ /**
118
+ * A list of RBAC Permission IDs.
119
+ */
120
+ ids?: pulumi.Input<pulumi.Input<string>[]>;
121
+ /**
122
+ * A list of Namespaces.
123
+ */
124
+ namespaces?: pulumi.Input<pulumi.Input<string>[]>;
125
+ /**
126
+ * File name where to save data source results.
127
+ */
128
+ outputFile?: pulumi.Input<string>;
129
+ /**
130
+ * A list of RBAC Role Names.
131
+ */
132
+ roleNames?: pulumi.Input<pulumi.Input<string>[]>;
133
+ /**
134
+ * The status of RBAC Permission.
135
+ */
136
+ status?: pulumi.Input<string>;
137
+ }
@@ -0,0 +1,55 @@
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.getPermissionsOutput = exports.getPermissions = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to query detailed information of vke permissions
10
+ * ## Example Usage
11
+ *
12
+ * ```typescript
13
+ * import * as pulumi from "@pulumi/pulumi";
14
+ * import * as volcengine from "@pulumi/volcengine";
15
+ *
16
+ * const foo = volcengine.vke.getPermissions({
17
+ * granteeType: "User",
18
+ * ids: ["apd10o9jhqqno0ba25****"],
19
+ * });
20
+ * ```
21
+ */
22
+ function getPermissions(args, opts) {
23
+ args = args || {};
24
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
25
+ return pulumi.runtime.invoke("volcengine:vke/getPermissions:getPermissions", {
26
+ "clusterIds": args.clusterIds,
27
+ "granteeIds": args.granteeIds,
28
+ "granteeType": args.granteeType,
29
+ "ids": args.ids,
30
+ "namespaces": args.namespaces,
31
+ "outputFile": args.outputFile,
32
+ "roleNames": args.roleNames,
33
+ "status": args.status,
34
+ }, opts);
35
+ }
36
+ exports.getPermissions = getPermissions;
37
+ /**
38
+ * Use this data source to query detailed information of vke permissions
39
+ * ## Example Usage
40
+ *
41
+ * ```typescript
42
+ * import * as pulumi from "@pulumi/pulumi";
43
+ * import * as volcengine from "@pulumi/volcengine";
44
+ *
45
+ * const foo = volcengine.vke.getPermissions({
46
+ * granteeType: "User",
47
+ * ids: ["apd10o9jhqqno0ba25****"],
48
+ * });
49
+ * ```
50
+ */
51
+ function getPermissionsOutput(args, opts) {
52
+ return pulumi.output(args).apply((a) => getPermissions(a, opts));
53
+ }
54
+ exports.getPermissionsOutput = getPermissionsOutput;
55
+ //# sourceMappingURL=getPermissions.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getPermissions.js","sourceRoot":"","sources":["../../vke/getPermissions.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;AACH,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAElB,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,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAdD,wCAcC;AAuED;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA+B,EAAE,IAA2B;IAC7F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
package/vke/index.d.ts CHANGED
@@ -31,6 +31,9 @@ export declare const getNodePoolsOutput: typeof import("./getNodePools").getNode
31
31
  export { GetNodesArgs, GetNodesResult, GetNodesOutputArgs } from "./getNodes";
32
32
  export declare const getNodes: typeof import("./getNodes").getNodes;
33
33
  export declare const getNodesOutput: typeof import("./getNodes").getNodesOutput;
34
+ export { GetPermissionsArgs, GetPermissionsResult, GetPermissionsOutputArgs } from "./getPermissions";
35
+ export declare const getPermissions: typeof import("./getPermissions").getPermissions;
36
+ export declare const getPermissionsOutput: typeof import("./getPermissions").getPermissionsOutput;
34
37
  export { GetSupportAddonsArgs, GetSupportAddonsResult, GetSupportAddonsOutputArgs } from "./getSupportAddons";
35
38
  export declare const getSupportAddons: typeof import("./getSupportAddons").getSupportAddons;
36
39
  export declare const getSupportAddonsOutput: typeof import("./getSupportAddons").getSupportAddonsOutput;
@@ -55,6 +58,12 @@ export declare const nodePoolsOutput: typeof import("./nodePools").nodePoolsOutp
55
58
  export { NodesArgs, NodesResult, NodesOutputArgs } from "./nodes";
56
59
  export declare const nodes: typeof import("./nodes").nodes;
57
60
  export declare const nodesOutput: typeof import("./nodes").nodesOutput;
61
+ export { PermissionArgs, PermissionState } from "./permission";
62
+ export type Permission = import("./permission").Permission;
63
+ export declare const Permission: typeof import("./permission").Permission;
64
+ export { PermissionsArgs, PermissionsResult, PermissionsOutputArgs } from "./permissions";
65
+ export declare const permissions: typeof import("./permissions").permissions;
66
+ export declare const permissionsOutput: typeof import("./permissions").permissionsOutput;
58
67
  export { SupportAddonsArgs, SupportAddonsResult, SupportAddonsOutputArgs } from "./supportAddons";
59
68
  export declare const supportAddons: typeof import("./supportAddons").supportAddons;
60
69
  export declare const supportAddonsOutput: typeof import("./supportAddons").supportAddonsOutput;
package/vke/index.js CHANGED
@@ -2,7 +2,7 @@
2
2
  // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
3
  // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.supportResourceTypesOutput = exports.supportResourceTypes = exports.supportAddonsOutput = exports.supportAddons = exports.nodesOutput = exports.nodes = exports.nodePoolsOutput = exports.nodePools = exports.NodePool = exports.Node = exports.kubeconfigsOutput = exports.kubeconfigs = exports.Kubeconfig = exports.getSupportResourceTypesOutput = exports.getSupportResourceTypes = exports.getSupportAddonsOutput = exports.getSupportAddons = exports.getNodesOutput = exports.getNodes = exports.getNodePoolsOutput = exports.getNodePools = exports.getKubeconfigsOutput = exports.getKubeconfigs = exports.getClustersOutput = exports.getClusters = exports.getAddonsOutput = exports.getAddons = exports.DefaultNodePoolBatchAttach = exports.DefaultNodePool = exports.clustersOutput = exports.clusters = exports.Cluster = exports.addonsOutput = exports.addons = exports.Addon = void 0;
5
+ exports.supportResourceTypesOutput = exports.supportResourceTypes = exports.supportAddonsOutput = exports.supportAddons = exports.permissionsOutput = exports.permissions = exports.Permission = exports.nodesOutput = exports.nodes = exports.nodePoolsOutput = exports.nodePools = exports.NodePool = exports.Node = exports.kubeconfigsOutput = exports.kubeconfigs = exports.Kubeconfig = exports.getSupportResourceTypesOutput = exports.getSupportResourceTypes = exports.getSupportAddonsOutput = exports.getSupportAddons = exports.getPermissionsOutput = exports.getPermissions = exports.getNodesOutput = exports.getNodes = exports.getNodePoolsOutput = exports.getNodePools = exports.getKubeconfigsOutput = exports.getKubeconfigs = exports.getClustersOutput = exports.getClusters = exports.getAddonsOutput = exports.getAddons = exports.DefaultNodePoolBatchAttach = exports.DefaultNodePool = exports.clustersOutput = exports.clusters = exports.Cluster = exports.addonsOutput = exports.addons = exports.Addon = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("../utilities");
8
8
  exports.Addon = null;
@@ -34,6 +34,9 @@ utilities.lazyLoad(exports, ["getNodePools", "getNodePoolsOutput"], () => requir
34
34
  exports.getNodes = null;
35
35
  exports.getNodesOutput = null;
36
36
  utilities.lazyLoad(exports, ["getNodes", "getNodesOutput"], () => require("./getNodes"));
37
+ exports.getPermissions = null;
38
+ exports.getPermissionsOutput = null;
39
+ utilities.lazyLoad(exports, ["getPermissions", "getPermissionsOutput"], () => require("./getPermissions"));
37
40
  exports.getSupportAddons = null;
38
41
  exports.getSupportAddonsOutput = null;
39
42
  utilities.lazyLoad(exports, ["getSupportAddons", "getSupportAddonsOutput"], () => require("./getSupportAddons"));
@@ -55,6 +58,11 @@ utilities.lazyLoad(exports, ["nodePools", "nodePoolsOutput"], () => require("./n
55
58
  exports.nodes = null;
56
59
  exports.nodesOutput = null;
57
60
  utilities.lazyLoad(exports, ["nodes", "nodesOutput"], () => require("./nodes"));
61
+ exports.Permission = null;
62
+ utilities.lazyLoad(exports, ["Permission"], () => require("./permission"));
63
+ exports.permissions = null;
64
+ exports.permissionsOutput = null;
65
+ utilities.lazyLoad(exports, ["permissions", "permissionsOutput"], () => require("./permissions"));
58
66
  exports.supportAddons = null;
59
67
  exports.supportAddonsOutput = null;
60
68
  utilities.lazyLoad(exports, ["supportAddons", "supportAddonsOutput"], () => require("./supportAddons"));
@@ -79,6 +87,8 @@ const _module = {
79
87
  return new exports.Node(name, undefined, { urn });
80
88
  case "volcengine:vke/nodePool:NodePool":
81
89
  return new exports.NodePool(name, undefined, { urn });
90
+ case "volcengine:vke/permission:Permission":
91
+ return new exports.Permission(name, undefined, { urn });
82
92
  default:
83
93
  throw new Error(`unknown resource type ${type}`);
84
94
  }
@@ -91,4 +101,5 @@ pulumi.runtime.registerResourceModule("volcengine", "vke/defaultNodePoolBatchAtt
91
101
  pulumi.runtime.registerResourceModule("volcengine", "vke/kubeconfig", _module);
92
102
  pulumi.runtime.registerResourceModule("volcengine", "vke/node", _module);
93
103
  pulumi.runtime.registerResourceModule("volcengine", "vke/nodePool", _module);
104
+ pulumi.runtime.registerResourceModule("volcengine", "vke/permission", _module);
94
105
  //# sourceMappingURL=index.js.map
package/vke/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../vke/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../vke/index.ts"],"names":[],"mappings":"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"}