@azure/arm-servicefabricmesh 2.2.1 → 3.0.0-beta.1

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 (267) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/LICENSE +21 -0
  3. package/README.md +69 -80
  4. package/dist/index.js +5478 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/dist-esm/src/index.d.ts +5 -0
  9. package/dist-esm/src/index.d.ts.map +1 -0
  10. package/dist-esm/src/index.js +12 -0
  11. package/dist-esm/src/index.js.map +1 -0
  12. package/dist-esm/src/models/index.d.ts +1366 -0
  13. package/dist-esm/src/models/index.d.ts.map +1 -0
  14. package/dist-esm/src/models/index.js +121 -0
  15. package/dist-esm/src/models/index.js.map +1 -0
  16. package/dist-esm/src/models/mappers.d.ts +105 -0
  17. package/dist-esm/src/models/mappers.d.ts.map +1 -0
  18. package/{esm → dist-esm/src}/models/mappers.js +1264 -1320
  19. package/dist-esm/src/models/mappers.js.map +1 -0
  20. package/dist-esm/src/models/parameters.d.ts +25 -0
  21. package/dist-esm/src/models/parameters.d.ts.map +1 -0
  22. package/{esm → dist-esm/src}/models/parameters.js +104 -62
  23. package/dist-esm/src/models/parameters.js.map +1 -0
  24. package/dist-esm/src/operations/application.d.ts +82 -0
  25. package/dist-esm/src/operations/application.d.ts.map +1 -0
  26. package/dist-esm/src/operations/application.js +340 -0
  27. package/dist-esm/src/operations/application.js.map +1 -0
  28. package/dist-esm/src/operations/codePackage.d.ts +23 -0
  29. package/dist-esm/src/operations/codePackage.d.ts.map +1 -0
  30. package/dist-esm/src/operations/codePackage.js +66 -0
  31. package/dist-esm/src/operations/codePackage.js.map +1 -0
  32. package/dist-esm/src/operations/gateway.d.ts +83 -0
  33. package/dist-esm/src/operations/gateway.d.ts.map +1 -0
  34. package/dist-esm/src/operations/gateway.js +341 -0
  35. package/dist-esm/src/operations/gateway.js.map +1 -0
  36. package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
  37. package/dist-esm/src/operations/index.d.ts.map +1 -0
  38. package/{esm → dist-esm/src}/operations/index.js +3 -5
  39. package/dist-esm/src/operations/index.js.map +1 -0
  40. package/dist-esm/src/operations/network.d.ts +82 -0
  41. package/dist-esm/src/operations/network.d.ts.map +1 -0
  42. package/dist-esm/src/operations/network.js +340 -0
  43. package/dist-esm/src/operations/network.js.map +1 -0
  44. package/dist-esm/src/operations/operations.d.ts +32 -0
  45. package/dist-esm/src/operations/operations.d.ts.map +1 -0
  46. package/dist-esm/src/operations/operations.js +120 -0
  47. package/dist-esm/src/operations/operations.js.map +1 -0
  48. package/dist-esm/src/operations/secret.d.ts +81 -0
  49. package/dist-esm/src/operations/secret.d.ts.map +1 -0
  50. package/dist-esm/src/operations/secret.js +339 -0
  51. package/dist-esm/src/operations/secret.js.map +1 -0
  52. package/dist-esm/src/operations/secretValueOperations.d.ts +81 -0
  53. package/dist-esm/src/operations/secretValueOperations.d.ts.map +1 -0
  54. package/dist-esm/src/operations/secretValueOperations.js +303 -0
  55. package/dist-esm/src/operations/secretValueOperations.js.map +1 -0
  56. package/dist-esm/src/operations/service.d.ts +49 -0
  57. package/dist-esm/src/operations/service.d.ts.map +1 -0
  58. package/dist-esm/src/operations/service.js +177 -0
  59. package/dist-esm/src/operations/service.js.map +1 -0
  60. package/dist-esm/src/operations/serviceReplica.d.ts +53 -0
  61. package/dist-esm/src/operations/serviceReplica.d.ts.map +1 -0
  62. package/dist-esm/src/operations/serviceReplica.js +196 -0
  63. package/dist-esm/src/operations/serviceReplica.js.map +1 -0
  64. package/dist-esm/src/operations/volume.d.ts +81 -0
  65. package/dist-esm/src/operations/volume.d.ts.map +1 -0
  66. package/dist-esm/src/operations/volume.js +339 -0
  67. package/dist-esm/src/operations/volume.js.map +1 -0
  68. package/dist-esm/src/operationsInterfaces/application.d.ts +44 -0
  69. package/dist-esm/src/operationsInterfaces/application.d.ts.map +1 -0
  70. package/dist-esm/src/operationsInterfaces/application.js +9 -0
  71. package/dist-esm/src/operationsInterfaces/application.js.map +1 -0
  72. package/dist-esm/src/operationsInterfaces/codePackage.d.ts +15 -0
  73. package/dist-esm/src/operationsInterfaces/codePackage.d.ts.map +1 -0
  74. package/dist-esm/src/operationsInterfaces/codePackage.js +9 -0
  75. package/dist-esm/src/operationsInterfaces/codePackage.js.map +1 -0
  76. package/dist-esm/src/operationsInterfaces/gateway.d.ts +45 -0
  77. package/dist-esm/src/operationsInterfaces/gateway.d.ts.map +1 -0
  78. package/dist-esm/src/operationsInterfaces/gateway.js +9 -0
  79. package/dist-esm/src/operationsInterfaces/gateway.js.map +1 -0
  80. package/dist-esm/src/operationsInterfaces/index.d.ts +11 -0
  81. package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
  82. package/dist-esm/src/operationsInterfaces/index.js +18 -0
  83. package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
  84. package/dist-esm/src/operationsInterfaces/network.d.ts +44 -0
  85. package/dist-esm/src/operationsInterfaces/network.d.ts.map +1 -0
  86. package/dist-esm/src/operationsInterfaces/network.js +9 -0
  87. package/dist-esm/src/operationsInterfaces/network.js.map +1 -0
  88. package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
  89. package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
  90. package/dist-esm/src/operationsInterfaces/operations.js +9 -0
  91. package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
  92. package/dist-esm/src/operationsInterfaces/secret.d.ts +43 -0
  93. package/dist-esm/src/operationsInterfaces/secret.d.ts.map +1 -0
  94. package/dist-esm/src/operationsInterfaces/secret.js +9 -0
  95. package/dist-esm/src/operationsInterfaces/secret.js.map +1 -0
  96. package/dist-esm/src/operationsInterfaces/secretValueOperations.d.ts +55 -0
  97. package/dist-esm/src/operationsInterfaces/secretValueOperations.d.ts.map +1 -0
  98. package/dist-esm/src/operationsInterfaces/secretValueOperations.js +9 -0
  99. package/dist-esm/src/operationsInterfaces/secretValueOperations.js.map +1 -0
  100. package/dist-esm/src/operationsInterfaces/service.d.ts +23 -0
  101. package/dist-esm/src/operationsInterfaces/service.d.ts.map +1 -0
  102. package/dist-esm/src/operationsInterfaces/service.js +9 -0
  103. package/dist-esm/src/operationsInterfaces/service.js.map +1 -0
  104. package/dist-esm/src/operationsInterfaces/serviceReplica.d.ts +25 -0
  105. package/dist-esm/src/operationsInterfaces/serviceReplica.d.ts.map +1 -0
  106. package/dist-esm/src/operationsInterfaces/serviceReplica.js +9 -0
  107. package/dist-esm/src/operationsInterfaces/serviceReplica.js.map +1 -0
  108. package/dist-esm/src/operationsInterfaces/volume.d.ts +43 -0
  109. package/dist-esm/src/operationsInterfaces/volume.d.ts.map +1 -0
  110. package/dist-esm/src/operationsInterfaces/volume.js +9 -0
  111. package/dist-esm/src/operationsInterfaces/volume.js.map +1 -0
  112. package/dist-esm/src/serviceFabricMeshManagementClient.d.ts +27 -0
  113. package/dist-esm/src/serviceFabricMeshManagementClient.d.ts.map +1 -0
  114. package/dist-esm/src/serviceFabricMeshManagementClient.js +60 -0
  115. package/dist-esm/src/serviceFabricMeshManagementClient.js.map +1 -0
  116. package/dist-esm/test/sampleTest.d.ts +2 -0
  117. package/dist-esm/test/sampleTest.d.ts.map +1 -0
  118. package/dist-esm/test/sampleTest.js +40 -0
  119. package/dist-esm/test/sampleTest.js.map +1 -0
  120. package/package.json +85 -26
  121. package/review/arm-servicefabricmesh.api.md +1210 -0
  122. package/rollup.config.js +184 -27
  123. package/src/index.ts +12 -0
  124. package/src/models/index.ts +1281 -2775
  125. package/src/models/mappers.ts +1315 -1344
  126. package/src/models/parameters.ts +138 -63
  127. package/src/operations/application.ts +260 -269
  128. package/src/operations/codePackage.ts +44 -60
  129. package/src/operations/gateway.ts +263 -272
  130. package/src/operations/index.ts +3 -5
  131. package/src/operations/network.ts +262 -271
  132. package/src/operations/operations.ts +87 -75
  133. package/src/operations/secret.ts +261 -271
  134. package/src/operations/secretValueOperations.ts +239 -259
  135. package/src/operations/service.ts +161 -124
  136. package/src/operations/serviceReplica.ts +177 -120
  137. package/src/operations/volume.ts +261 -271
  138. package/src/operationsInterfaces/application.ts +80 -0
  139. package/src/operationsInterfaces/codePackage.ts +33 -0
  140. package/src/operationsInterfaces/gateway.ts +81 -0
  141. package/src/operationsInterfaces/index.ts +18 -0
  142. package/src/operationsInterfaces/network.ts +80 -0
  143. package/src/operationsInterfaces/operations.ts +22 -0
  144. package/src/operationsInterfaces/secret.ts +79 -0
  145. package/src/operationsInterfaces/secretValueOperations.ts +99 -0
  146. package/src/operationsInterfaces/service.ts +46 -0
  147. package/src/operationsInterfaces/serviceReplica.ts +50 -0
  148. package/src/operationsInterfaces/volume.ts +79 -0
  149. package/src/serviceFabricMeshManagementClient.ts +102 -53
  150. package/tsconfig.json +20 -7
  151. package/types/arm-servicefabricmesh.d.ts +1940 -0
  152. package/types/tsdoc-metadata.json +11 -0
  153. package/dist/arm-servicefabricmesh.js +0 -5363
  154. package/dist/arm-servicefabricmesh.js.map +0 -1
  155. package/dist/arm-servicefabricmesh.min.js +0 -1
  156. package/dist/arm-servicefabricmesh.min.js.map +0 -1
  157. package/esm/models/applicationMappers.d.ts +0 -2
  158. package/esm/models/applicationMappers.d.ts.map +0 -1
  159. package/esm/models/applicationMappers.js +0 -11
  160. package/esm/models/applicationMappers.js.map +0 -1
  161. package/esm/models/codePackageMappers.d.ts +0 -2
  162. package/esm/models/codePackageMappers.d.ts.map +0 -1
  163. package/esm/models/codePackageMappers.js +0 -11
  164. package/esm/models/codePackageMappers.js.map +0 -1
  165. package/esm/models/gatewayMappers.d.ts +0 -2
  166. package/esm/models/gatewayMappers.d.ts.map +0 -1
  167. package/esm/models/gatewayMappers.js +0 -11
  168. package/esm/models/gatewayMappers.js.map +0 -1
  169. package/esm/models/index.d.ts +0 -2938
  170. package/esm/models/index.d.ts.map +0 -1
  171. package/esm/models/index.js +0 -10
  172. package/esm/models/index.js.map +0 -1
  173. package/esm/models/mappers.d.ts +0 -102
  174. package/esm/models/mappers.d.ts.map +0 -1
  175. package/esm/models/mappers.js.map +0 -1
  176. package/esm/models/networkMappers.d.ts +0 -2
  177. package/esm/models/networkMappers.d.ts.map +0 -1
  178. package/esm/models/networkMappers.js +0 -11
  179. package/esm/models/networkMappers.js.map +0 -1
  180. package/esm/models/operationsMappers.d.ts +0 -2
  181. package/esm/models/operationsMappers.d.ts.map +0 -1
  182. package/esm/models/operationsMappers.js +0 -11
  183. package/esm/models/operationsMappers.js.map +0 -1
  184. package/esm/models/parameters.d.ts +0 -17
  185. package/esm/models/parameters.d.ts.map +0 -1
  186. package/esm/models/parameters.js.map +0 -1
  187. package/esm/models/secretMappers.d.ts +0 -2
  188. package/esm/models/secretMappers.d.ts.map +0 -1
  189. package/esm/models/secretMappers.js +0 -11
  190. package/esm/models/secretMappers.js.map +0 -1
  191. package/esm/models/secretValueOperationsMappers.d.ts +0 -2
  192. package/esm/models/secretValueOperationsMappers.d.ts.map +0 -1
  193. package/esm/models/secretValueOperationsMappers.js +0 -11
  194. package/esm/models/secretValueOperationsMappers.js.map +0 -1
  195. package/esm/models/serviceMappers.d.ts +0 -2
  196. package/esm/models/serviceMappers.d.ts.map +0 -1
  197. package/esm/models/serviceMappers.js +0 -11
  198. package/esm/models/serviceMappers.js.map +0 -1
  199. package/esm/models/serviceReplicaMappers.d.ts +0 -2
  200. package/esm/models/serviceReplicaMappers.d.ts.map +0 -1
  201. package/esm/models/serviceReplicaMappers.js +0 -11
  202. package/esm/models/serviceReplicaMappers.js.map +0 -1
  203. package/esm/models/volumeMappers.d.ts +0 -2
  204. package/esm/models/volumeMappers.d.ts.map +0 -1
  205. package/esm/models/volumeMappers.js +0 -11
  206. package/esm/models/volumeMappers.js.map +0 -1
  207. package/esm/operations/application.d.ts +0 -162
  208. package/esm/operations/application.d.ts.map +0 -1
  209. package/esm/operations/application.js +0 -238
  210. package/esm/operations/application.js.map +0 -1
  211. package/esm/operations/codePackage.d.ts +0 -44
  212. package/esm/operations/codePackage.d.ts.map +0 -1
  213. package/esm/operations/codePackage.js +0 -65
  214. package/esm/operations/codePackage.js.map +0 -1
  215. package/esm/operations/gateway.d.ts +0 -163
  216. package/esm/operations/gateway.d.ts.map +0 -1
  217. package/esm/operations/gateway.js +0 -238
  218. package/esm/operations/gateway.js.map +0 -1
  219. package/esm/operations/index.d.ts.map +0 -1
  220. package/esm/operations/index.js.map +0 -1
  221. package/esm/operations/network.d.ts +0 -162
  222. package/esm/operations/network.d.ts.map +0 -1
  223. package/esm/operations/network.js +0 -238
  224. package/esm/operations/network.js.map +0 -1
  225. package/esm/operations/operations.d.ts +0 -48
  226. package/esm/operations/operations.d.ts.map +0 -1
  227. package/esm/operations/operations.js +0 -77
  228. package/esm/operations/operations.js.map +0 -1
  229. package/esm/operations/secret.d.ts +0 -162
  230. package/esm/operations/secret.d.ts.map +0 -1
  231. package/esm/operations/secret.js +0 -238
  232. package/esm/operations/secret.js.map +0 -1
  233. package/esm/operations/secretValueOperations.d.ts +0 -175
  234. package/esm/operations/secretValueOperations.d.ts.map +0 -1
  235. package/esm/operations/secretValueOperations.js +0 -226
  236. package/esm/operations/secretValueOperations.js.map +0 -1
  237. package/esm/operations/service.d.ts +0 -82
  238. package/esm/operations/service.d.ts.map +0 -1
  239. package/esm/operations/service.js +0 -117
  240. package/esm/operations/service.js.map +0 -1
  241. package/esm/operations/serviceReplica.d.ts +0 -88
  242. package/esm/operations/serviceReplica.d.ts.map +0 -1
  243. package/esm/operations/serviceReplica.js +0 -121
  244. package/esm/operations/serviceReplica.js.map +0 -1
  245. package/esm/operations/volume.d.ts +0 -162
  246. package/esm/operations/volume.d.ts.map +0 -1
  247. package/esm/operations/volume.js +0 -238
  248. package/esm/operations/volume.js.map +0 -1
  249. package/esm/serviceFabricMeshManagementClient.d.ts +0 -33
  250. package/esm/serviceFabricMeshManagementClient.d.ts.map +0 -1
  251. package/esm/serviceFabricMeshManagementClient.js +0 -47
  252. package/esm/serviceFabricMeshManagementClient.js.map +0 -1
  253. package/esm/serviceFabricMeshManagementClientContext.d.ts +0 -22
  254. package/esm/serviceFabricMeshManagementClientContext.d.ts.map +0 -1
  255. package/esm/serviceFabricMeshManagementClientContext.js +0 -61
  256. package/esm/serviceFabricMeshManagementClientContext.js.map +0 -1
  257. package/src/models/applicationMappers.ts +0 -76
  258. package/src/models/codePackageMappers.ts +0 -18
  259. package/src/models/gatewayMappers.ts +0 -76
  260. package/src/models/networkMappers.ts +0 -76
  261. package/src/models/operationsMappers.ts +0 -20
  262. package/src/models/secretMappers.ts +0 -76
  263. package/src/models/secretValueOperationsMappers.ts +0 -77
  264. package/src/models/serviceMappers.ts +0 -76
  265. package/src/models/serviceReplicaMappers.ts +0 -40
  266. package/src/models/volumeMappers.ts +0 -76
  267. package/src/serviceFabricMeshManagementClientContext.ts +0 -68
@@ -0,0 +1,1210 @@
1
+ ## API Report File for "@azure/arm-servicefabricmesh"
2
+
3
+ > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
4
+
5
+ ```ts
6
+
7
+ import * as coreAuth from '@azure/core-auth';
8
+ import * as coreClient from '@azure/core-client';
9
+ import { PagedAsyncIterableIterator } from '@azure/core-paging';
10
+
11
+ // @public
12
+ export type AddRemoveReplicaScalingMechanism = AutoScalingMechanism & {
13
+ kind: "AddRemoveReplica";
14
+ minCount: number;
15
+ maxCount: number;
16
+ scaleIncrement: number;
17
+ };
18
+
19
+ // @public
20
+ export interface Application {
21
+ create(resourceGroupName: string, applicationResourceName: string, applicationResourceDescription: ApplicationResourceDescription, options?: ApplicationCreateOptionalParams): Promise<ApplicationCreateResponse>;
22
+ delete(resourceGroupName: string, applicationResourceName: string, options?: ApplicationDeleteOptionalParams): Promise<void>;
23
+ get(resourceGroupName: string, applicationResourceName: string, options?: ApplicationGetOptionalParams): Promise<ApplicationGetResponse>;
24
+ listByResourceGroup(resourceGroupName: string, options?: ApplicationListByResourceGroupOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription>;
25
+ listBySubscription(options?: ApplicationListBySubscriptionOptionalParams): PagedAsyncIterableIterator<ApplicationResourceDescription>;
26
+ }
27
+
28
+ // @public
29
+ export interface ApplicationCreateOptionalParams extends coreClient.OperationOptions {
30
+ }
31
+
32
+ // @public
33
+ export type ApplicationCreateResponse = ApplicationResourceDescription;
34
+
35
+ // @public
36
+ export interface ApplicationDeleteOptionalParams extends coreClient.OperationOptions {
37
+ }
38
+
39
+ // @public
40
+ export interface ApplicationGetOptionalParams extends coreClient.OperationOptions {
41
+ }
42
+
43
+ // @public
44
+ export type ApplicationGetResponse = ApplicationResourceDescription;
45
+
46
+ // @public
47
+ export interface ApplicationListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
48
+ }
49
+
50
+ // @public
51
+ export type ApplicationListByResourceGroupNextResponse = ApplicationResourceDescriptionList;
52
+
53
+ // @public
54
+ export interface ApplicationListByResourceGroupOptionalParams extends coreClient.OperationOptions {
55
+ }
56
+
57
+ // @public
58
+ export type ApplicationListByResourceGroupResponse = ApplicationResourceDescriptionList;
59
+
60
+ // @public
61
+ export interface ApplicationListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
62
+ }
63
+
64
+ // @public
65
+ export type ApplicationListBySubscriptionNextResponse = ApplicationResourceDescriptionList;
66
+
67
+ // @public
68
+ export interface ApplicationListBySubscriptionOptionalParams extends coreClient.OperationOptions {
69
+ }
70
+
71
+ // @public
72
+ export type ApplicationListBySubscriptionResponse = ApplicationResourceDescriptionList;
73
+
74
+ // @public
75
+ export interface ApplicationProperties {
76
+ debugParams?: string;
77
+ description?: string;
78
+ diagnostics?: DiagnosticsDescription;
79
+ readonly healthState?: HealthState;
80
+ readonly serviceNames?: string[];
81
+ services?: ServiceResourceDescription[];
82
+ readonly status?: ResourceStatus;
83
+ readonly statusDetails?: string;
84
+ readonly unhealthyEvaluation?: string;
85
+ }
86
+
87
+ // @public
88
+ export type ApplicationResourceDescription = TrackedResource & {
89
+ readonly provisioningState?: string;
90
+ description?: string;
91
+ services?: ServiceResourceDescription[];
92
+ diagnostics?: DiagnosticsDescription;
93
+ debugParams?: string;
94
+ readonly serviceNames?: string[];
95
+ readonly status?: ResourceStatus;
96
+ readonly statusDetails?: string;
97
+ readonly healthState?: HealthState;
98
+ readonly unhealthyEvaluation?: string;
99
+ };
100
+
101
+ // @public
102
+ export interface ApplicationResourceDescriptionList {
103
+ nextLink?: string;
104
+ value?: ApplicationResourceDescription[];
105
+ }
106
+
107
+ // @public
108
+ export type ApplicationResourceProperties = ProvisionedResourceProperties & ApplicationProperties & {};
109
+
110
+ // @public
111
+ export type ApplicationScopedVolume = VolumeReference & {
112
+ creationParameters: ApplicationScopedVolumeCreationParametersUnion;
113
+ };
114
+
115
+ // @public
116
+ export interface ApplicationScopedVolumeCreationParameters {
117
+ description?: string;
118
+ kind: "ServiceFabricVolumeDisk";
119
+ }
120
+
121
+ // @public
122
+ export type ApplicationScopedVolumeCreationParametersServiceFabricVolumeDisk = ApplicationScopedVolumeCreationParameters & {
123
+ kind: "ServiceFabricVolumeDisk";
124
+ sizeDisk: SizeTypes;
125
+ };
126
+
127
+ // @public (undocumented)
128
+ export type ApplicationScopedVolumeCreationParametersUnion = ApplicationScopedVolumeCreationParameters | ApplicationScopedVolumeCreationParametersServiceFabricVolumeDisk;
129
+
130
+ // @public
131
+ export type ApplicationScopedVolumeKind = string;
132
+
133
+ // @public
134
+ export interface AutoScalingMechanism {
135
+ kind: "AddRemoveReplica";
136
+ }
137
+
138
+ // @public
139
+ export type AutoScalingMechanismKind = string;
140
+
141
+ // @public (undocumented)
142
+ export type AutoScalingMechanismUnion = AutoScalingMechanism | AddRemoveReplicaScalingMechanism;
143
+
144
+ // @public
145
+ export interface AutoScalingMetric {
146
+ kind: "Resource";
147
+ }
148
+
149
+ // @public
150
+ export type AutoScalingMetricKind = string;
151
+
152
+ // @public (undocumented)
153
+ export type AutoScalingMetricUnion = AutoScalingMetric | AutoScalingResourceMetric;
154
+
155
+ // @public
156
+ export interface AutoScalingPolicy {
157
+ mechanism: AutoScalingMechanismUnion;
158
+ name: string;
159
+ trigger: AutoScalingTriggerUnion;
160
+ }
161
+
162
+ // @public
163
+ export type AutoScalingResourceMetric = AutoScalingMetric & {
164
+ kind: "Resource";
165
+ name: AutoScalingResourceMetricName;
166
+ };
167
+
168
+ // @public
169
+ export type AutoScalingResourceMetricName = string;
170
+
171
+ // @public
172
+ export interface AutoScalingTrigger {
173
+ kind: "AverageLoad";
174
+ }
175
+
176
+ // @public
177
+ export type AutoScalingTriggerKind = string;
178
+
179
+ // @public (undocumented)
180
+ export type AutoScalingTriggerUnion = AutoScalingTrigger | AverageLoadScalingTrigger;
181
+
182
+ // @public
183
+ export interface AvailableOperationDisplay {
184
+ description?: string;
185
+ operation?: string;
186
+ provider?: string;
187
+ resource?: string;
188
+ }
189
+
190
+ // @public
191
+ export type AverageLoadScalingTrigger = AutoScalingTrigger & {
192
+ kind: "AverageLoad";
193
+ metric: AutoScalingMetricUnion;
194
+ lowerLoadThreshold: number;
195
+ upperLoadThreshold: number;
196
+ scaleIntervalInSeconds: number;
197
+ };
198
+
199
+ // @public
200
+ export type AzureInternalMonitoringPipelineSinkDescription = DiagnosticsSinkProperties & {
201
+ kind: "AzureInternalMonitoringPipeline";
202
+ accountName?: string;
203
+ namespace?: string;
204
+ maConfigUrl?: string;
205
+ fluentdConfigUrl?: any;
206
+ autoKeyConfigUrl?: string;
207
+ };
208
+
209
+ // @public
210
+ export interface CodePackage {
211
+ getContainerLogs(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, replicaName: string, codePackageName: string, options?: CodePackageGetContainerLogsOptionalParams): Promise<CodePackageGetContainerLogsResponse>;
212
+ }
213
+
214
+ // @public
215
+ export interface CodePackageGetContainerLogsOptionalParams extends coreClient.OperationOptions {
216
+ tail?: number;
217
+ }
218
+
219
+ // @public
220
+ export type CodePackageGetContainerLogsResponse = ContainerLogs;
221
+
222
+ // @public
223
+ export interface ContainerCodePackageProperties {
224
+ commands?: string[];
225
+ diagnostics?: DiagnosticsRef;
226
+ endpoints?: EndpointProperties[];
227
+ entrypoint?: string;
228
+ environmentVariables?: EnvironmentVariable[];
229
+ image: string;
230
+ imageRegistryCredential?: ImageRegistryCredential;
231
+ readonly instanceView?: ContainerInstanceView;
232
+ labels?: ContainerLabel[];
233
+ name: string;
234
+ reliableCollectionsRefs?: ReliableCollectionsRef[];
235
+ resources: ResourceRequirements;
236
+ settings?: Setting[];
237
+ volumeRefs?: VolumeReference[];
238
+ volumes?: ApplicationScopedVolume[];
239
+ }
240
+
241
+ // @public
242
+ export interface ContainerEvent {
243
+ count?: number;
244
+ firstTimestamp?: string;
245
+ lastTimestamp?: string;
246
+ message?: string;
247
+ name?: string;
248
+ type?: string;
249
+ }
250
+
251
+ // @public
252
+ export interface ContainerInstanceView {
253
+ currentState?: ContainerState;
254
+ events?: ContainerEvent[];
255
+ previousState?: ContainerState;
256
+ restartCount?: number;
257
+ }
258
+
259
+ // @public
260
+ export interface ContainerLabel {
261
+ name: string;
262
+ value: string;
263
+ }
264
+
265
+ // @public
266
+ export interface ContainerLogs {
267
+ content?: string;
268
+ }
269
+
270
+ // @public
271
+ export interface ContainerState {
272
+ detailStatus?: string;
273
+ exitCode?: string;
274
+ finishTime?: Date;
275
+ startTime?: Date;
276
+ state?: string;
277
+ }
278
+
279
+ // @public
280
+ export interface DiagnosticsDescription {
281
+ defaultSinkRefs?: string[];
282
+ enabled?: boolean;
283
+ sinks?: DiagnosticsSinkPropertiesUnion[];
284
+ }
285
+
286
+ // @public
287
+ export interface DiagnosticsRef {
288
+ enabled?: boolean;
289
+ sinkRefs?: string[];
290
+ }
291
+
292
+ // @public
293
+ export type DiagnosticsSinkKind = string;
294
+
295
+ // @public
296
+ export interface DiagnosticsSinkProperties {
297
+ description?: string;
298
+ kind: "AzureInternalMonitoringPipeline";
299
+ name?: string;
300
+ }
301
+
302
+ // @public (undocumented)
303
+ export type DiagnosticsSinkPropertiesUnion = DiagnosticsSinkProperties | AzureInternalMonitoringPipelineSinkDescription;
304
+
305
+ // @public
306
+ export interface EndpointProperties {
307
+ name: string;
308
+ port?: number;
309
+ }
310
+
311
+ // @public
312
+ export interface EndpointRef {
313
+ name?: string;
314
+ }
315
+
316
+ // @public
317
+ export interface EnvironmentVariable {
318
+ name?: string;
319
+ value?: string;
320
+ }
321
+
322
+ // @public
323
+ export interface ErrorDetailsModel {
324
+ // (undocumented)
325
+ code: string;
326
+ message: string;
327
+ }
328
+
329
+ // @public
330
+ export interface ErrorErrorModel {
331
+ // (undocumented)
332
+ code: string;
333
+ details?: ErrorDetailsModel[];
334
+ // (undocumented)
335
+ innerError?: string;
336
+ message?: string;
337
+ }
338
+
339
+ // @public
340
+ export interface ErrorModel {
341
+ error: ErrorErrorModel;
342
+ }
343
+
344
+ // @public
345
+ export interface Gateway {
346
+ create(resourceGroupName: string, gatewayResourceName: string, gatewayResourceDescription: GatewayResourceDescription, options?: GatewayCreateOptionalParams): Promise<GatewayCreateResponse>;
347
+ delete(resourceGroupName: string, gatewayResourceName: string, options?: GatewayDeleteOptionalParams): Promise<void>;
348
+ get(resourceGroupName: string, gatewayResourceName: string, options?: GatewayGetOptionalParams): Promise<GatewayGetResponse>;
349
+ listByResourceGroup(resourceGroupName: string, options?: GatewayListByResourceGroupOptionalParams): PagedAsyncIterableIterator<GatewayResourceDescription>;
350
+ listBySubscription(options?: GatewayListBySubscriptionOptionalParams): PagedAsyncIterableIterator<GatewayResourceDescription>;
351
+ }
352
+
353
+ // @public
354
+ export interface GatewayCreateOptionalParams extends coreClient.OperationOptions {
355
+ }
356
+
357
+ // @public
358
+ export type GatewayCreateResponse = GatewayResourceDescription;
359
+
360
+ // @public
361
+ export interface GatewayDeleteOptionalParams extends coreClient.OperationOptions {
362
+ }
363
+
364
+ // @public
365
+ export interface GatewayDestination {
366
+ applicationName: string;
367
+ endpointName: string;
368
+ serviceName: string;
369
+ }
370
+
371
+ // @public
372
+ export interface GatewayGetOptionalParams extends coreClient.OperationOptions {
373
+ }
374
+
375
+ // @public
376
+ export type GatewayGetResponse = GatewayResourceDescription;
377
+
378
+ // @public
379
+ export interface GatewayListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
380
+ }
381
+
382
+ // @public
383
+ export type GatewayListByResourceGroupNextResponse = GatewayResourceDescriptionList;
384
+
385
+ // @public
386
+ export interface GatewayListByResourceGroupOptionalParams extends coreClient.OperationOptions {
387
+ }
388
+
389
+ // @public
390
+ export type GatewayListByResourceGroupResponse = GatewayResourceDescriptionList;
391
+
392
+ // @public
393
+ export interface GatewayListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
394
+ }
395
+
396
+ // @public
397
+ export type GatewayListBySubscriptionNextResponse = GatewayResourceDescriptionList;
398
+
399
+ // @public
400
+ export interface GatewayListBySubscriptionOptionalParams extends coreClient.OperationOptions {
401
+ }
402
+
403
+ // @public
404
+ export type GatewayListBySubscriptionResponse = GatewayResourceDescriptionList;
405
+
406
+ // @public
407
+ export interface GatewayProperties {
408
+ description?: string;
409
+ destinationNetwork: NetworkRef;
410
+ http?: HttpConfig[];
411
+ readonly ipAddress?: string;
412
+ sourceNetwork: NetworkRef;
413
+ readonly status?: ResourceStatus;
414
+ readonly statusDetails?: string;
415
+ tcp?: TcpConfig[];
416
+ }
417
+
418
+ // @public
419
+ export type GatewayResourceDescription = TrackedResource & {
420
+ readonly provisioningState?: string;
421
+ description?: string;
422
+ sourceNetwork: NetworkRef;
423
+ destinationNetwork: NetworkRef;
424
+ tcp?: TcpConfig[];
425
+ http?: HttpConfig[];
426
+ readonly status?: ResourceStatus;
427
+ readonly statusDetails?: string;
428
+ readonly ipAddress?: string;
429
+ };
430
+
431
+ // @public
432
+ export interface GatewayResourceDescriptionList {
433
+ nextLink?: string;
434
+ value?: GatewayResourceDescription[];
435
+ }
436
+
437
+ // @public
438
+ export type GatewayResourceProperties = ProvisionedResourceProperties & GatewayProperties & {};
439
+
440
+ // @public
441
+ export type HeaderMatchType = string;
442
+
443
+ // @public
444
+ export type HealthState = string;
445
+
446
+ // @public
447
+ export interface HttpConfig {
448
+ hosts: HttpHostConfig[];
449
+ name: string;
450
+ port: number;
451
+ }
452
+
453
+ // @public
454
+ export interface HttpHostConfig {
455
+ name: string;
456
+ routes: HttpRouteConfig[];
457
+ }
458
+
459
+ // @public
460
+ export interface HttpRouteConfig {
461
+ destination: GatewayDestination;
462
+ match: HttpRouteMatchRule;
463
+ name: string;
464
+ }
465
+
466
+ // @public
467
+ export interface HttpRouteMatchHeader {
468
+ name: string;
469
+ type?: HeaderMatchType;
470
+ value?: string;
471
+ }
472
+
473
+ // @public
474
+ export interface HttpRouteMatchPath {
475
+ rewrite?: string;
476
+ type: PathMatchType;
477
+ value: string;
478
+ }
479
+
480
+ // @public
481
+ export interface HttpRouteMatchRule {
482
+ headers?: HttpRouteMatchHeader[];
483
+ path: HttpRouteMatchPath;
484
+ }
485
+
486
+ // @public
487
+ export interface ImageRegistryCredential {
488
+ password?: string;
489
+ server: string;
490
+ username: string;
491
+ }
492
+
493
+ // @public
494
+ export type InlinedValueSecretResourceProperties = SecretResourceProperties & {};
495
+
496
+ // @public
497
+ export enum KnownApplicationScopedVolumeKind {
498
+ ServiceFabricVolumeDisk = "ServiceFabricVolumeDisk"
499
+ }
500
+
501
+ // @public
502
+ export enum KnownAutoScalingMechanismKind {
503
+ AddRemoveReplica = "AddRemoveReplica"
504
+ }
505
+
506
+ // @public
507
+ export enum KnownAutoScalingMetricKind {
508
+ Resource = "Resource"
509
+ }
510
+
511
+ // @public
512
+ export enum KnownAutoScalingResourceMetricName {
513
+ Cpu = "cpu",
514
+ MemoryInGB = "memoryInGB"
515
+ }
516
+
517
+ // @public
518
+ export enum KnownAutoScalingTriggerKind {
519
+ AverageLoad = "AverageLoad"
520
+ }
521
+
522
+ // @public
523
+ export enum KnownDiagnosticsSinkKind {
524
+ AzureInternalMonitoringPipeline = "AzureInternalMonitoringPipeline",
525
+ Invalid = "Invalid"
526
+ }
527
+
528
+ // @public
529
+ export enum KnownHeaderMatchType {
530
+ // (undocumented)
531
+ Exact = "exact"
532
+ }
533
+
534
+ // @public
535
+ export enum KnownHealthState {
536
+ Error = "Error",
537
+ Invalid = "Invalid",
538
+ Ok = "Ok",
539
+ Unknown = "Unknown",
540
+ Warning = "Warning"
541
+ }
542
+
543
+ // @public
544
+ export enum KnownNetworkKind {
545
+ Local = "Local"
546
+ }
547
+
548
+ // @public
549
+ export enum KnownOperatingSystemType {
550
+ Linux = "Linux",
551
+ Windows = "Windows"
552
+ }
553
+
554
+ // @public
555
+ export enum KnownPathMatchType {
556
+ // (undocumented)
557
+ Prefix = "prefix"
558
+ }
559
+
560
+ // @public
561
+ export enum KnownResourceStatus {
562
+ Creating = "Creating",
563
+ Deleting = "Deleting",
564
+ Failed = "Failed",
565
+ Ready = "Ready",
566
+ Unknown = "Unknown",
567
+ Upgrading = "Upgrading"
568
+ }
569
+
570
+ // @public
571
+ export enum KnownSecretKind {
572
+ InlinedValue = "inlinedValue"
573
+ }
574
+
575
+ // @public
576
+ export enum KnownSizeTypes {
577
+ // (undocumented)
578
+ Large = "Large",
579
+ // (undocumented)
580
+ Medium = "Medium",
581
+ // (undocumented)
582
+ Small = "Small"
583
+ }
584
+
585
+ // @public
586
+ export enum KnownVolumeProvider {
587
+ SFAzureFile = "SFAzureFile"
588
+ }
589
+
590
+ // @public
591
+ export type LocalNetworkResourceProperties = NetworkResourceProperties & {
592
+ networkAddressPrefix?: string;
593
+ };
594
+
595
+ // @public
596
+ export interface ManagedProxyResource {
597
+ readonly id?: string;
598
+ name?: string;
599
+ readonly type?: string;
600
+ }
601
+
602
+ // @public
603
+ export interface Network {
604
+ create(resourceGroupName: string, networkResourceName: string, networkResourceDescription: NetworkResourceDescription, options?: NetworkCreateOptionalParams): Promise<NetworkCreateResponse>;
605
+ delete(resourceGroupName: string, networkResourceName: string, options?: NetworkDeleteOptionalParams): Promise<void>;
606
+ get(resourceGroupName: string, networkResourceName: string, options?: NetworkGetOptionalParams): Promise<NetworkGetResponse>;
607
+ listByResourceGroup(resourceGroupName: string, options?: NetworkListByResourceGroupOptionalParams): PagedAsyncIterableIterator<NetworkResourceDescription>;
608
+ listBySubscription(options?: NetworkListBySubscriptionOptionalParams): PagedAsyncIterableIterator<NetworkResourceDescription>;
609
+ }
610
+
611
+ // @public
612
+ export interface NetworkCreateOptionalParams extends coreClient.OperationOptions {
613
+ }
614
+
615
+ // @public
616
+ export type NetworkCreateResponse = NetworkResourceDescription;
617
+
618
+ // @public
619
+ export interface NetworkDeleteOptionalParams extends coreClient.OperationOptions {
620
+ }
621
+
622
+ // @public
623
+ export interface NetworkGetOptionalParams extends coreClient.OperationOptions {
624
+ }
625
+
626
+ // @public
627
+ export type NetworkGetResponse = NetworkResourceDescription;
628
+
629
+ // @public
630
+ export type NetworkKind = string;
631
+
632
+ // @public
633
+ export interface NetworkListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
634
+ }
635
+
636
+ // @public
637
+ export type NetworkListByResourceGroupNextResponse = NetworkResourceDescriptionList;
638
+
639
+ // @public
640
+ export interface NetworkListByResourceGroupOptionalParams extends coreClient.OperationOptions {
641
+ }
642
+
643
+ // @public
644
+ export type NetworkListByResourceGroupResponse = NetworkResourceDescriptionList;
645
+
646
+ // @public
647
+ export interface NetworkListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
648
+ }
649
+
650
+ // @public
651
+ export type NetworkListBySubscriptionNextResponse = NetworkResourceDescriptionList;
652
+
653
+ // @public
654
+ export interface NetworkListBySubscriptionOptionalParams extends coreClient.OperationOptions {
655
+ }
656
+
657
+ // @public
658
+ export type NetworkListBySubscriptionResponse = NetworkResourceDescriptionList;
659
+
660
+ // @public
661
+ export interface NetworkRef {
662
+ endpointRefs?: EndpointRef[];
663
+ name?: string;
664
+ }
665
+
666
+ // @public
667
+ export type NetworkResourceDescription = TrackedResource & {
668
+ properties: NetworkResourcePropertiesUnion;
669
+ };
670
+
671
+ // @public
672
+ export interface NetworkResourceDescriptionList {
673
+ nextLink?: string;
674
+ value?: NetworkResourceDescription[];
675
+ }
676
+
677
+ // @public
678
+ export type NetworkResourceProperties = NetworkResourcePropertiesBase & {
679
+ description?: string;
680
+ readonly status?: ResourceStatus;
681
+ readonly statusDetails?: string;
682
+ };
683
+
684
+ // @public
685
+ export type NetworkResourcePropertiesBase = ProvisionedResourceProperties & {
686
+ kind: NetworkKind;
687
+ };
688
+
689
+ // @public (undocumented)
690
+ export type NetworkResourcePropertiesBaseUnion = NetworkResourcePropertiesBase | NetworkResourcePropertiesUnion;
691
+
692
+ // @public (undocumented)
693
+ export type NetworkResourcePropertiesUnion = NetworkResourceProperties | LocalNetworkResourceProperties;
694
+
695
+ // @public
696
+ export type OperatingSystemType = string;
697
+
698
+ // @public
699
+ export interface OperationListResult {
700
+ readonly nextLink?: string;
701
+ value?: OperationResult[];
702
+ }
703
+
704
+ // @public
705
+ export interface OperationResult {
706
+ display?: AvailableOperationDisplay;
707
+ name?: string;
708
+ nextLink?: string;
709
+ origin?: string;
710
+ }
711
+
712
+ // @public
713
+ export interface Operations {
714
+ list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<OperationResult>;
715
+ }
716
+
717
+ // @public
718
+ export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
719
+ }
720
+
721
+ // @public
722
+ export type OperationsListNextResponse = OperationListResult;
723
+
724
+ // @public
725
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
726
+ }
727
+
728
+ // @public
729
+ export type OperationsListResponse = OperationListResult;
730
+
731
+ // @public
732
+ export type PathMatchType = string;
733
+
734
+ // @public
735
+ export interface ProvisionedResourceProperties {
736
+ readonly provisioningState?: string;
737
+ }
738
+
739
+ // @public
740
+ export type ProxyResource = Resource & {};
741
+
742
+ // @public
743
+ export interface ReliableCollectionsRef {
744
+ doNotPersistState?: boolean;
745
+ name: string;
746
+ }
747
+
748
+ // @public
749
+ export interface Resource {
750
+ readonly id?: string;
751
+ readonly name?: string;
752
+ readonly type?: string;
753
+ }
754
+
755
+ // @public
756
+ export interface ResourceLimits {
757
+ cpu?: number;
758
+ memoryInGB?: number;
759
+ }
760
+
761
+ // @public
762
+ export interface ResourceRequests {
763
+ cpu: number;
764
+ memoryInGB: number;
765
+ }
766
+
767
+ // @public
768
+ export interface ResourceRequirements {
769
+ limits?: ResourceLimits;
770
+ requests: ResourceRequests;
771
+ }
772
+
773
+ // @public
774
+ export type ResourceStatus = string;
775
+
776
+ // @public
777
+ export interface Secret {
778
+ create(resourceGroupName: string, secretResourceName: string, secretResourceDescription: SecretResourceDescription, options?: SecretCreateOptionalParams): Promise<SecretCreateResponse>;
779
+ delete(resourceGroupName: string, secretResourceName: string, options?: SecretDeleteOptionalParams): Promise<void>;
780
+ get(resourceGroupName: string, secretResourceName: string, options?: SecretGetOptionalParams): Promise<SecretGetResponse>;
781
+ listByResourceGroup(resourceGroupName: string, options?: SecretListByResourceGroupOptionalParams): PagedAsyncIterableIterator<SecretResourceDescription>;
782
+ listBySubscription(options?: SecretListBySubscriptionOptionalParams): PagedAsyncIterableIterator<SecretResourceDescription>;
783
+ }
784
+
785
+ // @public
786
+ export interface SecretCreateOptionalParams extends coreClient.OperationOptions {
787
+ }
788
+
789
+ // @public
790
+ export type SecretCreateResponse = SecretResourceDescription;
791
+
792
+ // @public
793
+ export interface SecretDeleteOptionalParams extends coreClient.OperationOptions {
794
+ }
795
+
796
+ // @public
797
+ export interface SecretGetOptionalParams extends coreClient.OperationOptions {
798
+ }
799
+
800
+ // @public
801
+ export type SecretGetResponse = SecretResourceDescription;
802
+
803
+ // @public
804
+ export type SecretKind = string;
805
+
806
+ // @public
807
+ export interface SecretListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
808
+ }
809
+
810
+ // @public
811
+ export type SecretListByResourceGroupNextResponse = SecretResourceDescriptionList;
812
+
813
+ // @public
814
+ export interface SecretListByResourceGroupOptionalParams extends coreClient.OperationOptions {
815
+ }
816
+
817
+ // @public
818
+ export type SecretListByResourceGroupResponse = SecretResourceDescriptionList;
819
+
820
+ // @public
821
+ export interface SecretListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
822
+ }
823
+
824
+ // @public
825
+ export type SecretListBySubscriptionNextResponse = SecretResourceDescriptionList;
826
+
827
+ // @public
828
+ export interface SecretListBySubscriptionOptionalParams extends coreClient.OperationOptions {
829
+ }
830
+
831
+ // @public
832
+ export type SecretListBySubscriptionResponse = SecretResourceDescriptionList;
833
+
834
+ // @public
835
+ export type SecretResourceDescription = TrackedResource & {
836
+ properties: SecretResourcePropertiesUnion;
837
+ };
838
+
839
+ // @public
840
+ export interface SecretResourceDescriptionList {
841
+ nextLink?: string;
842
+ value?: SecretResourceDescription[];
843
+ }
844
+
845
+ // @public
846
+ export type SecretResourceProperties = SecretResourcePropertiesBase & {
847
+ description?: string;
848
+ readonly status?: ResourceStatus;
849
+ readonly statusDetails?: string;
850
+ contentType?: string;
851
+ };
852
+
853
+ // @public
854
+ export type SecretResourcePropertiesBase = ProvisionedResourceProperties & {
855
+ kind: SecretKind;
856
+ };
857
+
858
+ // @public (undocumented)
859
+ export type SecretResourcePropertiesBaseUnion = SecretResourcePropertiesBase | SecretResourcePropertiesUnion;
860
+
861
+ // @public (undocumented)
862
+ export type SecretResourcePropertiesUnion = SecretResourceProperties | InlinedValueSecretResourceProperties;
863
+
864
+ // @public
865
+ export interface SecretValue {
866
+ value?: string;
867
+ }
868
+
869
+ // @public
870
+ export interface SecretValueCreateOptionalParams extends coreClient.OperationOptions {
871
+ }
872
+
873
+ // @public
874
+ export type SecretValueCreateResponse = SecretValueResourceDescription;
875
+
876
+ // @public
877
+ export interface SecretValueDeleteOptionalParams extends coreClient.OperationOptions {
878
+ }
879
+
880
+ // @public
881
+ export interface SecretValueGetOptionalParams extends coreClient.OperationOptions {
882
+ }
883
+
884
+ // @public
885
+ export type SecretValueGetResponse = SecretValueResourceDescription;
886
+
887
+ // @public
888
+ export interface SecretValueListNextOptionalParams extends coreClient.OperationOptions {
889
+ }
890
+
891
+ // @public
892
+ export type SecretValueListNextResponse = SecretValueResourceDescriptionList;
893
+
894
+ // @public
895
+ export interface SecretValueListOptionalParams extends coreClient.OperationOptions {
896
+ }
897
+
898
+ // @public
899
+ export type SecretValueListResponse = SecretValueResourceDescriptionList;
900
+
901
+ // @public
902
+ export interface SecretValueListValueOptionalParams extends coreClient.OperationOptions {
903
+ }
904
+
905
+ // @public
906
+ export type SecretValueListValueResponse = SecretValue;
907
+
908
+ // @public
909
+ export interface SecretValueOperations {
910
+ create(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, secretValueResourceDescription: SecretValueResourceDescription, options?: SecretValueCreateOptionalParams): Promise<SecretValueCreateResponse>;
911
+ delete(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueDeleteOptionalParams): Promise<void>;
912
+ get(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueGetOptionalParams): Promise<SecretValueGetResponse>;
913
+ list(resourceGroupName: string, secretResourceName: string, options?: SecretValueListOptionalParams): PagedAsyncIterableIterator<SecretValueResourceDescription>;
914
+ listValue(resourceGroupName: string, secretResourceName: string, secretValueResourceName: string, options?: SecretValueListValueOptionalParams): Promise<SecretValueListValueResponse>;
915
+ }
916
+
917
+ // @public
918
+ export interface SecretValueProperties {
919
+ value?: string;
920
+ }
921
+
922
+ // @public
923
+ export type SecretValueResourceDescription = TrackedResource & {
924
+ readonly provisioningState?: string;
925
+ value?: string;
926
+ };
927
+
928
+ // @public
929
+ export interface SecretValueResourceDescriptionList {
930
+ nextLink?: string;
931
+ value?: SecretValueResourceDescription[];
932
+ }
933
+
934
+ // @public
935
+ export type SecretValueResourceProperties = ProvisionedResourceProperties & SecretValueProperties & {};
936
+
937
+ // @public
938
+ export interface Service {
939
+ get(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, options?: ServiceGetOptionalParams): Promise<ServiceGetResponse>;
940
+ list(resourceGroupName: string, applicationResourceName: string, options?: ServiceListOptionalParams): PagedAsyncIterableIterator<ServiceResourceDescription>;
941
+ }
942
+
943
+ // @public (undocumented)
944
+ export class ServiceFabricMeshManagementClient extends coreClient.ServiceClient {
945
+ // (undocumented)
946
+ $host: string;
947
+ constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: ServiceFabricMeshManagementClientOptionalParams);
948
+ // (undocumented)
949
+ apiVersion: string;
950
+ // (undocumented)
951
+ application: Application;
952
+ // (undocumented)
953
+ codePackage: CodePackage;
954
+ // (undocumented)
955
+ gateway: Gateway;
956
+ // (undocumented)
957
+ network: Network;
958
+ // (undocumented)
959
+ operations: Operations;
960
+ // (undocumented)
961
+ secret: Secret;
962
+ // (undocumented)
963
+ secretValueOperations: SecretValueOperations;
964
+ // (undocumented)
965
+ service: Service;
966
+ // (undocumented)
967
+ serviceReplica: ServiceReplica;
968
+ // (undocumented)
969
+ subscriptionId: string;
970
+ // (undocumented)
971
+ volume: Volume;
972
+ }
973
+
974
+ // @public
975
+ export interface ServiceFabricMeshManagementClientOptionalParams extends coreClient.ServiceClientOptions {
976
+ $host?: string;
977
+ apiVersion?: string;
978
+ endpoint?: string;
979
+ }
980
+
981
+ // @public
982
+ export interface ServiceGetOptionalParams extends coreClient.OperationOptions {
983
+ }
984
+
985
+ // @public
986
+ export type ServiceGetResponse = ServiceResourceDescription;
987
+
988
+ // @public
989
+ export interface ServiceListNextOptionalParams extends coreClient.OperationOptions {
990
+ }
991
+
992
+ // @public
993
+ export type ServiceListNextResponse = ServiceResourceDescriptionList;
994
+
995
+ // @public
996
+ export interface ServiceListOptionalParams extends coreClient.OperationOptions {
997
+ }
998
+
999
+ // @public
1000
+ export type ServiceListResponse = ServiceResourceDescriptionList;
1001
+
1002
+ // @public
1003
+ export interface ServiceProperties {
1004
+ autoScalingPolicies?: AutoScalingPolicy[];
1005
+ description?: string;
1006
+ readonly healthState?: HealthState;
1007
+ replicaCount?: number;
1008
+ readonly status?: ResourceStatus;
1009
+ readonly statusDetails?: string;
1010
+ readonly unhealthyEvaluation?: string;
1011
+ }
1012
+
1013
+ // @public
1014
+ export interface ServiceReplica {
1015
+ get(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, replicaName: string, options?: ServiceReplicaGetOptionalParams): Promise<ServiceReplicaGetResponse>;
1016
+ list(resourceGroupName: string, applicationResourceName: string, serviceResourceName: string, options?: ServiceReplicaListOptionalParams): PagedAsyncIterableIterator<ServiceReplicaDescription>;
1017
+ }
1018
+
1019
+ // @public
1020
+ export type ServiceReplicaDescription = ServiceReplicaProperties & {
1021
+ replicaName: string;
1022
+ };
1023
+
1024
+ // @public
1025
+ export interface ServiceReplicaDescriptionList {
1026
+ nextLink?: string;
1027
+ value?: ServiceReplicaDescription[];
1028
+ }
1029
+
1030
+ // @public
1031
+ export interface ServiceReplicaGetOptionalParams extends coreClient.OperationOptions {
1032
+ }
1033
+
1034
+ // @public
1035
+ export type ServiceReplicaGetResponse = ServiceReplicaDescription;
1036
+
1037
+ // @public
1038
+ export interface ServiceReplicaListNextOptionalParams extends coreClient.OperationOptions {
1039
+ }
1040
+
1041
+ // @public
1042
+ export type ServiceReplicaListNextResponse = ServiceReplicaDescriptionList;
1043
+
1044
+ // @public
1045
+ export interface ServiceReplicaListOptionalParams extends coreClient.OperationOptions {
1046
+ }
1047
+
1048
+ // @public
1049
+ export type ServiceReplicaListResponse = ServiceReplicaDescriptionList;
1050
+
1051
+ // @public
1052
+ export interface ServiceReplicaProperties {
1053
+ codePackages: ContainerCodePackageProperties[];
1054
+ diagnostics?: DiagnosticsRef;
1055
+ networkRefs?: NetworkRef[];
1056
+ osType: OperatingSystemType;
1057
+ }
1058
+
1059
+ // @public
1060
+ export type ServiceResourceDescription = ManagedProxyResource & {
1061
+ readonly provisioningState?: string;
1062
+ osType: OperatingSystemType;
1063
+ codePackages: ContainerCodePackageProperties[];
1064
+ networkRefs?: NetworkRef[];
1065
+ diagnostics?: DiagnosticsRef;
1066
+ description?: string;
1067
+ replicaCount?: number;
1068
+ autoScalingPolicies?: AutoScalingPolicy[];
1069
+ readonly status?: ResourceStatus;
1070
+ readonly statusDetails?: string;
1071
+ readonly healthState?: HealthState;
1072
+ readonly unhealthyEvaluation?: string;
1073
+ };
1074
+
1075
+ // @public
1076
+ export interface ServiceResourceDescriptionList {
1077
+ nextLink?: string;
1078
+ value?: ServiceResourceDescription[];
1079
+ }
1080
+
1081
+ // @public
1082
+ export type ServiceResourceProperties = ProvisionedResourceProperties & ServiceReplicaProperties & ServiceProperties & {};
1083
+
1084
+ // @public
1085
+ export interface Setting {
1086
+ name?: string;
1087
+ value?: string;
1088
+ }
1089
+
1090
+ // @public
1091
+ export type SizeTypes = string;
1092
+
1093
+ // @public
1094
+ export interface TcpConfig {
1095
+ destination: GatewayDestination;
1096
+ name: string;
1097
+ port: number;
1098
+ }
1099
+
1100
+ // @public
1101
+ export type TrackedResource = Resource & {
1102
+ tags?: {
1103
+ [propertyName: string]: string;
1104
+ };
1105
+ location: string;
1106
+ };
1107
+
1108
+ // @public
1109
+ export interface Volume {
1110
+ create(resourceGroupName: string, volumeResourceName: string, volumeResourceDescription: VolumeResourceDescription, options?: VolumeCreateOptionalParams): Promise<VolumeCreateResponse>;
1111
+ delete(resourceGroupName: string, volumeResourceName: string, options?: VolumeDeleteOptionalParams): Promise<void>;
1112
+ get(resourceGroupName: string, volumeResourceName: string, options?: VolumeGetOptionalParams): Promise<VolumeGetResponse>;
1113
+ listByResourceGroup(resourceGroupName: string, options?: VolumeListByResourceGroupOptionalParams): PagedAsyncIterableIterator<VolumeResourceDescription>;
1114
+ listBySubscription(options?: VolumeListBySubscriptionOptionalParams): PagedAsyncIterableIterator<VolumeResourceDescription>;
1115
+ }
1116
+
1117
+ // @public
1118
+ export interface VolumeCreateOptionalParams extends coreClient.OperationOptions {
1119
+ }
1120
+
1121
+ // @public
1122
+ export type VolumeCreateResponse = VolumeResourceDescription;
1123
+
1124
+ // @public
1125
+ export interface VolumeDeleteOptionalParams extends coreClient.OperationOptions {
1126
+ }
1127
+
1128
+ // @public
1129
+ export interface VolumeGetOptionalParams extends coreClient.OperationOptions {
1130
+ }
1131
+
1132
+ // @public
1133
+ export type VolumeGetResponse = VolumeResourceDescription;
1134
+
1135
+ // @public
1136
+ export interface VolumeListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
1137
+ }
1138
+
1139
+ // @public
1140
+ export type VolumeListByResourceGroupNextResponse = VolumeResourceDescriptionList;
1141
+
1142
+ // @public
1143
+ export interface VolumeListByResourceGroupOptionalParams extends coreClient.OperationOptions {
1144
+ }
1145
+
1146
+ // @public
1147
+ export type VolumeListByResourceGroupResponse = VolumeResourceDescriptionList;
1148
+
1149
+ // @public
1150
+ export interface VolumeListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
1151
+ }
1152
+
1153
+ // @public
1154
+ export type VolumeListBySubscriptionNextResponse = VolumeResourceDescriptionList;
1155
+
1156
+ // @public
1157
+ export interface VolumeListBySubscriptionOptionalParams extends coreClient.OperationOptions {
1158
+ }
1159
+
1160
+ // @public
1161
+ export type VolumeListBySubscriptionResponse = VolumeResourceDescriptionList;
1162
+
1163
+ // @public
1164
+ export interface VolumeProperties {
1165
+ azureFileParameters?: VolumeProviderParametersAzureFile;
1166
+ description?: string;
1167
+ provider: VolumeProvider;
1168
+ readonly status?: ResourceStatus;
1169
+ readonly statusDetails?: string;
1170
+ }
1171
+
1172
+ // @public
1173
+ export type VolumeProvider = string;
1174
+
1175
+ // @public
1176
+ export interface VolumeProviderParametersAzureFile {
1177
+ accountKey?: string;
1178
+ accountName: string;
1179
+ shareName: string;
1180
+ }
1181
+
1182
+ // @public
1183
+ export interface VolumeReference {
1184
+ destinationPath: string;
1185
+ name: string;
1186
+ readOnly?: boolean;
1187
+ }
1188
+
1189
+ // @public
1190
+ export type VolumeResourceDescription = TrackedResource & {
1191
+ readonly provisioningState?: string;
1192
+ description?: string;
1193
+ readonly status?: ResourceStatus;
1194
+ readonly statusDetails?: string;
1195
+ provider: VolumeProvider;
1196
+ azureFileParameters?: VolumeProviderParametersAzureFile;
1197
+ };
1198
+
1199
+ // @public
1200
+ export interface VolumeResourceDescriptionList {
1201
+ nextLink?: string;
1202
+ value?: VolumeResourceDescription[];
1203
+ }
1204
+
1205
+ // @public
1206
+ export type VolumeResourceProperties = ProvisionedResourceProperties & VolumeProperties & {};
1207
+
1208
+ // (No @packageDocumentation comment for this package)
1209
+
1210
+ ```