@azure-typespec/http-client-csharp-mgmt 1.0.0-alpha.20260306.2 → 1.0.0-alpha.20260306.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/generator/Azure.Generator.Management.deps.json +2 -2
- package/dist/generator/Azure.Generator.Management.dll +0 -0
- package/dist/generator/Azure.Generator.Management.pdb +0 -0
- package/dist/generator/Azure.Generator.Management.xml +193 -0
- package/dist/generator/net10.0/Azure.Generator.Management.deps.json +2 -2
- package/dist/generator/net10.0/Azure.Generator.Management.dll +0 -0
- package/dist/generator/net10.0/Azure.Generator.Management.pdb +0 -0
- package/dist/generator/net10.0/Azure.Generator.Management.xml +193 -0
- package/package.json +1 -1
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"compilationOptions": {},
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v10.0": {
|
|
9
|
-
"Azure.Generator.Management/1.0.0-alpha.20260306.
|
|
9
|
+
"Azure.Generator.Management/1.0.0-alpha.20260306.3": {
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"Azure.Core": "1.51.1",
|
|
12
12
|
"Azure.Generator": "1.0.0-alpha.20260303.3",
|
|
@@ -693,7 +693,7 @@
|
|
|
693
693
|
}
|
|
694
694
|
},
|
|
695
695
|
"libraries": {
|
|
696
|
-
"Azure.Generator.Management/1.0.0-alpha.20260306.
|
|
696
|
+
"Azure.Generator.Management/1.0.0-alpha.20260306.3": {
|
|
697
697
|
"type": "project",
|
|
698
698
|
"serviceable": false,
|
|
699
699
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
@@ -38,6 +38,14 @@
|
|
|
38
38
|
<member name="P:Azure.Generator.Management.ManagementInputLibrary.InputNamespace">
|
|
39
39
|
<inheritdoc/>
|
|
40
40
|
</member>
|
|
41
|
+
<member name="P:Azure.Generator.Management.ManagementInputLibrary.ArmProviderSchema">
|
|
42
|
+
<summary> Gets the ARM provider schema containing all resource metadata and non-resource methods. </summary>
|
|
43
|
+
</member>
|
|
44
|
+
<member name="M:Azure.Generator.Management.ManagementInputLibrary.IsResourceModel(Microsoft.TypeSpec.Generator.Input.InputModelType)">
|
|
45
|
+
<summary> Determines whether the specified model is a resource model. </summary>
|
|
46
|
+
<param name="model"> The input model type to check. </param>
|
|
47
|
+
<returns> <c>true</c> if the model is a resource model; otherwise, <c>false</c>. </returns>
|
|
48
|
+
</member>
|
|
41
49
|
<member name="T:Azure.Generator.Management.ManagementOutputLibrary">
|
|
42
50
|
<inheritdoc/>
|
|
43
51
|
</member>
|
|
@@ -65,6 +73,12 @@
|
|
|
65
73
|
For instance, if the namespace is "Azure.ResourceManager.Compute", the resource provider name will be "Compute".
|
|
66
74
|
</summary>
|
|
67
75
|
</member>
|
|
76
|
+
<member name="M:Azure.Generator.Management.ManagementTypeFactory.BuildResourceProviderName">
|
|
77
|
+
<summary>
|
|
78
|
+
Builds the resource provider name from the primary namespace.
|
|
79
|
+
Override this method to customize the prefix used for known type renaming.
|
|
80
|
+
</summary>
|
|
81
|
+
</member>
|
|
68
82
|
<member name="P:Azure.Generator.Management.ManagementTypeFactory.ClientPipelineApi">
|
|
69
83
|
<inheritdoc/>
|
|
70
84
|
</member>
|
|
@@ -268,6 +282,17 @@
|
|
|
268
282
|
This consolidates information previously scattered across @resourceSchema and @nonResourceMethodSchema decorators.
|
|
269
283
|
</summary>
|
|
270
284
|
</member>
|
|
285
|
+
<member name="P:Azure.Generator.Management.Models.ArmProviderSchema.Resources">
|
|
286
|
+
<summary> Gets the list of ARM resource metadata. </summary>
|
|
287
|
+
</member>
|
|
288
|
+
<member name="P:Azure.Generator.Management.Models.ArmProviderSchema.NonResourceMethods">
|
|
289
|
+
<summary> Gets the list of non-resource methods. </summary>
|
|
290
|
+
</member>
|
|
291
|
+
<member name="M:Azure.Generator.Management.Models.ArmProviderSchema.#ctor(System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMetadata},System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.NonResourceMethod})">
|
|
292
|
+
<summary> Initializes a new instance of <see cref="T:Azure.Generator.Management.Models.ArmProviderSchema"/>. </summary>
|
|
293
|
+
<param name="resources"> The list of resource metadata. </param>
|
|
294
|
+
<param name="nonResourceMethods"> The list of non-resource methods. </param>
|
|
295
|
+
</member>
|
|
271
296
|
<member name="M:Azure.Generator.Management.Models.ArmProviderSchema.Deserialize(System.Collections.Generic.IReadOnlyDictionary{System.String,System.BinaryData},Azure.Generator.Management.ManagementInputLibrary,System.Func{Azure.Generator.Management.Models.NonResourceMethod,System.Boolean})">
|
|
272
297
|
<summary>
|
|
273
298
|
Deserializes the ArmProviderSchema from decorator arguments.
|
|
@@ -277,6 +302,174 @@
|
|
|
277
302
|
<param name="methodFilter">Optional predicate to filter non-resource methods</param>
|
|
278
303
|
<returns>A new ArmProviderSchema instance</returns>
|
|
279
304
|
</member>
|
|
305
|
+
<member name="T:Azure.Generator.Management.Models.NonResourceMethod">
|
|
306
|
+
<summary> Represents a method that is not associated with a specific ARM resource. </summary>
|
|
307
|
+
<param name="OperationScope"> The scope of the operation. </param>
|
|
308
|
+
<param name="InputMethod"> The input service method. </param>
|
|
309
|
+
<param name="InputClient"> The input client. </param>
|
|
310
|
+
</member>
|
|
311
|
+
<member name="M:Azure.Generator.Management.Models.NonResourceMethod.#ctor(Azure.Generator.Management.Models.ResourceScope,Microsoft.TypeSpec.Generator.Input.InputServiceMethod,Microsoft.TypeSpec.Generator.Input.InputClient)">
|
|
312
|
+
<summary> Represents a method that is not associated with a specific ARM resource. </summary>
|
|
313
|
+
<param name="OperationScope"> The scope of the operation. </param>
|
|
314
|
+
<param name="InputMethod"> The input service method. </param>
|
|
315
|
+
<param name="InputClient"> The input client. </param>
|
|
316
|
+
</member>
|
|
317
|
+
<member name="P:Azure.Generator.Management.Models.NonResourceMethod.OperationScope">
|
|
318
|
+
<summary> The scope of the operation. </summary>
|
|
319
|
+
</member>
|
|
320
|
+
<member name="P:Azure.Generator.Management.Models.NonResourceMethod.InputMethod">
|
|
321
|
+
<summary> The input service method. </summary>
|
|
322
|
+
</member>
|
|
323
|
+
<member name="P:Azure.Generator.Management.Models.NonResourceMethod.InputClient">
|
|
324
|
+
<summary> The input client. </summary>
|
|
325
|
+
</member>
|
|
326
|
+
<member name="T:Azure.Generator.Management.Models.ResourceMetadata">
|
|
327
|
+
<summary> Represents the metadata for an ARM resource, including its identity, scope, methods, and hierarchy. </summary>
|
|
328
|
+
<param name="ResourceIdPattern"> The ARM resource ID pattern. </param>
|
|
329
|
+
<param name="ResourceName"> The resource name. </param>
|
|
330
|
+
<param name="ResourceType"> The ARM resource type. </param>
|
|
331
|
+
<param name="ResourceModel"> The input model type for the resource. </param>
|
|
332
|
+
<param name="ResourceScope"> The scope of the resource. </param>
|
|
333
|
+
<param name="Methods"> The list of methods associated with the resource. </param>
|
|
334
|
+
<param name="SingletonResourceName"> The singleton resource name, if applicable. </param>
|
|
335
|
+
<param name="ParentResourceId"> The parent resource ID pattern, if applicable. </param>
|
|
336
|
+
<param name="ChildResourceIds"> The list of child resource ID patterns. </param>
|
|
337
|
+
</member>
|
|
338
|
+
<member name="M:Azure.Generator.Management.Models.ResourceMetadata.#ctor(System.String,System.String,System.String,Microsoft.TypeSpec.Generator.Input.InputModelType,Azure.Generator.Management.Models.ResourceScope,System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMethod},System.String,System.String,System.Collections.Generic.IReadOnlyList{System.String})">
|
|
339
|
+
<summary> Represents the metadata for an ARM resource, including its identity, scope, methods, and hierarchy. </summary>
|
|
340
|
+
<param name="ResourceIdPattern"> The ARM resource ID pattern. </param>
|
|
341
|
+
<param name="ResourceName"> The resource name. </param>
|
|
342
|
+
<param name="ResourceType"> The ARM resource type. </param>
|
|
343
|
+
<param name="ResourceModel"> The input model type for the resource. </param>
|
|
344
|
+
<param name="ResourceScope"> The scope of the resource. </param>
|
|
345
|
+
<param name="Methods"> The list of methods associated with the resource. </param>
|
|
346
|
+
<param name="SingletonResourceName"> The singleton resource name, if applicable. </param>
|
|
347
|
+
<param name="ParentResourceId"> The parent resource ID pattern, if applicable. </param>
|
|
348
|
+
<param name="ChildResourceIds"> The list of child resource ID patterns. </param>
|
|
349
|
+
</member>
|
|
350
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceIdPattern">
|
|
351
|
+
<summary> The ARM resource ID pattern. </summary>
|
|
352
|
+
</member>
|
|
353
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceName">
|
|
354
|
+
<summary> The resource name. </summary>
|
|
355
|
+
</member>
|
|
356
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceType">
|
|
357
|
+
<summary> The ARM resource type. </summary>
|
|
358
|
+
</member>
|
|
359
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceModel">
|
|
360
|
+
<summary> The input model type for the resource. </summary>
|
|
361
|
+
</member>
|
|
362
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceScope">
|
|
363
|
+
<summary> The scope of the resource. </summary>
|
|
364
|
+
</member>
|
|
365
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.Methods">
|
|
366
|
+
<summary> The list of methods associated with the resource. </summary>
|
|
367
|
+
</member>
|
|
368
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.SingletonResourceName">
|
|
369
|
+
<summary> The singleton resource name, if applicable. </summary>
|
|
370
|
+
</member>
|
|
371
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ParentResourceId">
|
|
372
|
+
<summary> The parent resource ID pattern, if applicable. </summary>
|
|
373
|
+
</member>
|
|
374
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ChildResourceIds">
|
|
375
|
+
<summary> The list of child resource ID patterns. </summary>
|
|
376
|
+
</member>
|
|
377
|
+
<member name="T:Azure.Generator.Management.Models.ResourceMethod">
|
|
378
|
+
<summary> Represents a method associated with an ARM resource. </summary>
|
|
379
|
+
<param name="Kind"> The kind of resource operation. </param>
|
|
380
|
+
<param name="InputMethod"> The input service method. </param>
|
|
381
|
+
<param name="OperationPath"> The operation path. </param>
|
|
382
|
+
<param name="OperationScope"> The scope of the operation. </param>
|
|
383
|
+
<param name="ResourceScopeIdPattern"> The resource ID pattern specifying the scope, if applicable. </param>
|
|
384
|
+
<param name="InputClient"> The input client. </param>
|
|
385
|
+
</member>
|
|
386
|
+
<member name="M:Azure.Generator.Management.Models.ResourceMethod.#ctor(Azure.Generator.Management.Models.ResourceOperationKind,Microsoft.TypeSpec.Generator.Input.InputServiceMethod,System.String,Azure.Generator.Management.Models.ResourceScope,System.String,Microsoft.TypeSpec.Generator.Input.InputClient)">
|
|
387
|
+
<summary> Represents a method associated with an ARM resource. </summary>
|
|
388
|
+
<param name="Kind"> The kind of resource operation. </param>
|
|
389
|
+
<param name="InputMethod"> The input service method. </param>
|
|
390
|
+
<param name="OperationPath"> The operation path. </param>
|
|
391
|
+
<param name="OperationScope"> The scope of the operation. </param>
|
|
392
|
+
<param name="ResourceScopeIdPattern"> The resource ID pattern specifying the scope, if applicable. </param>
|
|
393
|
+
<param name="InputClient"> The input client. </param>
|
|
394
|
+
</member>
|
|
395
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.Kind">
|
|
396
|
+
<summary> The kind of resource operation. </summary>
|
|
397
|
+
</member>
|
|
398
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.InputMethod">
|
|
399
|
+
<summary> The input service method. </summary>
|
|
400
|
+
</member>
|
|
401
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.OperationPath">
|
|
402
|
+
<summary> The operation path. </summary>
|
|
403
|
+
</member>
|
|
404
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.OperationScope">
|
|
405
|
+
<summary> The scope of the operation. </summary>
|
|
406
|
+
</member>
|
|
407
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.ResourceScopeIdPattern">
|
|
408
|
+
<summary> The resource ID pattern specifying the scope, if applicable. </summary>
|
|
409
|
+
</member>
|
|
410
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.InputClient">
|
|
411
|
+
<summary> The input client. </summary>
|
|
412
|
+
</member>
|
|
413
|
+
<member name="T:Azure.Generator.Management.Models.ResourceMethodCategory">
|
|
414
|
+
<summary> Categorizes resource methods by where they are generated (resource, collection, or extension). </summary>
|
|
415
|
+
<param name="MethodsInResource"> Methods generated in the resource class. </param>
|
|
416
|
+
<param name="MethodsInCollection"> Methods generated in the collection class. </param>
|
|
417
|
+
<param name="MethodsInExtension"> Methods generated in the extension class. </param>
|
|
418
|
+
</member>
|
|
419
|
+
<member name="M:Azure.Generator.Management.Models.ResourceMethodCategory.#ctor(System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMethod},System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMethod},System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMethod})">
|
|
420
|
+
<summary> Categorizes resource methods by where they are generated (resource, collection, or extension). </summary>
|
|
421
|
+
<param name="MethodsInResource"> Methods generated in the resource class. </param>
|
|
422
|
+
<param name="MethodsInCollection"> Methods generated in the collection class. </param>
|
|
423
|
+
<param name="MethodsInExtension"> Methods generated in the extension class. </param>
|
|
424
|
+
</member>
|
|
425
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethodCategory.MethodsInResource">
|
|
426
|
+
<summary> Methods generated in the resource class. </summary>
|
|
427
|
+
</member>
|
|
428
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethodCategory.MethodsInCollection">
|
|
429
|
+
<summary> Methods generated in the collection class. </summary>
|
|
430
|
+
</member>
|
|
431
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethodCategory.MethodsInExtension">
|
|
432
|
+
<summary> Methods generated in the extension class. </summary>
|
|
433
|
+
</member>
|
|
434
|
+
<member name="T:Azure.Generator.Management.Models.ResourceOperationKind">
|
|
435
|
+
<summary> Represents the kind of operation on an ARM resource. </summary>
|
|
436
|
+
</member>
|
|
437
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Action">
|
|
438
|
+
<summary> A custom action operation. </summary>
|
|
439
|
+
</member>
|
|
440
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Create">
|
|
441
|
+
<summary> A create or update operation. </summary>
|
|
442
|
+
</member>
|
|
443
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Delete">
|
|
444
|
+
<summary> A delete operation. </summary>
|
|
445
|
+
</member>
|
|
446
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Read">
|
|
447
|
+
<summary> A read (get) operation. </summary>
|
|
448
|
+
</member>
|
|
449
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.List">
|
|
450
|
+
<summary> A list operation. </summary>
|
|
451
|
+
</member>
|
|
452
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Update">
|
|
453
|
+
<summary> An update (patch) operation. </summary>
|
|
454
|
+
</member>
|
|
455
|
+
<member name="T:Azure.Generator.Management.Models.ResourceScope">
|
|
456
|
+
<summary> Represents the ARM resource scope. </summary>
|
|
457
|
+
</member>
|
|
458
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.Tenant">
|
|
459
|
+
<summary> Tenant scope. </summary>
|
|
460
|
+
</member>
|
|
461
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.Subscription">
|
|
462
|
+
<summary> Subscription scope. </summary>
|
|
463
|
+
</member>
|
|
464
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.ResourceGroup">
|
|
465
|
+
<summary> Resource group scope. </summary>
|
|
466
|
+
</member>
|
|
467
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.ManagementGroup">
|
|
468
|
+
<summary> Management group scope. </summary>
|
|
469
|
+
</member>
|
|
470
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.Extension">
|
|
471
|
+
<summary> Extension resource scope. </summary>
|
|
472
|
+
</member>
|
|
280
473
|
<member name="T:Azure.Generator.Management.Models.RestClientInfo">
|
|
281
474
|
<summary>
|
|
282
475
|
Record to combine client provider and related field providers
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"compilationOptions": {},
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v10.0": {
|
|
9
|
-
"Azure.Generator.Management/1.0.0-alpha.20260306.
|
|
9
|
+
"Azure.Generator.Management/1.0.0-alpha.20260306.3": {
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"Azure.Core": "1.51.1",
|
|
12
12
|
"Azure.Generator": "1.0.0-alpha.20260303.3",
|
|
@@ -693,7 +693,7 @@
|
|
|
693
693
|
}
|
|
694
694
|
},
|
|
695
695
|
"libraries": {
|
|
696
|
-
"Azure.Generator.Management/1.0.0-alpha.20260306.
|
|
696
|
+
"Azure.Generator.Management/1.0.0-alpha.20260306.3": {
|
|
697
697
|
"type": "project",
|
|
698
698
|
"serviceable": false,
|
|
699
699
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
@@ -38,6 +38,14 @@
|
|
|
38
38
|
<member name="P:Azure.Generator.Management.ManagementInputLibrary.InputNamespace">
|
|
39
39
|
<inheritdoc/>
|
|
40
40
|
</member>
|
|
41
|
+
<member name="P:Azure.Generator.Management.ManagementInputLibrary.ArmProviderSchema">
|
|
42
|
+
<summary> Gets the ARM provider schema containing all resource metadata and non-resource methods. </summary>
|
|
43
|
+
</member>
|
|
44
|
+
<member name="M:Azure.Generator.Management.ManagementInputLibrary.IsResourceModel(Microsoft.TypeSpec.Generator.Input.InputModelType)">
|
|
45
|
+
<summary> Determines whether the specified model is a resource model. </summary>
|
|
46
|
+
<param name="model"> The input model type to check. </param>
|
|
47
|
+
<returns> <c>true</c> if the model is a resource model; otherwise, <c>false</c>. </returns>
|
|
48
|
+
</member>
|
|
41
49
|
<member name="T:Azure.Generator.Management.ManagementOutputLibrary">
|
|
42
50
|
<inheritdoc/>
|
|
43
51
|
</member>
|
|
@@ -65,6 +73,12 @@
|
|
|
65
73
|
For instance, if the namespace is "Azure.ResourceManager.Compute", the resource provider name will be "Compute".
|
|
66
74
|
</summary>
|
|
67
75
|
</member>
|
|
76
|
+
<member name="M:Azure.Generator.Management.ManagementTypeFactory.BuildResourceProviderName">
|
|
77
|
+
<summary>
|
|
78
|
+
Builds the resource provider name from the primary namespace.
|
|
79
|
+
Override this method to customize the prefix used for known type renaming.
|
|
80
|
+
</summary>
|
|
81
|
+
</member>
|
|
68
82
|
<member name="P:Azure.Generator.Management.ManagementTypeFactory.ClientPipelineApi">
|
|
69
83
|
<inheritdoc/>
|
|
70
84
|
</member>
|
|
@@ -268,6 +282,17 @@
|
|
|
268
282
|
This consolidates information previously scattered across @resourceSchema and @nonResourceMethodSchema decorators.
|
|
269
283
|
</summary>
|
|
270
284
|
</member>
|
|
285
|
+
<member name="P:Azure.Generator.Management.Models.ArmProviderSchema.Resources">
|
|
286
|
+
<summary> Gets the list of ARM resource metadata. </summary>
|
|
287
|
+
</member>
|
|
288
|
+
<member name="P:Azure.Generator.Management.Models.ArmProviderSchema.NonResourceMethods">
|
|
289
|
+
<summary> Gets the list of non-resource methods. </summary>
|
|
290
|
+
</member>
|
|
291
|
+
<member name="M:Azure.Generator.Management.Models.ArmProviderSchema.#ctor(System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMetadata},System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.NonResourceMethod})">
|
|
292
|
+
<summary> Initializes a new instance of <see cref="T:Azure.Generator.Management.Models.ArmProviderSchema"/>. </summary>
|
|
293
|
+
<param name="resources"> The list of resource metadata. </param>
|
|
294
|
+
<param name="nonResourceMethods"> The list of non-resource methods. </param>
|
|
295
|
+
</member>
|
|
271
296
|
<member name="M:Azure.Generator.Management.Models.ArmProviderSchema.Deserialize(System.Collections.Generic.IReadOnlyDictionary{System.String,System.BinaryData},Azure.Generator.Management.ManagementInputLibrary,System.Func{Azure.Generator.Management.Models.NonResourceMethod,System.Boolean})">
|
|
272
297
|
<summary>
|
|
273
298
|
Deserializes the ArmProviderSchema from decorator arguments.
|
|
@@ -277,6 +302,174 @@
|
|
|
277
302
|
<param name="methodFilter">Optional predicate to filter non-resource methods</param>
|
|
278
303
|
<returns>A new ArmProviderSchema instance</returns>
|
|
279
304
|
</member>
|
|
305
|
+
<member name="T:Azure.Generator.Management.Models.NonResourceMethod">
|
|
306
|
+
<summary> Represents a method that is not associated with a specific ARM resource. </summary>
|
|
307
|
+
<param name="OperationScope"> The scope of the operation. </param>
|
|
308
|
+
<param name="InputMethod"> The input service method. </param>
|
|
309
|
+
<param name="InputClient"> The input client. </param>
|
|
310
|
+
</member>
|
|
311
|
+
<member name="M:Azure.Generator.Management.Models.NonResourceMethod.#ctor(Azure.Generator.Management.Models.ResourceScope,Microsoft.TypeSpec.Generator.Input.InputServiceMethod,Microsoft.TypeSpec.Generator.Input.InputClient)">
|
|
312
|
+
<summary> Represents a method that is not associated with a specific ARM resource. </summary>
|
|
313
|
+
<param name="OperationScope"> The scope of the operation. </param>
|
|
314
|
+
<param name="InputMethod"> The input service method. </param>
|
|
315
|
+
<param name="InputClient"> The input client. </param>
|
|
316
|
+
</member>
|
|
317
|
+
<member name="P:Azure.Generator.Management.Models.NonResourceMethod.OperationScope">
|
|
318
|
+
<summary> The scope of the operation. </summary>
|
|
319
|
+
</member>
|
|
320
|
+
<member name="P:Azure.Generator.Management.Models.NonResourceMethod.InputMethod">
|
|
321
|
+
<summary> The input service method. </summary>
|
|
322
|
+
</member>
|
|
323
|
+
<member name="P:Azure.Generator.Management.Models.NonResourceMethod.InputClient">
|
|
324
|
+
<summary> The input client. </summary>
|
|
325
|
+
</member>
|
|
326
|
+
<member name="T:Azure.Generator.Management.Models.ResourceMetadata">
|
|
327
|
+
<summary> Represents the metadata for an ARM resource, including its identity, scope, methods, and hierarchy. </summary>
|
|
328
|
+
<param name="ResourceIdPattern"> The ARM resource ID pattern. </param>
|
|
329
|
+
<param name="ResourceName"> The resource name. </param>
|
|
330
|
+
<param name="ResourceType"> The ARM resource type. </param>
|
|
331
|
+
<param name="ResourceModel"> The input model type for the resource. </param>
|
|
332
|
+
<param name="ResourceScope"> The scope of the resource. </param>
|
|
333
|
+
<param name="Methods"> The list of methods associated with the resource. </param>
|
|
334
|
+
<param name="SingletonResourceName"> The singleton resource name, if applicable. </param>
|
|
335
|
+
<param name="ParentResourceId"> The parent resource ID pattern, if applicable. </param>
|
|
336
|
+
<param name="ChildResourceIds"> The list of child resource ID patterns. </param>
|
|
337
|
+
</member>
|
|
338
|
+
<member name="M:Azure.Generator.Management.Models.ResourceMetadata.#ctor(System.String,System.String,System.String,Microsoft.TypeSpec.Generator.Input.InputModelType,Azure.Generator.Management.Models.ResourceScope,System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMethod},System.String,System.String,System.Collections.Generic.IReadOnlyList{System.String})">
|
|
339
|
+
<summary> Represents the metadata for an ARM resource, including its identity, scope, methods, and hierarchy. </summary>
|
|
340
|
+
<param name="ResourceIdPattern"> The ARM resource ID pattern. </param>
|
|
341
|
+
<param name="ResourceName"> The resource name. </param>
|
|
342
|
+
<param name="ResourceType"> The ARM resource type. </param>
|
|
343
|
+
<param name="ResourceModel"> The input model type for the resource. </param>
|
|
344
|
+
<param name="ResourceScope"> The scope of the resource. </param>
|
|
345
|
+
<param name="Methods"> The list of methods associated with the resource. </param>
|
|
346
|
+
<param name="SingletonResourceName"> The singleton resource name, if applicable. </param>
|
|
347
|
+
<param name="ParentResourceId"> The parent resource ID pattern, if applicable. </param>
|
|
348
|
+
<param name="ChildResourceIds"> The list of child resource ID patterns. </param>
|
|
349
|
+
</member>
|
|
350
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceIdPattern">
|
|
351
|
+
<summary> The ARM resource ID pattern. </summary>
|
|
352
|
+
</member>
|
|
353
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceName">
|
|
354
|
+
<summary> The resource name. </summary>
|
|
355
|
+
</member>
|
|
356
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceType">
|
|
357
|
+
<summary> The ARM resource type. </summary>
|
|
358
|
+
</member>
|
|
359
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceModel">
|
|
360
|
+
<summary> The input model type for the resource. </summary>
|
|
361
|
+
</member>
|
|
362
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ResourceScope">
|
|
363
|
+
<summary> The scope of the resource. </summary>
|
|
364
|
+
</member>
|
|
365
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.Methods">
|
|
366
|
+
<summary> The list of methods associated with the resource. </summary>
|
|
367
|
+
</member>
|
|
368
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.SingletonResourceName">
|
|
369
|
+
<summary> The singleton resource name, if applicable. </summary>
|
|
370
|
+
</member>
|
|
371
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ParentResourceId">
|
|
372
|
+
<summary> The parent resource ID pattern, if applicable. </summary>
|
|
373
|
+
</member>
|
|
374
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMetadata.ChildResourceIds">
|
|
375
|
+
<summary> The list of child resource ID patterns. </summary>
|
|
376
|
+
</member>
|
|
377
|
+
<member name="T:Azure.Generator.Management.Models.ResourceMethod">
|
|
378
|
+
<summary> Represents a method associated with an ARM resource. </summary>
|
|
379
|
+
<param name="Kind"> The kind of resource operation. </param>
|
|
380
|
+
<param name="InputMethod"> The input service method. </param>
|
|
381
|
+
<param name="OperationPath"> The operation path. </param>
|
|
382
|
+
<param name="OperationScope"> The scope of the operation. </param>
|
|
383
|
+
<param name="ResourceScopeIdPattern"> The resource ID pattern specifying the scope, if applicable. </param>
|
|
384
|
+
<param name="InputClient"> The input client. </param>
|
|
385
|
+
</member>
|
|
386
|
+
<member name="M:Azure.Generator.Management.Models.ResourceMethod.#ctor(Azure.Generator.Management.Models.ResourceOperationKind,Microsoft.TypeSpec.Generator.Input.InputServiceMethod,System.String,Azure.Generator.Management.Models.ResourceScope,System.String,Microsoft.TypeSpec.Generator.Input.InputClient)">
|
|
387
|
+
<summary> Represents a method associated with an ARM resource. </summary>
|
|
388
|
+
<param name="Kind"> The kind of resource operation. </param>
|
|
389
|
+
<param name="InputMethod"> The input service method. </param>
|
|
390
|
+
<param name="OperationPath"> The operation path. </param>
|
|
391
|
+
<param name="OperationScope"> The scope of the operation. </param>
|
|
392
|
+
<param name="ResourceScopeIdPattern"> The resource ID pattern specifying the scope, if applicable. </param>
|
|
393
|
+
<param name="InputClient"> The input client. </param>
|
|
394
|
+
</member>
|
|
395
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.Kind">
|
|
396
|
+
<summary> The kind of resource operation. </summary>
|
|
397
|
+
</member>
|
|
398
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.InputMethod">
|
|
399
|
+
<summary> The input service method. </summary>
|
|
400
|
+
</member>
|
|
401
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.OperationPath">
|
|
402
|
+
<summary> The operation path. </summary>
|
|
403
|
+
</member>
|
|
404
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.OperationScope">
|
|
405
|
+
<summary> The scope of the operation. </summary>
|
|
406
|
+
</member>
|
|
407
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.ResourceScopeIdPattern">
|
|
408
|
+
<summary> The resource ID pattern specifying the scope, if applicable. </summary>
|
|
409
|
+
</member>
|
|
410
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethod.InputClient">
|
|
411
|
+
<summary> The input client. </summary>
|
|
412
|
+
</member>
|
|
413
|
+
<member name="T:Azure.Generator.Management.Models.ResourceMethodCategory">
|
|
414
|
+
<summary> Categorizes resource methods by where they are generated (resource, collection, or extension). </summary>
|
|
415
|
+
<param name="MethodsInResource"> Methods generated in the resource class. </param>
|
|
416
|
+
<param name="MethodsInCollection"> Methods generated in the collection class. </param>
|
|
417
|
+
<param name="MethodsInExtension"> Methods generated in the extension class. </param>
|
|
418
|
+
</member>
|
|
419
|
+
<member name="M:Azure.Generator.Management.Models.ResourceMethodCategory.#ctor(System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMethod},System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMethod},System.Collections.Generic.IReadOnlyList{Azure.Generator.Management.Models.ResourceMethod})">
|
|
420
|
+
<summary> Categorizes resource methods by where they are generated (resource, collection, or extension). </summary>
|
|
421
|
+
<param name="MethodsInResource"> Methods generated in the resource class. </param>
|
|
422
|
+
<param name="MethodsInCollection"> Methods generated in the collection class. </param>
|
|
423
|
+
<param name="MethodsInExtension"> Methods generated in the extension class. </param>
|
|
424
|
+
</member>
|
|
425
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethodCategory.MethodsInResource">
|
|
426
|
+
<summary> Methods generated in the resource class. </summary>
|
|
427
|
+
</member>
|
|
428
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethodCategory.MethodsInCollection">
|
|
429
|
+
<summary> Methods generated in the collection class. </summary>
|
|
430
|
+
</member>
|
|
431
|
+
<member name="P:Azure.Generator.Management.Models.ResourceMethodCategory.MethodsInExtension">
|
|
432
|
+
<summary> Methods generated in the extension class. </summary>
|
|
433
|
+
</member>
|
|
434
|
+
<member name="T:Azure.Generator.Management.Models.ResourceOperationKind">
|
|
435
|
+
<summary> Represents the kind of operation on an ARM resource. </summary>
|
|
436
|
+
</member>
|
|
437
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Action">
|
|
438
|
+
<summary> A custom action operation. </summary>
|
|
439
|
+
</member>
|
|
440
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Create">
|
|
441
|
+
<summary> A create or update operation. </summary>
|
|
442
|
+
</member>
|
|
443
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Delete">
|
|
444
|
+
<summary> A delete operation. </summary>
|
|
445
|
+
</member>
|
|
446
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Read">
|
|
447
|
+
<summary> A read (get) operation. </summary>
|
|
448
|
+
</member>
|
|
449
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.List">
|
|
450
|
+
<summary> A list operation. </summary>
|
|
451
|
+
</member>
|
|
452
|
+
<member name="F:Azure.Generator.Management.Models.ResourceOperationKind.Update">
|
|
453
|
+
<summary> An update (patch) operation. </summary>
|
|
454
|
+
</member>
|
|
455
|
+
<member name="T:Azure.Generator.Management.Models.ResourceScope">
|
|
456
|
+
<summary> Represents the ARM resource scope. </summary>
|
|
457
|
+
</member>
|
|
458
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.Tenant">
|
|
459
|
+
<summary> Tenant scope. </summary>
|
|
460
|
+
</member>
|
|
461
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.Subscription">
|
|
462
|
+
<summary> Subscription scope. </summary>
|
|
463
|
+
</member>
|
|
464
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.ResourceGroup">
|
|
465
|
+
<summary> Resource group scope. </summary>
|
|
466
|
+
</member>
|
|
467
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.ManagementGroup">
|
|
468
|
+
<summary> Management group scope. </summary>
|
|
469
|
+
</member>
|
|
470
|
+
<member name="F:Azure.Generator.Management.Models.ResourceScope.Extension">
|
|
471
|
+
<summary> Extension resource scope. </summary>
|
|
472
|
+
</member>
|
|
280
473
|
<member name="T:Azure.Generator.Management.Models.RestClientInfo">
|
|
281
474
|
<summary>
|
|
282
475
|
Record to combine client provider and related field providers
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-typespec/http-client-csharp-mgmt",
|
|
3
|
-
"version": "1.0.0-alpha.20260306.
|
|
3
|
+
"version": "1.0.0-alpha.20260306.3",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec library for emitting Azure management libraries for C#.",
|
|
6
6
|
"readme": "https://github.com/Azure/azure-sdk-for-net/blob/main/eng/packages/http-client-csharp-mgmt/README.md",
|