From 842679a344e4ebf75602f58730eb188ef2500c17 Mon Sep 17 00:00:00 2001 From: SDK Automation Date: Wed, 13 May 2020 01:09:12 +0000 Subject: [PATCH] Generated from 835890299e9c1aa4e937d885122919c49897fcca fix prettier --- .../src/Generated/Models/AdvancedFilter.cs | 1 + .../Generated/Models/DeadLetterDestination.cs | 2 + .../src/Generated/Models/EventChannel.cs | 45 +++++++++++- .../Generated/Models/EventChannelFilter.cs | 53 +-------------- .../Models/EventSubscriptionDestination.cs | 2 + .../Generated/Models/InputSchemaMapping.cs | 2 + .../Generated/Models/PartnerRegistration.cs | 68 +++++++++++++++++-- .../src/Generated/Models/PartnerTopic.cs | 32 ++++++++- .../Models/PartnerTopicReadinessState.cs | 24 +++++++ .../src/Generated/Models/ResourceSku.cs | 11 ++- ...icrosoft.Azure.Management.EventGrid.csproj | 2 +- .../src/Properties/AssemblyInfo.cs | 2 +- .../src/generate.ps1 | 2 +- 13 files changed, 179 insertions(+), 67 deletions(-) create mode 100644 sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicReadinessState.cs diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AdvancedFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AdvancedFilter.cs index 371d80a647b3..c2fe81ab1c01 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AdvancedFilter.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/AdvancedFilter.cs @@ -21,6 +21,7 @@ namespace Microsoft.Azure.Management.EventGrid.Models /// StringEqualsAdvancedFilter etc. depending on the type of the key based /// on which you want to filter. /// + [Newtonsoft.Json.JsonObject("AdvancedFilter")] public partial class AdvancedFilter { /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterDestination.cs index ba2339e8ee02..e6ae3ec7e7e4 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/DeadLetterDestination.cs @@ -10,6 +10,7 @@ namespace Microsoft.Azure.Management.EventGrid.Models { + using Newtonsoft.Json; using System.Linq; /// @@ -19,6 +20,7 @@ namespace Microsoft.Azure.Management.EventGrid.Models /// a derived class. Currently, StorageBlobDeadLetterDestination is the /// only class that derives from this class. /// + [Newtonsoft.Json.JsonObject("DeadLetterDestination")] public partial class DeadLetterDestination { /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannel.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannel.cs index 9a2ef0e09a97..ad102d559d0b 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannel.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannel.cs @@ -43,15 +43,32 @@ public EventChannel() /// Provisioning state of the event /// channel. Possible values include: 'Creating', 'Updating', /// 'Deleting', 'Succeeded', 'Canceled', 'Failed' + /// The readiness state of the + /// corresponding partner topic. Possible values include: + /// 'NotActivatedByUserYet', 'ActivatedByUser', 'DeactivatedByUser', + /// 'DeletedByUser' + /// Expiration time of + /// the event channel. If this timer expires while the corresponding + /// partner topic is never activated, + /// the event channel and corresponding partner topic are + /// deleted. /// Information about the filter for the event /// channel. - public EventChannel(string id = default(string), string name = default(string), string type = default(string), EventChannelSource source = default(EventChannelSource), EventChannelDestination destination = default(EventChannelDestination), string provisioningState = default(string), EventChannelFilter filter = default(EventChannelFilter)) + /// Friendly description + /// about the topic. This can be set by the publisher/partner to show + /// custom description for the customer partner topic. + /// This will be helpful to remove any ambiguity of the origin of + /// creation of the partner topic for the customer. + public EventChannel(string id = default(string), string name = default(string), string type = default(string), EventChannelSource source = default(EventChannelSource), EventChannelDestination destination = default(EventChannelDestination), string provisioningState = default(string), string partnerTopicReadinessState = default(string), System.DateTime? expirationTimeIfNotActivatedUtc = default(System.DateTime?), EventChannelFilter filter = default(EventChannelFilter), string partnerTopicFriendlyDescription = default(string)) : base(id, name, type) { Source = source; Destination = destination; ProvisioningState = provisioningState; + PartnerTopicReadinessState = partnerTopicReadinessState; + ExpirationTimeIfNotActivatedUtc = expirationTimeIfNotActivatedUtc; Filter = filter; + PartnerTopicFriendlyDescription = partnerTopicFriendlyDescription; CustomInit(); } @@ -81,11 +98,37 @@ public EventChannel() [JsonProperty(PropertyName = "properties.provisioningState")] public string ProvisioningState { get; private set; } + /// + /// Gets the readiness state of the corresponding partner topic. + /// Possible values include: 'NotActivatedByUserYet', + /// 'ActivatedByUser', 'DeactivatedByUser', 'DeletedByUser' + /// + [JsonProperty(PropertyName = "properties.partnerTopicReadinessState")] + public string PartnerTopicReadinessState { get; private set; } + + /// + /// Gets or sets expiration time of the event channel. If this timer + /// expires while the corresponding partner topic is never activated, + /// the event channel and corresponding partner topic are deleted. + /// + [JsonProperty(PropertyName = "properties.expirationTimeIfNotActivatedUtc")] + public System.DateTime? ExpirationTimeIfNotActivatedUtc { get; set; } + /// /// Gets or sets information about the filter for the event channel. /// [JsonProperty(PropertyName = "properties.filter")] public EventChannelFilter Filter { get; set; } + /// + /// Gets or sets friendly description about the topic. This can be set + /// by the publisher/partner to show custom description for the + /// customer partner topic. + /// This will be helpful to remove any ambiguity of the origin of + /// creation of the partner topic for the customer. + /// + [JsonProperty(PropertyName = "properties.partnerTopicFriendlyDescription")] + public string PartnerTopicFriendlyDescription { get; set; } + } } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelFilter.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelFilter.cs index 1b8362cc2552..2fbe0a56bc80 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelFilter.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventChannelFilter.cs @@ -31,28 +31,10 @@ public EventChannelFilter() /// /// Initializes a new instance of the EventChannelFilter class. /// - /// An optional string to filter events - /// for an event channel based on a resource path prefix. - /// The format of this depends on the publisher of the events. Wildcard - /// characters are not supported in this path. - /// An optional string to filter events - /// for an event channel based on a resource path suffix. - /// Wildcard characters are not supported in this path. - /// A list of applicable event types - /// that need to be part of the event channel. If it is desired to - /// subscribe to all default event types, set the IncludedEventTypes to - /// null. - /// Specifies if the - /// SubjectBeginsWith and SubjectEndsWith properties of the filter - /// should be compared in a case sensitive manner. /// An array of advanced filters that are /// used for filtering event channels. - public EventChannelFilter(string subjectBeginsWith = default(string), string subjectEndsWith = default(string), IList includedEventTypes = default(IList), bool? isSubjectCaseSensitive = default(bool?), IList advancedFilters = default(IList)) + public EventChannelFilter(IList advancedFilters = default(IList)) { - SubjectBeginsWith = subjectBeginsWith; - SubjectEndsWith = subjectEndsWith; - IncludedEventTypes = includedEventTypes; - IsSubjectCaseSensitive = isSubjectCaseSensitive; AdvancedFilters = advancedFilters; CustomInit(); } @@ -62,39 +44,6 @@ public EventChannelFilter() /// partial void CustomInit(); - /// - /// Gets or sets an optional string to filter events for an event - /// channel based on a resource path prefix. - /// The format of this depends on the publisher of the events. Wildcard - /// characters are not supported in this path. - /// - [JsonProperty(PropertyName = "subjectBeginsWith")] - public string SubjectBeginsWith { get; set; } - - /// - /// Gets or sets an optional string to filter events for an event - /// channel based on a resource path suffix. - /// Wildcard characters are not supported in this path. - /// - [JsonProperty(PropertyName = "subjectEndsWith")] - public string SubjectEndsWith { get; set; } - - /// - /// Gets or sets a list of applicable event types that need to be part - /// of the event channel. If it is desired to subscribe to all default - /// event types, set the IncludedEventTypes to null. - /// - [JsonProperty(PropertyName = "includedEventTypes")] - public IList IncludedEventTypes { get; set; } - - /// - /// Gets or sets specifies if the SubjectBeginsWith and SubjectEndsWith - /// properties of the filter - /// should be compared in a case sensitive manner. - /// - [JsonProperty(PropertyName = "isSubjectCaseSensitive")] - public bool? IsSubjectCaseSensitive { get; set; } - /// /// Gets or sets an array of advanced filters that are used for /// filtering event channels. diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionDestination.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionDestination.cs index 394af8038969..f9ec84760c93 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionDestination.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/EventSubscriptionDestination.cs @@ -10,11 +10,13 @@ namespace Microsoft.Azure.Management.EventGrid.Models { + using Newtonsoft.Json; using System.Linq; /// /// Information about the destination for an event subscription. /// + [Newtonsoft.Json.JsonObject("EventSubscriptionDestination")] public partial class EventSubscriptionDestination { /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/InputSchemaMapping.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/InputSchemaMapping.cs index 18a9bec9d083..e1558f810985 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/InputSchemaMapping.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/InputSchemaMapping.cs @@ -10,6 +10,7 @@ namespace Microsoft.Azure.Management.EventGrid.Models { + using Newtonsoft.Json; using System.Linq; /// @@ -18,6 +19,7 @@ namespace Microsoft.Azure.Management.EventGrid.Models /// Grid using a custom input schema. Currently, the only supported type of /// InputSchemaMapping is 'JsonInputSchemaMapping'. /// + [Newtonsoft.Json.JsonObject("InputSchemaMapping")] public partial class InputSchemaMapping { /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistration.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistration.cs index 8d6e94588ecd..d794567258ab 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistration.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerRegistration.cs @@ -49,8 +49,27 @@ public PartnerRegistration() /// type. /// Display name of the /// partner resource type. - /// Description of the - /// partner resource type. + /// Short description of + /// the partner resource type. The length of this description should + /// not exceed 256 characters. + /// Long description for the custom + /// scenarios and integration to be displayed in the portal if needed. + /// Length of this description should not exceed 2048 + /// characters. + /// The customer service + /// number of the publisher. The expected phone format should start + /// with a '+' sign + /// followed by the country code. The remaining digits are then + /// followed. Only digits and spaces are allowed and its + /// length cannot exceed 16 digits including country code. Examples of + /// valid phone numbers are: +1 515 123 4567 and + /// +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) + /// 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43 + /// The extension of the + /// customer service number of the publisher. Only digits are allowed + /// and number of digits should not exceed 10. + /// The extension of the customer + /// service URI of the publisher. /// URI of the partner website that can be used /// by Azure customers to setup Event Grid /// integration on an event source. @@ -65,7 +84,7 @@ public PartnerRegistration() /// partner namespaces is always permitted under the same Azure /// subscription as the one used /// for creating the partner registration. - public PartnerRegistration(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string partnerName = default(string), string partnerResourceTypeName = default(string), string partnerResourceTypeDisplayName = default(string), string partnerResourceTypeDescription = default(string), string setupUri = default(string), string logoUri = default(string), string visibilityState = default(string), IList authorizedAzureSubscriptionIds = default(IList)) + public PartnerRegistration(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string provisioningState = default(string), string partnerName = default(string), string partnerResourceTypeName = default(string), string partnerResourceTypeDisplayName = default(string), string partnerResourceTypeDescription = default(string), string longDescription = default(string), string partnerCustomerServiceNumber = default(string), string partnerCustomerServiceExtension = default(string), string customerServiceUri = default(string), string setupUri = default(string), string logoUri = default(string), string visibilityState = default(string), IList authorizedAzureSubscriptionIds = default(IList)) : base(location, id, name, type, tags) { ProvisioningState = provisioningState; @@ -73,6 +92,10 @@ public PartnerRegistration() PartnerResourceTypeName = partnerResourceTypeName; PartnerResourceTypeDisplayName = partnerResourceTypeDisplayName; PartnerResourceTypeDescription = partnerResourceTypeDescription; + LongDescription = longDescription; + PartnerCustomerServiceNumber = partnerCustomerServiceNumber; + PartnerCustomerServiceExtension = partnerCustomerServiceExtension; + CustomerServiceUri = customerServiceUri; SetupUri = setupUri; LogoUri = logoUri; VisibilityState = visibilityState; @@ -113,11 +136,48 @@ public PartnerRegistration() public string PartnerResourceTypeDisplayName { get; set; } /// - /// Gets or sets description of the partner resource type. + /// Gets or sets short description of the partner resource type. The + /// length of this description should not exceed 256 characters. /// [JsonProperty(PropertyName = "properties.partnerResourceTypeDescription")] public string PartnerResourceTypeDescription { get; set; } + /// + /// Gets or sets long description for the custom scenarios and + /// integration to be displayed in the portal if needed. + /// Length of this description should not exceed 2048 characters. + /// + [JsonProperty(PropertyName = "properties.longDescription")] + public string LongDescription { get; set; } + + /// + /// Gets or sets the customer service number of the publisher. The + /// expected phone format should start with a '+' sign + /// followed by the country code. The remaining digits are then + /// followed. Only digits and spaces are allowed and its + /// length cannot exceed 16 digits including country code. Examples of + /// valid phone numbers are: +1 515 123 4567 and + /// +966 7 5115 2471. Examples of invalid phone numbers are: +1 (515) + /// 123-4567, 1 515 123 4567 and +966 121 5115 24 7 551 1234 43 + /// + [JsonProperty(PropertyName = "properties.partnerCustomerServiceNumber")] + public string PartnerCustomerServiceNumber { get; set; } + + /// + /// Gets or sets the extension of the customer service number of the + /// publisher. Only digits are allowed and number of digits should not + /// exceed 10. + /// + [JsonProperty(PropertyName = "properties.partnerCustomerServiceExtension")] + public string PartnerCustomerServiceExtension { get; set; } + + /// + /// Gets or sets the extension of the customer service URI of the + /// publisher. + /// + [JsonProperty(PropertyName = "properties.customerServiceUri")] + public string CustomerServiceUri { get; set; } + /// /// Gets or sets URI of the partner website that can be used by Azure /// customers to setup Event Grid diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopic.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopic.cs index 502d778516e9..1e38ced455e0 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopic.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopic.cs @@ -42,18 +42,30 @@ public PartnerTopic() /// Tags of the resource. /// Source associated with this partner topic. /// This represents a unique partner resource. + /// Expiration time of + /// the partner topic. If this timer expires while the partner topic is + /// still never activated, + /// the partner topic and corresponding event channel are + /// deleted. /// Provisioning state of the partner /// topic. Possible values include: 'Creating', 'Updating', 'Deleting', /// 'Succeeded', 'Canceled', 'Failed' /// Activation state of the partner /// topic. Possible values include: 'NeverActivated', 'Activated', /// 'Deactivated' - public PartnerTopic(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string source = default(string), string provisioningState = default(string), string activationState = default(string)) + /// Friendly description + /// about the topic. This can be set by the publisher/partner to show + /// custom description for the customer partner topic. + /// This will be helpful to remove any ambiguity of the origin of + /// creation of the partner topic for the customer. + public PartnerTopic(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), string source = default(string), System.DateTime? expirationTimeIfNotActivatedUtc = default(System.DateTime?), string provisioningState = default(string), string activationState = default(string), string partnerTopicFriendlyDescription = default(string)) : base(location, id, name, type, tags) { Source = source; + ExpirationTimeIfNotActivatedUtc = expirationTimeIfNotActivatedUtc; ProvisioningState = provisioningState; ActivationState = activationState; + PartnerTopicFriendlyDescription = partnerTopicFriendlyDescription; CustomInit(); } @@ -69,6 +81,14 @@ public PartnerTopic() [JsonProperty(PropertyName = "properties.source")] public string Source { get; set; } + /// + /// Gets or sets expiration time of the partner topic. If this timer + /// expires while the partner topic is still never activated, + /// the partner topic and corresponding event channel are deleted. + /// + [JsonProperty(PropertyName = "properties.expirationTimeIfNotActivatedUtc")] + public System.DateTime? ExpirationTimeIfNotActivatedUtc { get; set; } + /// /// Gets provisioning state of the partner topic. Possible values /// include: 'Creating', 'Updating', 'Deleting', 'Succeeded', @@ -84,6 +104,16 @@ public PartnerTopic() [JsonProperty(PropertyName = "properties.activationState")] public string ActivationState { get; set; } + /// + /// Gets or sets friendly description about the topic. This can be set + /// by the publisher/partner to show custom description for the + /// customer partner topic. + /// This will be helpful to remove any ambiguity of the origin of + /// creation of the partner topic for the customer. + /// + [JsonProperty(PropertyName = "properties.partnerTopicFriendlyDescription")] + public string PartnerTopicFriendlyDescription { get; set; } + /// /// Validate the object. /// diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicReadinessState.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicReadinessState.cs new file mode 100644 index 000000000000..2b4a5b43a492 --- /dev/null +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/PartnerTopicReadinessState.cs @@ -0,0 +1,24 @@ +// +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator. +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. +// + +namespace Microsoft.Azure.Management.EventGrid.Models +{ + + /// + /// Defines values for PartnerTopicReadinessState. + /// + public static class PartnerTopicReadinessState + { + public const string NotActivatedByUserYet = "NotActivatedByUserYet"; + public const string ActivatedByUser = "ActivatedByUser"; + public const string DeactivatedByUser = "DeactivatedByUser"; + public const string DeletedByUser = "DeletedByUser"; + } +} diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceSku.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceSku.cs index 3e86737529fb..eb5add078805 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceSku.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Generated/Models/ResourceSku.cs @@ -29,9 +29,9 @@ public ResourceSku() /// /// Initializes a new instance of the ResourceSku class. /// - /// the Sku name of the resource. - /// the possible values: Basic; Premium. Possible values include: - /// 'Basic', 'Premium' + /// The Sku name of the resource. The possible + /// values are: Basic or Premium. Possible values include: 'Basic', + /// 'Premium' public ResourceSku(string name = default(string)) { Name = name; @@ -44,9 +44,8 @@ public ResourceSku() partial void CustomInit(); /// - /// Gets or sets the Sku name of the resource. - /// the possible values: Basic; Premium. Possible values include: - /// 'Basic', 'Premium' + /// Gets or sets the Sku name of the resource. The possible values are: + /// Basic or Premium. Possible values include: 'Basic', 'Premium' /// [JsonProperty(PropertyName = "name")] public string Name { get; set; } diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Microsoft.Azure.Management.EventGrid.csproj b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Microsoft.Azure.Management.EventGrid.csproj index 8c42a0c008ff..d352dd177e7c 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Microsoft.Azure.Management.EventGrid.csproj +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Microsoft.Azure.Management.EventGrid.csproj @@ -6,7 +6,7 @@ Microsoft.Azure.Management.EventGrid Provides developers with a library to create and manage all Azure EventGrid resources. - 5.3.0-preview + 5.3.1-preview Microsoft.Azure.Management.EventGrid Microsoft Azure EventGrid Management;Event Grid;Event Grid management; This corresponds to the 2020-04-01-Preview API version which includes the following new functionality: Support for IP Filtering when publishing events to Domains and Topics, Partner topics, system topics, SKU, MSI and private link support. diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Properties/AssemblyInfo.cs b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Properties/AssemblyInfo.cs index 13408d9662dc..2982daf9eca3 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Properties/AssemblyInfo.cs +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides developers with a library to create and manage all Azure EventGrid resources.")] [assembly: AssemblyVersion("5.0.0.0")] -[assembly: AssemblyFileVersion("5.3.0.0")] +[assembly: AssemblyFileVersion("5.3.1.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/generate.ps1 b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/generate.ps1 index 39dba5f0c2f0..c7c65192555d 100644 --- a/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/generate.ps1 +++ b/sdk/eventgrid/Microsoft.Azure.Management.EventGrid/src/generate.ps1 @@ -1 +1 @@ -Start-AutoRestCodeGeneration -ResourceProvider "eventgrid/resource-manager" -AutoRestVersion "latest" \ No newline at end of file +Start-AutoRestCodeGeneration -ResourceProvider "eventgrid/resource-manager" -AutoRestVersion "v2" \ No newline at end of file