Skip to content

Commit 72654e5

Browse files
Update azure-typespec/http-client-csharp version to prerelease 1.0.0-alpha.20251031.1 (#53623)
* Regenerate repository SDK with TypeSpec build 20251031.1 * Update SDK code ag_co_0 * Update SDK code ea_mo_2 * fix eg * Fix docs * App config model factory * eg * docs --------- Co-authored-by: jolov <[email protected]>
1 parent 9817ff0 commit 72654e5

File tree

13 files changed

+72
-91
lines changed

13 files changed

+72
-91
lines changed

eng/azure-typespec-http-client-csharp-emitter-package-lock.json

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eng/azure-typespec-http-client-csharp-emitter-package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"main": "dist/src/index.js",
33
"dependencies": {
4-
"@azure-typespec/http-client-csharp": "1.0.0-alpha.20251029.2"
4+
"@azure-typespec/http-client-csharp": "1.0.0-alpha.20251031.1"
55
},
66
"devDependencies": {
77
"@azure-tools/typespec-azure-core": "0.61.0",

sdk/appconfiguration/Azure.Data.AppConfiguration/src/Models/ConfigurationModelFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Azure.Data.AppConfiguration
1212
/// <summary>
1313
/// Configuration Setting model factory that enables mocking for the AppConfiguration client library.
1414
/// </summary>
15-
[CodeGenType("AzureDataAppConfigurationModelFactory")]
15+
[CodeGenType("AppConfigurationModelFactory")]
1616
[CodeGenSuppress("ConfigurationSetting", typeof(string), typeof(string), typeof(string), typeof(string), typeof(DateTimeOffset?), typeof(IDictionary<string, string>), typeof(bool?), typeof(ETag))]
1717
public static partial class ConfigurationModelFactory
1818
{
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# This attribute is now generated in each library. There should be no impact to end users.
22
CannotRemoveAttribute : Attribute 'Azure.Core.CodeGenSerializationAttribute' exists on 'Azure.Messaging.EventGrid.Namespaces.ReceiveDetails' in the contract but not the implementation.
3+
CannotChangeAttribute : Attribute 'Azure.Messaging.EventGrid.Namespaces.CodeGenSuppressAttribute' on 'Azure.Messaging.EventGrid.Namespaces.EventGridSenderClient' changed from '[CodeGenSuppressAttribute("EventGridSenderClient", new Type[]{ typeof(Uri), typeof(AzureKeyCredential), typeof(EventGridSenderClientOptions)})]' in the contract to '[CodeGenSuppressAttribute("EventGridSenderClient", new Type[]{ typeof(Uri), typeof(AzureKeyCredential), typeof(EventGridNamespacesClientOptions)})]' in the implementation.
4+
CannotChangeAttribute : Attribute 'Azure.Messaging.EventGrid.Namespaces.CodeGenSuppressAttribute' on 'Azure.Messaging.EventGrid.Namespaces.EventGridReceiverClient' changed from '[CodeGenSuppressAttribute("EventGridReceiverClient", new Type[]{ typeof(Uri), typeof(AzureKeyCredential), typeof(EventGridReceiverClientOptions)})]' in the contract to '[CodeGenSuppressAttribute("EventGridReceiverClient", new Type[]{ typeof(Uri), typeof(AzureKeyCredential), typeof(EventGridNamespacesClientOptions)})]' in the implementation.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
namespace Azure.Messaging.EventGrid.Namespaces
5+
{
6+
internal partial class EventGridNamespacesClientOptions
7+
{
8+
}
9+
}

sdk/eventgrid/Azure.Messaging.EventGrid.Namespaces/src/Customization/EventGridReceiverClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ namespace Azure.Messaging.EventGrid.Namespaces
1313
{
1414
[CodeGenSuppress("EventGridReceiverClient", typeof(Uri), typeof(AzureKeyCredential))]
1515
[CodeGenSuppress("EventGridReceiverClient", typeof(Uri), typeof(TokenCredential))]
16-
[CodeGenSuppress("EventGridReceiverClient", typeof(Uri), typeof(AzureKeyCredential), typeof(EventGridReceiverClientOptions))]
17-
[CodeGenSuppress("EventGridReceiverClient", typeof(Uri), typeof(TokenCredential), typeof(EventGridReceiverClientOptions))]
16+
[CodeGenSuppress("EventGridReceiverClient", typeof(Uri), typeof(AzureKeyCredential), typeof(EventGridNamespacesClientOptions))]
17+
[CodeGenSuppress("EventGridReceiverClient", typeof(Uri), typeof(TokenCredential), typeof(EventGridNamespacesClientOptions))]
1818
public partial class EventGridReceiverClient
1919
{
2020
private readonly string _topicName;
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
// <auto-generated/>
5-
64
#nullable disable
75

86
using System;

sdk/eventgrid/Azure.Messaging.EventGrid.Namespaces/src/Customization/EventGridSenderClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ namespace Azure.Messaging.EventGrid.Namespaces
1313
{
1414
[CodeGenSuppress("EventGridSenderClient", typeof(Uri), typeof(AzureKeyCredential))]
1515
[CodeGenSuppress("EventGridSenderClient", typeof(Uri), typeof(TokenCredential))]
16-
[CodeGenSuppress("EventGridSenderClient", typeof(Uri), typeof(AzureKeyCredential), typeof(EventGridSenderClientOptions))]
17-
[CodeGenSuppress("EventGridSenderClient", typeof(Uri), typeof(TokenCredential), typeof(EventGridSenderClientOptions))]
16+
[CodeGenSuppress("EventGridSenderClient", typeof(Uri), typeof(AzureKeyCredential), typeof(EventGridNamespacesClientOptions))]
17+
[CodeGenSuppress("EventGridSenderClient", typeof(Uri), typeof(TokenCredential), typeof(EventGridNamespacesClientOptions))]
1818
public partial class EventGridSenderClient
1919
{
2020
private readonly string _topicName;
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
// <auto-generated/>
5-
64
#nullable disable
75

86
using System;

sdk/eventgrid/Azure.Messaging.EventGrid.Namespaces/src/Generated/EventGridNamespacesClientOptions.cs

Lines changed: 40 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)