@kengachu-pulumi/azure-native-storagemover 2.89.3 → 3.1.0
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/agent.d.ts +20 -3
- package/agent.js +10 -3
- package/endpoint.d.ts +10 -5
- package/endpoint.js +6 -3
- package/getAgent.d.ts +19 -5
- package/getAgent.js +7 -5
- package/getEndpoint.d.ts +12 -6
- package/getEndpoint.js +7 -5
- package/getJobDefinition.d.ts +11 -5
- package/getJobDefinition.js +7 -5
- package/getProject.d.ts +11 -5
- package/getProject.js +7 -5
- package/getStorageMover.d.ts +11 -5
- package/getStorageMover.js +7 -5
- package/index.js +1 -1
- package/jobDefinition.d.ts +8 -3
- package/jobDefinition.js +6 -3
- package/package.json +2 -2
- package/project.d.ts +8 -3
- package/project.js +6 -3
- package/storageMover.d.ts +8 -3
- package/storageMover.js +6 -3
- package/types/enums.d.ts +22 -0
- package/types/enums.js +16 -2
- package/types/input.d.ts +123 -0
- package/types/input.js +18 -1
- package/types/output.d.ts +131 -0
- package/types/output.js +17 -1
package/agent.d.ts
CHANGED
@@ -2,9 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as types from "./types";
|
3
3
|
/**
|
4
4
|
* The Agent resource.
|
5
|
-
* Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2022-07-01-preview.
|
6
5
|
*
|
7
|
-
*
|
6
|
+
* Uses Azure REST API version 2024-07-01. In version 2.x of the Azure Native provider, it used API version 2023-03-01.
|
7
|
+
*
|
8
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
8
9
|
*/
|
9
10
|
export declare class Agent extends pulumi.CustomResource {
|
10
11
|
/**
|
@@ -39,6 +40,10 @@ export declare class Agent extends pulumi.CustomResource {
|
|
39
40
|
* The VM UUID of the Hybrid Compute resource for the Agent.
|
40
41
|
*/
|
41
42
|
readonly arcVmUuid: pulumi.Output<string>;
|
43
|
+
/**
|
44
|
+
* The Azure API version of the resource.
|
45
|
+
*/
|
46
|
+
readonly azureApiVersion: pulumi.Output<string>;
|
42
47
|
/**
|
43
48
|
* A description for the Agent.
|
44
49
|
*/
|
@@ -69,13 +74,21 @@ export declare class Agent extends pulumi.CustomResource {
|
|
69
74
|
*/
|
70
75
|
readonly provisioningState: pulumi.Output<string>;
|
71
76
|
/**
|
72
|
-
* Resource
|
77
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
73
78
|
*/
|
74
79
|
readonly systemData: pulumi.Output<types.outputs.SystemDataResponse>;
|
80
|
+
/**
|
81
|
+
* The agent's local time zone represented in Windows format.
|
82
|
+
*/
|
83
|
+
readonly timeZone: pulumi.Output<string>;
|
75
84
|
/**
|
76
85
|
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
77
86
|
*/
|
78
87
|
readonly type: pulumi.Output<string>;
|
88
|
+
/**
|
89
|
+
* The WAN-link upload limit schedule that applies to any Job Run the agent executes. Data plane operations (migrating files) are affected. Control plane operations ensure seamless migration functionality and are not limited by this schedule. The schedule is interpreted with the agent's local time.
|
90
|
+
*/
|
91
|
+
readonly uploadLimitSchedule: pulumi.Output<types.outputs.UploadLimitScheduleResponse | undefined>;
|
79
92
|
/**
|
80
93
|
* Uptime of the Agent in seconds.
|
81
94
|
*/
|
@@ -117,4 +130,8 @@ export interface AgentArgs {
|
|
117
130
|
* The name of the Storage Mover resource.
|
118
131
|
*/
|
119
132
|
storageMoverName: pulumi.Input<string>;
|
133
|
+
/**
|
134
|
+
* The WAN-link upload limit schedule that applies to any Job Run the agent executes. Data plane operations (migrating files) are affected. Control plane operations ensure seamless migration functionality and are not limited by this schedule. The schedule is interpreted with the agent's local time.
|
135
|
+
*/
|
136
|
+
uploadLimitSchedule?: pulumi.Input<types.inputs.UploadLimitScheduleArgs>;
|
120
137
|
}
|
package/agent.js
CHANGED
@@ -5,9 +5,10 @@ const pulumi = require("@pulumi/pulumi");
|
|
5
5
|
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
6
|
/**
|
7
7
|
* The Agent resource.
|
8
|
-
* Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2022-07-01-preview.
|
9
8
|
*
|
10
|
-
*
|
9
|
+
* Uses Azure REST API version 2024-07-01. In version 2.x of the Azure Native provider, it used API version 2023-03-01.
|
10
|
+
*
|
11
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
11
12
|
*/
|
12
13
|
class Agent extends pulumi.CustomResource {
|
13
14
|
/**
|
@@ -60,8 +61,10 @@ class Agent extends pulumi.CustomResource {
|
|
60
61
|
resourceInputs["description"] = args ? args.description : undefined;
|
61
62
|
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
62
63
|
resourceInputs["storageMoverName"] = args ? args.storageMoverName : undefined;
|
64
|
+
resourceInputs["uploadLimitSchedule"] = args ? args.uploadLimitSchedule : undefined;
|
63
65
|
resourceInputs["agentStatus"] = undefined /*out*/;
|
64
66
|
resourceInputs["agentVersion"] = undefined /*out*/;
|
67
|
+
resourceInputs["azureApiVersion"] = undefined /*out*/;
|
65
68
|
resourceInputs["errorDetails"] = undefined /*out*/;
|
66
69
|
resourceInputs["lastStatusUpdate"] = undefined /*out*/;
|
67
70
|
resourceInputs["localIPAddress"] = undefined /*out*/;
|
@@ -70,6 +73,7 @@ class Agent extends pulumi.CustomResource {
|
|
70
73
|
resourceInputs["numberOfCores"] = undefined /*out*/;
|
71
74
|
resourceInputs["provisioningState"] = undefined /*out*/;
|
72
75
|
resourceInputs["systemData"] = undefined /*out*/;
|
76
|
+
resourceInputs["timeZone"] = undefined /*out*/;
|
73
77
|
resourceInputs["type"] = undefined /*out*/;
|
74
78
|
resourceInputs["uptimeInSeconds"] = undefined /*out*/;
|
75
79
|
}
|
@@ -78,6 +82,7 @@ class Agent extends pulumi.CustomResource {
|
|
78
82
|
resourceInputs["agentVersion"] = undefined /*out*/;
|
79
83
|
resourceInputs["arcResourceId"] = undefined /*out*/;
|
80
84
|
resourceInputs["arcVmUuid"] = undefined /*out*/;
|
85
|
+
resourceInputs["azureApiVersion"] = undefined /*out*/;
|
81
86
|
resourceInputs["description"] = undefined /*out*/;
|
82
87
|
resourceInputs["errorDetails"] = undefined /*out*/;
|
83
88
|
resourceInputs["lastStatusUpdate"] = undefined /*out*/;
|
@@ -87,7 +92,9 @@ class Agent extends pulumi.CustomResource {
|
|
87
92
|
resourceInputs["numberOfCores"] = undefined /*out*/;
|
88
93
|
resourceInputs["provisioningState"] = undefined /*out*/;
|
89
94
|
resourceInputs["systemData"] = undefined /*out*/;
|
95
|
+
resourceInputs["timeZone"] = undefined /*out*/;
|
90
96
|
resourceInputs["type"] = undefined /*out*/;
|
97
|
+
resourceInputs["uploadLimitSchedule"] = undefined /*out*/;
|
91
98
|
resourceInputs["uptimeInSeconds"] = undefined /*out*/;
|
92
99
|
}
|
93
100
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
@@ -99,4 +106,4 @@ class Agent extends pulumi.CustomResource {
|
|
99
106
|
exports.Agent = Agent;
|
100
107
|
/** @internal */
|
101
108
|
Agent.__pulumiType = 'azure-native:storagemover:Agent';
|
102
|
-
//# sourceMappingURL=data:application/json;base64,
|
109
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWdlbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJhZ2VudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FBeUM7QUFDekMsMEVBQTBFO0FBRTFFOzs7Ozs7R0FNRztBQUNILE1BQWEsS0FBTSxTQUFRLE1BQU0sQ0FBQyxjQUFjO0lBQzVDOzs7Ozs7O09BT0c7SUFDSSxNQUFNLENBQUMsR0FBRyxDQUFDLElBQVksRUFBRSxFQUEyQixFQUFFLElBQW1DO1FBQzVGLE9BQU8sSUFBSSxLQUFLLENBQUMsSUFBSSxFQUFFLFNBQWdCLGtDQUFPLElBQUksS0FBRSxFQUFFLEVBQUUsRUFBRSxJQUFHLENBQUM7SUFDbEUsQ0FBQztJQUtEOzs7T0FHRztJQUNJLE1BQU0sQ0FBQyxVQUFVLENBQUMsR0FBUTtRQUM3QixJQUFJLEdBQUcsS0FBSyxTQUFTLElBQUksR0FBRyxLQUFLLElBQUksRUFBRTtZQUNuQyxPQUFPLEtBQUssQ0FBQztTQUNoQjtRQUNELE9BQU8sR0FBRyxDQUFDLGNBQWMsQ0FBQyxLQUFLLEtBQUssQ0FBQyxZQUFZLENBQUM7SUFDdEQsQ0FBQztJQXdFRDs7Ozs7O09BTUc7SUFDSCxZQUFZLElBQVksRUFBRSxJQUFlLEVBQUUsSUFBbUM7UUFDMUUsSUFBSSxjQUFjLEdBQWtCLEVBQUUsQ0FBQztRQUN2QyxJQUFJLEdBQUcsSUFBSSxJQUFJLEVBQUUsQ0FBQztRQUNsQixJQUFJLENBQUMsSUFBSSxDQUFDLEVBQUUsRUFBRTtZQUNWLElBQUksQ0FBQyxDQUFDLElBQUksSUFBSSxJQUFJLENBQUMsYUFBYSxLQUFLLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRTtnQkFDMUQsTUFBTSxJQUFJLEtBQUssQ0FBQywyQ0FBMkMsQ0FBQyxDQUFDO2FBQ2hFO1lBQ0QsSUFBSSxDQUFDLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxTQUFTLEtBQUssU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFO2dCQUN0RCxNQUFNLElBQUksS0FBSyxDQUFDLHVDQUF1QyxDQUFDLENBQUM7YUFDNUQ7WUFDRCxJQUFJLENBQUMsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLGlCQUFpQixLQUFLLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRTtnQkFDOUQsTUFBTSxJQUFJLEtBQUssQ0FBQywrQ0FBK0MsQ0FBQyxDQUFDO2FBQ3BFO1lBQ0QsSUFBSSxDQUFDLENBQUMsSUFBSSxJQUFJLElBQUksQ0FBQyxnQkFBZ0IsS0FBSyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQzdELE1BQU0sSUFBSSxLQUFLLENBQUMsOENBQThDLENBQUMsQ0FBQzthQUNuRTtZQUNELGNBQWMsQ0FBQyxXQUFXLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUNoRSxjQUFjLENBQUMsZUFBZSxDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsYUFBYSxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDeEUsY0FBYyxDQUFDLFdBQVcsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFNBQVMsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDO1lBQ2hFLGNBQWMsQ0FBQyxhQUFhLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUNwRSxjQUFjLENBQUMsbUJBQW1CLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDO1lBQ2hGLGNBQWMsQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDOUUsY0FBYyxDQUFDLHFCQUFxQixDQUFDLEdBQUcsSUFBSSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsbUJBQW1CLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUNwRixjQUFjLENBQUMsYUFBYSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNsRCxjQUFjLENBQUMsY0FBYyxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNuRCxjQUFjLENBQUMsaUJBQWlCLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3RELGNBQWMsQ0FBQyxjQUFjLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ25ELGNBQWMsQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDdkQsY0FBYyxDQUFDLGdCQUFnQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNyRCxjQUFjLENBQUMsWUFBWSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNqRCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMzQyxjQUFjLENBQUMsZUFBZSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNwRCxjQUFjLENBQUMsbUJBQW1CLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3hELGNBQWMsQ0FBQyxZQUFZLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2pELGNBQWMsQ0FBQyxVQUFVLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQy9DLGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxpQkFBaUIsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7U0FDekQ7YUFBTTtZQUNILGNBQWMsQ0FBQyxhQUFhLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2xELGNBQWMsQ0FBQyxjQUFjLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ25ELGNBQWMsQ0FBQyxlQUFlLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3BELGNBQWMsQ0FBQyxXQUFXLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2hELGNBQWMsQ0FBQyxpQkFBaUIsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDdEQsY0FBYyxDQUFDLGFBQWEsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDbEQsY0FBYyxDQUFDLGNBQWMsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDbkQsY0FBYyxDQUFDLGtCQUFrQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUN2RCxjQUFjLENBQUMsZ0JBQWdCLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3JELGNBQWMsQ0FBQyxZQUFZLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ2pELGNBQWMsQ0FBQyxNQUFNLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQzNDLGNBQWMsQ0FBQyxlQUFlLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1lBQ3BELGNBQWMsQ0FBQyxtQkFBbUIsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDeEQsY0FBYyxDQUFDLFlBQVksQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDakQsY0FBYyxDQUFDLFVBQVUsQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDL0MsY0FBYyxDQUFDLE1BQU0sQ0FBQyxHQUFHLFNBQVMsQ0FBQyxPQUFPLENBQUM7WUFDM0MsY0FBYyxDQUFDLHFCQUFxQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMxRCxjQUFjLENBQUMsaUJBQWlCLENBQUMsR0FBRyxTQUFTLENBQUMsT0FBTyxDQUFDO1NBQ3pEO1FBQ0QsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxDQUFDLENBQUM7UUFDbkUsTUFBTSxTQUFTLEdBQUcsRUFBRSxPQUFPLEVBQUUsQ0FBQyxFQUFFLElBQUksRUFBRSxrREFBa0QsRUFBRSxFQUFFLEVBQUUsSUFBSSxFQUFFLDJDQUEyQyxFQUFFLEVBQUUsRUFBRSxJQUFJLEVBQUUsa0RBQWtELEVBQUUsRUFBRSxFQUFFLElBQUksRUFBRSwyQ0FBMkMsRUFBRSxFQUFFLEVBQUUsSUFBSSxFQUFFLDJDQUEyQyxFQUFFLENBQUMsRUFBRSxDQUFDO1FBQ2pVLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLElBQUksRUFBRSxTQUFTLENBQUMsQ0FBQztRQUM1QyxLQUFLLENBQUMsS0FBSyxDQUFDLFlBQVksRUFBRSxJQUFJLEVBQUUsY0FBYyxFQUFFLElBQUksQ0FBQyxDQUFDO0lBQzFELENBQUM7O0FBcktMLHNCQXNLQztBQXpKRyxnQkFBZ0I7QUFDTyxrQkFBWSxHQUFHLGlDQUFpQyxDQUFDIn0=
|
package/endpoint.d.ts
CHANGED
@@ -2,9 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as types from "./types";
|
3
3
|
/**
|
4
4
|
* The Endpoint resource, which contains information about file sources and targets.
|
5
|
-
* Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2022-07-01-preview.
|
6
5
|
*
|
7
|
-
*
|
6
|
+
* Uses Azure REST API version 2024-07-01. In version 2.x of the Azure Native provider, it used API version 2023-03-01.
|
7
|
+
*
|
8
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
8
9
|
*/
|
9
10
|
export declare class Endpoint extends pulumi.CustomResource {
|
10
11
|
/**
|
@@ -23,6 +24,10 @@ export declare class Endpoint extends pulumi.CustomResource {
|
|
23
24
|
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
24
25
|
*/
|
25
26
|
static isInstance(obj: any): obj is Endpoint;
|
27
|
+
/**
|
28
|
+
* The Azure API version of the resource.
|
29
|
+
*/
|
30
|
+
readonly azureApiVersion: pulumi.Output<string>;
|
26
31
|
/**
|
27
32
|
* The name of the resource
|
28
33
|
*/
|
@@ -30,9 +35,9 @@ export declare class Endpoint extends pulumi.CustomResource {
|
|
30
35
|
/**
|
31
36
|
* The resource specific properties for the Storage Mover resource.
|
32
37
|
*/
|
33
|
-
readonly properties: pulumi.Output<types.outputs.AzureStorageBlobContainerEndpointPropertiesResponse | types.outputs.NfsMountEndpointPropertiesResponse>;
|
38
|
+
readonly properties: pulumi.Output<types.outputs.AzureStorageBlobContainerEndpointPropertiesResponse | types.outputs.AzureStorageSmbFileShareEndpointPropertiesResponse | types.outputs.NfsMountEndpointPropertiesResponse | types.outputs.SmbMountEndpointPropertiesResponse>;
|
34
39
|
/**
|
35
|
-
* Resource
|
40
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
36
41
|
*/
|
37
42
|
readonly systemData: pulumi.Output<types.outputs.SystemDataResponse>;
|
38
43
|
/**
|
@@ -59,7 +64,7 @@ export interface EndpointArgs {
|
|
59
64
|
/**
|
60
65
|
* The resource specific properties for the Storage Mover resource.
|
61
66
|
*/
|
62
|
-
properties: pulumi.Input<types.inputs.AzureStorageBlobContainerEndpointPropertiesArgs | types.inputs.NfsMountEndpointPropertiesArgs>;
|
67
|
+
properties: pulumi.Input<types.inputs.AzureStorageBlobContainerEndpointPropertiesArgs | types.inputs.AzureStorageSmbFileShareEndpointPropertiesArgs | types.inputs.NfsMountEndpointPropertiesArgs | types.inputs.SmbMountEndpointPropertiesArgs>;
|
63
68
|
/**
|
64
69
|
* The name of the resource group. The name is case insensitive.
|
65
70
|
*/
|
package/endpoint.js
CHANGED
@@ -5,9 +5,10 @@ const pulumi = require("@pulumi/pulumi");
|
|
5
5
|
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
6
|
/**
|
7
7
|
* The Endpoint resource, which contains information about file sources and targets.
|
8
|
-
* Azure REST API version: 2023-03-01. Prior API version in Azure Native 1.x: 2022-07-01-preview.
|
9
8
|
*
|
10
|
-
*
|
9
|
+
* Uses Azure REST API version 2024-07-01. In version 2.x of the Azure Native provider, it used API version 2023-03-01.
|
10
|
+
*
|
11
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
11
12
|
*/
|
12
13
|
class Endpoint extends pulumi.CustomResource {
|
13
14
|
/**
|
@@ -55,11 +56,13 @@ class Endpoint extends pulumi.CustomResource {
|
|
55
56
|
resourceInputs["properties"] = args ? args.properties : undefined;
|
56
57
|
resourceInputs["resourceGroupName"] = args ? args.resourceGroupName : undefined;
|
57
58
|
resourceInputs["storageMoverName"] = args ? args.storageMoverName : undefined;
|
59
|
+
resourceInputs["azureApiVersion"] = undefined /*out*/;
|
58
60
|
resourceInputs["name"] = undefined /*out*/;
|
59
61
|
resourceInputs["systemData"] = undefined /*out*/;
|
60
62
|
resourceInputs["type"] = undefined /*out*/;
|
61
63
|
}
|
62
64
|
else {
|
65
|
+
resourceInputs["azureApiVersion"] = undefined /*out*/;
|
63
66
|
resourceInputs["name"] = undefined /*out*/;
|
64
67
|
resourceInputs["properties"] = undefined /*out*/;
|
65
68
|
resourceInputs["systemData"] = undefined /*out*/;
|
@@ -74,4 +77,4 @@ class Endpoint extends pulumi.CustomResource {
|
|
74
77
|
exports.Endpoint = Endpoint;
|
75
78
|
/** @internal */
|
76
79
|
Endpoint.__pulumiType = 'azure-native:storagemover:Endpoint';
|
77
|
-
//# sourceMappingURL=data:application/json;base64,
|
80
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZW5kcG9pbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJlbmRwb2ludC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FBeUM7QUFDekMsMEVBQTBFO0FBRTFFOzs7Ozs7R0FNRztBQUNILE1BQWEsUUFBUyxTQUFRLE1BQU0sQ0FBQyxjQUFjO0lBQy9DOzs7Ozs7O09BT0c7SUFDSSxNQUFNLENBQUMsR0FBRyxDQUFDLElBQVksRUFBRSxFQUEyQixFQUFFLElBQW1DO1FBQzVGLE9BQU8sSUFBSSxRQUFRLENBQUMsSUFBSSxFQUFFLFNBQWdCLGtDQUFPLElBQUksS0FBRSxFQUFFLEVBQUUsRUFBRSxJQUFHLENBQUM7SUFDckUsQ0FBQztJQUtEOzs7T0FHRztJQUNJLE1BQU0sQ0FBQyxVQUFVLENBQUMsR0FBUTtRQUM3QixJQUFJLEdBQUcsS0FBSyxTQUFTLElBQUksR0FBRyxLQUFLLElBQUksRUFBRTtZQUNuQyxPQUFPLEtBQUssQ0FBQztTQUNoQjtRQUNELE9BQU8sR0FBRyxDQUFDLGNBQWMsQ0FBQyxLQUFLLFFBQVEsQ0FBQyxZQUFZLENBQUM7SUFDekQsQ0FBQztJQXVCRDs7Ozs7O09BTUc7SUFDSCxZQUFZLElBQVksRUFBRSxJQUFrQixFQUFFLElBQW1DO1FBQzdFLElBQUksY0FBYyxHQUFrQixFQUFFLENBQUM7UUFDdkMsSUFBSSxHQUFHLElBQUksSUFBSSxFQUFFLENBQUM7UUFDbEIsSUFBSSxDQUFDLElBQUksQ0FBQyxFQUFFLEVBQUU7WUFDVixJQUFJLENBQUMsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLFVBQVUsS0FBSyxTQUFTLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLEVBQUU7Z0JBQ3ZELE1BQU0sSUFBSSxLQUFLLENBQUMsd0NBQXdDLENBQUMsQ0FBQzthQUM3RDtZQUNELElBQUksQ0FBQyxDQUFDLElBQUksSUFBSSxJQUFJLENBQUMsaUJBQWlCLEtBQUssU0FBUyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFO2dCQUM5RCxNQUFNLElBQUksS0FBSyxDQUFDLCtDQUErQyxDQUFDLENBQUM7YUFDcEU7WUFDRCxJQUFJLENBQUMsQ0FBQyxJQUFJLElBQUksSUFBSSxDQUFDLGdCQUFnQixLQUFLLFNBQVMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLEdBQUcsRUFBRTtnQkFDN0QsTUFBTSxJQUFJLEtBQUssQ0FBQyw4Q0FBOEMsQ0FBQyxDQUFDO2FBQ25FO1lBQ0QsY0FBYyxDQUFDLGNBQWMsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDO1lBQ3RFLGNBQWMsQ0FBQyxZQUFZLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxVQUFVLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQztZQUNsRSxjQUFjLENBQUMsbUJBQW1CLENBQUMsR0FBRyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDLENBQUMsU0FBUyxDQUFDO1lBQ2hGLGNBQWMsQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUMsSUFBSSxDQUFDLGdCQUFnQixDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUM7WUFDOUUsY0FBYyxDQUFDLGlCQUFpQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUN0RCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMzQyxjQUFjLENBQUMsWUFBWSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNqRCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztTQUM5QzthQUFNO1lBQ0gsY0FBYyxDQUFDLGlCQUFpQixDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUN0RCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUMzQyxjQUFjLENBQUMsWUFBWSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNqRCxjQUFjLENBQUMsWUFBWSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztZQUNqRCxjQUFjLENBQUMsTUFBTSxDQUFDLEdBQUcsU0FBUyxDQUFDLE9BQU8sQ0FBQztTQUM5QztRQUNELElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksQ0FBQyxDQUFDO1FBQ25FLE1BQU0sU0FBUyxHQUFHLEVBQUUsT0FBTyxFQUFFLENBQUMsRUFBRSxJQUFJLEVBQUUscURBQXFELEVBQUUsRUFBRSxFQUFFLElBQUksRUFBRSw4Q0FBOEMsRUFBRSxFQUFFLEVBQUUsSUFBSSxFQUFFLHFEQUFxRCxFQUFFLEVBQUUsRUFBRSxJQUFJLEVBQUUsOENBQThDLEVBQUUsRUFBRSxFQUFFLElBQUksRUFBRSw4Q0FBOEMsRUFBRSxDQUFDLEVBQUUsQ0FBQztRQUNoVixJQUFJLEdBQUcsTUFBTSxDQUFDLFlBQVksQ0FBQyxJQUFJLEVBQUUsU0FBUyxDQUFDLENBQUM7UUFDNUMsS0FBSyxDQUFDLFFBQVEsQ0FBQyxZQUFZLEVBQUUsSUFBSSxFQUFFLGNBQWMsRUFBRSxJQUFJLENBQUMsQ0FBQztJQUM3RCxDQUFDOztBQXZGTCw0QkF3RkM7QUEzRUcsZ0JBQWdCO0FBQ08scUJBQVksR0FBRyxvQ0FBb0MsQ0FBQyJ9
|
package/getAgent.d.ts
CHANGED
@@ -2,9 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as types from "./types";
|
3
3
|
/**
|
4
4
|
* Gets an Agent resource.
|
5
|
-
* Azure REST API version: 2023-03-01.
|
6
5
|
*
|
7
|
-
*
|
6
|
+
* Uses Azure REST API version 2024-07-01.
|
7
|
+
*
|
8
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
8
9
|
*/
|
9
10
|
export declare function getAgent(args: GetAgentArgs, opts?: pulumi.InvokeOptions): Promise<GetAgentResult>;
|
10
11
|
export interface GetAgentArgs {
|
@@ -41,6 +42,10 @@ export interface GetAgentResult {
|
|
41
42
|
* The VM UUID of the Hybrid Compute resource for the Agent.
|
42
43
|
*/
|
43
44
|
readonly arcVmUuid: string;
|
45
|
+
/**
|
46
|
+
* The Azure API version of the resource.
|
47
|
+
*/
|
48
|
+
readonly azureApiVersion: string;
|
44
49
|
/**
|
45
50
|
* A description for the Agent.
|
46
51
|
*/
|
@@ -75,13 +80,21 @@ export interface GetAgentResult {
|
|
75
80
|
*/
|
76
81
|
readonly provisioningState: string;
|
77
82
|
/**
|
78
|
-
* Resource
|
83
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
79
84
|
*/
|
80
85
|
readonly systemData: types.outputs.SystemDataResponse;
|
86
|
+
/**
|
87
|
+
* The agent's local time zone represented in Windows format.
|
88
|
+
*/
|
89
|
+
readonly timeZone: string;
|
81
90
|
/**
|
82
91
|
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
83
92
|
*/
|
84
93
|
readonly type: string;
|
94
|
+
/**
|
95
|
+
* The WAN-link upload limit schedule that applies to any Job Run the agent executes. Data plane operations (migrating files) are affected. Control plane operations ensure seamless migration functionality and are not limited by this schedule. The schedule is interpreted with the agent's local time.
|
96
|
+
*/
|
97
|
+
readonly uploadLimitSchedule?: types.outputs.UploadLimitScheduleResponse;
|
85
98
|
/**
|
86
99
|
* Uptime of the Agent in seconds.
|
87
100
|
*/
|
@@ -89,9 +102,10 @@ export interface GetAgentResult {
|
|
89
102
|
}
|
90
103
|
/**
|
91
104
|
* Gets an Agent resource.
|
92
|
-
* Azure REST API version: 2023-03-01.
|
93
105
|
*
|
94
|
-
*
|
106
|
+
* Uses Azure REST API version 2024-07-01.
|
107
|
+
*
|
108
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
95
109
|
*/
|
96
110
|
export declare function getAgentOutput(args: GetAgentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAgentResult>;
|
97
111
|
export interface GetAgentOutputArgs {
|
package/getAgent.js
CHANGED
@@ -5,9 +5,10 @@ const pulumi = require("@pulumi/pulumi");
|
|
5
5
|
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
6
|
/**
|
7
7
|
* Gets an Agent resource.
|
8
|
-
* Azure REST API version: 2023-03-01.
|
9
8
|
*
|
10
|
-
*
|
9
|
+
* Uses Azure REST API version 2024-07-01.
|
10
|
+
*
|
11
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
11
12
|
*/
|
12
13
|
function getAgent(args, opts) {
|
13
14
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
@@ -20,9 +21,10 @@ function getAgent(args, opts) {
|
|
20
21
|
exports.getAgent = getAgent;
|
21
22
|
/**
|
22
23
|
* Gets an Agent resource.
|
23
|
-
* Azure REST API version: 2023-03-01.
|
24
24
|
*
|
25
|
-
*
|
25
|
+
* Uses Azure REST API version 2024-07-01.
|
26
|
+
*
|
27
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
26
28
|
*/
|
27
29
|
function getAgentOutput(args, opts) {
|
28
30
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
@@ -33,4 +35,4 @@ function getAgentOutput(args, opts) {
|
|
33
35
|
}, opts);
|
34
36
|
}
|
35
37
|
exports.getAgentOutput = getAgentOutput;
|
36
|
-
//# sourceMappingURL=data:application/json;base64,
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0QWdlbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJnZXRBZ2VudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FBeUM7QUFDekMsMEVBQTBFO0FBRTFFOzs7Ozs7R0FNRztBQUNILFNBQWdCLFFBQVEsQ0FBQyxJQUFrQixFQUFFLElBQTJCO0lBQ3BFLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLG9DQUFvQyxFQUFFO1FBQy9ELFdBQVcsRUFBRSxJQUFJLENBQUMsU0FBUztRQUMzQixtQkFBbUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCO1FBQzNDLGtCQUFrQixFQUFFLElBQUksQ0FBQyxnQkFBZ0I7S0FDNUMsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFQRCw0QkFPQztBQStGRDs7Ozs7O0dBTUc7QUFDSCxTQUFnQixjQUFjLENBQUMsSUFBd0IsRUFBRSxJQUFpQztJQUN0RixJQUFJLEdBQUcsTUFBTSxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsb0JBQW9CLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLENBQUM7SUFDekUsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxvQ0FBb0MsRUFBRTtRQUNyRSxXQUFXLEVBQUUsSUFBSSxDQUFDLFNBQVM7UUFDM0IsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsZ0JBQWdCO0tBQzVDLEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBUEQsd0NBT0MifQ==
|
package/getEndpoint.d.ts
CHANGED
@@ -2,9 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as types from "./types";
|
3
3
|
/**
|
4
4
|
* Gets an Endpoint resource.
|
5
|
-
* Azure REST API version: 2023-03-01.
|
6
5
|
*
|
7
|
-
*
|
6
|
+
* Uses Azure REST API version 2024-07-01.
|
7
|
+
*
|
8
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
8
9
|
*/
|
9
10
|
export declare function getEndpoint(args: GetEndpointArgs, opts?: pulumi.InvokeOptions): Promise<GetEndpointResult>;
|
10
11
|
export interface GetEndpointArgs {
|
@@ -25,6 +26,10 @@ export interface GetEndpointArgs {
|
|
25
26
|
* The Endpoint resource, which contains information about file sources and targets.
|
26
27
|
*/
|
27
28
|
export interface GetEndpointResult {
|
29
|
+
/**
|
30
|
+
* The Azure API version of the resource.
|
31
|
+
*/
|
32
|
+
readonly azureApiVersion: string;
|
28
33
|
/**
|
29
34
|
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
30
35
|
*/
|
@@ -36,9 +41,9 @@ export interface GetEndpointResult {
|
|
36
41
|
/**
|
37
42
|
* The resource specific properties for the Storage Mover resource.
|
38
43
|
*/
|
39
|
-
readonly properties: types.outputs.AzureStorageBlobContainerEndpointPropertiesResponse | types.outputs.NfsMountEndpointPropertiesResponse;
|
44
|
+
readonly properties: types.outputs.AzureStorageBlobContainerEndpointPropertiesResponse | types.outputs.AzureStorageSmbFileShareEndpointPropertiesResponse | types.outputs.NfsMountEndpointPropertiesResponse | types.outputs.SmbMountEndpointPropertiesResponse;
|
40
45
|
/**
|
41
|
-
* Resource
|
46
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
42
47
|
*/
|
43
48
|
readonly systemData: types.outputs.SystemDataResponse;
|
44
49
|
/**
|
@@ -48,9 +53,10 @@ export interface GetEndpointResult {
|
|
48
53
|
}
|
49
54
|
/**
|
50
55
|
* Gets an Endpoint resource.
|
51
|
-
* Azure REST API version: 2023-03-01.
|
52
56
|
*
|
53
|
-
*
|
57
|
+
* Uses Azure REST API version 2024-07-01.
|
58
|
+
*
|
59
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
54
60
|
*/
|
55
61
|
export declare function getEndpointOutput(args: GetEndpointOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetEndpointResult>;
|
56
62
|
export interface GetEndpointOutputArgs {
|
package/getEndpoint.js
CHANGED
@@ -5,9 +5,10 @@ const pulumi = require("@pulumi/pulumi");
|
|
5
5
|
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
6
|
/**
|
7
7
|
* Gets an Endpoint resource.
|
8
|
-
* Azure REST API version: 2023-03-01.
|
9
8
|
*
|
10
|
-
*
|
9
|
+
* Uses Azure REST API version 2024-07-01.
|
10
|
+
*
|
11
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
11
12
|
*/
|
12
13
|
function getEndpoint(args, opts) {
|
13
14
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
@@ -20,9 +21,10 @@ function getEndpoint(args, opts) {
|
|
20
21
|
exports.getEndpoint = getEndpoint;
|
21
22
|
/**
|
22
23
|
* Gets an Endpoint resource.
|
23
|
-
* Azure REST API version: 2023-03-01.
|
24
24
|
*
|
25
|
-
*
|
25
|
+
* Uses Azure REST API version 2024-07-01.
|
26
|
+
*
|
27
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
26
28
|
*/
|
27
29
|
function getEndpointOutput(args, opts) {
|
28
30
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
@@ -33,4 +35,4 @@ function getEndpointOutput(args, opts) {
|
|
33
35
|
}, opts);
|
34
36
|
}
|
35
37
|
exports.getEndpointOutput = getEndpointOutput;
|
36
|
-
//# sourceMappingURL=data:application/json;base64,
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0RW5kcG9pbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJnZXRFbmRwb2ludC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7QUFBQSx5Q0FBeUM7QUFDekMsMEVBQTBFO0FBRTFFOzs7Ozs7R0FNRztBQUNILFNBQWdCLFdBQVcsQ0FBQyxJQUFxQixFQUFFLElBQTJCO0lBQzFFLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLHVDQUF1QyxFQUFFO1FBQ2xFLGNBQWMsRUFBRSxJQUFJLENBQUMsWUFBWTtRQUNqQyxtQkFBbUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCO1FBQzNDLGtCQUFrQixFQUFFLElBQUksQ0FBQyxnQkFBZ0I7S0FDNUMsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFQRCxrQ0FPQztBQThDRDs7Ozs7O0dBTUc7QUFDSCxTQUFnQixpQkFBaUIsQ0FBQyxJQUEyQixFQUFFLElBQWlDO0lBQzVGLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsWUFBWSxDQUFDLHVDQUF1QyxFQUFFO1FBQ3hFLGNBQWMsRUFBRSxJQUFJLENBQUMsWUFBWTtRQUNqQyxtQkFBbUIsRUFBRSxJQUFJLENBQUMsaUJBQWlCO1FBQzNDLGtCQUFrQixFQUFFLElBQUksQ0FBQyxnQkFBZ0I7S0FDNUMsRUFBRSxJQUFJLENBQUMsQ0FBQztBQUNiLENBQUM7QUFQRCw4Q0FPQyJ9
|
package/getJobDefinition.d.ts
CHANGED
@@ -2,9 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as types from "./types";
|
3
3
|
/**
|
4
4
|
* Gets a Job Definition resource.
|
5
|
-
* Azure REST API version: 2023-03-01.
|
6
5
|
*
|
7
|
-
*
|
6
|
+
* Uses Azure REST API version 2024-07-01.
|
7
|
+
*
|
8
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
8
9
|
*/
|
9
10
|
export declare function getJobDefinition(args: GetJobDefinitionArgs, opts?: pulumi.InvokeOptions): Promise<GetJobDefinitionResult>;
|
10
11
|
export interface GetJobDefinitionArgs {
|
@@ -37,6 +38,10 @@ export interface GetJobDefinitionResult {
|
|
37
38
|
* Fully qualified resource id of the Agent to assign for new Job Runs of this Job Definition.
|
38
39
|
*/
|
39
40
|
readonly agentResourceId: string;
|
41
|
+
/**
|
42
|
+
* The Azure API version of the resource.
|
43
|
+
*/
|
44
|
+
readonly azureApiVersion: string;
|
40
45
|
/**
|
41
46
|
* Strategy to use for copy.
|
42
47
|
*/
|
@@ -82,7 +87,7 @@ export interface GetJobDefinitionResult {
|
|
82
87
|
*/
|
83
88
|
readonly sourceSubpath?: string;
|
84
89
|
/**
|
85
|
-
* Resource
|
90
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
86
91
|
*/
|
87
92
|
readonly systemData: types.outputs.SystemDataResponse;
|
88
93
|
/**
|
@@ -104,9 +109,10 @@ export interface GetJobDefinitionResult {
|
|
104
109
|
}
|
105
110
|
/**
|
106
111
|
* Gets a Job Definition resource.
|
107
|
-
* Azure REST API version: 2023-03-01.
|
108
112
|
*
|
109
|
-
*
|
113
|
+
* Uses Azure REST API version 2024-07-01.
|
114
|
+
*
|
115
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
110
116
|
*/
|
111
117
|
export declare function getJobDefinitionOutput(args: GetJobDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetJobDefinitionResult>;
|
112
118
|
export interface GetJobDefinitionOutputArgs {
|
package/getJobDefinition.js
CHANGED
@@ -5,9 +5,10 @@ const pulumi = require("@pulumi/pulumi");
|
|
5
5
|
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
6
|
/**
|
7
7
|
* Gets a Job Definition resource.
|
8
|
-
* Azure REST API version: 2023-03-01.
|
9
8
|
*
|
10
|
-
*
|
9
|
+
* Uses Azure REST API version 2024-07-01.
|
10
|
+
*
|
11
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
11
12
|
*/
|
12
13
|
function getJobDefinition(args, opts) {
|
13
14
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
@@ -21,9 +22,10 @@ function getJobDefinition(args, opts) {
|
|
21
22
|
exports.getJobDefinition = getJobDefinition;
|
22
23
|
/**
|
23
24
|
* Gets a Job Definition resource.
|
24
|
-
* Azure REST API version: 2023-03-01.
|
25
25
|
*
|
26
|
-
*
|
26
|
+
* Uses Azure REST API version 2024-07-01.
|
27
|
+
*
|
28
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
27
29
|
*/
|
28
30
|
function getJobDefinitionOutput(args, opts) {
|
29
31
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
@@ -35,4 +37,4 @@ function getJobDefinitionOutput(args, opts) {
|
|
35
37
|
}, opts);
|
36
38
|
}
|
37
39
|
exports.getJobDefinitionOutput = getJobDefinitionOutput;
|
38
|
-
//# sourceMappingURL=data:application/json;base64,
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0Sm9iRGVmaW5pdGlvbi5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImdldEpvYkRlZmluaXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUNBQXlDO0FBQ3pDLDBFQUEwRTtBQUUxRTs7Ozs7O0dBTUc7QUFDSCxTQUFnQixnQkFBZ0IsQ0FBQyxJQUEwQixFQUFFLElBQTJCO0lBQ3BGLElBQUksR0FBRyxNQUFNLENBQUMsWUFBWSxDQUFDLFNBQVMsQ0FBQyxvQkFBb0IsRUFBRSxFQUFFLElBQUksSUFBSSxFQUFFLENBQUMsQ0FBQztJQUN6RSxPQUFPLE1BQU0sQ0FBQyxPQUFPLENBQUMsTUFBTSxDQUFDLDRDQUE0QyxFQUFFO1FBQ3ZFLG1CQUFtQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7UUFDM0MsYUFBYSxFQUFFLElBQUksQ0FBQyxXQUFXO1FBQy9CLG1CQUFtQixFQUFFLElBQUksQ0FBQyxpQkFBaUI7UUFDM0Msa0JBQWtCLEVBQUUsSUFBSSxDQUFDLGdCQUFnQjtLQUM1QyxFQUFFLElBQUksQ0FBQyxDQUFDO0FBQ2IsQ0FBQztBQVJELDRDQVFDO0FBc0dEOzs7Ozs7R0FNRztBQUNILFNBQWdCLHNCQUFzQixDQUFDLElBQWdDLEVBQUUsSUFBaUM7SUFDdEcsSUFBSSxHQUFHLE1BQU0sQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLG9CQUFvQixFQUFFLEVBQUUsSUFBSSxJQUFJLEVBQUUsQ0FBQyxDQUFDO0lBQ3pFLE9BQU8sTUFBTSxDQUFDLE9BQU8sQ0FBQyxZQUFZLENBQUMsNENBQTRDLEVBQUU7UUFDN0UsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxhQUFhLEVBQUUsSUFBSSxDQUFDLFdBQVc7UUFDL0IsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsZ0JBQWdCO0tBQzVDLEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBUkQsd0RBUUMifQ==
|
package/getProject.d.ts
CHANGED
@@ -2,9 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as types from "./types";
|
3
3
|
/**
|
4
4
|
* Gets a Project resource.
|
5
|
-
* Azure REST API version: 2023-03-01.
|
6
5
|
*
|
7
|
-
*
|
6
|
+
* Uses Azure REST API version 2024-07-01.
|
7
|
+
*
|
8
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
8
9
|
*/
|
9
10
|
export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectResult>;
|
10
11
|
export interface GetProjectArgs {
|
@@ -25,6 +26,10 @@ export interface GetProjectArgs {
|
|
25
26
|
* The Project resource.
|
26
27
|
*/
|
27
28
|
export interface GetProjectResult {
|
29
|
+
/**
|
30
|
+
* The Azure API version of the resource.
|
31
|
+
*/
|
32
|
+
readonly azureApiVersion: string;
|
28
33
|
/**
|
29
34
|
* A description for the Project.
|
30
35
|
*/
|
@@ -42,7 +47,7 @@ export interface GetProjectResult {
|
|
42
47
|
*/
|
43
48
|
readonly provisioningState: string;
|
44
49
|
/**
|
45
|
-
* Resource
|
50
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
46
51
|
*/
|
47
52
|
readonly systemData: types.outputs.SystemDataResponse;
|
48
53
|
/**
|
@@ -52,9 +57,10 @@ export interface GetProjectResult {
|
|
52
57
|
}
|
53
58
|
/**
|
54
59
|
* Gets a Project resource.
|
55
|
-
* Azure REST API version: 2023-03-01.
|
56
60
|
*
|
57
|
-
*
|
61
|
+
* Uses Azure REST API version 2024-07-01.
|
62
|
+
*
|
63
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
58
64
|
*/
|
59
65
|
export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProjectResult>;
|
60
66
|
export interface GetProjectOutputArgs {
|
package/getProject.js
CHANGED
@@ -5,9 +5,10 @@ const pulumi = require("@pulumi/pulumi");
|
|
5
5
|
const utilities = require("@kengachu-pulumi/azure-native-core/utilities");
|
6
6
|
/**
|
7
7
|
* Gets a Project resource.
|
8
|
-
* Azure REST API version: 2023-03-01.
|
9
8
|
*
|
10
|
-
*
|
9
|
+
* Uses Azure REST API version 2024-07-01.
|
10
|
+
*
|
11
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
11
12
|
*/
|
12
13
|
function getProject(args, opts) {
|
13
14
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
@@ -20,9 +21,10 @@ function getProject(args, opts) {
|
|
20
21
|
exports.getProject = getProject;
|
21
22
|
/**
|
22
23
|
* Gets a Project resource.
|
23
|
-
* Azure REST API version: 2023-03-01.
|
24
24
|
*
|
25
|
-
*
|
25
|
+
* Uses Azure REST API version 2024-07-01.
|
26
|
+
*
|
27
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
26
28
|
*/
|
27
29
|
function getProjectOutput(args, opts) {
|
28
30
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
@@ -33,4 +35,4 @@ function getProjectOutput(args, opts) {
|
|
33
35
|
}, opts);
|
34
36
|
}
|
35
37
|
exports.getProjectOutput = getProjectOutput;
|
36
|
-
//# sourceMappingURL=data:application/json;base64,
|
38
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2V0UHJvamVjdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbImdldFByb2plY3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBQUEseUNBQXlDO0FBQ3pDLDBFQUEwRTtBQUUxRTs7Ozs7O0dBTUc7QUFDSCxTQUFnQixVQUFVLENBQUMsSUFBb0IsRUFBRSxJQUEyQjtJQUN4RSxJQUFJLEdBQUcsTUFBTSxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsb0JBQW9CLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLENBQUM7SUFDekUsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLE1BQU0sQ0FBQyxzQ0FBc0MsRUFBRTtRQUNqRSxhQUFhLEVBQUUsSUFBSSxDQUFDLFdBQVc7UUFDL0IsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsZ0JBQWdCO0tBQzVDLEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBUEQsZ0NBT0M7QUFrREQ7Ozs7OztHQU1HO0FBQ0gsU0FBZ0IsZ0JBQWdCLENBQUMsSUFBMEIsRUFBRSxJQUFpQztJQUMxRixJQUFJLEdBQUcsTUFBTSxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsb0JBQW9CLEVBQUUsRUFBRSxJQUFJLElBQUksRUFBRSxDQUFDLENBQUM7SUFDekUsT0FBTyxNQUFNLENBQUMsT0FBTyxDQUFDLFlBQVksQ0FBQyxzQ0FBc0MsRUFBRTtRQUN2RSxhQUFhLEVBQUUsSUFBSSxDQUFDLFdBQVc7UUFDL0IsbUJBQW1CLEVBQUUsSUFBSSxDQUFDLGlCQUFpQjtRQUMzQyxrQkFBa0IsRUFBRSxJQUFJLENBQUMsZ0JBQWdCO0tBQzVDLEVBQUUsSUFBSSxDQUFDLENBQUM7QUFDYixDQUFDO0FBUEQsNENBT0MifQ==
|
package/getStorageMover.d.ts
CHANGED
@@ -2,9 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as types from "./types";
|
3
3
|
/**
|
4
4
|
* Gets a Storage Mover resource.
|
5
|
-
* Azure REST API version: 2023-03-01.
|
6
5
|
*
|
7
|
-
*
|
6
|
+
* Uses Azure REST API version 2024-07-01.
|
7
|
+
*
|
8
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
8
9
|
*/
|
9
10
|
export declare function getStorageMover(args: GetStorageMoverArgs, opts?: pulumi.InvokeOptions): Promise<GetStorageMoverResult>;
|
10
11
|
export interface GetStorageMoverArgs {
|
@@ -21,6 +22,10 @@ export interface GetStorageMoverArgs {
|
|
21
22
|
* The Storage Mover resource, which is a container for a group of Agents, Projects, and Endpoints.
|
22
23
|
*/
|
23
24
|
export interface GetStorageMoverResult {
|
25
|
+
/**
|
26
|
+
* The Azure API version of the resource.
|
27
|
+
*/
|
28
|
+
readonly azureApiVersion: string;
|
24
29
|
/**
|
25
30
|
* A description for the Storage Mover.
|
26
31
|
*/
|
@@ -42,7 +47,7 @@ export interface GetStorageMoverResult {
|
|
42
47
|
*/
|
43
48
|
readonly provisioningState: string;
|
44
49
|
/**
|
45
|
-
* Resource
|
50
|
+
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
46
51
|
*/
|
47
52
|
readonly systemData: types.outputs.SystemDataResponse;
|
48
53
|
/**
|
@@ -58,9 +63,10 @@ export interface GetStorageMoverResult {
|
|
58
63
|
}
|
59
64
|
/**
|
60
65
|
* Gets a Storage Mover resource.
|
61
|
-
* Azure REST API version: 2023-03-01.
|
62
66
|
*
|
63
|
-
*
|
67
|
+
* Uses Azure REST API version 2024-07-01.
|
68
|
+
*
|
69
|
+
* Other available API versions: 2023-03-01, 2023-07-01-preview, 2023-10-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagemover [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
|
64
70
|
*/
|
65
71
|
export declare function getStorageMoverOutput(args: GetStorageMoverOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetStorageMoverResult>;
|
66
72
|
export interface GetStorageMoverOutputArgs {
|