@azure/arm-relay 0.1.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/{LICENSE.txt → LICENSE} +21 -21
- package/README.md +98 -96
- package/dist/index.js +2907 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +493 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +9 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +23 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +369 -416
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +20 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +169 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/hybridConnections.d.ts +137 -0
- package/dist-esm/src/operations/hybridConnections.d.ts.map +1 -0
- package/dist-esm/src/operations/hybridConnections.js +571 -0
- package/dist-esm/src/operations/hybridConnections.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +3 -5
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/namespaces.d.ts +174 -0
- package/dist-esm/src/operations/namespaces.d.ts.map +1 -0
- package/dist-esm/src/operations/namespaces.js +771 -0
- package/dist-esm/src/operations/namespaces.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/wCFRelays.d.ts +137 -0
- package/dist-esm/src/operations/wCFRelays.d.ts.map +1 -0
- package/dist-esm/src/operations/wCFRelays.js +554 -0
- package/dist-esm/src/operations/wCFRelays.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/hybridConnections.d.ts +93 -0
- package/dist-esm/src/operationsInterfaces/hybridConnections.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/hybridConnections.js +9 -0
- package/dist-esm/src/operationsInterfaces/hybridConnections.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/namespaces.d.ts +121 -0
- package/dist-esm/src/operationsInterfaces/namespaces.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/namespaces.js +9 -0
- package/dist-esm/src/operationsInterfaces/namespaces.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/wCFRelays.d.ts +93 -0
- package/dist-esm/src/operationsInterfaces/wCFRelays.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/wCFRelays.js +9 -0
- package/dist-esm/src/operationsInterfaces/wCFRelays.js.map +1 -0
- package/dist-esm/src/relayAPI.d.ts +22 -0
- package/dist-esm/src/relayAPI.d.ts.map +1 -0
- package/dist-esm/src/relayAPI.js +55 -0
- package/dist-esm/src/relayAPI.js.map +1 -0
- package/dist-esm/test/relay_examples.d.ts +4 -0
- package/dist-esm/test/relay_examples.d.ts.map +1 -0
- package/dist-esm/test/relay_examples.js +240 -0
- package/dist-esm/test/relay_examples.js.map +1 -0
- package/package.json +71 -34
- package/review/arm-relay.api.md +539 -0
- package/rollup.config.js +184 -27
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +611 -0
- package/{lib → src}/models/mappers.ts +366 -413
- package/src/models/parameters.ts +200 -0
- package/src/operations/hybridConnections.ts +780 -0
- package/{lib → src}/operations/index.ts +3 -5
- package/src/operations/namespaces.ts +1028 -0
- package/src/operations/operations.ts +137 -0
- package/src/operations/wCFRelays.ts +763 -0
- package/src/operationsInterfaces/hybridConnections.ts +179 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/namespaces.ts +228 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/operationsInterfaces/wCFRelays.ts +179 -0
- package/src/relayAPI.ts +92 -0
- package/tsconfig.json +4 -4
- package/types/arm-relay.d.ts +931 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-relay.js +0 -2593
- package/dist/arm-relay.js.map +0 -1
- package/dist/arm-relay.min.js +0 -1
- package/dist/arm-relay.min.js.map +0 -1
- package/esm/models/hybridConnectionsMappers.d.ts +0 -2
- package/esm/models/hybridConnectionsMappers.d.ts.map +0 -1
- package/esm/models/hybridConnectionsMappers.js +0 -11
- package/esm/models/hybridConnectionsMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -1231
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -25
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/namespacesMappers.d.ts +0 -2
- package/esm/models/namespacesMappers.d.ts.map +0 -1
- package/esm/models/namespacesMappers.js +0 -11
- package/esm/models/namespacesMappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -11
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -118
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/wCFRelaysMappers.d.ts +0 -2
- package/esm/models/wCFRelaysMappers.d.ts.map +0 -1
- package/esm/models/wCFRelaysMappers.js +0 -11
- package/esm/models/wCFRelaysMappers.js.map +0 -1
- package/esm/operations/hybridConnections.d.ts +0 -310
- package/esm/operations/hybridConnections.d.ts.map +0 -1
- package/esm/operations/hybridConnections.js +0 -431
- package/esm/operations/hybridConnections.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/namespaces.d.ts +0 -348
- package/esm/operations/namespaces.d.ts.map +0 -1
- package/esm/operations/namespaces.js +0 -579
- package/esm/operations/namespaces.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -77
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/wCFRelays.d.ts +0 -310
- package/esm/operations/wCFRelays.d.ts.map +0 -1
- package/esm/operations/wCFRelays.js +0 -432
- package/esm/operations/wCFRelays.js.map +0 -1
- package/esm/relayManagementClient.d.ts +0 -22
- package/esm/relayManagementClient.d.ts.map +0 -1
- package/esm/relayManagementClient.js +0 -37
- package/esm/relayManagementClient.js.map +0 -1
- package/esm/relayManagementClientContext.d.ts +0 -17
- package/esm/relayManagementClientContext.d.ts.map +0 -1
- package/esm/relayManagementClientContext.js +0 -57
- package/esm/relayManagementClientContext.js.map +0 -1
- package/lib/models/hybridConnectionsMappers.ts +0 -28
- package/lib/models/index.ts +0 -1304
- package/lib/models/namespacesMappers.ts +0 -30
- package/lib/models/operationsMappers.ts +0 -17
- package/lib/models/parameters.ts +0 -120
- package/lib/models/wCFRelaysMappers.ts +0 -29
- package/lib/operations/hybridConnections.ts +0 -799
- package/lib/operations/namespaces.ts +0 -977
- package/lib/operations/operations.ts +0 -123
- package/lib/operations/wCFRelays.ts +0 -800
- package/lib/relayManagementClient.ts +0 -49
- package/lib/relayManagementClientContext.ts +0 -63
|
@@ -1,42 +1,34 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
* license information.
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
5
4
|
*
|
|
6
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
9
7
|
*/
|
|
10
8
|
|
|
11
|
-
import
|
|
12
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
9
|
+
import * as coreClient from "@azure/core-client";
|
|
13
10
|
|
|
14
|
-
export const
|
|
15
|
-
export const BaseResource = BaseResourceMapper;
|
|
16
|
-
|
|
17
|
-
export const Resource: msRest.CompositeMapper = {
|
|
18
|
-
serializedName: "Resource",
|
|
11
|
+
export const OperationListResult: coreClient.CompositeMapper = {
|
|
19
12
|
type: {
|
|
20
13
|
name: "Composite",
|
|
21
|
-
className: "
|
|
14
|
+
className: "OperationListResult",
|
|
22
15
|
modelProperties: {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
serializedName: "id",
|
|
26
|
-
type: {
|
|
27
|
-
name: "String"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
name: {
|
|
16
|
+
value: {
|
|
17
|
+
serializedName: "value",
|
|
31
18
|
readOnly: true,
|
|
32
|
-
serializedName: "name",
|
|
33
19
|
type: {
|
|
34
|
-
name: "
|
|
20
|
+
name: "Sequence",
|
|
21
|
+
element: {
|
|
22
|
+
type: {
|
|
23
|
+
name: "Composite",
|
|
24
|
+
className: "Operation"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
35
27
|
}
|
|
36
28
|
},
|
|
37
|
-
|
|
29
|
+
nextLink: {
|
|
30
|
+
serializedName: "nextLink",
|
|
38
31
|
readOnly: true,
|
|
39
|
-
serializedName: "type",
|
|
40
32
|
type: {
|
|
41
33
|
name: "String"
|
|
42
34
|
}
|
|
@@ -45,97 +37,72 @@ export const Resource: msRest.CompositeMapper = {
|
|
|
45
37
|
}
|
|
46
38
|
};
|
|
47
39
|
|
|
48
|
-
export const
|
|
49
|
-
serializedName: "TrackedResource",
|
|
40
|
+
export const Operation: coreClient.CompositeMapper = {
|
|
50
41
|
type: {
|
|
51
42
|
name: "Composite",
|
|
52
|
-
className: "
|
|
43
|
+
className: "Operation",
|
|
53
44
|
modelProperties: {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
serializedName: "location",
|
|
45
|
+
name: {
|
|
46
|
+
serializedName: "name",
|
|
47
|
+
readOnly: true,
|
|
58
48
|
type: {
|
|
59
49
|
name: "String"
|
|
60
50
|
}
|
|
61
51
|
},
|
|
62
|
-
|
|
63
|
-
serializedName: "
|
|
64
|
-
type: {
|
|
65
|
-
name: "Dictionary",
|
|
66
|
-
value: {
|
|
67
|
-
type: {
|
|
68
|
-
name: "String"
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
};
|
|
76
|
-
|
|
77
|
-
export const ResourceNamespacePatch: msRest.CompositeMapper = {
|
|
78
|
-
serializedName: "ResourceNamespacePatch",
|
|
79
|
-
type: {
|
|
80
|
-
name: "Composite",
|
|
81
|
-
className: "ResourceNamespacePatch",
|
|
82
|
-
modelProperties: {
|
|
83
|
-
...Resource.type.modelProperties,
|
|
84
|
-
tags: {
|
|
85
|
-
serializedName: "tags",
|
|
52
|
+
display: {
|
|
53
|
+
serializedName: "display",
|
|
86
54
|
type: {
|
|
87
|
-
name: "
|
|
88
|
-
|
|
89
|
-
type: {
|
|
90
|
-
name: "String"
|
|
91
|
-
}
|
|
92
|
-
}
|
|
55
|
+
name: "Composite",
|
|
56
|
+
className: "OperationDisplay"
|
|
93
57
|
}
|
|
94
58
|
}
|
|
95
59
|
}
|
|
96
60
|
}
|
|
97
61
|
};
|
|
98
62
|
|
|
99
|
-
export const
|
|
100
|
-
serializedName: "HybridConnection",
|
|
63
|
+
export const OperationDisplay: coreClient.CompositeMapper = {
|
|
101
64
|
type: {
|
|
102
65
|
name: "Composite",
|
|
103
|
-
className: "
|
|
66
|
+
className: "OperationDisplay",
|
|
104
67
|
modelProperties: {
|
|
105
|
-
|
|
106
|
-
|
|
68
|
+
provider: {
|
|
69
|
+
serializedName: "provider",
|
|
107
70
|
readOnly: true,
|
|
108
|
-
serializedName: "properties.createdAt",
|
|
109
71
|
type: {
|
|
110
|
-
name: "
|
|
72
|
+
name: "String"
|
|
111
73
|
}
|
|
112
74
|
},
|
|
113
|
-
|
|
75
|
+
resource: {
|
|
76
|
+
serializedName: "resource",
|
|
114
77
|
readOnly: true,
|
|
115
|
-
serializedName: "properties.updatedAt",
|
|
116
78
|
type: {
|
|
117
|
-
name: "
|
|
79
|
+
name: "String"
|
|
118
80
|
}
|
|
119
81
|
},
|
|
120
|
-
|
|
82
|
+
operation: {
|
|
83
|
+
serializedName: "operation",
|
|
121
84
|
readOnly: true,
|
|
122
|
-
serializedName: "properties.listenerCount",
|
|
123
|
-
constraints: {
|
|
124
|
-
InclusiveMaximum: 25,
|
|
125
|
-
InclusiveMinimum: 0
|
|
126
|
-
},
|
|
127
85
|
type: {
|
|
128
|
-
name: "
|
|
86
|
+
name: "String"
|
|
129
87
|
}
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
};
|
|
92
|
+
|
|
93
|
+
export const ErrorResponse: coreClient.CompositeMapper = {
|
|
94
|
+
type: {
|
|
95
|
+
name: "Composite",
|
|
96
|
+
className: "ErrorResponse",
|
|
97
|
+
modelProperties: {
|
|
98
|
+
code: {
|
|
99
|
+
serializedName: "code",
|
|
133
100
|
type: {
|
|
134
|
-
name: "
|
|
101
|
+
name: "String"
|
|
135
102
|
}
|
|
136
103
|
},
|
|
137
|
-
|
|
138
|
-
serializedName: "
|
|
104
|
+
message: {
|
|
105
|
+
serializedName: "message",
|
|
139
106
|
type: {
|
|
140
107
|
name: "String"
|
|
141
108
|
}
|
|
@@ -144,69 +111,77 @@ export const HybridConnection: msRest.CompositeMapper = {
|
|
|
144
111
|
}
|
|
145
112
|
};
|
|
146
113
|
|
|
147
|
-
export const
|
|
148
|
-
serializedName: "WcfRelay",
|
|
114
|
+
export const CheckNameAvailability: coreClient.CompositeMapper = {
|
|
149
115
|
type: {
|
|
150
116
|
name: "Composite",
|
|
151
|
-
className: "
|
|
117
|
+
className: "CheckNameAvailability",
|
|
152
118
|
modelProperties: {
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
serializedName: "properties.isDynamic",
|
|
157
|
-
type: {
|
|
158
|
-
name: "Boolean"
|
|
159
|
-
}
|
|
160
|
-
},
|
|
161
|
-
createdAt: {
|
|
162
|
-
readOnly: true,
|
|
163
|
-
serializedName: "properties.createdAt",
|
|
119
|
+
name: {
|
|
120
|
+
serializedName: "name",
|
|
121
|
+
required: true,
|
|
164
122
|
type: {
|
|
165
|
-
name: "
|
|
123
|
+
name: "String"
|
|
166
124
|
}
|
|
167
|
-
}
|
|
168
|
-
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
};
|
|
129
|
+
|
|
130
|
+
export const CheckNameAvailabilityResult: coreClient.CompositeMapper = {
|
|
131
|
+
type: {
|
|
132
|
+
name: "Composite",
|
|
133
|
+
className: "CheckNameAvailabilityResult",
|
|
134
|
+
modelProperties: {
|
|
135
|
+
message: {
|
|
136
|
+
serializedName: "message",
|
|
169
137
|
readOnly: true,
|
|
170
|
-
serializedName: "properties.updatedAt",
|
|
171
138
|
type: {
|
|
172
|
-
name: "
|
|
139
|
+
name: "String"
|
|
173
140
|
}
|
|
174
141
|
},
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
serializedName: "properties.listenerCount",
|
|
178
|
-
constraints: {
|
|
179
|
-
InclusiveMaximum: 25,
|
|
180
|
-
InclusiveMinimum: 0
|
|
181
|
-
},
|
|
142
|
+
nameAvailable: {
|
|
143
|
+
serializedName: "nameAvailable",
|
|
182
144
|
type: {
|
|
183
|
-
name: "
|
|
145
|
+
name: "Boolean"
|
|
184
146
|
}
|
|
185
147
|
},
|
|
186
|
-
|
|
187
|
-
serializedName: "
|
|
148
|
+
reason: {
|
|
149
|
+
serializedName: "reason",
|
|
188
150
|
type: {
|
|
189
151
|
name: "Enum",
|
|
190
152
|
allowedValues: [
|
|
191
|
-
"
|
|
192
|
-
"
|
|
153
|
+
"None",
|
|
154
|
+
"InvalidName",
|
|
155
|
+
"SubscriptionIsDisabled",
|
|
156
|
+
"NameInUse",
|
|
157
|
+
"NameInLockdown",
|
|
158
|
+
"TooManyNamespaceInCurrentSubscription"
|
|
193
159
|
]
|
|
194
160
|
}
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
export const RelayNamespaceListResult: coreClient.CompositeMapper = {
|
|
167
|
+
type: {
|
|
168
|
+
name: "Composite",
|
|
169
|
+
className: "RelayNamespaceListResult",
|
|
170
|
+
modelProperties: {
|
|
171
|
+
value: {
|
|
172
|
+
serializedName: "value",
|
|
204
173
|
type: {
|
|
205
|
-
name: "
|
|
174
|
+
name: "Sequence",
|
|
175
|
+
element: {
|
|
176
|
+
type: {
|
|
177
|
+
name: "Composite",
|
|
178
|
+
className: "RelayNamespace"
|
|
179
|
+
}
|
|
180
|
+
}
|
|
206
181
|
}
|
|
207
182
|
},
|
|
208
|
-
|
|
209
|
-
serializedName: "
|
|
183
|
+
nextLink: {
|
|
184
|
+
serializedName: "nextLink",
|
|
210
185
|
type: {
|
|
211
186
|
name: "String"
|
|
212
187
|
}
|
|
@@ -215,87 +190,53 @@ export const WcfRelay: msRest.CompositeMapper = {
|
|
|
215
190
|
}
|
|
216
191
|
};
|
|
217
192
|
|
|
218
|
-
export const Sku:
|
|
219
|
-
serializedName: "Sku",
|
|
193
|
+
export const Sku: coreClient.CompositeMapper = {
|
|
220
194
|
type: {
|
|
221
195
|
name: "Composite",
|
|
222
196
|
className: "Sku",
|
|
223
197
|
modelProperties: {
|
|
224
198
|
name: {
|
|
225
|
-
|
|
199
|
+
defaultValue: "Standard",
|
|
226
200
|
isConstant: true,
|
|
227
201
|
serializedName: "name",
|
|
228
|
-
defaultValue: 'Standard',
|
|
229
202
|
type: {
|
|
230
203
|
name: "String"
|
|
231
204
|
}
|
|
232
205
|
},
|
|
233
206
|
tier: {
|
|
207
|
+
defaultValue: "Standard",
|
|
208
|
+
isConstant: true,
|
|
234
209
|
serializedName: "tier",
|
|
235
210
|
type: {
|
|
236
|
-
name: "
|
|
237
|
-
allowedValues: [
|
|
238
|
-
"Standard"
|
|
239
|
-
]
|
|
211
|
+
name: "String"
|
|
240
212
|
}
|
|
241
213
|
}
|
|
242
214
|
}
|
|
243
215
|
}
|
|
244
216
|
};
|
|
245
217
|
|
|
246
|
-
export const
|
|
247
|
-
serializedName: "RelayNamespace",
|
|
218
|
+
export const Resource: coreClient.CompositeMapper = {
|
|
248
219
|
type: {
|
|
249
220
|
name: "Composite",
|
|
250
|
-
className: "
|
|
221
|
+
className: "Resource",
|
|
251
222
|
modelProperties: {
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
serializedName: "sku",
|
|
255
|
-
type: {
|
|
256
|
-
name: "Composite",
|
|
257
|
-
className: "Sku"
|
|
258
|
-
}
|
|
259
|
-
},
|
|
260
|
-
provisioningState: {
|
|
261
|
-
readOnly: true,
|
|
262
|
-
serializedName: "properties.provisioningState",
|
|
263
|
-
type: {
|
|
264
|
-
name: "Enum",
|
|
265
|
-
allowedValues: [
|
|
266
|
-
"Created",
|
|
267
|
-
"Succeeded",
|
|
268
|
-
"Deleted",
|
|
269
|
-
"Failed",
|
|
270
|
-
"Updating",
|
|
271
|
-
"Unknown"
|
|
272
|
-
]
|
|
273
|
-
}
|
|
274
|
-
},
|
|
275
|
-
createdAt: {
|
|
276
|
-
readOnly: true,
|
|
277
|
-
serializedName: "properties.createdAt",
|
|
278
|
-
type: {
|
|
279
|
-
name: "DateTime"
|
|
280
|
-
}
|
|
281
|
-
},
|
|
282
|
-
updatedAt: {
|
|
223
|
+
id: {
|
|
224
|
+
serializedName: "id",
|
|
283
225
|
readOnly: true,
|
|
284
|
-
serializedName: "properties.updatedAt",
|
|
285
226
|
type: {
|
|
286
|
-
name: "
|
|
227
|
+
name: "String"
|
|
287
228
|
}
|
|
288
229
|
},
|
|
289
|
-
|
|
230
|
+
name: {
|
|
231
|
+
serializedName: "name",
|
|
290
232
|
readOnly: true,
|
|
291
|
-
serializedName: "properties.serviceBusEndpoint",
|
|
292
233
|
type: {
|
|
293
234
|
name: "String"
|
|
294
235
|
}
|
|
295
236
|
},
|
|
296
|
-
|
|
237
|
+
type: {
|
|
238
|
+
serializedName: "type",
|
|
297
239
|
readOnly: true,
|
|
298
|
-
serializedName: "properties.metricId",
|
|
299
240
|
type: {
|
|
300
241
|
name: "String"
|
|
301
242
|
}
|
|
@@ -304,100 +245,34 @@ export const RelayNamespace: msRest.CompositeMapper = {
|
|
|
304
245
|
}
|
|
305
246
|
};
|
|
306
247
|
|
|
307
|
-
export const
|
|
308
|
-
serializedName: "RelayUpdateParameters",
|
|
248
|
+
export const AuthorizationRuleListResult: coreClient.CompositeMapper = {
|
|
309
249
|
type: {
|
|
310
250
|
name: "Composite",
|
|
311
|
-
className: "
|
|
251
|
+
className: "AuthorizationRuleListResult",
|
|
312
252
|
modelProperties: {
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
serializedName: "sku",
|
|
316
|
-
type: {
|
|
317
|
-
name: "Composite",
|
|
318
|
-
className: "Sku"
|
|
319
|
-
}
|
|
320
|
-
},
|
|
321
|
-
provisioningState: {
|
|
322
|
-
readOnly: true,
|
|
323
|
-
serializedName: "properties.provisioningState",
|
|
324
|
-
type: {
|
|
325
|
-
name: "Enum",
|
|
326
|
-
allowedValues: [
|
|
327
|
-
"Created",
|
|
328
|
-
"Succeeded",
|
|
329
|
-
"Deleted",
|
|
330
|
-
"Failed",
|
|
331
|
-
"Updating",
|
|
332
|
-
"Unknown"
|
|
333
|
-
]
|
|
334
|
-
}
|
|
335
|
-
},
|
|
336
|
-
createdAt: {
|
|
337
|
-
readOnly: true,
|
|
338
|
-
serializedName: "properties.createdAt",
|
|
339
|
-
type: {
|
|
340
|
-
name: "DateTime"
|
|
341
|
-
}
|
|
342
|
-
},
|
|
343
|
-
updatedAt: {
|
|
344
|
-
readOnly: true,
|
|
345
|
-
serializedName: "properties.updatedAt",
|
|
346
|
-
type: {
|
|
347
|
-
name: "DateTime"
|
|
348
|
-
}
|
|
349
|
-
},
|
|
350
|
-
serviceBusEndpoint: {
|
|
351
|
-
readOnly: true,
|
|
352
|
-
serializedName: "properties.serviceBusEndpoint",
|
|
353
|
-
type: {
|
|
354
|
-
name: "String"
|
|
355
|
-
}
|
|
356
|
-
},
|
|
357
|
-
metricId: {
|
|
358
|
-
readOnly: true,
|
|
359
|
-
serializedName: "properties.metricId",
|
|
360
|
-
type: {
|
|
361
|
-
name: "String"
|
|
362
|
-
}
|
|
363
|
-
}
|
|
364
|
-
}
|
|
365
|
-
}
|
|
366
|
-
};
|
|
367
|
-
|
|
368
|
-
export const AuthorizationRule: msRest.CompositeMapper = {
|
|
369
|
-
serializedName: "AuthorizationRule",
|
|
370
|
-
type: {
|
|
371
|
-
name: "Composite",
|
|
372
|
-
className: "AuthorizationRule",
|
|
373
|
-
modelProperties: {
|
|
374
|
-
...Resource.type.modelProperties,
|
|
375
|
-
rights: {
|
|
376
|
-
required: true,
|
|
377
|
-
serializedName: "properties.rights",
|
|
378
|
-
constraints: {
|
|
379
|
-
UniqueItems: true
|
|
380
|
-
},
|
|
253
|
+
value: {
|
|
254
|
+
serializedName: "value",
|
|
381
255
|
type: {
|
|
382
256
|
name: "Sequence",
|
|
383
257
|
element: {
|
|
384
258
|
type: {
|
|
385
|
-
name: "
|
|
386
|
-
|
|
387
|
-
"Manage",
|
|
388
|
-
"Send",
|
|
389
|
-
"Listen"
|
|
390
|
-
]
|
|
259
|
+
name: "Composite",
|
|
260
|
+
className: "AuthorizationRule"
|
|
391
261
|
}
|
|
392
262
|
}
|
|
393
263
|
}
|
|
264
|
+
},
|
|
265
|
+
nextLink: {
|
|
266
|
+
serializedName: "nextLink",
|
|
267
|
+
type: {
|
|
268
|
+
name: "String"
|
|
269
|
+
}
|
|
394
270
|
}
|
|
395
271
|
}
|
|
396
272
|
}
|
|
397
273
|
};
|
|
398
274
|
|
|
399
|
-
export const AccessKeys:
|
|
400
|
-
serializedName: "AccessKeys",
|
|
275
|
+
export const AccessKeys: coreClient.CompositeMapper = {
|
|
401
276
|
type: {
|
|
402
277
|
name: "Composite",
|
|
403
278
|
className: "AccessKeys",
|
|
@@ -436,21 +311,17 @@ export const AccessKeys: msRest.CompositeMapper = {
|
|
|
436
311
|
}
|
|
437
312
|
};
|
|
438
313
|
|
|
439
|
-
export const RegenerateAccessKeyParameters:
|
|
440
|
-
serializedName: "RegenerateAccessKeyParameters",
|
|
314
|
+
export const RegenerateAccessKeyParameters: coreClient.CompositeMapper = {
|
|
441
315
|
type: {
|
|
442
316
|
name: "Composite",
|
|
443
317
|
className: "RegenerateAccessKeyParameters",
|
|
444
318
|
modelProperties: {
|
|
445
319
|
keyType: {
|
|
446
|
-
required: true,
|
|
447
320
|
serializedName: "keyType",
|
|
321
|
+
required: true,
|
|
448
322
|
type: {
|
|
449
323
|
name: "Enum",
|
|
450
|
-
allowedValues: [
|
|
451
|
-
"PrimaryKey",
|
|
452
|
-
"SecondaryKey"
|
|
453
|
-
]
|
|
324
|
+
allowedValues: ["PrimaryKey", "SecondaryKey"]
|
|
454
325
|
}
|
|
455
326
|
},
|
|
456
327
|
key: {
|
|
@@ -463,83 +334,52 @@ export const RegenerateAccessKeyParameters: msRest.CompositeMapper = {
|
|
|
463
334
|
}
|
|
464
335
|
};
|
|
465
336
|
|
|
466
|
-
export const
|
|
467
|
-
serializedName: "CheckNameAvailability",
|
|
468
|
-
type: {
|
|
469
|
-
name: "Composite",
|
|
470
|
-
className: "CheckNameAvailability",
|
|
471
|
-
modelProperties: {
|
|
472
|
-
name: {
|
|
473
|
-
required: true,
|
|
474
|
-
serializedName: "name",
|
|
475
|
-
type: {
|
|
476
|
-
name: "String"
|
|
477
|
-
}
|
|
478
|
-
}
|
|
479
|
-
}
|
|
480
|
-
}
|
|
481
|
-
};
|
|
482
|
-
|
|
483
|
-
export const CheckNameAvailabilityResult: msRest.CompositeMapper = {
|
|
484
|
-
serializedName: "CheckNameAvailabilityResult",
|
|
337
|
+
export const HybridConnectionListResult: coreClient.CompositeMapper = {
|
|
485
338
|
type: {
|
|
486
339
|
name: "Composite",
|
|
487
|
-
className: "
|
|
340
|
+
className: "HybridConnectionListResult",
|
|
488
341
|
modelProperties: {
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
serializedName: "message",
|
|
492
|
-
type: {
|
|
493
|
-
name: "String"
|
|
494
|
-
}
|
|
495
|
-
},
|
|
496
|
-
nameAvailable: {
|
|
497
|
-
serializedName: "nameAvailable",
|
|
342
|
+
value: {
|
|
343
|
+
serializedName: "value",
|
|
498
344
|
type: {
|
|
499
|
-
name: "
|
|
345
|
+
name: "Sequence",
|
|
346
|
+
element: {
|
|
347
|
+
type: {
|
|
348
|
+
name: "Composite",
|
|
349
|
+
className: "HybridConnection"
|
|
350
|
+
}
|
|
351
|
+
}
|
|
500
352
|
}
|
|
501
353
|
},
|
|
502
|
-
|
|
503
|
-
serializedName: "
|
|
354
|
+
nextLink: {
|
|
355
|
+
serializedName: "nextLink",
|
|
504
356
|
type: {
|
|
505
|
-
name: "
|
|
506
|
-
allowedValues: [
|
|
507
|
-
"None",
|
|
508
|
-
"InvalidName",
|
|
509
|
-
"SubscriptionIsDisabled",
|
|
510
|
-
"NameInUse",
|
|
511
|
-
"NameInLockdown",
|
|
512
|
-
"TooManyNamespaceInCurrentSubscription"
|
|
513
|
-
]
|
|
357
|
+
name: "String"
|
|
514
358
|
}
|
|
515
359
|
}
|
|
516
360
|
}
|
|
517
361
|
}
|
|
518
362
|
};
|
|
519
363
|
|
|
520
|
-
export const
|
|
521
|
-
serializedName: "Operation_display",
|
|
364
|
+
export const WcfRelaysListResult: coreClient.CompositeMapper = {
|
|
522
365
|
type: {
|
|
523
366
|
name: "Composite",
|
|
524
|
-
className: "
|
|
367
|
+
className: "WcfRelaysListResult",
|
|
525
368
|
modelProperties: {
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
serializedName: "provider",
|
|
529
|
-
type: {
|
|
530
|
-
name: "String"
|
|
531
|
-
}
|
|
532
|
-
},
|
|
533
|
-
resource: {
|
|
534
|
-
readOnly: true,
|
|
535
|
-
serializedName: "resource",
|
|
369
|
+
value: {
|
|
370
|
+
serializedName: "value",
|
|
536
371
|
type: {
|
|
537
|
-
name: "
|
|
372
|
+
name: "Sequence",
|
|
373
|
+
element: {
|
|
374
|
+
type: {
|
|
375
|
+
name: "Composite",
|
|
376
|
+
className: "WcfRelay"
|
|
377
|
+
}
|
|
378
|
+
}
|
|
538
379
|
}
|
|
539
380
|
},
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
serializedName: "operation",
|
|
381
|
+
nextLink: {
|
|
382
|
+
serializedName: "nextLink",
|
|
543
383
|
type: {
|
|
544
384
|
name: "String"
|
|
545
385
|
}
|
|
@@ -548,102 +388,112 @@ export const OperationDisplay: msRest.CompositeMapper = {
|
|
|
548
388
|
}
|
|
549
389
|
};
|
|
550
390
|
|
|
551
|
-
export const
|
|
552
|
-
serializedName: "Operation",
|
|
391
|
+
export const TrackedResource: coreClient.CompositeMapper = {
|
|
553
392
|
type: {
|
|
554
393
|
name: "Composite",
|
|
555
|
-
className: "
|
|
394
|
+
className: "TrackedResource",
|
|
556
395
|
modelProperties: {
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
serializedName: "
|
|
396
|
+
...Resource.type.modelProperties,
|
|
397
|
+
location: {
|
|
398
|
+
serializedName: "location",
|
|
399
|
+
required: true,
|
|
560
400
|
type: {
|
|
561
401
|
name: "String"
|
|
562
402
|
}
|
|
563
403
|
},
|
|
564
|
-
|
|
565
|
-
serializedName: "
|
|
404
|
+
tags: {
|
|
405
|
+
serializedName: "tags",
|
|
566
406
|
type: {
|
|
567
|
-
name: "
|
|
568
|
-
|
|
407
|
+
name: "Dictionary",
|
|
408
|
+
value: { type: { name: "String" } }
|
|
569
409
|
}
|
|
570
410
|
}
|
|
571
411
|
}
|
|
572
412
|
}
|
|
573
413
|
};
|
|
574
414
|
|
|
575
|
-
export const
|
|
576
|
-
serializedName: "ErrorResponse",
|
|
415
|
+
export const ResourceNamespacePatch: coreClient.CompositeMapper = {
|
|
577
416
|
type: {
|
|
578
417
|
name: "Composite",
|
|
579
|
-
className: "
|
|
418
|
+
className: "ResourceNamespacePatch",
|
|
580
419
|
modelProperties: {
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
name: "String"
|
|
585
|
-
}
|
|
586
|
-
},
|
|
587
|
-
message: {
|
|
588
|
-
serializedName: "message",
|
|
420
|
+
...Resource.type.modelProperties,
|
|
421
|
+
tags: {
|
|
422
|
+
serializedName: "tags",
|
|
589
423
|
type: {
|
|
590
|
-
name: "
|
|
424
|
+
name: "Dictionary",
|
|
425
|
+
value: { type: { name: "String" } }
|
|
591
426
|
}
|
|
592
427
|
}
|
|
593
428
|
}
|
|
594
429
|
}
|
|
595
430
|
};
|
|
596
431
|
|
|
597
|
-
export const
|
|
598
|
-
serializedName: "OperationListResult",
|
|
432
|
+
export const AuthorizationRule: coreClient.CompositeMapper = {
|
|
599
433
|
type: {
|
|
600
434
|
name: "Composite",
|
|
601
|
-
className: "
|
|
435
|
+
className: "AuthorizationRule",
|
|
602
436
|
modelProperties: {
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
437
|
+
...Resource.type.modelProperties,
|
|
438
|
+
rights: {
|
|
439
|
+
constraints: {
|
|
440
|
+
UniqueItems: true
|
|
441
|
+
},
|
|
442
|
+
serializedName: "properties.rights",
|
|
443
|
+
required: true,
|
|
606
444
|
type: {
|
|
607
445
|
name: "Sequence",
|
|
608
446
|
element: {
|
|
609
447
|
type: {
|
|
610
|
-
name: "
|
|
611
|
-
|
|
448
|
+
name: "Enum",
|
|
449
|
+
allowedValues: ["Manage", "Send", "Listen"]
|
|
612
450
|
}
|
|
613
451
|
}
|
|
614
452
|
}
|
|
615
|
-
},
|
|
616
|
-
nextLink: {
|
|
617
|
-
readOnly: true,
|
|
618
|
-
serializedName: "nextLink",
|
|
619
|
-
type: {
|
|
620
|
-
name: "String"
|
|
621
|
-
}
|
|
622
453
|
}
|
|
623
454
|
}
|
|
624
455
|
}
|
|
625
456
|
};
|
|
626
457
|
|
|
627
|
-
export const
|
|
628
|
-
serializedName: "RelayNamespaceListResult",
|
|
458
|
+
export const HybridConnection: coreClient.CompositeMapper = {
|
|
629
459
|
type: {
|
|
630
460
|
name: "Composite",
|
|
631
|
-
className: "
|
|
461
|
+
className: "HybridConnection",
|
|
632
462
|
modelProperties: {
|
|
633
|
-
|
|
634
|
-
|
|
463
|
+
...Resource.type.modelProperties,
|
|
464
|
+
createdAt: {
|
|
465
|
+
serializedName: "properties.createdAt",
|
|
466
|
+
readOnly: true,
|
|
635
467
|
type: {
|
|
636
|
-
name: "
|
|
637
|
-
element: {
|
|
638
|
-
type: {
|
|
639
|
-
name: "Composite",
|
|
640
|
-
className: "RelayNamespace"
|
|
641
|
-
}
|
|
642
|
-
}
|
|
468
|
+
name: "DateTime"
|
|
643
469
|
}
|
|
644
470
|
},
|
|
645
|
-
|
|
646
|
-
serializedName: "
|
|
471
|
+
updatedAt: {
|
|
472
|
+
serializedName: "properties.updatedAt",
|
|
473
|
+
readOnly: true,
|
|
474
|
+
type: {
|
|
475
|
+
name: "DateTime"
|
|
476
|
+
}
|
|
477
|
+
},
|
|
478
|
+
listenerCount: {
|
|
479
|
+
constraints: {
|
|
480
|
+
InclusiveMaximum: 25,
|
|
481
|
+
InclusiveMinimum: 0
|
|
482
|
+
},
|
|
483
|
+
serializedName: "properties.listenerCount",
|
|
484
|
+
readOnly: true,
|
|
485
|
+
type: {
|
|
486
|
+
name: "Number"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
requiresClientAuthorization: {
|
|
490
|
+
serializedName: "properties.requiresClientAuthorization",
|
|
491
|
+
type: {
|
|
492
|
+
name: "Boolean"
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
userMetadata: {
|
|
496
|
+
serializedName: "properties.userMetadata",
|
|
647
497
|
type: {
|
|
648
498
|
name: "String"
|
|
649
499
|
}
|
|
@@ -652,26 +502,65 @@ export const RelayNamespaceListResult: msRest.CompositeMapper = {
|
|
|
652
502
|
}
|
|
653
503
|
};
|
|
654
504
|
|
|
655
|
-
export const
|
|
656
|
-
serializedName: "AuthorizationRuleListResult",
|
|
505
|
+
export const WcfRelay: coreClient.CompositeMapper = {
|
|
657
506
|
type: {
|
|
658
507
|
name: "Composite",
|
|
659
|
-
className: "
|
|
508
|
+
className: "WcfRelay",
|
|
660
509
|
modelProperties: {
|
|
661
|
-
|
|
662
|
-
|
|
510
|
+
...Resource.type.modelProperties,
|
|
511
|
+
isDynamic: {
|
|
512
|
+
serializedName: "properties.isDynamic",
|
|
513
|
+
readOnly: true,
|
|
663
514
|
type: {
|
|
664
|
-
name: "
|
|
665
|
-
element: {
|
|
666
|
-
type: {
|
|
667
|
-
name: "Composite",
|
|
668
|
-
className: "AuthorizationRule"
|
|
669
|
-
}
|
|
670
|
-
}
|
|
515
|
+
name: "Boolean"
|
|
671
516
|
}
|
|
672
517
|
},
|
|
673
|
-
|
|
674
|
-
serializedName: "
|
|
518
|
+
createdAt: {
|
|
519
|
+
serializedName: "properties.createdAt",
|
|
520
|
+
readOnly: true,
|
|
521
|
+
type: {
|
|
522
|
+
name: "DateTime"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
updatedAt: {
|
|
526
|
+
serializedName: "properties.updatedAt",
|
|
527
|
+
readOnly: true,
|
|
528
|
+
type: {
|
|
529
|
+
name: "DateTime"
|
|
530
|
+
}
|
|
531
|
+
},
|
|
532
|
+
listenerCount: {
|
|
533
|
+
constraints: {
|
|
534
|
+
InclusiveMaximum: 25,
|
|
535
|
+
InclusiveMinimum: 0
|
|
536
|
+
},
|
|
537
|
+
serializedName: "properties.listenerCount",
|
|
538
|
+
readOnly: true,
|
|
539
|
+
type: {
|
|
540
|
+
name: "Number"
|
|
541
|
+
}
|
|
542
|
+
},
|
|
543
|
+
relayType: {
|
|
544
|
+
serializedName: "properties.relayType",
|
|
545
|
+
type: {
|
|
546
|
+
name: "Enum",
|
|
547
|
+
allowedValues: ["NetTcp", "Http"]
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
requiresClientAuthorization: {
|
|
551
|
+
serializedName: "properties.requiresClientAuthorization",
|
|
552
|
+
type: {
|
|
553
|
+
name: "Boolean"
|
|
554
|
+
}
|
|
555
|
+
},
|
|
556
|
+
requiresTransportSecurity: {
|
|
557
|
+
serializedName: "properties.requiresTransportSecurity",
|
|
558
|
+
type: {
|
|
559
|
+
name: "Boolean"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
userMetadata: {
|
|
563
|
+
serializedName: "properties.userMetadata",
|
|
675
564
|
type: {
|
|
676
565
|
name: "String"
|
|
677
566
|
}
|
|
@@ -680,26 +569,58 @@ export const AuthorizationRuleListResult: msRest.CompositeMapper = {
|
|
|
680
569
|
}
|
|
681
570
|
};
|
|
682
571
|
|
|
683
|
-
export const
|
|
684
|
-
serializedName: "HybridConnectionListResult",
|
|
572
|
+
export const RelayNamespace: coreClient.CompositeMapper = {
|
|
685
573
|
type: {
|
|
686
574
|
name: "Composite",
|
|
687
|
-
className: "
|
|
575
|
+
className: "RelayNamespace",
|
|
688
576
|
modelProperties: {
|
|
689
|
-
|
|
690
|
-
|
|
577
|
+
...TrackedResource.type.modelProperties,
|
|
578
|
+
sku: {
|
|
579
|
+
serializedName: "sku",
|
|
691
580
|
type: {
|
|
692
|
-
name: "
|
|
693
|
-
|
|
694
|
-
type: {
|
|
695
|
-
name: "Composite",
|
|
696
|
-
className: "HybridConnection"
|
|
697
|
-
}
|
|
698
|
-
}
|
|
581
|
+
name: "Composite",
|
|
582
|
+
className: "Sku"
|
|
699
583
|
}
|
|
700
584
|
},
|
|
701
|
-
|
|
702
|
-
serializedName: "
|
|
585
|
+
provisioningState: {
|
|
586
|
+
serializedName: "properties.provisioningState",
|
|
587
|
+
readOnly: true,
|
|
588
|
+
type: {
|
|
589
|
+
name: "Enum",
|
|
590
|
+
allowedValues: [
|
|
591
|
+
"Created",
|
|
592
|
+
"Succeeded",
|
|
593
|
+
"Deleted",
|
|
594
|
+
"Failed",
|
|
595
|
+
"Updating",
|
|
596
|
+
"Unknown"
|
|
597
|
+
]
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
createdAt: {
|
|
601
|
+
serializedName: "properties.createdAt",
|
|
602
|
+
readOnly: true,
|
|
603
|
+
type: {
|
|
604
|
+
name: "DateTime"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
updatedAt: {
|
|
608
|
+
serializedName: "properties.updatedAt",
|
|
609
|
+
readOnly: true,
|
|
610
|
+
type: {
|
|
611
|
+
name: "DateTime"
|
|
612
|
+
}
|
|
613
|
+
},
|
|
614
|
+
serviceBusEndpoint: {
|
|
615
|
+
serializedName: "properties.serviceBusEndpoint",
|
|
616
|
+
readOnly: true,
|
|
617
|
+
type: {
|
|
618
|
+
name: "String"
|
|
619
|
+
}
|
|
620
|
+
},
|
|
621
|
+
metricId: {
|
|
622
|
+
serializedName: "properties.metricId",
|
|
623
|
+
readOnly: true,
|
|
703
624
|
type: {
|
|
704
625
|
name: "String"
|
|
705
626
|
}
|
|
@@ -708,26 +629,58 @@ export const HybridConnectionListResult: msRest.CompositeMapper = {
|
|
|
708
629
|
}
|
|
709
630
|
};
|
|
710
631
|
|
|
711
|
-
export const
|
|
712
|
-
serializedName: "WcfRelaysListResult",
|
|
632
|
+
export const RelayUpdateParameters: coreClient.CompositeMapper = {
|
|
713
633
|
type: {
|
|
714
634
|
name: "Composite",
|
|
715
|
-
className: "
|
|
635
|
+
className: "RelayUpdateParameters",
|
|
716
636
|
modelProperties: {
|
|
717
|
-
|
|
718
|
-
|
|
637
|
+
...ResourceNamespacePatch.type.modelProperties,
|
|
638
|
+
sku: {
|
|
639
|
+
serializedName: "sku",
|
|
719
640
|
type: {
|
|
720
|
-
name: "
|
|
721
|
-
|
|
722
|
-
type: {
|
|
723
|
-
name: "Composite",
|
|
724
|
-
className: "WcfRelay"
|
|
725
|
-
}
|
|
726
|
-
}
|
|
641
|
+
name: "Composite",
|
|
642
|
+
className: "Sku"
|
|
727
643
|
}
|
|
728
644
|
},
|
|
729
|
-
|
|
730
|
-
serializedName: "
|
|
645
|
+
provisioningState: {
|
|
646
|
+
serializedName: "properties.provisioningState",
|
|
647
|
+
readOnly: true,
|
|
648
|
+
type: {
|
|
649
|
+
name: "Enum",
|
|
650
|
+
allowedValues: [
|
|
651
|
+
"Created",
|
|
652
|
+
"Succeeded",
|
|
653
|
+
"Deleted",
|
|
654
|
+
"Failed",
|
|
655
|
+
"Updating",
|
|
656
|
+
"Unknown"
|
|
657
|
+
]
|
|
658
|
+
}
|
|
659
|
+
},
|
|
660
|
+
createdAt: {
|
|
661
|
+
serializedName: "properties.createdAt",
|
|
662
|
+
readOnly: true,
|
|
663
|
+
type: {
|
|
664
|
+
name: "DateTime"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
updatedAt: {
|
|
668
|
+
serializedName: "properties.updatedAt",
|
|
669
|
+
readOnly: true,
|
|
670
|
+
type: {
|
|
671
|
+
name: "DateTime"
|
|
672
|
+
}
|
|
673
|
+
},
|
|
674
|
+
serviceBusEndpoint: {
|
|
675
|
+
serializedName: "properties.serviceBusEndpoint",
|
|
676
|
+
readOnly: true,
|
|
677
|
+
type: {
|
|
678
|
+
name: "String"
|
|
679
|
+
}
|
|
680
|
+
},
|
|
681
|
+
metricId: {
|
|
682
|
+
serializedName: "properties.metricId",
|
|
683
|
+
readOnly: true,
|
|
731
684
|
type: {
|
|
732
685
|
name: "String"
|
|
733
686
|
}
|