@azure-typespec/http-client-csharp-provisioning 1.0.0-alpha.20260324.1 → 1.0.0-alpha.20260324.2
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.Provisioning.deps.json +2 -2
- package/dist/generator/Azure.Generator.Provisioning.dll +0 -0
- package/dist/generator/Azure.Generator.Provisioning.pdb +0 -0
- package/dist/generator/Azure.Generator.Provisioning.xml +28 -0
- package/dist/generator/net10.0/Azure.Generator.Provisioning.deps.json +2 -2
- package/dist/generator/net10.0/Azure.Generator.Provisioning.dll +0 -0
- package/dist/generator/net10.0/Azure.Generator.Provisioning.pdb +0 -0
- package/dist/generator/net10.0/Azure.Generator.Provisioning.xml +28 -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.Provisioning/1.0.0-alpha.20260324.
|
|
9
|
+
"Azure.Generator.Provisioning/1.0.0-alpha.20260324.2": {
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"Azure.Generator": "1.0.0-alpha.20260320.2",
|
|
12
12
|
"Azure.Generator.Management": "1.0.0-alpha.20260322.2",
|
|
@@ -718,7 +718,7 @@
|
|
|
718
718
|
}
|
|
719
719
|
},
|
|
720
720
|
"libraries": {
|
|
721
|
-
"Azure.Generator.Provisioning/1.0.0-alpha.20260324.
|
|
721
|
+
"Azure.Generator.Provisioning/1.0.0-alpha.20260324.2": {
|
|
722
722
|
"type": "project",
|
|
723
723
|
"serviceable": false,
|
|
724
724
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
@@ -61,6 +61,19 @@
|
|
|
61
61
|
Provisioning metadata for a single property, used to create a <see cref="T:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider"/>.
|
|
62
62
|
</summary>
|
|
63
63
|
</member>
|
|
64
|
+
<member name="T:Azure.Generator.Provisioning.Providers.BuiltInRoleProvider">
|
|
65
|
+
<summary>
|
|
66
|
+
Generates a readonly struct that defines built-in RBAC roles for a provisioning service.
|
|
67
|
+
The struct follows the pattern of existing BuiltInRole types (e.g., StorageBuiltInRole)
|
|
68
|
+
and aggregates roles from all resources in the service.
|
|
69
|
+
</summary>
|
|
70
|
+
</member>
|
|
71
|
+
<member name="M:Azure.Generator.Provisioning.Providers.BuiltInRoleProvider.TryCreate(System.String,System.Collections.Generic.IEnumerable{Azure.Generator.Management.Models.ArmResourceMetadata})">
|
|
72
|
+
<summary>
|
|
73
|
+
Creates a BuiltInRoleProvider if there are any RBAC roles across the given resources.
|
|
74
|
+
Returns null if no roles are defined.
|
|
75
|
+
</summary>
|
|
76
|
+
</member>
|
|
64
77
|
<member name="T:Azure.Generator.Provisioning.Providers.ProvisioningEnumProvider">
|
|
65
78
|
<summary>
|
|
66
79
|
Generates a simple C# enum from an InputEnumType.
|
|
@@ -167,6 +180,16 @@
|
|
|
167
180
|
Collects serialized names of writable properties from a model and its base model chain.
|
|
168
181
|
</summary>
|
|
169
182
|
</member>
|
|
183
|
+
<member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.BuildCreateRoleAssignmentWithIdentityMethod(Microsoft.TypeSpec.Generator.Primitives.CSharpType)">
|
|
184
|
+
<summary>
|
|
185
|
+
Builds: CreateRoleAssignment(XxxBuiltInRole role, UserAssignedIdentity identity)
|
|
186
|
+
</summary>
|
|
187
|
+
</member>
|
|
188
|
+
<member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.BuildCreateRoleAssignmentWithPrincipalMethod(Microsoft.TypeSpec.Generator.Primitives.CSharpType)">
|
|
189
|
+
<summary>
|
|
190
|
+
Builds: CreateRoleAssignment(XxxBuiltInRole role, BicepValue<RoleManagementPrincipalType> principalType, BicepValue<Guid> principalId, string? bicepIdentifierSuffix)
|
|
191
|
+
</summary>
|
|
192
|
+
</member>
|
|
170
193
|
<member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.CollectOwnProperties">
|
|
171
194
|
<summary>
|
|
172
195
|
Collects only the derived type's own properties (no base chain, no flattening).
|
|
@@ -210,6 +233,11 @@
|
|
|
210
233
|
from ArmProviderSchema.Resources and builds model/enum providers from input types.
|
|
211
234
|
</summary>
|
|
212
235
|
</member>
|
|
236
|
+
<member name="P:Azure.Generator.Provisioning.ProvisioningOutputLibrary.BuiltInRole">
|
|
237
|
+
<summary>
|
|
238
|
+
Gets the BuiltInRole type provider if any resources define RBAC roles.
|
|
239
|
+
</summary>
|
|
240
|
+
</member>
|
|
213
241
|
<member name="P:Azure.Generator.Provisioning.ProvisioningOutputLibrary.Resources">
|
|
214
242
|
<summary>
|
|
215
243
|
Gets all provisioning resource providers.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
"compilationOptions": {},
|
|
7
7
|
"targets": {
|
|
8
8
|
".NETCoreApp,Version=v10.0": {
|
|
9
|
-
"Azure.Generator.Provisioning/1.0.0-alpha.20260324.
|
|
9
|
+
"Azure.Generator.Provisioning/1.0.0-alpha.20260324.2": {
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"Azure.Generator": "1.0.0-alpha.20260320.2",
|
|
12
12
|
"Azure.Generator.Management": "1.0.0-alpha.20260322.2",
|
|
@@ -718,7 +718,7 @@
|
|
|
718
718
|
}
|
|
719
719
|
},
|
|
720
720
|
"libraries": {
|
|
721
|
-
"Azure.Generator.Provisioning/1.0.0-alpha.20260324.
|
|
721
|
+
"Azure.Generator.Provisioning/1.0.0-alpha.20260324.2": {
|
|
722
722
|
"type": "project",
|
|
723
723
|
"serviceable": false,
|
|
724
724
|
"sha512": ""
|
|
Binary file
|
|
Binary file
|
|
@@ -61,6 +61,19 @@
|
|
|
61
61
|
Provisioning metadata for a single property, used to create a <see cref="T:Azure.Generator.Provisioning.Providers.ProvisioningPropertyProvider"/>.
|
|
62
62
|
</summary>
|
|
63
63
|
</member>
|
|
64
|
+
<member name="T:Azure.Generator.Provisioning.Providers.BuiltInRoleProvider">
|
|
65
|
+
<summary>
|
|
66
|
+
Generates a readonly struct that defines built-in RBAC roles for a provisioning service.
|
|
67
|
+
The struct follows the pattern of existing BuiltInRole types (e.g., StorageBuiltInRole)
|
|
68
|
+
and aggregates roles from all resources in the service.
|
|
69
|
+
</summary>
|
|
70
|
+
</member>
|
|
71
|
+
<member name="M:Azure.Generator.Provisioning.Providers.BuiltInRoleProvider.TryCreate(System.String,System.Collections.Generic.IEnumerable{Azure.Generator.Management.Models.ArmResourceMetadata})">
|
|
72
|
+
<summary>
|
|
73
|
+
Creates a BuiltInRoleProvider if there are any RBAC roles across the given resources.
|
|
74
|
+
Returns null if no roles are defined.
|
|
75
|
+
</summary>
|
|
76
|
+
</member>
|
|
64
77
|
<member name="T:Azure.Generator.Provisioning.Providers.ProvisioningEnumProvider">
|
|
65
78
|
<summary>
|
|
66
79
|
Generates a simple C# enum from an InputEnumType.
|
|
@@ -167,6 +180,16 @@
|
|
|
167
180
|
Collects serialized names of writable properties from a model and its base model chain.
|
|
168
181
|
</summary>
|
|
169
182
|
</member>
|
|
183
|
+
<member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.BuildCreateRoleAssignmentWithIdentityMethod(Microsoft.TypeSpec.Generator.Primitives.CSharpType)">
|
|
184
|
+
<summary>
|
|
185
|
+
Builds: CreateRoleAssignment(XxxBuiltInRole role, UserAssignedIdentity identity)
|
|
186
|
+
</summary>
|
|
187
|
+
</member>
|
|
188
|
+
<member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.BuildCreateRoleAssignmentWithPrincipalMethod(Microsoft.TypeSpec.Generator.Primitives.CSharpType)">
|
|
189
|
+
<summary>
|
|
190
|
+
Builds: CreateRoleAssignment(XxxBuiltInRole role, BicepValue<RoleManagementPrincipalType> principalType, BicepValue<Guid> principalId, string? bicepIdentifierSuffix)
|
|
191
|
+
</summary>
|
|
192
|
+
</member>
|
|
170
193
|
<member name="M:Azure.Generator.Provisioning.Providers.ProvisioningResourceProvider.CollectOwnProperties">
|
|
171
194
|
<summary>
|
|
172
195
|
Collects only the derived type's own properties (no base chain, no flattening).
|
|
@@ -210,6 +233,11 @@
|
|
|
210
233
|
from ArmProviderSchema.Resources and builds model/enum providers from input types.
|
|
211
234
|
</summary>
|
|
212
235
|
</member>
|
|
236
|
+
<member name="P:Azure.Generator.Provisioning.ProvisioningOutputLibrary.BuiltInRole">
|
|
237
|
+
<summary>
|
|
238
|
+
Gets the BuiltInRole type provider if any resources define RBAC roles.
|
|
239
|
+
</summary>
|
|
240
|
+
</member>
|
|
213
241
|
<member name="P:Azure.Generator.Provisioning.ProvisioningOutputLibrary.Resources">
|
|
214
242
|
<summary>
|
|
215
243
|
Gets all provisioning resource providers.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-typespec/http-client-csharp-provisioning",
|
|
3
|
-
"version": "1.0.0-alpha.20260324.
|
|
3
|
+
"version": "1.0.0-alpha.20260324.2",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec library for emitting Azure provisioning libraries for C#.",
|
|
6
6
|
"readme": "https://github.com/Azure/azure-sdk-for-net/blob/main/eng/packages/http-client-csharp-provisioning/README.md",
|