@kengachu-pulumi/azure-native-storagemover 2.90.0 → 3.2.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/types/output.d.ts CHANGED
@@ -8,6 +8,27 @@ export interface AgentPropertiesResponseErrorDetails {
8
8
  */
9
9
  message?: string;
10
10
  }
11
+ /**
12
+ * The Azure Key Vault secret URIs which store the credentials.
13
+ */
14
+ export interface AzureKeyVaultSmbCredentialsResponse {
15
+ /**
16
+ * The Azure Key Vault secret URI which stores the password. Use empty string to clean-up existing value.
17
+ */
18
+ passwordUri?: string;
19
+ /**
20
+ * The Credentials type.
21
+ * Expected value is 'AzureKeyVaultSmb'.
22
+ */
23
+ type: "AzureKeyVaultSmb";
24
+ /**
25
+ * The Azure Key Vault secret URI which stores the username. Use empty string to clean-up existing value.
26
+ */
27
+ usernameUri?: string;
28
+ }
29
+ /**
30
+ * The properties of Azure Storage blob container endpoint.
31
+ */
11
32
  export interface AzureStorageBlobContainerEndpointPropertiesResponse {
12
33
  /**
13
34
  * The name of the Storage blob container that is the target destination.
@@ -31,6 +52,35 @@ export interface AzureStorageBlobContainerEndpointPropertiesResponse {
31
52
  */
32
53
  storageAccountResourceId: string;
33
54
  }
55
+ /**
56
+ * The properties of Azure Storage SMB file share endpoint.
57
+ */
58
+ export interface AzureStorageSmbFileShareEndpointPropertiesResponse {
59
+ /**
60
+ * A description for the Endpoint.
61
+ */
62
+ description?: string;
63
+ /**
64
+ * The Endpoint resource type.
65
+ * Expected value is 'AzureStorageSmbFileShare'.
66
+ */
67
+ endpointType: "AzureStorageSmbFileShare";
68
+ /**
69
+ * The name of the Azure Storage file share.
70
+ */
71
+ fileShareName: string;
72
+ /**
73
+ * The provisioning state of this resource.
74
+ */
75
+ provisioningState: string;
76
+ /**
77
+ * The Azure Resource ID of the storage account.
78
+ */
79
+ storageAccountResourceId: string;
80
+ }
81
+ /**
82
+ * The properties of NFS share endpoint.
83
+ */
34
84
  export interface NfsMountEndpointPropertiesResponse {
35
85
  /**
36
86
  * A description for the Endpoint.
@@ -58,6 +108,36 @@ export interface NfsMountEndpointPropertiesResponse {
58
108
  */
59
109
  provisioningState: string;
60
110
  }
111
+ /**
112
+ * The properties of SMB share endpoint.
113
+ */
114
+ export interface SmbMountEndpointPropertiesResponse {
115
+ /**
116
+ * The Azure Key Vault secret URIs which store the required credentials to access the SMB share.
117
+ */
118
+ credentials?: AzureKeyVaultSmbCredentialsResponse;
119
+ /**
120
+ * A description for the Endpoint.
121
+ */
122
+ description?: string;
123
+ /**
124
+ * The Endpoint resource type.
125
+ * Expected value is 'SmbMount'.
126
+ */
127
+ endpointType: "SmbMount";
128
+ /**
129
+ * The host name or IP address of the server exporting the file system.
130
+ */
131
+ host: string;
132
+ /**
133
+ * The provisioning state of this resource.
134
+ */
135
+ provisioningState: string;
136
+ /**
137
+ * The name of the SMB share being exported from the server.
138
+ */
139
+ shareName: string;
140
+ }
61
141
  /**
62
142
  * Metadata pertaining to creation and last modification of the resource.
63
143
  */
@@ -87,3 +167,54 @@ export interface SystemDataResponse {
87
167
  */
88
168
  lastModifiedByType?: string;
89
169
  }
170
+ /**
171
+ * The time of day.
172
+ */
173
+ export interface TimeResponse {
174
+ /**
175
+ * The hour element of the time. Allowed values range from 0 (start of the selected day) to 24 (end of the selected day). Hour value 24 cannot be combined with any other minute value but 0.
176
+ */
177
+ hour: number;
178
+ /**
179
+ * The minute element of the time. Allowed values are 0 and 30. If not specified, its value defaults to 0.
180
+ */
181
+ minute?: number;
182
+ }
183
+ /**
184
+ * timeResponseProvideDefaults sets the appropriate defaults for TimeResponse
185
+ */
186
+ export declare function timeResponseProvideDefaults(val: TimeResponse): TimeResponse;
187
+ /**
188
+ * The WAN-link upload limit schedule. Overlapping recurrences are not allowed.
189
+ */
190
+ export interface UploadLimitScheduleResponse {
191
+ /**
192
+ * The set of weekly repeating recurrences of the WAN-link upload limit schedule.
193
+ */
194
+ weeklyRecurrences?: UploadLimitWeeklyRecurrenceResponse[];
195
+ }
196
+ /**
197
+ * The weekly recurrence of the WAN-link upload limit schedule. The start time must be earlier in the day than the end time. The recurrence must not span across multiple days.
198
+ */
199
+ export interface UploadLimitWeeklyRecurrenceResponse {
200
+ /**
201
+ * The set of days of week for the schedule recurrence. A day must not be specified more than once in a recurrence.
202
+ */
203
+ days: string[];
204
+ /**
205
+ * The end time of the schedule recurrence. Full hour and 30-minute intervals are supported.
206
+ */
207
+ endTime: TimeResponse;
208
+ /**
209
+ * The WAN-link upload bandwidth (maximum data transfer rate) in megabits per second. Value of 0 indicates no throughput is allowed and any running migration job is effectively paused for the duration of this recurrence. Only data plane operations are governed by this limit. Control plane operations ensure seamless functionality. The agent may exceed this limit with control messages, if necessary.
210
+ */
211
+ limitInMbps: number;
212
+ /**
213
+ * The start time of the schedule recurrence. Full hour and 30-minute intervals are supported.
214
+ */
215
+ startTime: TimeResponse;
216
+ }
217
+ /**
218
+ * uploadLimitWeeklyRecurrenceResponseProvideDefaults sets the appropriate defaults for UploadLimitWeeklyRecurrenceResponse
219
+ */
220
+ export declare function uploadLimitWeeklyRecurrenceResponseProvideDefaults(val: UploadLimitWeeklyRecurrenceResponse): UploadLimitWeeklyRecurrenceResponse;
package/types/output.js CHANGED
@@ -1,3 +1,19 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3V0cHV0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsib3V0cHV0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==
3
+ exports.uploadLimitWeeklyRecurrenceResponseProvideDefaults = exports.timeResponseProvideDefaults = void 0;
4
+ /**
5
+ * timeResponseProvideDefaults sets the appropriate defaults for TimeResponse
6
+ */
7
+ function timeResponseProvideDefaults(val) {
8
+ var _a;
9
+ return Object.assign(Object.assign({}, val), { minute: (_a = (val.minute)) !== null && _a !== void 0 ? _a : 0 });
10
+ }
11
+ exports.timeResponseProvideDefaults = timeResponseProvideDefaults;
12
+ /**
13
+ * uploadLimitWeeklyRecurrenceResponseProvideDefaults sets the appropriate defaults for UploadLimitWeeklyRecurrenceResponse
14
+ */
15
+ function uploadLimitWeeklyRecurrenceResponseProvideDefaults(val) {
16
+ return Object.assign(Object.assign({}, val), { endTime: timeResponseProvideDefaults(val.endTime), startTime: timeResponseProvideDefaults(val.startTime) });
17
+ }
18
+ exports.uploadLimitWeeklyRecurrenceResponseProvideDefaults = uploadLimitWeeklyRecurrenceResponseProvideDefaults;
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3V0cHV0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsib3V0cHV0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7OztBQStMQTs7R0FFRztBQUNILFNBQWdCLDJCQUEyQixDQUFDLEdBQWlCOztJQUN6RCx1Q0FDTyxHQUFHLEtBQ04sTUFBTSxFQUFFLE1BQUEsQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLG1DQUFJLENBQUMsSUFDM0I7QUFDTixDQUFDO0FBTEQsa0VBS0M7QUFpQ0Q7O0dBRUc7QUFDSCxTQUFnQixrREFBa0QsQ0FBQyxHQUF3QztJQUN2Ryx1Q0FDTyxHQUFHLEtBQ04sT0FBTyxFQUFFLDJCQUEyQixDQUFDLEdBQUcsQ0FBQyxPQUFPLENBQUMsRUFDakQsU0FBUyxFQUFFLDJCQUEyQixDQUFDLEdBQUcsQ0FBQyxTQUFTLENBQUMsSUFDdkQ7QUFDTixDQUFDO0FBTkQsZ0hBTUMifQ==