@@ -121,14 +121,15 @@ public DigitalTwinsClient(System.Uri endpoint, Azure.Core.TokenCredential creden
121
121
}
122
122
public partial class DigitalTwinsClientOptions : Azure . Core . ClientOptions
123
123
{
124
- public DigitalTwinsClientOptions ( Azure . DigitalTwins . Core . DigitalTwinsClientOptions . ServiceVersion version = Azure . DigitalTwins . Core . DigitalTwinsClientOptions . ServiceVersion . V2023_06_30 ) { }
124
+ public DigitalTwinsClientOptions ( Azure . DigitalTwins . Core . DigitalTwinsClientOptions . ServiceVersion version = Azure . DigitalTwins . Core . DigitalTwinsClientOptions . ServiceVersion . V2023_10_31 ) { }
125
125
public Azure . Core . Serialization . ObjectSerializer Serializer { get { throw null ; } set { } }
126
126
public Azure . DigitalTwins . Core . DigitalTwinsClientOptions . ServiceVersion Version { get { throw null ; } }
127
127
public enum ServiceVersion
128
128
{
129
129
V2020_10_31 = 1 ,
130
130
V2022_05_31 = 2 ,
131
131
V2023_06_30 = 3 ,
132
+ V2023_10_31 = 4 ,
132
133
}
133
134
}
134
135
public partial class DigitalTwinsEventRoute
@@ -164,11 +165,21 @@ internal DigitalTwinsModelData() { }
164
165
}
165
166
public static partial class DigitalTwinsModelFactory
166
167
{
168
+ public static Azure . DigitalTwins . Core . Models . DeleteJob DeleteJob ( string id = null , Azure . DigitalTwins . Core . Models . DeleteJobStatus ? status = default ( Azure . DigitalTwins . Core . Models . DeleteJobStatus ? ) , System . DateTimeOffset ? createdDateTime = default ( System . DateTimeOffset ? ) , System . DateTimeOffset ? finishedDateTime = default ( System . DateTimeOffset ? ) , System . DateTimeOffset ? purgeDateTime = default ( System . DateTimeOffset ? ) , Azure . DigitalTwins . Core . ErrorInformation error = null ) { throw null ; }
167
169
public static Azure . DigitalTwins . Core . DigitalTwinsEventRoute DigitalTwinsEventRoute ( string id = null , string endpointName = null , string filter = null ) { throw null ; }
168
170
public static Azure . DigitalTwins . Core . DigitalTwinsModelData DigitalTwinsModelData ( System . Collections . Generic . IReadOnlyDictionary < string , string > languageDisplayNames = null , System . Collections . Generic . IReadOnlyDictionary < string , string > languageDescriptions = null , string id = null , System . DateTimeOffset ? uploadedOn = default ( System . DateTimeOffset ? ) , bool ? decommissioned = default ( bool ? ) , string dtdlModel = null ) { throw null ; }
171
+ public static Azure . DigitalTwins . Core . ErrorInformation ErrorInformation ( string code = null , string message = null , System . Collections . Generic . IEnumerable < Azure . DigitalTwins . Core . ErrorInformation > details = null , Azure . DigitalTwins . Core . InnerError innererror = null ) { throw null ; }
169
172
public static Azure . DigitalTwins . Core . ImportJob ImportJob ( string id = null , System . Uri inputBlobUri = null , System . Uri outputBlobUri = null , Azure . DigitalTwins . Core . ImportJobStatus ? status = default ( Azure . DigitalTwins . Core . ImportJobStatus ? ) , System . DateTimeOffset ? createdDateTime = default ( System . DateTimeOffset ? ) , System . DateTimeOffset ? lastActionDateTime = default ( System . DateTimeOffset ? ) , System . DateTimeOffset ? finishedDateTime = default ( System . DateTimeOffset ? ) , System . DateTimeOffset ? purgeDateTime = default ( System . DateTimeOffset ? ) , Azure . ResponseError error = null ) { throw null ; }
170
173
public static Azure . DigitalTwins . Core . IncomingRelationship IncomingRelationship ( string relationshipId = null , string sourceId = null , string relationshipName = null , string relationshipLink = null ) { throw null ; }
171
174
}
175
+ public partial class ErrorInformation
176
+ {
177
+ public ErrorInformation ( ) { }
178
+ public string Code { get { throw null ; } }
179
+ public System . Collections . Generic . IReadOnlyList < Azure . DigitalTwins . Core . ErrorInformation > Details { get { throw null ; } }
180
+ public Azure . DigitalTwins . Core . InnerError Innererror { get { throw null ; } set { } }
181
+ public string Message { get { throw null ; } }
182
+ }
172
183
public partial class GetModelsOptions
173
184
{
174
185
public GetModelsOptions ( ) { }
@@ -218,8 +229,53 @@ internal IncomingRelationship() { }
218
229
public string RelationshipName { get { throw null ; } }
219
230
public string SourceId { get { throw null ; } }
220
231
}
232
+ public partial class InnerError
233
+ {
234
+ public InnerError ( ) { }
235
+ public string Code { get { throw null ; } set { } }
236
+ public Azure . DigitalTwins . Core . InnerError Innererror { get { throw null ; } set { } }
237
+ }
221
238
public static partial class QueryChargeHelper
222
239
{
223
240
public static bool TryGetQueryCharge < T > ( Azure . Page < T > page , out float queryCharge ) { throw null ; }
224
241
}
225
242
}
243
+ namespace Azure . DigitalTwins . Core . Models
244
+ {
245
+ public partial class DeleteJob
246
+ {
247
+ internal DeleteJob ( ) { }
248
+ public System . DateTimeOffset ? CreatedDateTime { get { throw null ; } }
249
+ public Azure . DigitalTwins . Core . ErrorInformation Error { get { throw null ; } }
250
+ public System . DateTimeOffset ? FinishedDateTime { get { throw null ; } }
251
+ public string Id { get { throw null ; } }
252
+ public System . DateTimeOffset ? PurgeDateTime { get { throw null ; } }
253
+ public Azure . DigitalTwins . Core . Models . DeleteJobStatus ? Status { get { throw null ; } }
254
+ }
255
+ public partial class DeleteJobsAddOptions
256
+ {
257
+ public DeleteJobsAddOptions ( ) { }
258
+ public string Traceparent { get { throw null ; } set { } }
259
+ public string Tracestate { get { throw null ; } set { } }
260
+ }
261
+ public partial class DeleteJobsGetByIdOptions
262
+ {
263
+ public DeleteJobsGetByIdOptions ( ) { }
264
+ public string Traceparent { get { throw null ; } set { } }
265
+ public string Tracestate { get { throw null ; } set { } }
266
+ }
267
+ public partial class DeleteJobsListOptions
268
+ {
269
+ public DeleteJobsListOptions ( ) { }
270
+ public int ? MaxItemsPerPage { get { throw null ; } set { } }
271
+ public string Traceparent { get { throw null ; } set { } }
272
+ public string Tracestate { get { throw null ; } set { } }
273
+ }
274
+ public enum DeleteJobStatus
275
+ {
276
+ Notstarted = 0 ,
277
+ Running = 1 ,
278
+ Failed = 2 ,
279
+ Succeeded = 3 ,
280
+ }
281
+ }
0 commit comments