@volcengine/pulumi 0.0.16 → 0.0.17

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.
@@ -0,0 +1,180 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * Provides a resource to manage cloudfs access
4
+ * ## Example Usage
5
+ *
6
+ * ```typescript
7
+ * import * as pulumi from "@pulumi/pulumi";
8
+ * import * as volcengine from "@volcengine/pulumi";
9
+ *
10
+ * const foo1 = new volcengine.cloudfs.Access("foo1", {
11
+ * fsName: "tftest2",
12
+ * securityGroupId: "sg-rrv1klfg5s00v0x578mx14m",
13
+ * subnetId: "subnet-13fca1crr5d6o3n6nu46cyb5m",
14
+ * vpcRouteEnabled: false,
15
+ * });
16
+ * ```
17
+ *
18
+ * ## Import
19
+ *
20
+ * CloudFs Access can be imported using the FsName:AccessId, e.g.
21
+ *
22
+ * ```sh
23
+ * $ pulumi import volcengine:cloudfs/access:Access default tfname:access-**rdgmedx3fow
24
+ * ```
25
+ */
26
+ export declare class Access extends pulumi.CustomResource {
27
+ /**
28
+ * Get an existing Access resource's state with the given name, ID, and optional extra
29
+ * properties used to qualify the lookup.
30
+ *
31
+ * @param name The _unique_ name of the resulting resource.
32
+ * @param id The _unique_ provider ID of the resource to lookup.
33
+ * @param state Any extra arguments used during the lookup.
34
+ * @param opts Optional settings to control the behavior of the CustomResource.
35
+ */
36
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AccessState, opts?: pulumi.CustomResourceOptions): Access;
37
+ /**
38
+ * Returns true if the given object is an instance of Access. This is designed to work even
39
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
40
+ */
41
+ static isInstance(obj: any): obj is Access;
42
+ /**
43
+ * The account id of access.
44
+ */
45
+ readonly accessAccountId: pulumi.Output<number>;
46
+ /**
47
+ * The iam role of access. If the VPC of another account is attached, the other account needs to create a role with CFSCacheAccess permission, and enter the role name as a parameter.
48
+ */
49
+ readonly accessIamRole: pulumi.Output<string | undefined>;
50
+ /**
51
+ * The id of access.
52
+ */
53
+ readonly accessId: pulumi.Output<string>;
54
+ /**
55
+ * The service name of access.
56
+ */
57
+ readonly accessServiceName: pulumi.Output<string>;
58
+ /**
59
+ * The creation time.
60
+ */
61
+ readonly createdTime: pulumi.Output<string>;
62
+ /**
63
+ * The name of file system.
64
+ */
65
+ readonly fsName: pulumi.Output<string>;
66
+ /**
67
+ * Whether is default access.
68
+ */
69
+ readonly isDefault: pulumi.Output<boolean>;
70
+ /**
71
+ * The id of security group.
72
+ */
73
+ readonly securityGroupId: pulumi.Output<string>;
74
+ /**
75
+ * Status of access.
76
+ */
77
+ readonly status: pulumi.Output<string>;
78
+ /**
79
+ * The id of subnet.
80
+ */
81
+ readonly subnetId: pulumi.Output<string>;
82
+ /**
83
+ * The id of vpc.
84
+ */
85
+ readonly vpcId: pulumi.Output<string>;
86
+ /**
87
+ * Whether enable all vpc route.
88
+ */
89
+ readonly vpcRouteEnabled: pulumi.Output<boolean | undefined>;
90
+ /**
91
+ * Create a Access resource with the given unique name, arguments, and options.
92
+ *
93
+ * @param name The _unique_ name of the resource.
94
+ * @param args The arguments to use to populate this resource's properties.
95
+ * @param opts A bag of options that control this resource's behavior.
96
+ */
97
+ constructor(name: string, args: AccessArgs, opts?: pulumi.CustomResourceOptions);
98
+ }
99
+ /**
100
+ * Input properties used for looking up and filtering Access resources.
101
+ */
102
+ export interface AccessState {
103
+ /**
104
+ * The account id of access.
105
+ */
106
+ accessAccountId?: pulumi.Input<number>;
107
+ /**
108
+ * The iam role of access. If the VPC of another account is attached, the other account needs to create a role with CFSCacheAccess permission, and enter the role name as a parameter.
109
+ */
110
+ accessIamRole?: pulumi.Input<string>;
111
+ /**
112
+ * The id of access.
113
+ */
114
+ accessId?: pulumi.Input<string>;
115
+ /**
116
+ * The service name of access.
117
+ */
118
+ accessServiceName?: pulumi.Input<string>;
119
+ /**
120
+ * The creation time.
121
+ */
122
+ createdTime?: pulumi.Input<string>;
123
+ /**
124
+ * The name of file system.
125
+ */
126
+ fsName?: pulumi.Input<string>;
127
+ /**
128
+ * Whether is default access.
129
+ */
130
+ isDefault?: pulumi.Input<boolean>;
131
+ /**
132
+ * The id of security group.
133
+ */
134
+ securityGroupId?: pulumi.Input<string>;
135
+ /**
136
+ * Status of access.
137
+ */
138
+ status?: pulumi.Input<string>;
139
+ /**
140
+ * The id of subnet.
141
+ */
142
+ subnetId?: pulumi.Input<string>;
143
+ /**
144
+ * The id of vpc.
145
+ */
146
+ vpcId?: pulumi.Input<string>;
147
+ /**
148
+ * Whether enable all vpc route.
149
+ */
150
+ vpcRouteEnabled?: pulumi.Input<boolean>;
151
+ }
152
+ /**
153
+ * The set of arguments for constructing a Access resource.
154
+ */
155
+ export interface AccessArgs {
156
+ /**
157
+ * The account id of access.
158
+ */
159
+ accessAccountId?: pulumi.Input<number>;
160
+ /**
161
+ * The iam role of access. If the VPC of another account is attached, the other account needs to create a role with CFSCacheAccess permission, and enter the role name as a parameter.
162
+ */
163
+ accessIamRole?: pulumi.Input<string>;
164
+ /**
165
+ * The name of file system.
166
+ */
167
+ fsName: pulumi.Input<string>;
168
+ /**
169
+ * The id of security group.
170
+ */
171
+ securityGroupId: pulumi.Input<string>;
172
+ /**
173
+ * The id of subnet.
174
+ */
175
+ subnetId: pulumi.Input<string>;
176
+ /**
177
+ * Whether enable all vpc route.
178
+ */
179
+ vpcRouteEnabled?: pulumi.Input<boolean>;
180
+ }
@@ -0,0 +1,104 @@
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.Access = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Provides a resource to manage cloudfs access
10
+ * ## Example Usage
11
+ *
12
+ * ```typescript
13
+ * import * as pulumi from "@pulumi/pulumi";
14
+ * import * as volcengine from "@volcengine/pulumi";
15
+ *
16
+ * const foo1 = new volcengine.cloudfs.Access("foo1", {
17
+ * fsName: "tftest2",
18
+ * securityGroupId: "sg-rrv1klfg5s00v0x578mx14m",
19
+ * subnetId: "subnet-13fca1crr5d6o3n6nu46cyb5m",
20
+ * vpcRouteEnabled: false,
21
+ * });
22
+ * ```
23
+ *
24
+ * ## Import
25
+ *
26
+ * CloudFs Access can be imported using the FsName:AccessId, e.g.
27
+ *
28
+ * ```sh
29
+ * $ pulumi import volcengine:cloudfs/access:Access default tfname:access-**rdgmedx3fow
30
+ * ```
31
+ */
32
+ class Access extends pulumi.CustomResource {
33
+ /**
34
+ * Get an existing Access resource's state with the given name, ID, and optional extra
35
+ * properties used to qualify the lookup.
36
+ *
37
+ * @param name The _unique_ name of the resulting resource.
38
+ * @param id The _unique_ provider ID of the resource to lookup.
39
+ * @param state Any extra arguments used during the lookup.
40
+ * @param opts Optional settings to control the behavior of the CustomResource.
41
+ */
42
+ static get(name, id, state, opts) {
43
+ return new Access(name, state, Object.assign(Object.assign({}, opts), { id: id }));
44
+ }
45
+ /**
46
+ * Returns true if the given object is an instance of Access. This is designed to work even
47
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
48
+ */
49
+ static isInstance(obj) {
50
+ if (obj === undefined || obj === null) {
51
+ return false;
52
+ }
53
+ return obj['__pulumiType'] === Access.__pulumiType;
54
+ }
55
+ constructor(name, argsOrState, opts) {
56
+ let resourceInputs = {};
57
+ opts = opts || {};
58
+ if (opts.id) {
59
+ const state = argsOrState;
60
+ resourceInputs["accessAccountId"] = state ? state.accessAccountId : undefined;
61
+ resourceInputs["accessIamRole"] = state ? state.accessIamRole : undefined;
62
+ resourceInputs["accessId"] = state ? state.accessId : undefined;
63
+ resourceInputs["accessServiceName"] = state ? state.accessServiceName : undefined;
64
+ resourceInputs["createdTime"] = state ? state.createdTime : undefined;
65
+ resourceInputs["fsName"] = state ? state.fsName : undefined;
66
+ resourceInputs["isDefault"] = state ? state.isDefault : undefined;
67
+ resourceInputs["securityGroupId"] = state ? state.securityGroupId : undefined;
68
+ resourceInputs["status"] = state ? state.status : undefined;
69
+ resourceInputs["subnetId"] = state ? state.subnetId : undefined;
70
+ resourceInputs["vpcId"] = state ? state.vpcId : undefined;
71
+ resourceInputs["vpcRouteEnabled"] = state ? state.vpcRouteEnabled : undefined;
72
+ }
73
+ else {
74
+ const args = argsOrState;
75
+ if ((!args || args.fsName === undefined) && !opts.urn) {
76
+ throw new Error("Missing required property 'fsName'");
77
+ }
78
+ if ((!args || args.securityGroupId === undefined) && !opts.urn) {
79
+ throw new Error("Missing required property 'securityGroupId'");
80
+ }
81
+ if ((!args || args.subnetId === undefined) && !opts.urn) {
82
+ throw new Error("Missing required property 'subnetId'");
83
+ }
84
+ resourceInputs["accessAccountId"] = args ? args.accessAccountId : undefined;
85
+ resourceInputs["accessIamRole"] = args ? args.accessIamRole : undefined;
86
+ resourceInputs["fsName"] = args ? args.fsName : undefined;
87
+ resourceInputs["securityGroupId"] = args ? args.securityGroupId : undefined;
88
+ resourceInputs["subnetId"] = args ? args.subnetId : undefined;
89
+ resourceInputs["vpcRouteEnabled"] = args ? args.vpcRouteEnabled : undefined;
90
+ resourceInputs["accessId"] = undefined /*out*/;
91
+ resourceInputs["accessServiceName"] = undefined /*out*/;
92
+ resourceInputs["createdTime"] = undefined /*out*/;
93
+ resourceInputs["isDefault"] = undefined /*out*/;
94
+ resourceInputs["status"] = undefined /*out*/;
95
+ resourceInputs["vpcId"] = undefined /*out*/;
96
+ }
97
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
98
+ super(Access.__pulumiType, name, resourceInputs, opts);
99
+ }
100
+ }
101
+ exports.Access = Access;
102
+ /** @internal */
103
+ Access.__pulumiType = 'volcengine:cloudfs/access:Access';
104
+ //# sourceMappingURL=access.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"access.js","sourceRoot":"","sources":["../../cloudfs/access.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,78 @@
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 cloudfs accesses
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as volcengine from "@pulumi/volcengine";
10
+ *
11
+ * const default = volcengine.cloudfs.Accesses({
12
+ * fsName: "tftest2",
13
+ * });
14
+ * ```
15
+ */
16
+ export declare function accesses(args: AccessesArgs, opts?: pulumi.InvokeOptions): Promise<AccessesResult>;
17
+ /**
18
+ * A collection of arguments for invoking Accesses.
19
+ */
20
+ export interface AccessesArgs {
21
+ /**
22
+ * The name of file system.
23
+ */
24
+ fsName: string;
25
+ /**
26
+ * File name where to save data source results.
27
+ */
28
+ outputFile?: string;
29
+ }
30
+ /**
31
+ * A collection of values returned by Accesses.
32
+ */
33
+ export interface AccessesResult {
34
+ /**
35
+ * The collection of query.
36
+ */
37
+ readonly accesses: outputs.cloudfs.AccessesAccess[];
38
+ /**
39
+ * The name of cloud fs.
40
+ */
41
+ readonly fsName: string;
42
+ /**
43
+ * The provider-assigned unique ID for this managed resource.
44
+ */
45
+ readonly id: string;
46
+ readonly outputFile?: string;
47
+ /**
48
+ * The total count of query.
49
+ */
50
+ readonly totalCount: number;
51
+ }
52
+ /**
53
+ * Use this data source to query detailed information of cloudfs accesses
54
+ * ## Example Usage
55
+ *
56
+ * ```typescript
57
+ * import * as pulumi from "@pulumi/pulumi";
58
+ * import * as volcengine from "@pulumi/volcengine";
59
+ *
60
+ * const default = volcengine.cloudfs.Accesses({
61
+ * fsName: "tftest2",
62
+ * });
63
+ * ```
64
+ */
65
+ export declare function accessesOutput(args: AccessesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<AccessesResult>;
66
+ /**
67
+ * A collection of arguments for invoking Accesses.
68
+ */
69
+ export interface AccessesOutputArgs {
70
+ /**
71
+ * The name of file system.
72
+ */
73
+ fsName: pulumi.Input<string>;
74
+ /**
75
+ * File name where to save data source results.
76
+ */
77
+ outputFile?: pulumi.Input<string>;
78
+ }
@@ -0,0 +1,46 @@
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.accessesOutput = exports.accesses = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * Use this data source to query detailed information of cloudfs accesses
10
+ * ## Example Usage
11
+ *
12
+ * ```typescript
13
+ * import * as pulumi from "@pulumi/pulumi";
14
+ * import * as volcengine from "@pulumi/volcengine";
15
+ *
16
+ * const default = volcengine.cloudfs.Accesses({
17
+ * fsName: "tftest2",
18
+ * });
19
+ * ```
20
+ */
21
+ function accesses(args, opts) {
22
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
23
+ return pulumi.runtime.invoke("volcengine:cloudfs/accesses:Accesses", {
24
+ "fsName": args.fsName,
25
+ "outputFile": args.outputFile,
26
+ }, opts);
27
+ }
28
+ exports.accesses = accesses;
29
+ /**
30
+ * Use this data source to query detailed information of cloudfs accesses
31
+ * ## Example Usage
32
+ *
33
+ * ```typescript
34
+ * import * as pulumi from "@pulumi/pulumi";
35
+ * import * as volcengine from "@pulumi/volcengine";
36
+ *
37
+ * const default = volcengine.cloudfs.Accesses({
38
+ * fsName: "tftest2",
39
+ * });
40
+ * ```
41
+ */
42
+ function accessesOutput(args, opts) {
43
+ return pulumi.output(args).apply((a) => accesses(a, opts));
44
+ }
45
+ exports.accessesOutput = accessesOutput;
46
+ //# sourceMappingURL=accesses.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accesses.js","sourceRoot":"","sources":["../../cloudfs/accesses.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;GAYG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,4BAOC;AAsCD;;;;;;;;;;;;GAYG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}