@kengachu-pulumi/azure-native-storagemover 2.8.3

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 (92) hide show
  1. package/README.md +13 -0
  2. package/agent.d.ts +118 -0
  3. package/agent.js +100 -0
  4. package/endpoint.d.ts +69 -0
  5. package/endpoint.js +75 -0
  6. package/getAgent.d.ts +106 -0
  7. package/getAgent.js +27 -0
  8. package/getEndpoint.d.ts +65 -0
  9. package/getEndpoint.js +27 -0
  10. package/getJobDefinition.d.ts +125 -0
  11. package/getJobDefinition.js +28 -0
  12. package/getProject.d.ts +69 -0
  13. package/getProject.js +27 -0
  14. package/getStorageMover.d.ts +71 -0
  15. package/getStorageMover.js +26 -0
  16. package/index.d.ts +34 -0
  17. package/index.js +72 -0
  18. package/jobDefinition.d.ts +149 -0
  19. package/jobDefinition.js +111 -0
  20. package/package.json +33 -0
  21. package/project.d.ts +73 -0
  22. package/project.js +74 -0
  23. package/storageMover.d.ts +89 -0
  24. package/storageMover.js +74 -0
  25. package/types/enums.d.ts +16 -0
  26. package/types/enums.js +17 -0
  27. package/types/index.d.ts +3 -0
  28. package/types/index.js +7 -0
  29. package/types/input.d.ts +44 -0
  30. package/types/input.js +3 -0
  31. package/types/output.d.ts +89 -0
  32. package/types/output.js +3 -0
  33. package/v20230301/agent.d.ts +117 -0
  34. package/v20230301/agent.js +99 -0
  35. package/v20230301/endpoint.d.ts +68 -0
  36. package/v20230301/endpoint.js +74 -0
  37. package/v20230301/getAgent.d.ts +104 -0
  38. package/v20230301/getAgent.js +25 -0
  39. package/v20230301/getEndpoint.d.ts +63 -0
  40. package/v20230301/getEndpoint.js +25 -0
  41. package/v20230301/getJobDefinition.d.ts +123 -0
  42. package/v20230301/getJobDefinition.js +26 -0
  43. package/v20230301/getProject.d.ts +67 -0
  44. package/v20230301/getProject.js +25 -0
  45. package/v20230301/getStorageMover.d.ts +69 -0
  46. package/v20230301/getStorageMover.js +24 -0
  47. package/v20230301/index.d.ts +31 -0
  48. package/v20230301/index.js +67 -0
  49. package/v20230301/jobDefinition.d.ts +148 -0
  50. package/v20230301/jobDefinition.js +110 -0
  51. package/v20230301/project.d.ts +72 -0
  52. package/v20230301/project.js +73 -0
  53. package/v20230301/storageMover.d.ts +88 -0
  54. package/v20230301/storageMover.js +73 -0
  55. package/v20230301/types/enums.d.ts +16 -0
  56. package/v20230301/types/enums.js +17 -0
  57. package/v20230301/types/index.d.ts +3 -0
  58. package/v20230301/types/index.js +7 -0
  59. package/v20230301/types/input.d.ts +44 -0
  60. package/v20230301/types/input.js +3 -0
  61. package/v20230301/types/output.d.ts +89 -0
  62. package/v20230301/types/output.js +3 -0
  63. package/v20230701preview/agent.d.ts +117 -0
  64. package/v20230701preview/agent.js +99 -0
  65. package/v20230701preview/endpoint.d.ts +68 -0
  66. package/v20230701preview/endpoint.js +74 -0
  67. package/v20230701preview/getAgent.d.ts +104 -0
  68. package/v20230701preview/getAgent.js +25 -0
  69. package/v20230701preview/getEndpoint.d.ts +63 -0
  70. package/v20230701preview/getEndpoint.js +25 -0
  71. package/v20230701preview/getJobDefinition.d.ts +123 -0
  72. package/v20230701preview/getJobDefinition.js +26 -0
  73. package/v20230701preview/getProject.d.ts +67 -0
  74. package/v20230701preview/getProject.js +25 -0
  75. package/v20230701preview/getStorageMover.d.ts +69 -0
  76. package/v20230701preview/getStorageMover.js +24 -0
  77. package/v20230701preview/index.d.ts +31 -0
  78. package/v20230701preview/index.js +67 -0
  79. package/v20230701preview/jobDefinition.d.ts +148 -0
  80. package/v20230701preview/jobDefinition.js +110 -0
  81. package/v20230701preview/project.d.ts +72 -0
  82. package/v20230701preview/project.js +73 -0
  83. package/v20230701preview/storageMover.d.ts +88 -0
  84. package/v20230701preview/storageMover.js +73 -0
  85. package/v20230701preview/types/enums.d.ts +22 -0
  86. package/v20230701preview/types/enums.js +22 -0
  87. package/v20230701preview/types/index.d.ts +3 -0
  88. package/v20230701preview/types/index.js +7 -0
  89. package/v20230701preview/types/input.d.ts +116 -0
  90. package/v20230701preview/types/input.js +3 -0
  91. package/v20230701preview/types/output.d.ts +169 -0
  92. package/v20230701preview/types/output.js +3 -0
@@ -0,0 +1,111 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.JobDefinition = void 0;
4
+ const pulumi = require("@pulumi/pulumi");
5
+ const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
6
+ /**
7
+ * The Job Definition resource.
8
+ * Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2022-07-01-preview
9
+ */
10
+ class JobDefinition extends pulumi.CustomResource {
11
+ /**
12
+ * Get an existing JobDefinition resource's state with the given name, ID, and optional extra
13
+ * properties used to qualify the lookup.
14
+ *
15
+ * @param name The _unique_ name of the resulting resource.
16
+ * @param id The _unique_ provider ID of the resource to lookup.
17
+ * @param opts Optional settings to control the behavior of the CustomResource.
18
+ */
19
+ static get(name, id, opts) {
20
+ return new JobDefinition(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
21
+ }
22
+ /**
23
+ * Returns true if the given object is an instance of JobDefinition. This is designed to work even
24
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
25
+ */
26
+ static isInstance(obj) {
27
+ if (obj === undefined || obj === null) {
28
+ return false;
29
+ }
30
+ return obj['__pulumiType'] === JobDefinition.__pulumiType;
31
+ }
32
+ /**
33
+ * Create a JobDefinition resource with the given unique name, arguments, and options.
34
+ *
35
+ * @param name The _unique_ name of the resource.
36
+ * @param args The arguments to use to populate this resource's properties.
37
+ * @param opts A bag of options that control this resource's behavior.
38
+ */
39
+ constructor(name, args, opts) {
40
+ let resourceInputs = {};
41
+ opts = opts || {};
42
+ if (!opts.id) {
43
+ if ((!args || args.copyMode === undefined) && !opts.urn) {
44
+ throw new Error("Missing required property 'copyMode'");
45
+ }
46
+ if ((!args || args.projectName === undefined) && !opts.urn) {
47
+ throw new Error("Missing required property 'projectName'");
48
+ }
49
+ if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
50
+ throw new Error("Missing required property 'resourceGroupName'");
51
+ }
52
+ if ((!args || args.sourceName === undefined) && !opts.urn) {
53
+ throw new Error("Missing required property 'sourceName'");
54
+ }
55
+ if ((!args || args.storageMoverName === undefined) && !opts.urn) {
56
+ throw new Error("Missing required property 'storageMoverName'");
57
+ }
58
+ if ((!args || args.targetName === undefined) && !opts.urn) {
59
+ throw new Error("Missing required property 'targetName'");
60
+ }
61
+ resourceInputs["agentName"] = args ? args.agentName : undefined;
62
+ resourceInputs["copyMode"] = args ? args.copyMode : undefined;
63
+ resourceInputs["description"] = args ? args.description : undefined;
64
+ resourceInputs["jobDefinitionName"] = args ? args.jobDefinitionName : undefined;
65
+ resourceInputs["projectName"] = args ? args.projectName : undefined;
66
+ resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
67
+ resourceInputs["sourceName"] = args ? args.sourceName : undefined;
68
+ resourceInputs["sourceSubpath"] = args ? args.sourceSubpath : undefined;
69
+ resourceInputs["storageMoverName"] = args ? args.storageMoverName : undefined;
70
+ resourceInputs["targetName"] = args ? args.targetName : undefined;
71
+ resourceInputs["targetSubpath"] = args ? args.targetSubpath : undefined;
72
+ resourceInputs["agentResourceId"] = undefined /*out*/;
73
+ resourceInputs["latestJobRunName"] = undefined /*out*/;
74
+ resourceInputs["latestJobRunResourceId"] = undefined /*out*/;
75
+ resourceInputs["latestJobRunStatus"] = undefined /*out*/;
76
+ resourceInputs["name"] = undefined /*out*/;
77
+ resourceInputs["provisioningState"] = undefined /*out*/;
78
+ resourceInputs["sourceResourceId"] = undefined /*out*/;
79
+ resourceInputs["systemData"] = undefined /*out*/;
80
+ resourceInputs["targetResourceId"] = undefined /*out*/;
81
+ resourceInputs["type"] = undefined /*out*/;
82
+ }
83
+ else {
84
+ resourceInputs["agentName"] = undefined /*out*/;
85
+ resourceInputs["agentResourceId"] = undefined /*out*/;
86
+ resourceInputs["copyMode"] = undefined /*out*/;
87
+ resourceInputs["description"] = undefined /*out*/;
88
+ resourceInputs["latestJobRunName"] = undefined /*out*/;
89
+ resourceInputs["latestJobRunResourceId"] = undefined /*out*/;
90
+ resourceInputs["latestJobRunStatus"] = undefined /*out*/;
91
+ resourceInputs["name"] = undefined /*out*/;
92
+ resourceInputs["provisioningState"] = undefined /*out*/;
93
+ resourceInputs["sourceName"] = undefined /*out*/;
94
+ resourceInputs["sourceResourceId"] = undefined /*out*/;
95
+ resourceInputs["sourceSubpath"] = undefined /*out*/;
96
+ resourceInputs["systemData"] = undefined /*out*/;
97
+ resourceInputs["targetName"] = undefined /*out*/;
98
+ resourceInputs["targetResourceId"] = undefined /*out*/;
99
+ resourceInputs["targetSubpath"] = undefined /*out*/;
100
+ resourceInputs["type"] = undefined /*out*/;
101
+ }
102
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
103
+ const aliasOpts = { aliases: [{ type: "azure-native:storagemover/v20220701preview:JobDefinition" }, { type: "azure-native:storagemover/v20230301:JobDefinition" }, { type: "azure-native:storagemover/v20230701preview:JobDefinition" }] };
104
+ opts = pulumi.mergeOptions(opts, aliasOpts);
105
+ super(JobDefinition.__pulumiType, name, resourceInputs, opts);
106
+ }
107
+ }
108
+ exports.JobDefinition = JobDefinition;
109
+ /** @internal */
110
+ JobDefinition.__pulumiType = 'azure-native:storagemover:JobDefinition';
111
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiam9iRGVmaW5pdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImpvYkRlZmluaXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUNBQXlDO0FBQ3pDLDBFQUEwRTtBQUUxRTs7O0dBR0c7QUFDSCxNQUFhLGFBQWMsU0FBUSxNQUFNLENBQUMsY0FBYztJQUNwRDs7Ozs7OztPQU9HO0lBQ0ksTUFBTSxDQUFDLEdBQUcsQ0FBQyxJQUFZLEVBQUUsRUFBMkIsRUFBRSxJQUFtQztRQUM1RixPQUFPLElBQUksYUFBYSxDQUFDLElBQUksRUFBRSxTQUFnQixrQ0FBTyxJQUFJLEtBQUUsRUFBRSxFQUFFLEVBQUUsSUFBRyxDQUFDO0lBQzFFLENBQUM7SUFLRDs7O09BR0c7SUFDSSxNQUFNLENBQUMsVUFBVSxDQUFDLEdBQVE7UUFDN0IsSUFBSSxHQUFHLEtBQUssU0FBUyxJQUFJLEdBQUcsS0FBSyxJQUFJLEVBQUU7WUFDbkMsT0FBTyxLQUFLLENBQUM7U0FDaEI7UUFDRCxPQUFPLEdBQUcsQ0FBQyxjQUFjLENBQUMsS0FBSyxhQUFhLENBQUMsWUFBWSxDQUFDO0lBQzlELENBQUM7SUF1RUQ7Ozs7OztPQU1HO0lBQ0gsWUFBWSxJQUFZLEVBQUUsSUFBdUIsRUFBRSxJQUFtQztRQUNsRixJQUFJLGNBQWMsR0FBa0IsRUFBRSxDQUFDO1FBQ3ZDLElBQUksR0FBRyxJQUFJLElBQUksRUFBRSxDQUFDO1FBQ2xCLElBQUksQ0FBQyxJQUFJLENBQUMsRUFBRSxFQUFFO1lBQ1YsSUFBSSxDQUFDLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxRQUFRLEtBQUssU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFO2dCQUNyRCxNQUFNLElBQUksS0FBSyxDQUFDLHNDQUFzQyxDQUFDLENBQUM7YUFDM0Q7WUFDRCxJQUFJLENBQUMsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLFdBQVcsS0FBSyxTQUFTLENBQUMsSUFBSSxDQUFD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
package/package.json ADDED
@@ -0,0 +1,33 @@
1
+ {
2
+ "name": "@kengachu-pulumi/azure-native-storagemover",
3
+ "version": "2.8.3",
4
+ "description": "Pulumi Azure Native package for storagemover",
5
+ "keywords": [
6
+ "pulumi",
7
+ "azure",
8
+ "azure-native",
9
+ "category/cloud",
10
+ "kind/native"
11
+ ],
12
+ "homepage": "https://pulumi.com",
13
+ "repository": {
14
+ "url": "git+https://github.com/Ankvi/pulumi-azure-native.git",
15
+ "type": "git"
16
+ },
17
+ "dependencies": {
18
+ "@pulumi/pulumi": "^3.0.0",
19
+ "@kengachu-pulumi/azure-native-core": "^2.8.3"
20
+ },
21
+ "publishConfig": {
22
+ "access": "public"
23
+ },
24
+ "devDependencies": {
25
+ "typescript": "^5.0.0",
26
+ "@types/node": "^20.0.0"
27
+ },
28
+ "scripts": {
29
+ "build": "tsc",
30
+ "lint": "tsc --noEmit",
31
+ "prepublish": "test -f index.js"
32
+ }
33
+ }
package/project.d.ts ADDED
@@ -0,0 +1,73 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as types from "./types";
3
+ /**
4
+ * The Project resource.
5
+ * Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2022-07-01-preview
6
+ */
7
+ export declare class Project extends pulumi.CustomResource {
8
+ /**
9
+ * Get an existing Project resource's state with the given name, ID, and optional extra
10
+ * properties used to qualify the lookup.
11
+ *
12
+ * @param name The _unique_ name of the resulting resource.
13
+ * @param id The _unique_ provider ID of the resource to lookup.
14
+ * @param opts Optional settings to control the behavior of the CustomResource.
15
+ */
16
+ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Project;
17
+ /** @internal */
18
+ static readonly __pulumiType = "azure-native:storagemover:Project";
19
+ /**
20
+ * Returns true if the given object is an instance of Project. This is designed to work even
21
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
22
+ */
23
+ static isInstance(obj: any): obj is Project;
24
+ /**
25
+ * A description for the Project.
26
+ */
27
+ readonly description: pulumi.Output<string | undefined>;
28
+ /**
29
+ * The name of the resource
30
+ */
31
+ readonly name: pulumi.Output<string>;
32
+ /**
33
+ * The provisioning state of this resource.
34
+ */
35
+ readonly provisioningState: pulumi.Output<string>;
36
+ /**
37
+ * Resource system metadata.
38
+ */
39
+ readonly systemData: pulumi.Output<types.outputs.SystemDataResponse>;
40
+ /**
41
+ * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
42
+ */
43
+ readonly type: pulumi.Output<string>;
44
+ /**
45
+ * Create a Project resource with the given unique name, arguments, and options.
46
+ *
47
+ * @param name The _unique_ name of the resource.
48
+ * @param args The arguments to use to populate this resource's properties.
49
+ * @param opts A bag of options that control this resource's behavior.
50
+ */
51
+ constructor(name: string, args: ProjectArgs, opts?: pulumi.CustomResourceOptions);
52
+ }
53
+ /**
54
+ * The set of arguments for constructing a Project resource.
55
+ */
56
+ export interface ProjectArgs {
57
+ /**
58
+ * A description for the Project.
59
+ */
60
+ description?: pulumi.Input<string>;
61
+ /**
62
+ * The name of the Project resource.
63
+ */
64
+ projectName?: pulumi.Input<string>;
65
+ /**
66
+ * The name of the resource group. The name is case insensitive.
67
+ */
68
+ resourceGroupName: pulumi.Input<string>;
69
+ /**
70
+ * The name of the Storage Mover resource.
71
+ */
72
+ storageMoverName: pulumi.Input<string>;
73
+ }
package/project.js ADDED
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Project = void 0;
4
+ const pulumi = require("@pulumi/pulumi");
5
+ const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
6
+ /**
7
+ * The Project resource.
8
+ * Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2022-07-01-preview
9
+ */
10
+ class Project extends pulumi.CustomResource {
11
+ /**
12
+ * Get an existing Project resource's state with the given name, ID, and optional extra
13
+ * properties used to qualify the lookup.
14
+ *
15
+ * @param name The _unique_ name of the resulting resource.
16
+ * @param id The _unique_ provider ID of the resource to lookup.
17
+ * @param opts Optional settings to control the behavior of the CustomResource.
18
+ */
19
+ static get(name, id, opts) {
20
+ return new Project(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
21
+ }
22
+ /**
23
+ * Returns true if the given object is an instance of Project. This is designed to work even
24
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
25
+ */
26
+ static isInstance(obj) {
27
+ if (obj === undefined || obj === null) {
28
+ return false;
29
+ }
30
+ return obj['__pulumiType'] === Project.__pulumiType;
31
+ }
32
+ /**
33
+ * Create a Project resource with the given unique name, arguments, and options.
34
+ *
35
+ * @param name The _unique_ name of the resource.
36
+ * @param args The arguments to use to populate this resource's properties.
37
+ * @param opts A bag of options that control this resource's behavior.
38
+ */
39
+ constructor(name, args, opts) {
40
+ let resourceInputs = {};
41
+ opts = opts || {};
42
+ if (!opts.id) {
43
+ if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
44
+ throw new Error("Missing required property 'resourceGroupName'");
45
+ }
46
+ if ((!args || args.storageMoverName === undefined) && !opts.urn) {
47
+ throw new Error("Missing required property 'storageMoverName'");
48
+ }
49
+ resourceInputs["description"] = args ? args.description : undefined;
50
+ resourceInputs["projectName"] = args ? args.projectName : undefined;
51
+ resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
52
+ resourceInputs["storageMoverName"] = args ? args.storageMoverName : undefined;
53
+ resourceInputs["name"] = undefined /*out*/;
54
+ resourceInputs["provisioningState"] = undefined /*out*/;
55
+ resourceInputs["systemData"] = undefined /*out*/;
56
+ resourceInputs["type"] = undefined /*out*/;
57
+ }
58
+ else {
59
+ resourceInputs["description"] = undefined /*out*/;
60
+ resourceInputs["name"] = undefined /*out*/;
61
+ resourceInputs["provisioningState"] = undefined /*out*/;
62
+ resourceInputs["systemData"] = undefined /*out*/;
63
+ resourceInputs["type"] = undefined /*out*/;
64
+ }
65
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
66
+ const aliasOpts = { aliases: [{ type: "azure-native:storagemover/v20220701preview:Project" }, { type: "azure-native:storagemover/v20230301:Project" }, { type: "azure-native:storagemover/v20230701preview:Project" }] };
67
+ opts = pulumi.mergeOptions(opts, aliasOpts);
68
+ super(Project.__pulumiType, name, resourceInputs, opts);
69
+ }
70
+ }
71
+ exports.Project = Project;
72
+ /** @internal */
73
+ Project.__pulumiType = 'azure-native:storagemover:Project';
74
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvamVjdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbInByb2plY3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUNBQXlDO0FBQ3pDLDBFQUEwRTtBQUUxRTs7O0dBR0c7QUFDSCxNQUFhLE9BQVEsU0FBUSxNQUFNLENBQUMsY0FBYztJQUM5Qzs7Ozs7OztPQU9HO0lBQ0ksTUFBTSxDQUFDLEdBQUcsQ0FBQyxJQUFZLEVBQUUsRUFBMkIsRUFBRSxJQUFtQztRQUM1RixPQUFPLElBQUksT0FBTyxDQUFDLElBQUksRUFBRSxTQUFnQixrQ0FBTyxJQUFJLEtBQUUsRUFBRSxFQUFFLEVBQUUsSUFBRyxDQUFDO0lBQ3BFLENBQUM7SUFLRDs7O09BR0c7SUFDSSxNQUFNLENBQUMsVUFBVSxDQUFDLEdBQVE7UUFDN0IsSUFBSSxHQUFHLEtBQUssU0FBUyxJQUFJLEdBQUcsS0FBSyxJQUFJLEVBQUU7WUFDbkMsT0FBTyxLQUFLLENBQUM7U0FDaEI7UUFDRCxPQUFPLEdBQUcsQ0FBQyxjQUFjLENBQUMsS0FBSyxPQUFPLENBQUMsWUFBWSxDQUFDO0lBQ3hELENBQUM7SUF1QkQ7Ozs7OztPQU1HO0lBQ0gsWUFBWSxJQUFZLEVBQUUsSUFBaUIsRUFBRSxJQUFtQztRQUM1RSxJQUFJLGNBQWMsR0FBa0IsRUFBRSxDQUFDO1FBQ3ZDLElBQUksR0FBRyxJQUFJLElBQUksRUFBRSxDQUFDO1FBQ2xCLElBQUksQ0FBQyxJQUFJLENBQUMsRUFBRSxFQUFFO1lBQ1YsSUFBSSxDQUFDLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxpQkFBaUIsS0FBSyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQzlELE1BQU0sSUFBSSxLQUFLLENBQUMsK0NBQStDLENBQUMsQ0FBQzthQUNwRTtZQUNELElBQUksQ0FBQyxDQUFDLElBQUksSUFBSSxJQUFJLENBQUMsZ0JBQWdCLEtBQUssU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFO2dCQUM3RCxNQUFNLElBQUksS0FBSyxDQUFDLDhDQUE4QyxDQUFDLENBQUM7YUFDbkU7WUFDRCxjQUFjLENBQUMsYUFBYSxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDcEUsY0FBYyxDQUFDLGFBQWEsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDO1lBQ3BFLGNBQWMsQ0FBQyxtQkFBbUIsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDaEYsY0FBYyxDQUFDLGtCQUFrQixDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUM5RSxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMzQyxjQUFjLENBQUMsbUJBQW1CLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3hELGNBQWMsQ0FBQyxZQUFZLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2pELGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1NBQzlDO2FBQU07WUFDSCxjQUFjLENBQUMsYUFBYSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNsRCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMzQyxjQUFjLENBQUMsbUJBQW1CLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3hELGNBQWMsQ0FBQyxZQUFZLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2pELGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1NBQzlDO1FBQ0QsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxDQUFDLENBQUM7UUFDbkUsTUFBTSxTQUFTLEdBQUcsRUFBRSxPQUFPLEVBQUUsQ0FBQyxFQUFFLElBQUksRUFBRSxvREFBb0QsRUFBRSxFQUFFLEVBQUUsSUFBSSxFQUFFLDZDQUE2QyxFQUFFLEVBQUUsRUFBRSxJQUFJLEVBQUUsb0RBQW9ELEVBQUUsQ0FBQyxFQUFFLENBQUM7UUFDek4sSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsSUFBSSxFQUFFLFNBQVMsQ0FBQyxDQUFDO1FBQzVDLEtBQUssQ0FBQyxPQUFPLENBQUMsWUFBWSxFQUFFLElBQUksRUFBRSxjQUFjLEVBQUUsSUFBSSxDQUFDLENBQUM7SUFDNUQsQ0FBQzs7QUFwRkwsMEJBcUZDO0FBeEVHLGdCQUFnQjtBQUNPLG9CQUFZLEdBQUcsbUNBQW1DLENBQUMifQ==
@@ -0,0 +1,89 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as types from "./types";
3
+ /**
4
+ * The Storage Mover resource, which is a container for a group of Agents, Projects, and Endpoints.
5
+ * Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2022-07-01-preview
6
+ */
7
+ export declare class StorageMover extends pulumi.CustomResource {
8
+ /**
9
+ * Get an existing StorageMover resource's state with the given name, ID, and optional extra
10
+ * properties used to qualify the lookup.
11
+ *
12
+ * @param name The _unique_ name of the resulting resource.
13
+ * @param id The _unique_ provider ID of the resource to lookup.
14
+ * @param opts Optional settings to control the behavior of the CustomResource.
15
+ */
16
+ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): StorageMover;
17
+ /** @internal */
18
+ static readonly __pulumiType = "azure-native:storagemover:StorageMover";
19
+ /**
20
+ * Returns true if the given object is an instance of StorageMover. This is designed to work even
21
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
22
+ */
23
+ static isInstance(obj: any): obj is StorageMover;
24
+ /**
25
+ * A description for the Storage Mover.
26
+ */
27
+ readonly description: pulumi.Output<string | undefined>;
28
+ /**
29
+ * The geo-location where the resource lives
30
+ */
31
+ readonly location: pulumi.Output<string>;
32
+ /**
33
+ * The name of the resource
34
+ */
35
+ readonly name: pulumi.Output<string>;
36
+ /**
37
+ * The provisioning state of this resource.
38
+ */
39
+ readonly provisioningState: pulumi.Output<string>;
40
+ /**
41
+ * Resource system metadata.
42
+ */
43
+ readonly systemData: pulumi.Output<types.outputs.SystemDataResponse>;
44
+ /**
45
+ * Resource tags.
46
+ */
47
+ readonly tags: pulumi.Output<{
48
+ [key: string]: string;
49
+ } | undefined>;
50
+ /**
51
+ * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
52
+ */
53
+ readonly type: pulumi.Output<string>;
54
+ /**
55
+ * Create a StorageMover resource with the given unique name, arguments, and options.
56
+ *
57
+ * @param name The _unique_ name of the resource.
58
+ * @param args The arguments to use to populate this resource's properties.
59
+ * @param opts A bag of options that control this resource's behavior.
60
+ */
61
+ constructor(name: string, args: StorageMoverArgs, opts?: pulumi.CustomResourceOptions);
62
+ }
63
+ /**
64
+ * The set of arguments for constructing a StorageMover resource.
65
+ */
66
+ export interface StorageMoverArgs {
67
+ /**
68
+ * A description for the Storage Mover.
69
+ */
70
+ description?: pulumi.Input<string>;
71
+ /**
72
+ * The geo-location where the resource lives
73
+ */
74
+ location?: pulumi.Input<string>;
75
+ /**
76
+ * The name of the resource group. The name is case insensitive.
77
+ */
78
+ resourceGroupName: pulumi.Input<string>;
79
+ /**
80
+ * The name of the Storage Mover resource.
81
+ */
82
+ storageMoverName?: pulumi.Input<string>;
83
+ /**
84
+ * Resource tags.
85
+ */
86
+ tags?: pulumi.Input<{
87
+ [key: string]: pulumi.Input<string>;
88
+ }>;
89
+ }
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StorageMover = void 0;
4
+ const pulumi = require("@pulumi/pulumi");
5
+ const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
6
+ /**
7
+ * The Storage Mover resource, which is a container for a group of Agents, Projects, and Endpoints.
8
+ * Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2022-07-01-preview
9
+ */
10
+ class StorageMover extends pulumi.CustomResource {
11
+ /**
12
+ * Get an existing StorageMover resource's state with the given name, ID, and optional extra
13
+ * properties used to qualify the lookup.
14
+ *
15
+ * @param name The _unique_ name of the resulting resource.
16
+ * @param id The _unique_ provider ID of the resource to lookup.
17
+ * @param opts Optional settings to control the behavior of the CustomResource.
18
+ */
19
+ static get(name, id, opts) {
20
+ return new StorageMover(name, undefined, Object.assign(Object.assign({}, opts), { id: id }));
21
+ }
22
+ /**
23
+ * Returns true if the given object is an instance of StorageMover. This is designed to work even
24
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
25
+ */
26
+ static isInstance(obj) {
27
+ if (obj === undefined || obj === null) {
28
+ return false;
29
+ }
30
+ return obj['__pulumiType'] === StorageMover.__pulumiType;
31
+ }
32
+ /**
33
+ * Create a StorageMover resource with the given unique name, arguments, and options.
34
+ *
35
+ * @param name The _unique_ name of the resource.
36
+ * @param args The arguments to use to populate this resource's properties.
37
+ * @param opts A bag of options that control this resource's behavior.
38
+ */
39
+ constructor(name, args, opts) {
40
+ let resourceInputs = {};
41
+ opts = opts || {};
42
+ if (!opts.id) {
43
+ if ((!args || args.resourceGroupName === undefined) && !opts.urn) {
44
+ throw new Error("Missing required property 'resourceGroupName'");
45
+ }
46
+ resourceInputs["description"] = args ? args.description : undefined;
47
+ resourceInputs["location"] = args ? args.location : undefined;
48
+ resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
49
+ resourceInputs["storageMoverName"] = args ? args.storageMoverName : undefined;
50
+ resourceInputs["tags"] = args ? args.tags : undefined;
51
+ resourceInputs["name"] = undefined /*out*/;
52
+ resourceInputs["provisioningState"] = undefined /*out*/;
53
+ resourceInputs["systemData"] = undefined /*out*/;
54
+ resourceInputs["type"] = undefined /*out*/;
55
+ }
56
+ else {
57
+ resourceInputs["description"] = undefined /*out*/;
58
+ resourceInputs["location"] = undefined /*out*/;
59
+ resourceInputs["name"] = undefined /*out*/;
60
+ resourceInputs["provisioningState"] = undefined /*out*/;
61
+ resourceInputs["systemData"] = undefined /*out*/;
62
+ resourceInputs["tags"] = undefined /*out*/;
63
+ resourceInputs["type"] = undefined /*out*/;
64
+ }
65
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
66
+ const aliasOpts = { aliases: [{ type: "azure-native:storagemover/v20220701preview:StorageMover" }, { type: "azure-native:storagemover/v20230301:StorageMover" }, { type: "azure-native:storagemover/v20230701preview:StorageMover" }] };
67
+ opts = pulumi.mergeOptions(opts, aliasOpts);
68
+ super(StorageMover.__pulumiType, name, resourceInputs, opts);
69
+ }
70
+ }
71
+ exports.StorageMover = StorageMover;
72
+ /** @internal */
73
+ StorageMover.__pulumiType = 'azure-native:storagemover:StorageMover';
74
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoic3RvcmFnZU1vdmVyLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsic3RvcmFnZU1vdmVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQUFBLHlDQUF5QztBQUN6QywwRUFBMEU7QUFFMUU7OztHQUdHO0FBQ0gsTUFBYSxZQUFhLFNBQVEsTUFBTSxDQUFDLGNBQWM7SUFDbkQ7Ozs7Ozs7T0FPRztJQUNJLE1BQU0sQ0FBQyxHQUFHLENBQUMsSUFBWSxFQUFFLEVBQTJCLEVBQUUsSUFBbUM7UUFDNUYsT0FBTyxJQUFJLFlBQVksQ0FBQyxJQUFJLEVBQUUsU0FBZ0Isa0NBQU8sSUFBSSxLQUFFLEVBQUUsRUFBRSxFQUFFLElBQUcsQ0FBQztJQUN6RSxDQUFDO0lBS0Q7OztPQUdHO0lBQ0ksTUFBTSxDQUFDLFVBQVUsQ0FBQyxHQUFRO1FBQzdCLElBQUksR0FBRyxLQUFLLFNBQVMsSUFBSSxHQUFHLEtBQUssSUFBSSxFQUFFO1lBQ25DLE9BQU8sS0FBSyxDQUFDO1NBQ2hCO1FBQ0QsT0FBTyxHQUFHLENBQUMsY0FBYyxDQUFDLEtBQUssWUFBWSxDQUFDLFlBQVksQ0FBQztJQUM3RCxDQUFDO0lBK0JEOzs7Ozs7T0FNRztJQUNILFlBQVksSUFBWSxFQUFFLElBQXNCLEVBQUUsSUFBbUM7UUFDakYsSUFBSSxjQUFjLEdBQWtCLEVBQUUsQ0FBQztRQUN2QyxJQUFJLEdBQUcsSUFBSSxJQUFJLEVBQUUsQ0FBQztRQUNsQixJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUUsRUFBRTtZQUNWLElBQUksQ0FBQyxDQUFDLElBQUksSUFBSSxJQUFJLENBQUMsaUJBQWlCLEtBQUssU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFO2dCQUM5RCxNQUFNLElBQUksS0FBSyxDQUFDLCtDQUErQyxDQUFDLENBQUM7YUFDcEU7WUFDRCxjQUFjLENBQUMsYUFBYSxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDcEUsY0FBYyxDQUFDLFVBQVUsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDO1lBQzlELGNBQWMsQ0FBQyxtQkFBbUIsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDaEYsY0FBYyxDQUFDLGtCQUFrQixDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUM5RSxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDdEQsY0FBYyxDQUFDLE1BQU0sQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDM0MsY0FBYyxDQUFDLG1CQUFtQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUN4RCxjQUFjLENBQUMsWUFBWSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNqRCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztTQUM5QzthQUFNO1lBQ0gsY0FBYyxDQUFDLGFBQWEsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDbEQsY0FBYyxDQUFDLFVBQVUsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDL0MsY0FBYyxDQUFDLE1BQU0sQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDM0MsY0FBYyxDQUFDLG1CQUFtQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUN4RCxjQUFjLENBQUMsWUFBWSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNqRCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMzQyxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztTQUM5QztRQUNELElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO1FBQ25FLE1BQU0sU0FBUyxHQUFHLEVBQUUsT0FBTyxFQUFFLENBQUMsRUFBRSxJQUFJLEVBQUUseURBQXlELEVBQUUsRUFBRSxFQUFFLElBQUksRUFBRSxrREFBa0QsRUFBRSxFQUFFLEVBQUUsSUFBSSxFQUFFLHlEQUF5RCxFQUFFLENBQUMsRUFBRSxDQUFDO1FBQ3hPLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLElBQUksRUFBRSxTQUFTLENBQUMsQ0FBQztRQUM1QyxLQUFLLENBQUMsWUFBWSxDQUFDLFlBQVksRUFBRSxJQUFJLEVBQUUsY0FBYyxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQ2pFLENBQUM7O0FBNUZMLG9DQTZGQztBQWhGRyxnQkFBZ0I7QUFDTyx5QkFBWSxHQUFHLHdDQUF3QyxDQUFDIn0=
@@ -0,0 +1,16 @@
1
+ export declare const CopyMode: {
2
+ readonly Additive: "Additive";
3
+ readonly Mirror: "Mirror";
4
+ };
5
+ export type CopyMode = (typeof CopyMode)[keyof typeof CopyMode];
6
+ export declare const EndpointType: {
7
+ readonly AzureStorageBlobContainer: "AzureStorageBlobContainer";
8
+ readonly NfsMount: "NfsMount";
9
+ };
10
+ export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
11
+ export declare const NfsVersion: {
12
+ readonly NFSauto: "NFSauto";
13
+ readonly NFSv3: "NFSv3";
14
+ readonly NFSv4: "NFSv4";
15
+ };
16
+ export type NfsVersion = (typeof NfsVersion)[keyof typeof NfsVersion];
package/types/enums.js ADDED
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NfsVersion = exports.EndpointType = exports.CopyMode = void 0;
4
+ exports.CopyMode = {
5
+ Additive: "Additive",
6
+ Mirror: "Mirror",
7
+ };
8
+ exports.EndpointType = {
9
+ AzureStorageBlobContainer: "AzureStorageBlobContainer",
10
+ NfsMount: "NfsMount",
11
+ };
12
+ exports.NfsVersion = {
13
+ NFSauto: "NFSauto",
14
+ NFSv3: "NFSv3",
15
+ NFSv4: "NFSv4",
16
+ };
17
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW51bXMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJlbnVtcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBYSxRQUFBLFFBQVEsR0FBRztJQUNwQixRQUFRLEVBQUUsVUFBVTtJQUNwQixNQUFNLEVBQUUsUUFBUTtDQUNWLENBQUM7QUFJRSxRQUFBLFlBQVksR0FBRztJQUN4Qix5QkFBeUIsRUFBRSwyQkFBMkI7SUFDdEQsUUFBUSxFQUFFLFVBQVU7Q0FDZCxDQUFDO0FBSUUsUUFBQSxVQUFVLEdBQUc7SUFDdEIsT0FBTyxFQUFFLFNBQVM7SUFDbEIsS0FBSyxFQUFFLE9BQU87SUFDZCxLQUFLLEVBQUUsT0FBTztDQUNSLENBQUMifQ==
@@ -0,0 +1,3 @@
1
+ export * as enums from "./enums";
2
+ export * as inputs from "./input";
3
+ export * as outputs from "./output";
package/types/index.js ADDED
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.outputs = exports.inputs = exports.enums = void 0;
4
+ exports.enums = require("./enums");
5
+ exports.inputs = require("./input");
6
+ exports.outputs = require("./output");
7
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSxtQ0FBaUM7QUFDakMsb0NBQWtDO0FBQ2xDLHNDQUFvQyJ9
@@ -0,0 +1,44 @@
1
+ import * as enums from "./enums";
2
+ import * as pulumi from "@pulumi/pulumi";
3
+ export interface AzureStorageBlobContainerEndpointPropertiesArgs {
4
+ /**
5
+ * The name of the Storage blob container that is the target destination.
6
+ */
7
+ blobContainerName: pulumi.Input<string>;
8
+ /**
9
+ * A description for the Endpoint.
10
+ */
11
+ description?: pulumi.Input<string>;
12
+ /**
13
+ * The Endpoint resource type.
14
+ * Expected value is 'AzureStorageBlobContainer'.
15
+ */
16
+ endpointType: pulumi.Input<"AzureStorageBlobContainer">;
17
+ /**
18
+ * The Azure Resource ID of the storage account that is the target destination.
19
+ */
20
+ storageAccountResourceId: pulumi.Input<string>;
21
+ }
22
+ export interface NfsMountEndpointPropertiesArgs {
23
+ /**
24
+ * A description for the Endpoint.
25
+ */
26
+ description?: pulumi.Input<string>;
27
+ /**
28
+ * The Endpoint resource type.
29
+ * Expected value is 'NfsMount'.
30
+ */
31
+ endpointType: pulumi.Input<"NfsMount">;
32
+ /**
33
+ * The directory being exported from the server.
34
+ */
35
+ export: pulumi.Input<string>;
36
+ /**
37
+ * The host name or IP address of the server exporting the file system.
38
+ */
39
+ host: pulumi.Input<string>;
40
+ /**
41
+ * The NFS protocol version.
42
+ */
43
+ nfsVersion?: pulumi.Input<string | enums.NfsVersion>;
44
+ }
package/types/input.js ADDED
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5wdXQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbnB1dC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIn0=