@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,1366 @@
1
+ import * as coreClient from "@azure/core-client";
2
+ export declare type ApplicationScopedVolumeCreationParametersUnion = ApplicationScopedVolumeCreationParameters | ApplicationScopedVolumeCreationParametersServiceFabricVolumeDisk;
3
+ export declare type AutoScalingTriggerUnion = AutoScalingTrigger | AverageLoadScalingTrigger;
4
+ export declare type AutoScalingMechanismUnion = AutoScalingMechanism | AddRemoveReplicaScalingMechanism;
5
+ export declare type DiagnosticsSinkPropertiesUnion = DiagnosticsSinkProperties | AzureInternalMonitoringPipelineSinkDescription;
6
+ export declare type AutoScalingMetricUnion = AutoScalingMetric | AutoScalingResourceMetric;
7
+ export declare type SecretResourcePropertiesBaseUnion = SecretResourcePropertiesBase | SecretResourcePropertiesUnion;
8
+ export declare type NetworkResourcePropertiesBaseUnion = NetworkResourcePropertiesBase | NetworkResourcePropertiesUnion;
9
+ export declare type SecretResourcePropertiesUnion = SecretResourceProperties | InlinedValueSecretResourceProperties;
10
+ export declare type NetworkResourcePropertiesUnion = NetworkResourceProperties | LocalNetworkResourceProperties;
11
+ /** Describes the result of the request to list Service Fabric operations. */
12
+ export interface OperationListResult {
13
+ /** List of Service Fabric operations supported by the Microsoft.ServiceFabric resource provider. */
14
+ value?: OperationResult[];
15
+ /**
16
+ * URL to get the next set of operation list results if there are any.
17
+ * NOTE: This property will not be serialized. It can only be populated by the server.
18
+ */
19
+ readonly nextLink?: string;
20
+ }
21
+ /** List of operations available at the listed Azure resource provider. */
22
+ export interface OperationResult {
23
+ /** The name of the operation. */
24
+ name?: string;
25
+ /** The object that represents the operation. */
26
+ display?: AvailableOperationDisplay;
27
+ /** Origin result */
28
+ origin?: string;
29
+ /** The URL to use for getting the next set of results. */
30
+ nextLink?: string;
31
+ }
32
+ /** An operation available at the listed Azure resource provider. */
33
+ export interface AvailableOperationDisplay {
34
+ /** Name of the operation provider. */
35
+ provider?: string;
36
+ /** Name of the resource on which the operation is available. */
37
+ resource?: string;
38
+ /** Name of the available operation. */
39
+ operation?: string;
40
+ /** Description of the available operation. */
41
+ description?: string;
42
+ }
43
+ /** The error details. */
44
+ export interface ErrorModel {
45
+ /** Error model information */
46
+ error: ErrorErrorModel;
47
+ }
48
+ /** Error model information */
49
+ export interface ErrorErrorModel {
50
+ code: string;
51
+ /** Error message. */
52
+ message?: string;
53
+ innerError?: string;
54
+ /** List of error message details. */
55
+ details?: ErrorDetailsModel[];
56
+ }
57
+ /** Error model details information */
58
+ export interface ErrorDetailsModel {
59
+ code: string;
60
+ /** Error message. */
61
+ message: string;
62
+ }
63
+ /** Describes common properties of a provisioned resource. */
64
+ export interface ProvisionedResourceProperties {
65
+ /**
66
+ * State of the resource.
67
+ * NOTE: This property will not be serialized. It can only be populated by the server.
68
+ */
69
+ readonly provisioningState?: string;
70
+ }
71
+ /** The resource model definition for Azure Resource Manager resource. */
72
+ export interface Resource {
73
+ /**
74
+ * Fully qualified identifier for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
75
+ * NOTE: This property will not be serialized. It can only be populated by the server.
76
+ */
77
+ readonly id?: string;
78
+ /**
79
+ * The name of the resource
80
+ * NOTE: This property will not be serialized. It can only be populated by the server.
81
+ */
82
+ readonly name?: string;
83
+ /**
84
+ * The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
85
+ * NOTE: This property will not be serialized. It can only be populated by the server.
86
+ */
87
+ readonly type?: string;
88
+ }
89
+ /** A pageable list of secret resources. */
90
+ export interface SecretResourceDescriptionList {
91
+ /** One page of the list. */
92
+ value?: SecretResourceDescription[];
93
+ /** URI to fetch the next page of the list. */
94
+ nextLink?: string;
95
+ }
96
+ /** This type describes properties of secret value resource. */
97
+ export interface SecretValueProperties {
98
+ /** The actual value of the secret. */
99
+ value?: string;
100
+ }
101
+ /** A pageable list of values of a secret resource. The information does not include only the name of the value and not the actual unencrypted value. */
102
+ export interface SecretValueResourceDescriptionList {
103
+ /** One page of the list. */
104
+ value?: SecretValueResourceDescription[];
105
+ /** URI to fetch the next page of the list. */
106
+ nextLink?: string;
107
+ }
108
+ /** This type represents the unencrypted value of the secret. */
109
+ export interface SecretValue {
110
+ /** The actual value of the secret. */
111
+ value?: string;
112
+ }
113
+ /** Describes properties of a volume resource. */
114
+ export interface VolumeProperties {
115
+ /** User readable description of the volume. */
116
+ description?: string;
117
+ /**
118
+ * Status of the volume.
119
+ * NOTE: This property will not be serialized. It can only be populated by the server.
120
+ */
121
+ readonly status?: ResourceStatus;
122
+ /**
123
+ * Gives additional information about the current status of the volume.
124
+ * NOTE: This property will not be serialized. It can only be populated by the server.
125
+ */
126
+ readonly statusDetails?: string;
127
+ /** Provider of the volume. */
128
+ provider: VolumeProvider;
129
+ /** This type describes a volume provided by an Azure Files file share. */
130
+ azureFileParameters?: VolumeProviderParametersAzureFile;
131
+ }
132
+ /** This type describes a volume provided by an Azure Files file share. */
133
+ export interface VolumeProviderParametersAzureFile {
134
+ /** Name of the Azure storage account for the File Share. */
135
+ accountName: string;
136
+ /** Access key of the Azure storage account for the File Share. */
137
+ accountKey?: string;
138
+ /** Name of the Azure Files file share that provides storage for the volume. */
139
+ shareName: string;
140
+ }
141
+ /** A pageable list of volume resources. */
142
+ export interface VolumeResourceDescriptionList {
143
+ /** One page of the list. */
144
+ value?: VolumeResourceDescription[];
145
+ /** URI to fetch the next page of the list. */
146
+ nextLink?: string;
147
+ }
148
+ /** A pageable list of network resources. */
149
+ export interface NetworkResourceDescriptionList {
150
+ /** One page of the list. */
151
+ value?: NetworkResourceDescription[];
152
+ /** URI to fetch the next page of the list. */
153
+ nextLink?: string;
154
+ }
155
+ /** Describes properties of a gateway resource. */
156
+ export interface GatewayProperties {
157
+ /** User readable description of the gateway. */
158
+ description?: string;
159
+ /** Network the gateway should listen on for requests. */
160
+ sourceNetwork: NetworkRef;
161
+ /** Network that the Application is using. */
162
+ destinationNetwork: NetworkRef;
163
+ /** Configuration for tcp connectivity for this gateway. */
164
+ tcp?: TcpConfig[];
165
+ /** Configuration for http connectivity for this gateway. */
166
+ http?: HttpConfig[];
167
+ /**
168
+ * Status of the resource.
169
+ * NOTE: This property will not be serialized. It can only be populated by the server.
170
+ */
171
+ readonly status?: ResourceStatus;
172
+ /**
173
+ * Gives additional information about the current status of the gateway.
174
+ * NOTE: This property will not be serialized. It can only be populated by the server.
175
+ */
176
+ readonly statusDetails?: string;
177
+ /**
178
+ * IP address of the gateway. This is populated in the response and is ignored for incoming requests.
179
+ * NOTE: This property will not be serialized. It can only be populated by the server.
180
+ */
181
+ readonly ipAddress?: string;
182
+ }
183
+ /** Describes a network reference in a service. */
184
+ export interface NetworkRef {
185
+ /** Name of the network */
186
+ name?: string;
187
+ /** A list of endpoints that are exposed on this network. */
188
+ endpointRefs?: EndpointRef[];
189
+ }
190
+ /** Describes a reference to a service endpoint. */
191
+ export interface EndpointRef {
192
+ /** Name of the endpoint. */
193
+ name?: string;
194
+ }
195
+ /** Describes the tcp configuration for external connectivity for this network. */
196
+ export interface TcpConfig {
197
+ /** tcp gateway config name. */
198
+ name: string;
199
+ /** Specifies the port at which the service endpoint below needs to be exposed. */
200
+ port: number;
201
+ /** Describes destination endpoint for routing traffic. */
202
+ destination: GatewayDestination;
203
+ }
204
+ /** Describes destination endpoint for routing traffic. */
205
+ export interface GatewayDestination {
206
+ /** Name of the service fabric Mesh application. */
207
+ applicationName: string;
208
+ /** service that contains the endpoint. */
209
+ serviceName: string;
210
+ /** name of the endpoint in the service. */
211
+ endpointName: string;
212
+ }
213
+ /** Describes the http configuration for external connectivity for this network. */
214
+ export interface HttpConfig {
215
+ /** http gateway config name. */
216
+ name: string;
217
+ /** Specifies the port at which the service endpoint below needs to be exposed. */
218
+ port: number;
219
+ /** description for routing. */
220
+ hosts: HttpHostConfig[];
221
+ }
222
+ /** Describes the hostname properties for http routing. */
223
+ export interface HttpHostConfig {
224
+ /** http hostname config name. */
225
+ name: string;
226
+ /** Route information to use for routing. Routes are processed in the order they are specified. Specify routes that are more specific before routes that can handle general cases. */
227
+ routes: HttpRouteConfig[];
228
+ }
229
+ /** Describes the hostname properties for http routing. */
230
+ export interface HttpRouteConfig {
231
+ /** http route name. */
232
+ name: string;
233
+ /** Describes a rule for http route matching. */
234
+ match: HttpRouteMatchRule;
235
+ /** Describes destination endpoint for routing traffic. */
236
+ destination: GatewayDestination;
237
+ }
238
+ /** Describes a rule for http route matching. */
239
+ export interface HttpRouteMatchRule {
240
+ /** Path to match for routing. */
241
+ path: HttpRouteMatchPath;
242
+ /** headers and their values to match in request. */
243
+ headers?: HttpRouteMatchHeader[];
244
+ }
245
+ /** Path to match for routing. */
246
+ export interface HttpRouteMatchPath {
247
+ /** Uri path to match for request. */
248
+ value: string;
249
+ /** replacement string for matched part of the Uri. */
250
+ rewrite?: string;
251
+ /** how to match value in the Uri */
252
+ type: PathMatchType;
253
+ }
254
+ /** Describes header information for http route matching. */
255
+ export interface HttpRouteMatchHeader {
256
+ /** Name of header to match in request. */
257
+ name: string;
258
+ /** Value of header to match in request. */
259
+ value?: string;
260
+ /** how to match header value */
261
+ type?: HeaderMatchType;
262
+ }
263
+ /** A pageable list of gateway resources. */
264
+ export interface GatewayResourceDescriptionList {
265
+ /** One page of the list. */
266
+ value?: GatewayResourceDescription[];
267
+ /** URI to fetch the next page of the list. */
268
+ nextLink?: string;
269
+ }
270
+ /** Describes properties of a application resource. */
271
+ export interface ApplicationProperties {
272
+ /** User readable description of the application. */
273
+ description?: string;
274
+ /** Describes the services in the application. This property is used to create or modify services of the application. On get only the name of the service is returned. The service description can be obtained by querying for the service resource. */
275
+ services?: ServiceResourceDescription[];
276
+ /** Describes the diagnostics definition and usage for an application resource. */
277
+ diagnostics?: DiagnosticsDescription;
278
+ /** Internal - used by Visual Studio to setup the debugging session on the local development environment. */
279
+ debugParams?: string;
280
+ /**
281
+ * Names of the services in the application.
282
+ * NOTE: This property will not be serialized. It can only be populated by the server.
283
+ */
284
+ readonly serviceNames?: string[];
285
+ /**
286
+ * Status of the application.
287
+ * NOTE: This property will not be serialized. It can only be populated by the server.
288
+ */
289
+ readonly status?: ResourceStatus;
290
+ /**
291
+ * Gives additional information about the current status of the application.
292
+ * NOTE: This property will not be serialized. It can only be populated by the server.
293
+ */
294
+ readonly statusDetails?: string;
295
+ /**
296
+ * Describes the health state of an application resource.
297
+ * NOTE: This property will not be serialized. It can only be populated by the server.
298
+ */
299
+ readonly healthState?: HealthState;
300
+ /**
301
+ * When the application's health state is not 'Ok', this additional details from service fabric Health Manager for the user to know why the application is marked unhealthy.
302
+ * NOTE: This property will not be serialized. It can only be populated by the server.
303
+ */
304
+ readonly unhealthyEvaluation?: string;
305
+ }
306
+ /** Describes the properties of a service replica. */
307
+ export interface ServiceReplicaProperties {
308
+ /** The operation system required by the code in service. */
309
+ osType: OperatingSystemType;
310
+ /** Describes the set of code packages that forms the service. A code package describes the container and the properties for running it. All the code packages are started together on the same host and share the same context (network, process etc.). */
311
+ codePackages: ContainerCodePackageProperties[];
312
+ /** The names of the private networks that this service needs to be part of. */
313
+ networkRefs?: NetworkRef[];
314
+ /** Reference to sinks in DiagnosticsDescription. */
315
+ diagnostics?: DiagnosticsRef;
316
+ }
317
+ /** Describes a container and its runtime properties. */
318
+ export interface ContainerCodePackageProperties {
319
+ /** The name of the code package. */
320
+ name: string;
321
+ /** The Container image to use. */
322
+ image: string;
323
+ /** Image registry credential. */
324
+ imageRegistryCredential?: ImageRegistryCredential;
325
+ /** Override for the default entry point in the container. */
326
+ entrypoint?: string;
327
+ /** Command array to execute within the container in exec form. */
328
+ commands?: string[];
329
+ /** The environment variables to set in this container */
330
+ environmentVariables?: EnvironmentVariable[];
331
+ /** The settings to set in this container. The setting file path can be fetched from environment variable "Fabric_SettingPath". The path for Windows container is "C:\\secrets". The path for Linux container is "/var/secrets". */
332
+ settings?: Setting[];
333
+ /** The labels to set in this container. */
334
+ labels?: ContainerLabel[];
335
+ /** The endpoints exposed by this container. */
336
+ endpoints?: EndpointProperties[];
337
+ /** The resources required by this container. */
338
+ resources: ResourceRequirements;
339
+ /** Volumes to be attached to the container. The lifetime of these volumes is independent of the application's lifetime. */
340
+ volumeRefs?: VolumeReference[];
341
+ /** Volumes to be attached to the container. The lifetime of these volumes is scoped to the application's lifetime. */
342
+ volumes?: ApplicationScopedVolume[];
343
+ /** Reference to sinks in DiagnosticsDescription. */
344
+ diagnostics?: DiagnosticsRef;
345
+ /** A list of ReliableCollection resources used by this particular code package. Please refer to ReliableCollectionsRef for more details. */
346
+ reliableCollectionsRefs?: ReliableCollectionsRef[];
347
+ /**
348
+ * Runtime information of a container instance.
349
+ * NOTE: This property will not be serialized. It can only be populated by the server.
350
+ */
351
+ readonly instanceView?: ContainerInstanceView;
352
+ }
353
+ /** Image registry credential. */
354
+ export interface ImageRegistryCredential {
355
+ /** Docker image registry server, without protocol such as `http` and `https`. */
356
+ server: string;
357
+ /** The username for the private registry. */
358
+ username: string;
359
+ /** The password for the private registry. The password is required for create or update operations, however it is not returned in the get or list operations. */
360
+ password?: string;
361
+ }
362
+ /** Describes an environment variable for the container. */
363
+ export interface EnvironmentVariable {
364
+ /** The name of the environment variable. */
365
+ name?: string;
366
+ /** The value of the environment variable. */
367
+ value?: string;
368
+ }
369
+ /** Describes a setting for the container. The setting file path can be fetched from environment variable "Fabric_SettingPath". The path for Windows container is "C:\\secrets". The path for Linux container is "/var/secrets". */
370
+ export interface Setting {
371
+ /** The name of the setting. */
372
+ name?: string;
373
+ /** The value of the setting. */
374
+ value?: string;
375
+ }
376
+ /** Describes a container label. */
377
+ export interface ContainerLabel {
378
+ /** The name of the container label. */
379
+ name: string;
380
+ /** The value of the container label. */
381
+ value: string;
382
+ }
383
+ /** Describes a container endpoint. */
384
+ export interface EndpointProperties {
385
+ /** The name of the endpoint. */
386
+ name: string;
387
+ /** Port used by the container. */
388
+ port?: number;
389
+ }
390
+ /** This type describes the resource requirements for a container or a service. */
391
+ export interface ResourceRequirements {
392
+ /** Describes the requested resources for a given container. */
393
+ requests: ResourceRequests;
394
+ /** Describes the maximum limits on the resources for a given container. */
395
+ limits?: ResourceLimits;
396
+ }
397
+ /** This type describes the requested resources for a given container. It describes the least amount of resources required for the container. A container can consume more than requested resources up to the specified limits before being restarted. Currently, the requested resources are treated as limits. */
398
+ export interface ResourceRequests {
399
+ /** The memory request in GB for this container. */
400
+ memoryInGB: number;
401
+ /** Requested number of CPU cores. At present, only full cores are supported. */
402
+ cpu: number;
403
+ }
404
+ /** This type describes the resource limits for a given container. It describes the most amount of resources a container is allowed to use before being restarted. */
405
+ export interface ResourceLimits {
406
+ /** The memory limit in GB. */
407
+ memoryInGB?: number;
408
+ /** CPU limits in cores. At present, only full cores are supported. */
409
+ cpu?: number;
410
+ }
411
+ /** Describes a reference to a volume resource. */
412
+ export interface VolumeReference {
413
+ /** Name of the volume being referenced. */
414
+ name: string;
415
+ /** The flag indicating whether the volume is read only. Default is 'false'. */
416
+ readOnly?: boolean;
417
+ /** The path within the container at which the volume should be mounted. Only valid path characters are allowed. */
418
+ destinationPath: string;
419
+ }
420
+ /** Describes parameters for creating application-scoped volumes. */
421
+ export interface ApplicationScopedVolumeCreationParameters {
422
+ /** Polymorphic discriminator, which specifies the different types this object can be */
423
+ kind: "ServiceFabricVolumeDisk";
424
+ /** User readable description of the volume. */
425
+ description?: string;
426
+ }
427
+ /** Reference to sinks in DiagnosticsDescription. */
428
+ export interface DiagnosticsRef {
429
+ /** Status of whether or not sinks are enabled. */
430
+ enabled?: boolean;
431
+ /** List of sinks to be used if enabled. References the list of sinks in DiagnosticsDescription. */
432
+ sinkRefs?: string[];
433
+ }
434
+ /** Specifying this parameter adds support for reliable collections */
435
+ export interface ReliableCollectionsRef {
436
+ /** Name of ReliableCollection resource. Right now it's not used and you can use any string. */
437
+ name: string;
438
+ /** False (the default) if ReliableCollections state is persisted to disk as usual. True if you do not want to persist state, in which case replication is still enabled and you can use ReliableCollections as distributed cache. */
439
+ doNotPersistState?: boolean;
440
+ }
441
+ /** Runtime information of a container instance. */
442
+ export interface ContainerInstanceView {
443
+ /** The number of times the container has been restarted. */
444
+ restartCount?: number;
445
+ /** Current container instance state. */
446
+ currentState?: ContainerState;
447
+ /** Previous container instance state. */
448
+ previousState?: ContainerState;
449
+ /** The events of this container instance. */
450
+ events?: ContainerEvent[];
451
+ }
452
+ /** The container state. */
453
+ export interface ContainerState {
454
+ /** The state of this container */
455
+ state?: string;
456
+ /** Date/time when the container state started. */
457
+ startTime?: Date;
458
+ /** The container exit code. */
459
+ exitCode?: string;
460
+ /** Date/time when the container state finished. */
461
+ finishTime?: Date;
462
+ /** Human-readable status of this state. */
463
+ detailStatus?: string;
464
+ }
465
+ /** A container event. */
466
+ export interface ContainerEvent {
467
+ /** The name of the container event. */
468
+ name?: string;
469
+ /** The count of the event. */
470
+ count?: number;
471
+ /** Date/time of the first event. */
472
+ firstTimestamp?: string;
473
+ /** Date/time of the last event. */
474
+ lastTimestamp?: string;
475
+ /** The event message */
476
+ message?: string;
477
+ /** The event type. */
478
+ type?: string;
479
+ }
480
+ /** Describes properties of a service resource. */
481
+ export interface ServiceProperties {
482
+ /** User readable description of the service. */
483
+ description?: string;
484
+ /** The number of replicas of the service to create. Defaults to 1 if not specified. */
485
+ replicaCount?: number;
486
+ /** Auto scaling policies */
487
+ autoScalingPolicies?: AutoScalingPolicy[];
488
+ /**
489
+ * Status of the service.
490
+ * NOTE: This property will not be serialized. It can only be populated by the server.
491
+ */
492
+ readonly status?: ResourceStatus;
493
+ /**
494
+ * Gives additional information about the current status of the service.
495
+ * NOTE: This property will not be serialized. It can only be populated by the server.
496
+ */
497
+ readonly statusDetails?: string;
498
+ /**
499
+ * Describes the health state of an application resource.
500
+ * NOTE: This property will not be serialized. It can only be populated by the server.
501
+ */
502
+ readonly healthState?: HealthState;
503
+ /**
504
+ * When the service's health state is not 'Ok', this additional details from service fabric Health Manager for the user to know why the service is marked unhealthy.
505
+ * NOTE: This property will not be serialized. It can only be populated by the server.
506
+ */
507
+ readonly unhealthyEvaluation?: string;
508
+ }
509
+ /** Describes the auto scaling policy */
510
+ export interface AutoScalingPolicy {
511
+ /** The name of the auto scaling policy. */
512
+ name: string;
513
+ /** Determines when auto scaling operation will be invoked. */
514
+ trigger: AutoScalingTriggerUnion;
515
+ /** The mechanism that is used to scale when auto scaling operation is invoked. */
516
+ mechanism: AutoScalingMechanismUnion;
517
+ }
518
+ /** Describes the trigger for performing auto scaling operation. */
519
+ export interface AutoScalingTrigger {
520
+ /** Polymorphic discriminator, which specifies the different types this object can be */
521
+ kind: "AverageLoad";
522
+ }
523
+ /** Describes the mechanism for performing auto scaling operation. Derived classes will describe the actual mechanism. */
524
+ export interface AutoScalingMechanism {
525
+ /** Polymorphic discriminator, which specifies the different types this object can be */
526
+ kind: "AddRemoveReplica";
527
+ }
528
+ /** The resource model definition for Azure Resource Manager proxy resource. It will have everything other than required location and tags. This proxy resource is explicitly created or updated by including it in the parent resource. */
529
+ export interface ManagedProxyResource {
530
+ /**
531
+ * Fully qualified identifier for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
532
+ * NOTE: This property will not be serialized. It can only be populated by the server.
533
+ */
534
+ readonly id?: string;
535
+ /** The name of the resource */
536
+ name?: string;
537
+ /**
538
+ * The type of the resource. Ex- Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
539
+ * NOTE: This property will not be serialized. It can only be populated by the server.
540
+ */
541
+ readonly type?: string;
542
+ }
543
+ /** Describes the diagnostics options available */
544
+ export interface DiagnosticsDescription {
545
+ /** List of supported sinks that can be referenced. */
546
+ sinks?: DiagnosticsSinkPropertiesUnion[];
547
+ /** Status of whether or not sinks are enabled. */
548
+ enabled?: boolean;
549
+ /** The sinks to be used if diagnostics is enabled. Sink choices can be overridden at the service and code package level. */
550
+ defaultSinkRefs?: string[];
551
+ }
552
+ /** Properties of a DiagnosticsSink. */
553
+ export interface DiagnosticsSinkProperties {
554
+ /** Polymorphic discriminator, which specifies the different types this object can be */
555
+ kind: "AzureInternalMonitoringPipeline";
556
+ /** Name of the sink. This value is referenced by DiagnosticsReferenceDescription */
557
+ name?: string;
558
+ /** A description of the sink. */
559
+ description?: string;
560
+ }
561
+ /** A pageable list of application resources. */
562
+ export interface ApplicationResourceDescriptionList {
563
+ /** One page of the list. */
564
+ value?: ApplicationResourceDescription[];
565
+ /** URI to fetch the next page of the list. */
566
+ nextLink?: string;
567
+ }
568
+ /** A pageable list of service resources. */
569
+ export interface ServiceResourceDescriptionList {
570
+ /** One page of the list. */
571
+ value?: ServiceResourceDescription[];
572
+ /** URI to fetch the next page of the list. */
573
+ nextLink?: string;
574
+ }
575
+ /** A pageable list of service replicas. */
576
+ export interface ServiceReplicaDescriptionList {
577
+ /** One page of the list. */
578
+ value?: ServiceReplicaDescription[];
579
+ /** URI to fetch the next page of the list. */
580
+ nextLink?: string;
581
+ }
582
+ /** Container logs. */
583
+ export interface ContainerLogs {
584
+ /** Container logs. */
585
+ content?: string;
586
+ }
587
+ /** Describes the metric that is used for triggering auto scaling operation. Derived classes will describe resources or metrics. */
588
+ export interface AutoScalingMetric {
589
+ /** Polymorphic discriminator, which specifies the different types this object can be */
590
+ kind: "Resource";
591
+ }
592
+ /** This type describes the properties of a secret resource, including its kind. */
593
+ export declare type SecretResourcePropertiesBase = ProvisionedResourceProperties & {
594
+ /** Describes the kind of secret. */
595
+ kind: SecretKind;
596
+ };
597
+ /** This type describes properties of a secret value resource. */
598
+ export declare type SecretValueResourceProperties = ProvisionedResourceProperties & SecretValueProperties & {};
599
+ /** This type describes properties of a volume resource. */
600
+ export declare type VolumeResourceProperties = ProvisionedResourceProperties & VolumeProperties & {};
601
+ /** This type describes the properties of a network resource, including its kind. */
602
+ export declare type NetworkResourcePropertiesBase = ProvisionedResourceProperties & {
603
+ /** The type of a Service Fabric container network. */
604
+ kind: NetworkKind;
605
+ };
606
+ /** This type describes properties of a gateway resource. */
607
+ export declare type GatewayResourceProperties = ProvisionedResourceProperties & GatewayProperties & {};
608
+ /** This type describes properties of a service resource. */
609
+ export declare type ServiceResourceProperties = ProvisionedResourceProperties & ServiceReplicaProperties & ServiceProperties & {};
610
+ /** This type describes properties of an application resource. */
611
+ export declare type ApplicationResourceProperties = ProvisionedResourceProperties & ApplicationProperties & {};
612
+ /** The resource model definition for Azure Resource Manager tracked top-level resource. */
613
+ export declare type TrackedResource = Resource & {
614
+ /** Resource tags. */
615
+ tags?: {
616
+ [propertyName: string]: string;
617
+ };
618
+ /** The geo-location where the resource lives */
619
+ location: string;
620
+ };
621
+ /** The resource model definition for Azure Resource Manager proxy resource. It will have everything other than required location and tags. */
622
+ export declare type ProxyResource = Resource & {};
623
+ /** Describes a replica of a service resource. */
624
+ export declare type ServiceReplicaDescription = ServiceReplicaProperties & {
625
+ /** Name of the replica. */
626
+ replicaName: string;
627
+ };
628
+ /** Describes a volume whose lifetime is scoped to the application's lifetime. */
629
+ export declare type ApplicationScopedVolume = VolumeReference & {
630
+ /** Describes parameters for creating application-scoped volumes. */
631
+ creationParameters: ApplicationScopedVolumeCreationParametersUnion;
632
+ };
633
+ /** Describes parameters for creating application-scoped volumes provided by Service Fabric Volume Disks */
634
+ export declare type ApplicationScopedVolumeCreationParametersServiceFabricVolumeDisk = ApplicationScopedVolumeCreationParameters & {
635
+ /** Polymorphic discriminator, which specifies the different types this object can be */
636
+ kind: "ServiceFabricVolumeDisk";
637
+ /** Volume size */
638
+ sizeDisk: SizeTypes;
639
+ };
640
+ /** Describes the average load trigger used for auto scaling. */
641
+ export declare type AverageLoadScalingTrigger = AutoScalingTrigger & {
642
+ /** Polymorphic discriminator, which specifies the different types this object can be */
643
+ kind: "AverageLoad";
644
+ /** Description of the metric that is used for scaling. */
645
+ metric: AutoScalingMetricUnion;
646
+ /** Lower load threshold (if average load is below this threshold, service will scale down). */
647
+ lowerLoadThreshold: number;
648
+ /** Upper load threshold (if average load is above this threshold, service will scale up). */
649
+ upperLoadThreshold: number;
650
+ /** Scale interval that indicates how often will this trigger be checked. */
651
+ scaleIntervalInSeconds: number;
652
+ };
653
+ /** Describes the horizontal auto scaling mechanism that adds or removes replicas (containers or container groups). */
654
+ export declare type AddRemoveReplicaScalingMechanism = AutoScalingMechanism & {
655
+ /** Polymorphic discriminator, which specifies the different types this object can be */
656
+ kind: "AddRemoveReplica";
657
+ /** Minimum number of containers (scale down won't be performed below this number). */
658
+ minCount: number;
659
+ /** Maximum number of containers (scale up won't be performed above this number). */
660
+ maxCount: number;
661
+ /** Each time auto scaling is performed, this number of containers will be added or removed. */
662
+ scaleIncrement: number;
663
+ };
664
+ /** This type describes a service resource. */
665
+ export declare type ServiceResourceDescription = ManagedProxyResource & {
666
+ /**
667
+ * State of the resource.
668
+ * NOTE: This property will not be serialized. It can only be populated by the server.
669
+ */
670
+ readonly provisioningState?: string;
671
+ /** The operation system required by the code in service. */
672
+ osType: OperatingSystemType;
673
+ /** Describes the set of code packages that forms the service. A code package describes the container and the properties for running it. All the code packages are started together on the same host and share the same context (network, process etc.). */
674
+ codePackages: ContainerCodePackageProperties[];
675
+ /** The names of the private networks that this service needs to be part of. */
676
+ networkRefs?: NetworkRef[];
677
+ /** Reference to sinks in DiagnosticsDescription. */
678
+ diagnostics?: DiagnosticsRef;
679
+ /** User readable description of the service. */
680
+ description?: string;
681
+ /** The number of replicas of the service to create. Defaults to 1 if not specified. */
682
+ replicaCount?: number;
683
+ /** Auto scaling policies */
684
+ autoScalingPolicies?: AutoScalingPolicy[];
685
+ /**
686
+ * Status of the service.
687
+ * NOTE: This property will not be serialized. It can only be populated by the server.
688
+ */
689
+ readonly status?: ResourceStatus;
690
+ /**
691
+ * Gives additional information about the current status of the service.
692
+ * NOTE: This property will not be serialized. It can only be populated by the server.
693
+ */
694
+ readonly statusDetails?: string;
695
+ /**
696
+ * Describes the health state of an application resource.
697
+ * NOTE: This property will not be serialized. It can only be populated by the server.
698
+ */
699
+ readonly healthState?: HealthState;
700
+ /**
701
+ * When the service's health state is not 'Ok', this additional details from service fabric Health Manager for the user to know why the service is marked unhealthy.
702
+ * NOTE: This property will not be serialized. It can only be populated by the server.
703
+ */
704
+ readonly unhealthyEvaluation?: string;
705
+ };
706
+ /** Diagnostics settings for Geneva. */
707
+ export declare type AzureInternalMonitoringPipelineSinkDescription = DiagnosticsSinkProperties & {
708
+ /** Polymorphic discriminator, which specifies the different types this object can be */
709
+ kind: "AzureInternalMonitoringPipeline";
710
+ /** Azure Internal monitoring pipeline account. */
711
+ accountName?: string;
712
+ /** Azure Internal monitoring pipeline account namespace. */
713
+ namespace?: string;
714
+ /** Azure Internal monitoring agent configuration. */
715
+ maConfigUrl?: string;
716
+ /** Azure Internal monitoring agent fluentd configuration. */
717
+ fluentdConfigUrl?: any;
718
+ /** Azure Internal monitoring pipeline autokey associated with the certificate. */
719
+ autoKeyConfigUrl?: string;
720
+ };
721
+ /** Describes the resource that is used for triggering auto scaling. */
722
+ export declare type AutoScalingResourceMetric = AutoScalingMetric & {
723
+ /** Polymorphic discriminator, which specifies the different types this object can be */
724
+ kind: "Resource";
725
+ /** Name of the resource. */
726
+ name: AutoScalingResourceMetricName;
727
+ };
728
+ /** Describes the properties of a secret resource. */
729
+ export declare type SecretResourceProperties = SecretResourcePropertiesBase & {
730
+ /** User readable description of the secret. */
731
+ description?: string;
732
+ /**
733
+ * Status of the resource.
734
+ * NOTE: This property will not be serialized. It can only be populated by the server.
735
+ */
736
+ readonly status?: ResourceStatus;
737
+ /**
738
+ * Gives additional information about the current status of the secret.
739
+ * NOTE: This property will not be serialized. It can only be populated by the server.
740
+ */
741
+ readonly statusDetails?: string;
742
+ /** The type of the content stored in the secret value. The value of this property is opaque to Service Fabric. Once set, the value of this property cannot be changed. */
743
+ contentType?: string;
744
+ };
745
+ /** Describes properties of a network resource. */
746
+ export declare type NetworkResourceProperties = NetworkResourcePropertiesBase & {
747
+ /** User readable description of the network. */
748
+ description?: string;
749
+ /**
750
+ * Status of the network.
751
+ * NOTE: This property will not be serialized. It can only be populated by the server.
752
+ */
753
+ readonly status?: ResourceStatus;
754
+ /**
755
+ * Gives additional information about the current status of the network.
756
+ * NOTE: This property will not be serialized. It can only be populated by the server.
757
+ */
758
+ readonly statusDetails?: string;
759
+ };
760
+ /** This type describes a secret resource. */
761
+ export declare type SecretResourceDescription = TrackedResource & {
762
+ /** Describes the properties of a secret resource. */
763
+ properties: SecretResourcePropertiesUnion;
764
+ };
765
+ /** This type describes a value of a secret resource. The name of this resource is the version identifier corresponding to this secret value. */
766
+ export declare type SecretValueResourceDescription = TrackedResource & {
767
+ /**
768
+ * State of the resource.
769
+ * NOTE: This property will not be serialized. It can only be populated by the server.
770
+ */
771
+ readonly provisioningState?: string;
772
+ /** The actual value of the secret. */
773
+ value?: string;
774
+ };
775
+ /** This type describes a volume resource. */
776
+ export declare type VolumeResourceDescription = TrackedResource & {
777
+ /**
778
+ * State of the resource.
779
+ * NOTE: This property will not be serialized. It can only be populated by the server.
780
+ */
781
+ readonly provisioningState?: string;
782
+ /** User readable description of the volume. */
783
+ description?: string;
784
+ /**
785
+ * Status of the volume.
786
+ * NOTE: This property will not be serialized. It can only be populated by the server.
787
+ */
788
+ readonly status?: ResourceStatus;
789
+ /**
790
+ * Gives additional information about the current status of the volume.
791
+ * NOTE: This property will not be serialized. It can only be populated by the server.
792
+ */
793
+ readonly statusDetails?: string;
794
+ /** Provider of the volume. */
795
+ provider: VolumeProvider;
796
+ /** This type describes a volume provided by an Azure Files file share. */
797
+ azureFileParameters?: VolumeProviderParametersAzureFile;
798
+ };
799
+ /** This type describes a network resource. */
800
+ export declare type NetworkResourceDescription = TrackedResource & {
801
+ /** Describes properties of a network resource. */
802
+ properties: NetworkResourcePropertiesUnion;
803
+ };
804
+ /** This type describes a gateway resource. */
805
+ export declare type GatewayResourceDescription = TrackedResource & {
806
+ /**
807
+ * State of the resource.
808
+ * NOTE: This property will not be serialized. It can only be populated by the server.
809
+ */
810
+ readonly provisioningState?: string;
811
+ /** User readable description of the gateway. */
812
+ description?: string;
813
+ /** Network the gateway should listen on for requests. */
814
+ sourceNetwork: NetworkRef;
815
+ /** Network that the Application is using. */
816
+ destinationNetwork: NetworkRef;
817
+ /** Configuration for tcp connectivity for this gateway. */
818
+ tcp?: TcpConfig[];
819
+ /** Configuration for http connectivity for this gateway. */
820
+ http?: HttpConfig[];
821
+ /**
822
+ * Status of the resource.
823
+ * NOTE: This property will not be serialized. It can only be populated by the server.
824
+ */
825
+ readonly status?: ResourceStatus;
826
+ /**
827
+ * Gives additional information about the current status of the gateway.
828
+ * NOTE: This property will not be serialized. It can only be populated by the server.
829
+ */
830
+ readonly statusDetails?: string;
831
+ /**
832
+ * IP address of the gateway. This is populated in the response and is ignored for incoming requests.
833
+ * NOTE: This property will not be serialized. It can only be populated by the server.
834
+ */
835
+ readonly ipAddress?: string;
836
+ };
837
+ /** This type describes an application resource. */
838
+ export declare type ApplicationResourceDescription = TrackedResource & {
839
+ /**
840
+ * State of the resource.
841
+ * NOTE: This property will not be serialized. It can only be populated by the server.
842
+ */
843
+ readonly provisioningState?: string;
844
+ /** User readable description of the application. */
845
+ description?: string;
846
+ /** Describes the services in the application. This property is used to create or modify services of the application. On get only the name of the service is returned. The service description can be obtained by querying for the service resource. */
847
+ services?: ServiceResourceDescription[];
848
+ /** Describes the diagnostics definition and usage for an application resource. */
849
+ diagnostics?: DiagnosticsDescription;
850
+ /** Internal - used by Visual Studio to setup the debugging session on the local development environment. */
851
+ debugParams?: string;
852
+ /**
853
+ * Names of the services in the application.
854
+ * NOTE: This property will not be serialized. It can only be populated by the server.
855
+ */
856
+ readonly serviceNames?: string[];
857
+ /**
858
+ * Status of the application.
859
+ * NOTE: This property will not be serialized. It can only be populated by the server.
860
+ */
861
+ readonly status?: ResourceStatus;
862
+ /**
863
+ * Gives additional information about the current status of the application.
864
+ * NOTE: This property will not be serialized. It can only be populated by the server.
865
+ */
866
+ readonly statusDetails?: string;
867
+ /**
868
+ * Describes the health state of an application resource.
869
+ * NOTE: This property will not be serialized. It can only be populated by the server.
870
+ */
871
+ readonly healthState?: HealthState;
872
+ /**
873
+ * When the application's health state is not 'Ok', this additional details from service fabric Health Manager for the user to know why the application is marked unhealthy.
874
+ * NOTE: This property will not be serialized. It can only be populated by the server.
875
+ */
876
+ readonly unhealthyEvaluation?: string;
877
+ };
878
+ /** Describes the properties of a secret resource whose value is provided explicitly as plaintext. The secret resource may have multiple values, each being uniquely versioned. The secret value of each version is stored encrypted, and delivered as plaintext into the context of applications referencing it. */
879
+ export declare type InlinedValueSecretResourceProperties = SecretResourceProperties & {};
880
+ /** Information about a Service Fabric container network local to a single Service Fabric cluster. */
881
+ export declare type LocalNetworkResourceProperties = NetworkResourceProperties & {
882
+ /** Address space for the local container network. */
883
+ networkAddressPrefix?: string;
884
+ };
885
+ /** Known values of {@link ResourceStatus} that the service accepts. */
886
+ export declare enum KnownResourceStatus {
887
+ /** Indicates the resource status is unknown. The value is zero. */
888
+ Unknown = "Unknown",
889
+ /** Indicates the resource is ready. The value is 1. */
890
+ Ready = "Ready",
891
+ /** Indicates the resource is upgrading. The value is 2. */
892
+ Upgrading = "Upgrading",
893
+ /** Indicates the resource is being created. The value is 3. */
894
+ Creating = "Creating",
895
+ /** Indicates the resource is being deleted. The value is 4. */
896
+ Deleting = "Deleting",
897
+ /** Indicates the resource is not functional due to persistent failures. See statusDetails property for more details. The value is 5. */
898
+ Failed = "Failed"
899
+ }
900
+ /**
901
+ * Defines values for ResourceStatus. \
902
+ * {@link KnownResourceStatus} can be used interchangeably with ResourceStatus,
903
+ * this enum contains the known values that the service supports.
904
+ * ### Known values supported by the service
905
+ * **Unknown**: Indicates the resource status is unknown. The value is zero. \
906
+ * **Ready**: Indicates the resource is ready. The value is 1. \
907
+ * **Upgrading**: Indicates the resource is upgrading. The value is 2. \
908
+ * **Creating**: Indicates the resource is being created. The value is 3. \
909
+ * **Deleting**: Indicates the resource is being deleted. The value is 4. \
910
+ * **Failed**: Indicates the resource is not functional due to persistent failures. See statusDetails property for more details. The value is 5.
911
+ */
912
+ export declare type ResourceStatus = string;
913
+ /** Known values of {@link SecretKind} that the service accepts. */
914
+ export declare enum KnownSecretKind {
915
+ /** A simple secret resource whose plaintext value is provided by the user. */
916
+ InlinedValue = "inlinedValue"
917
+ }
918
+ /**
919
+ * Defines values for SecretKind. \
920
+ * {@link KnownSecretKind} can be used interchangeably with SecretKind,
921
+ * this enum contains the known values that the service supports.
922
+ * ### Known values supported by the service
923
+ * **inlinedValue**: A simple secret resource whose plaintext value is provided by the user.
924
+ */
925
+ export declare type SecretKind = string;
926
+ /** Known values of {@link VolumeProvider} that the service accepts. */
927
+ export declare enum KnownVolumeProvider {
928
+ /** Provides volumes that are backed by Azure Files. */
929
+ SFAzureFile = "SFAzureFile"
930
+ }
931
+ /**
932
+ * Defines values for VolumeProvider. \
933
+ * {@link KnownVolumeProvider} can be used interchangeably with VolumeProvider,
934
+ * this enum contains the known values that the service supports.
935
+ * ### Known values supported by the service
936
+ * **SFAzureFile**: Provides volumes that are backed by Azure Files.
937
+ */
938
+ export declare type VolumeProvider = string;
939
+ /** Known values of {@link NetworkKind} that the service accepts. */
940
+ export declare enum KnownNetworkKind {
941
+ /** Indicates a container network local to a single Service Fabric cluster. The value is 1. */
942
+ Local = "Local"
943
+ }
944
+ /**
945
+ * Defines values for NetworkKind. \
946
+ * {@link KnownNetworkKind} can be used interchangeably with NetworkKind,
947
+ * this enum contains the known values that the service supports.
948
+ * ### Known values supported by the service
949
+ * **Local**: Indicates a container network local to a single Service Fabric cluster. The value is 1.
950
+ */
951
+ export declare type NetworkKind = string;
952
+ /** Known values of {@link PathMatchType} that the service accepts. */
953
+ export declare enum KnownPathMatchType {
954
+ Prefix = "prefix"
955
+ }
956
+ /**
957
+ * Defines values for PathMatchType. \
958
+ * {@link KnownPathMatchType} can be used interchangeably with PathMatchType,
959
+ * this enum contains the known values that the service supports.
960
+ * ### Known values supported by the service
961
+ * **prefix**
962
+ */
963
+ export declare type PathMatchType = string;
964
+ /** Known values of {@link HeaderMatchType} that the service accepts. */
965
+ export declare enum KnownHeaderMatchType {
966
+ Exact = "exact"
967
+ }
968
+ /**
969
+ * Defines values for HeaderMatchType. \
970
+ * {@link KnownHeaderMatchType} can be used interchangeably with HeaderMatchType,
971
+ * this enum contains the known values that the service supports.
972
+ * ### Known values supported by the service
973
+ * **exact**
974
+ */
975
+ export declare type HeaderMatchType = string;
976
+ /** Known values of {@link OperatingSystemType} that the service accepts. */
977
+ export declare enum KnownOperatingSystemType {
978
+ /** The required operating system is Linux. */
979
+ Linux = "Linux",
980
+ /** The required operating system is Windows. */
981
+ Windows = "Windows"
982
+ }
983
+ /**
984
+ * Defines values for OperatingSystemType. \
985
+ * {@link KnownOperatingSystemType} can be used interchangeably with OperatingSystemType,
986
+ * this enum contains the known values that the service supports.
987
+ * ### Known values supported by the service
988
+ * **Linux**: The required operating system is Linux. \
989
+ * **Windows**: The required operating system is Windows.
990
+ */
991
+ export declare type OperatingSystemType = string;
992
+ /** Known values of {@link ApplicationScopedVolumeKind} that the service accepts. */
993
+ export declare enum KnownApplicationScopedVolumeKind {
994
+ /** Provides Service Fabric High Availability Volume Disk */
995
+ ServiceFabricVolumeDisk = "ServiceFabricVolumeDisk"
996
+ }
997
+ /**
998
+ * Defines values for ApplicationScopedVolumeKind. \
999
+ * {@link KnownApplicationScopedVolumeKind} can be used interchangeably with ApplicationScopedVolumeKind,
1000
+ * this enum contains the known values that the service supports.
1001
+ * ### Known values supported by the service
1002
+ * **ServiceFabricVolumeDisk**: Provides Service Fabric High Availability Volume Disk
1003
+ */
1004
+ export declare type ApplicationScopedVolumeKind = string;
1005
+ /** Known values of {@link AutoScalingTriggerKind} that the service accepts. */
1006
+ export declare enum KnownAutoScalingTriggerKind {
1007
+ /** Indicates that scaling should be performed based on average load of all replicas in the service. */
1008
+ AverageLoad = "AverageLoad"
1009
+ }
1010
+ /**
1011
+ * Defines values for AutoScalingTriggerKind. \
1012
+ * {@link KnownAutoScalingTriggerKind} can be used interchangeably with AutoScalingTriggerKind,
1013
+ * this enum contains the known values that the service supports.
1014
+ * ### Known values supported by the service
1015
+ * **AverageLoad**: Indicates that scaling should be performed based on average load of all replicas in the service.
1016
+ */
1017
+ export declare type AutoScalingTriggerKind = string;
1018
+ /** Known values of {@link AutoScalingMechanismKind} that the service accepts. */
1019
+ export declare enum KnownAutoScalingMechanismKind {
1020
+ /** Indicates that scaling should be performed by adding or removing replicas. */
1021
+ AddRemoveReplica = "AddRemoveReplica"
1022
+ }
1023
+ /**
1024
+ * Defines values for AutoScalingMechanismKind. \
1025
+ * {@link KnownAutoScalingMechanismKind} can be used interchangeably with AutoScalingMechanismKind,
1026
+ * this enum contains the known values that the service supports.
1027
+ * ### Known values supported by the service
1028
+ * **AddRemoveReplica**: Indicates that scaling should be performed by adding or removing replicas.
1029
+ */
1030
+ export declare type AutoScalingMechanismKind = string;
1031
+ /** Known values of {@link HealthState} that the service accepts. */
1032
+ export declare enum KnownHealthState {
1033
+ /** Indicates an invalid health state. All Service Fabric enumerations have the invalid type. The value is zero. */
1034
+ Invalid = "Invalid",
1035
+ /** Indicates the health state is okay. The value is 1. */
1036
+ Ok = "Ok",
1037
+ /** Indicates the health state is at a warning level. The value is 2. */
1038
+ Warning = "Warning",
1039
+ /** Indicates the health state is at an error level. Error health state should be investigated, as they can impact the correct functionality of the cluster. The value is 3. */
1040
+ Error = "Error",
1041
+ /** Indicates an unknown health status. The value is 65535. */
1042
+ Unknown = "Unknown"
1043
+ }
1044
+ /**
1045
+ * Defines values for HealthState. \
1046
+ * {@link KnownHealthState} can be used interchangeably with HealthState,
1047
+ * this enum contains the known values that the service supports.
1048
+ * ### Known values supported by the service
1049
+ * **Invalid**: Indicates an invalid health state. All Service Fabric enumerations have the invalid type. The value is zero. \
1050
+ * **Ok**: Indicates the health state is okay. The value is 1. \
1051
+ * **Warning**: Indicates the health state is at a warning level. The value is 2. \
1052
+ * **Error**: Indicates the health state is at an error level. Error health state should be investigated, as they can impact the correct functionality of the cluster. The value is 3. \
1053
+ * **Unknown**: Indicates an unknown health status. The value is 65535.
1054
+ */
1055
+ export declare type HealthState = string;
1056
+ /** Known values of {@link DiagnosticsSinkKind} that the service accepts. */
1057
+ export declare enum KnownDiagnosticsSinkKind {
1058
+ /** Indicates an invalid sink kind. All Service Fabric enumerations have the invalid type. */
1059
+ Invalid = "Invalid",
1060
+ /** Diagnostics settings for Geneva. */
1061
+ AzureInternalMonitoringPipeline = "AzureInternalMonitoringPipeline"
1062
+ }
1063
+ /**
1064
+ * Defines values for DiagnosticsSinkKind. \
1065
+ * {@link KnownDiagnosticsSinkKind} can be used interchangeably with DiagnosticsSinkKind,
1066
+ * this enum contains the known values that the service supports.
1067
+ * ### Known values supported by the service
1068
+ * **Invalid**: Indicates an invalid sink kind. All Service Fabric enumerations have the invalid type. \
1069
+ * **AzureInternalMonitoringPipeline**: Diagnostics settings for Geneva.
1070
+ */
1071
+ export declare type DiagnosticsSinkKind = string;
1072
+ /** Known values of {@link SizeTypes} that the service accepts. */
1073
+ export declare enum KnownSizeTypes {
1074
+ Small = "Small",
1075
+ Medium = "Medium",
1076
+ Large = "Large"
1077
+ }
1078
+ /**
1079
+ * Defines values for SizeTypes. \
1080
+ * {@link KnownSizeTypes} can be used interchangeably with SizeTypes,
1081
+ * this enum contains the known values that the service supports.
1082
+ * ### Known values supported by the service
1083
+ * **Small** \
1084
+ * **Medium** \
1085
+ * **Large**
1086
+ */
1087
+ export declare type SizeTypes = string;
1088
+ /** Known values of {@link AutoScalingMetricKind} that the service accepts. */
1089
+ export declare enum KnownAutoScalingMetricKind {
1090
+ /** Indicates that the metric is one of resources, like cpu or memory. */
1091
+ Resource = "Resource"
1092
+ }
1093
+ /**
1094
+ * Defines values for AutoScalingMetricKind. \
1095
+ * {@link KnownAutoScalingMetricKind} can be used interchangeably with AutoScalingMetricKind,
1096
+ * this enum contains the known values that the service supports.
1097
+ * ### Known values supported by the service
1098
+ * **Resource**: Indicates that the metric is one of resources, like cpu or memory.
1099
+ */
1100
+ export declare type AutoScalingMetricKind = string;
1101
+ /** Known values of {@link AutoScalingResourceMetricName} that the service accepts. */
1102
+ export declare enum KnownAutoScalingResourceMetricName {
1103
+ /** Indicates that the resource is CPU cores. */
1104
+ Cpu = "cpu",
1105
+ /** Indicates that the resource is memory in GB. */
1106
+ MemoryInGB = "memoryInGB"
1107
+ }
1108
+ /**
1109
+ * Defines values for AutoScalingResourceMetricName. \
1110
+ * {@link KnownAutoScalingResourceMetricName} can be used interchangeably with AutoScalingResourceMetricName,
1111
+ * this enum contains the known values that the service supports.
1112
+ * ### Known values supported by the service
1113
+ * **cpu**: Indicates that the resource is CPU cores. \
1114
+ * **memoryInGB**: Indicates that the resource is memory in GB.
1115
+ */
1116
+ export declare type AutoScalingResourceMetricName = string;
1117
+ /** Optional parameters. */
1118
+ export interface OperationsListOptionalParams extends coreClient.OperationOptions {
1119
+ }
1120
+ /** Contains response data for the list operation. */
1121
+ export declare type OperationsListResponse = OperationListResult;
1122
+ /** Optional parameters. */
1123
+ export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
1124
+ }
1125
+ /** Contains response data for the listNext operation. */
1126
+ export declare type OperationsListNextResponse = OperationListResult;
1127
+ /** Optional parameters. */
1128
+ export interface SecretCreateOptionalParams extends coreClient.OperationOptions {
1129
+ }
1130
+ /** Contains response data for the create operation. */
1131
+ export declare type SecretCreateResponse = SecretResourceDescription;
1132
+ /** Optional parameters. */
1133
+ export interface SecretGetOptionalParams extends coreClient.OperationOptions {
1134
+ }
1135
+ /** Contains response data for the get operation. */
1136
+ export declare type SecretGetResponse = SecretResourceDescription;
1137
+ /** Optional parameters. */
1138
+ export interface SecretDeleteOptionalParams extends coreClient.OperationOptions {
1139
+ }
1140
+ /** Optional parameters. */
1141
+ export interface SecretListByResourceGroupOptionalParams extends coreClient.OperationOptions {
1142
+ }
1143
+ /** Contains response data for the listByResourceGroup operation. */
1144
+ export declare type SecretListByResourceGroupResponse = SecretResourceDescriptionList;
1145
+ /** Optional parameters. */
1146
+ export interface SecretListBySubscriptionOptionalParams extends coreClient.OperationOptions {
1147
+ }
1148
+ /** Contains response data for the listBySubscription operation. */
1149
+ export declare type SecretListBySubscriptionResponse = SecretResourceDescriptionList;
1150
+ /** Optional parameters. */
1151
+ export interface SecretListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
1152
+ }
1153
+ /** Contains response data for the listByResourceGroupNext operation. */
1154
+ export declare type SecretListByResourceGroupNextResponse = SecretResourceDescriptionList;
1155
+ /** Optional parameters. */
1156
+ export interface SecretListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
1157
+ }
1158
+ /** Contains response data for the listBySubscriptionNext operation. */
1159
+ export declare type SecretListBySubscriptionNextResponse = SecretResourceDescriptionList;
1160
+ /** Optional parameters. */
1161
+ export interface SecretValueCreateOptionalParams extends coreClient.OperationOptions {
1162
+ }
1163
+ /** Contains response data for the create operation. */
1164
+ export declare type SecretValueCreateResponse = SecretValueResourceDescription;
1165
+ /** Optional parameters. */
1166
+ export interface SecretValueGetOptionalParams extends coreClient.OperationOptions {
1167
+ }
1168
+ /** Contains response data for the get operation. */
1169
+ export declare type SecretValueGetResponse = SecretValueResourceDescription;
1170
+ /** Optional parameters. */
1171
+ export interface SecretValueDeleteOptionalParams extends coreClient.OperationOptions {
1172
+ }
1173
+ /** Optional parameters. */
1174
+ export interface SecretValueListOptionalParams extends coreClient.OperationOptions {
1175
+ }
1176
+ /** Contains response data for the list operation. */
1177
+ export declare type SecretValueListResponse = SecretValueResourceDescriptionList;
1178
+ /** Optional parameters. */
1179
+ export interface SecretValueListValueOptionalParams extends coreClient.OperationOptions {
1180
+ }
1181
+ /** Contains response data for the listValue operation. */
1182
+ export declare type SecretValueListValueResponse = SecretValue;
1183
+ /** Optional parameters. */
1184
+ export interface SecretValueListNextOptionalParams extends coreClient.OperationOptions {
1185
+ }
1186
+ /** Contains response data for the listNext operation. */
1187
+ export declare type SecretValueListNextResponse = SecretValueResourceDescriptionList;
1188
+ /** Optional parameters. */
1189
+ export interface VolumeCreateOptionalParams extends coreClient.OperationOptions {
1190
+ }
1191
+ /** Contains response data for the create operation. */
1192
+ export declare type VolumeCreateResponse = VolumeResourceDescription;
1193
+ /** Optional parameters. */
1194
+ export interface VolumeGetOptionalParams extends coreClient.OperationOptions {
1195
+ }
1196
+ /** Contains response data for the get operation. */
1197
+ export declare type VolumeGetResponse = VolumeResourceDescription;
1198
+ /** Optional parameters. */
1199
+ export interface VolumeDeleteOptionalParams extends coreClient.OperationOptions {
1200
+ }
1201
+ /** Optional parameters. */
1202
+ export interface VolumeListByResourceGroupOptionalParams extends coreClient.OperationOptions {
1203
+ }
1204
+ /** Contains response data for the listByResourceGroup operation. */
1205
+ export declare type VolumeListByResourceGroupResponse = VolumeResourceDescriptionList;
1206
+ /** Optional parameters. */
1207
+ export interface VolumeListBySubscriptionOptionalParams extends coreClient.OperationOptions {
1208
+ }
1209
+ /** Contains response data for the listBySubscription operation. */
1210
+ export declare type VolumeListBySubscriptionResponse = VolumeResourceDescriptionList;
1211
+ /** Optional parameters. */
1212
+ export interface VolumeListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
1213
+ }
1214
+ /** Contains response data for the listByResourceGroupNext operation. */
1215
+ export declare type VolumeListByResourceGroupNextResponse = VolumeResourceDescriptionList;
1216
+ /** Optional parameters. */
1217
+ export interface VolumeListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
1218
+ }
1219
+ /** Contains response data for the listBySubscriptionNext operation. */
1220
+ export declare type VolumeListBySubscriptionNextResponse = VolumeResourceDescriptionList;
1221
+ /** Optional parameters. */
1222
+ export interface NetworkCreateOptionalParams extends coreClient.OperationOptions {
1223
+ }
1224
+ /** Contains response data for the create operation. */
1225
+ export declare type NetworkCreateResponse = NetworkResourceDescription;
1226
+ /** Optional parameters. */
1227
+ export interface NetworkGetOptionalParams extends coreClient.OperationOptions {
1228
+ }
1229
+ /** Contains response data for the get operation. */
1230
+ export declare type NetworkGetResponse = NetworkResourceDescription;
1231
+ /** Optional parameters. */
1232
+ export interface NetworkDeleteOptionalParams extends coreClient.OperationOptions {
1233
+ }
1234
+ /** Optional parameters. */
1235
+ export interface NetworkListByResourceGroupOptionalParams extends coreClient.OperationOptions {
1236
+ }
1237
+ /** Contains response data for the listByResourceGroup operation. */
1238
+ export declare type NetworkListByResourceGroupResponse = NetworkResourceDescriptionList;
1239
+ /** Optional parameters. */
1240
+ export interface NetworkListBySubscriptionOptionalParams extends coreClient.OperationOptions {
1241
+ }
1242
+ /** Contains response data for the listBySubscription operation. */
1243
+ export declare type NetworkListBySubscriptionResponse = NetworkResourceDescriptionList;
1244
+ /** Optional parameters. */
1245
+ export interface NetworkListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
1246
+ }
1247
+ /** Contains response data for the listByResourceGroupNext operation. */
1248
+ export declare type NetworkListByResourceGroupNextResponse = NetworkResourceDescriptionList;
1249
+ /** Optional parameters. */
1250
+ export interface NetworkListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
1251
+ }
1252
+ /** Contains response data for the listBySubscriptionNext operation. */
1253
+ export declare type NetworkListBySubscriptionNextResponse = NetworkResourceDescriptionList;
1254
+ /** Optional parameters. */
1255
+ export interface GatewayCreateOptionalParams extends coreClient.OperationOptions {
1256
+ }
1257
+ /** Contains response data for the create operation. */
1258
+ export declare type GatewayCreateResponse = GatewayResourceDescription;
1259
+ /** Optional parameters. */
1260
+ export interface GatewayGetOptionalParams extends coreClient.OperationOptions {
1261
+ }
1262
+ /** Contains response data for the get operation. */
1263
+ export declare type GatewayGetResponse = GatewayResourceDescription;
1264
+ /** Optional parameters. */
1265
+ export interface GatewayDeleteOptionalParams extends coreClient.OperationOptions {
1266
+ }
1267
+ /** Optional parameters. */
1268
+ export interface GatewayListByResourceGroupOptionalParams extends coreClient.OperationOptions {
1269
+ }
1270
+ /** Contains response data for the listByResourceGroup operation. */
1271
+ export declare type GatewayListByResourceGroupResponse = GatewayResourceDescriptionList;
1272
+ /** Optional parameters. */
1273
+ export interface GatewayListBySubscriptionOptionalParams extends coreClient.OperationOptions {
1274
+ }
1275
+ /** Contains response data for the listBySubscription operation. */
1276
+ export declare type GatewayListBySubscriptionResponse = GatewayResourceDescriptionList;
1277
+ /** Optional parameters. */
1278
+ export interface GatewayListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
1279
+ }
1280
+ /** Contains response data for the listByResourceGroupNext operation. */
1281
+ export declare type GatewayListByResourceGroupNextResponse = GatewayResourceDescriptionList;
1282
+ /** Optional parameters. */
1283
+ export interface GatewayListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
1284
+ }
1285
+ /** Contains response data for the listBySubscriptionNext operation. */
1286
+ export declare type GatewayListBySubscriptionNextResponse = GatewayResourceDescriptionList;
1287
+ /** Optional parameters. */
1288
+ export interface ApplicationCreateOptionalParams extends coreClient.OperationOptions {
1289
+ }
1290
+ /** Contains response data for the create operation. */
1291
+ export declare type ApplicationCreateResponse = ApplicationResourceDescription;
1292
+ /** Optional parameters. */
1293
+ export interface ApplicationGetOptionalParams extends coreClient.OperationOptions {
1294
+ }
1295
+ /** Contains response data for the get operation. */
1296
+ export declare type ApplicationGetResponse = ApplicationResourceDescription;
1297
+ /** Optional parameters. */
1298
+ export interface ApplicationDeleteOptionalParams extends coreClient.OperationOptions {
1299
+ }
1300
+ /** Optional parameters. */
1301
+ export interface ApplicationListByResourceGroupOptionalParams extends coreClient.OperationOptions {
1302
+ }
1303
+ /** Contains response data for the listByResourceGroup operation. */
1304
+ export declare type ApplicationListByResourceGroupResponse = ApplicationResourceDescriptionList;
1305
+ /** Optional parameters. */
1306
+ export interface ApplicationListBySubscriptionOptionalParams extends coreClient.OperationOptions {
1307
+ }
1308
+ /** Contains response data for the listBySubscription operation. */
1309
+ export declare type ApplicationListBySubscriptionResponse = ApplicationResourceDescriptionList;
1310
+ /** Optional parameters. */
1311
+ export interface ApplicationListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
1312
+ }
1313
+ /** Contains response data for the listByResourceGroupNext operation. */
1314
+ export declare type ApplicationListByResourceGroupNextResponse = ApplicationResourceDescriptionList;
1315
+ /** Optional parameters. */
1316
+ export interface ApplicationListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
1317
+ }
1318
+ /** Contains response data for the listBySubscriptionNext operation. */
1319
+ export declare type ApplicationListBySubscriptionNextResponse = ApplicationResourceDescriptionList;
1320
+ /** Optional parameters. */
1321
+ export interface ServiceGetOptionalParams extends coreClient.OperationOptions {
1322
+ }
1323
+ /** Contains response data for the get operation. */
1324
+ export declare type ServiceGetResponse = ServiceResourceDescription;
1325
+ /** Optional parameters. */
1326
+ export interface ServiceListOptionalParams extends coreClient.OperationOptions {
1327
+ }
1328
+ /** Contains response data for the list operation. */
1329
+ export declare type ServiceListResponse = ServiceResourceDescriptionList;
1330
+ /** Optional parameters. */
1331
+ export interface ServiceListNextOptionalParams extends coreClient.OperationOptions {
1332
+ }
1333
+ /** Contains response data for the listNext operation. */
1334
+ export declare type ServiceListNextResponse = ServiceResourceDescriptionList;
1335
+ /** Optional parameters. */
1336
+ export interface ServiceReplicaGetOptionalParams extends coreClient.OperationOptions {
1337
+ }
1338
+ /** Contains response data for the get operation. */
1339
+ export declare type ServiceReplicaGetResponse = ServiceReplicaDescription;
1340
+ /** Optional parameters. */
1341
+ export interface ServiceReplicaListOptionalParams extends coreClient.OperationOptions {
1342
+ }
1343
+ /** Contains response data for the list operation. */
1344
+ export declare type ServiceReplicaListResponse = ServiceReplicaDescriptionList;
1345
+ /** Optional parameters. */
1346
+ export interface ServiceReplicaListNextOptionalParams extends coreClient.OperationOptions {
1347
+ }
1348
+ /** Contains response data for the listNext operation. */
1349
+ export declare type ServiceReplicaListNextResponse = ServiceReplicaDescriptionList;
1350
+ /** Optional parameters. */
1351
+ export interface CodePackageGetContainerLogsOptionalParams extends coreClient.OperationOptions {
1352
+ /** Number of lines to show from the end of the logs. Default is 100. */
1353
+ tail?: number;
1354
+ }
1355
+ /** Contains response data for the getContainerLogs operation. */
1356
+ export declare type CodePackageGetContainerLogsResponse = ContainerLogs;
1357
+ /** Optional parameters. */
1358
+ export interface ServiceFabricMeshManagementClientOptionalParams extends coreClient.ServiceClientOptions {
1359
+ /** server parameter */
1360
+ $host?: string;
1361
+ /** Api Version */
1362
+ apiVersion?: string;
1363
+ /** Overrides client endpoint. */
1364
+ endpoint?: string;
1365
+ }
1366
+ //# sourceMappingURL=index.d.ts.map