@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,169 @@
1
+ export interface AgentPropertiesResponseErrorDetails {
2
+ /**
3
+ * Error code reported by Agent
4
+ */
5
+ code?: string;
6
+ /**
7
+ * Expanded description of reported error code
8
+ */
9
+ message?: string;
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
+ */
32
+ export interface AzureStorageBlobContainerEndpointPropertiesResponse {
33
+ /**
34
+ * The name of the Storage blob container that is the target destination.
35
+ */
36
+ blobContainerName: string;
37
+ /**
38
+ * A description for the Endpoint.
39
+ */
40
+ description?: string;
41
+ /**
42
+ * The Endpoint resource type.
43
+ * Expected value is 'AzureStorageBlobContainer'.
44
+ */
45
+ endpointType: "AzureStorageBlobContainer";
46
+ /**
47
+ * The provisioning state of this resource.
48
+ */
49
+ provisioningState: string;
50
+ /**
51
+ * The Azure Resource ID of the storage account that is the target destination.
52
+ */
53
+ storageAccountResourceId: string;
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
+ */
84
+ export interface NfsMountEndpointPropertiesResponse {
85
+ /**
86
+ * A description for the Endpoint.
87
+ */
88
+ description?: string;
89
+ /**
90
+ * The Endpoint resource type.
91
+ * Expected value is 'NfsMount'.
92
+ */
93
+ endpointType: "NfsMount";
94
+ /**
95
+ * The directory being exported from the server.
96
+ */
97
+ export: string;
98
+ /**
99
+ * The host name or IP address of the server exporting the file system.
100
+ */
101
+ host: string;
102
+ /**
103
+ * The NFS protocol version.
104
+ */
105
+ nfsVersion?: string;
106
+ /**
107
+ * The provisioning state of this resource.
108
+ */
109
+ provisioningState: string;
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
+ }
141
+ /**
142
+ * Metadata pertaining to creation and last modification of the resource.
143
+ */
144
+ export interface SystemDataResponse {
145
+ /**
146
+ * The timestamp of resource creation (UTC).
147
+ */
148
+ createdAt?: string;
149
+ /**
150
+ * The identity that created the resource.
151
+ */
152
+ createdBy?: string;
153
+ /**
154
+ * The type of identity that created the resource.
155
+ */
156
+ createdByType?: string;
157
+ /**
158
+ * The timestamp of resource last modification (UTC)
159
+ */
160
+ lastModifiedAt?: string;
161
+ /**
162
+ * The identity that last modified the resource.
163
+ */
164
+ lastModifiedBy?: string;
165
+ /**
166
+ * The type of identity that last modified the resource.
167
+ */
168
+ lastModifiedByType?: string;
169
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3V0cHV0LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsib3V0cHV0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==