diff --git a/eng/Packages.Data.props b/eng/Packages.Data.props index 6aa97d5ade2ad..460d2759e5e5a 100644 --- a/eng/Packages.Data.props +++ b/eng/Packages.Data.props @@ -156,7 +156,7 @@ All should have PrivateAssets="All" set so they don't become package dependencies --> - + diff --git a/sdk/anomalydetector/Azure.AI.AnomalyDetector/src/Generated/AnomalyDetectorModelFactory.cs b/sdk/anomalydetector/Azure.AI.AnomalyDetector/src/Generated/AnomalyDetectorModelFactory.cs index 780940574ee6f..02ed745cfd0a2 100644 --- a/sdk/anomalydetector/Azure.AI.AnomalyDetector/src/Generated/AnomalyDetectorModelFactory.cs +++ b/sdk/anomalydetector/Azure.AI.AnomalyDetector/src/Generated/AnomalyDetectorModelFactory.cs @@ -87,9 +87,19 @@ public static ModelInfo ModelInfo(int? slidingWindow = null, AlignPolicy alignPo /// Initializes a new instance of ErrorResponse. /// The error code. /// The message explaining the error reported by the service. + /// or is null. /// A new instance for mocking. public static ErrorResponse ErrorResponse(string code = null, string message = null) { + if (code == null) + { + throw new ArgumentNullException(nameof(code)); + } + if (message == null) + { + throw new ArgumentNullException(nameof(message)); + } + return new ErrorResponse(code, message); } diff --git a/sdk/cognitivelanguage/Azure.AI.Language.Conversations/tests/Generated/ConversationsModelFactory.cs b/sdk/cognitivelanguage/Azure.AI.Language.Conversations/tests/Generated/ConversationsModelFactory.cs index df1b892ca7f84..5d40941043208 100644 --- a/sdk/cognitivelanguage/Azure.AI.Language.Conversations/tests/Generated/ConversationsModelFactory.cs +++ b/sdk/cognitivelanguage/Azure.AI.Language.Conversations/tests/Generated/ConversationsModelFactory.cs @@ -52,9 +52,15 @@ public static JobStateAutoGenerated JobStateAutoGenerated(string displayName = n /// Initializes a new instance of ConversationTasksState. /// + /// is null. /// A new instance for mocking. public static ConversationTasksState ConversationTasksState(ConversationTasksStateTasks tasks = null) { + if (tasks == null) + { + throw new ArgumentNullException(nameof(tasks)); + } + return new ConversationTasksState(tasks); } @@ -146,9 +152,15 @@ public static ConversationPrediction ConversationPrediction(ProjectKind projectK /// Initializes a new instance of ConversationIntent. /// A predicted class. /// The confidence score of the class from 0.0 to 1.0. + /// is null. /// A new instance for mocking. public static ConversationIntent ConversationIntent(string category = null, float confidence = default) { + if (category == null) + { + throw new ArgumentNullException(nameof(category)); + } + return new ConversationIntent(category, confidence); } diff --git a/sdk/communication/Azure.Communication.Email/src/Generated/CommunicationEmailModelFactory.cs b/sdk/communication/Azure.Communication.Email/src/Generated/CommunicationEmailModelFactory.cs index 80c1c3055c941..9a5c66b12eef1 100644 --- a/sdk/communication/Azure.Communication.Email/src/Generated/CommunicationEmailModelFactory.cs +++ b/sdk/communication/Azure.Communication.Email/src/Generated/CommunicationEmailModelFactory.cs @@ -5,6 +5,7 @@ #nullable disable +using System; using Azure.Communication.Email.Models; namespace Azure.Communication.Email @@ -15,9 +16,15 @@ public static partial class CommunicationEmailModelFactory /// Initializes a new instance of SendStatusResult. /// System generated id of an email message sent. /// The type indicating the status of a request. + /// is null. /// A new instance for mocking. public static SendStatusResult SendStatusResult(string messageId = null, SendStatus status = default) { + if (messageId == null) + { + throw new ArgumentNullException(nameof(messageId)); + } + return new SendStatusResult(messageId, status); } } diff --git a/sdk/communication/Azure.Communication.PhoneNumbers/src/Generated/PhoneNumbersModelFactory.cs b/sdk/communication/Azure.Communication.PhoneNumbers/src/Generated/PhoneNumbersModelFactory.cs index 7030f95d9e2f0..910902f5065b5 100644 --- a/sdk/communication/Azure.Communication.PhoneNumbers/src/Generated/PhoneNumbersModelFactory.cs +++ b/sdk/communication/Azure.Communication.PhoneNumbers/src/Generated/PhoneNumbersModelFactory.cs @@ -19,9 +19,15 @@ public static partial class PhoneNumbersModelFactory /// The cost amount. /// The ISO 4217 currency code for the cost amount, e.g. USD. /// The frequency with which the cost gets billed. + /// is null. /// A new instance for mocking. public static PhoneNumberCost PhoneNumberCost(double amount = default, string isoCurrencySymbol = null, BillingFrequency billingFrequency = default) { + if (isoCurrencySymbol == null) + { + throw new ArgumentNullException(nameof(isoCurrencySymbol)); + } + return new PhoneNumberCost(amount, isoCurrencySymbol, billingFrequency); } } diff --git a/sdk/eventgrid/Azure.Messaging.EventGrid/src/Generated/EventGridModelFactory.cs b/sdk/eventgrid/Azure.Messaging.EventGrid/src/Generated/EventGridModelFactory.cs index d7e84134d0b43..16ae07d1c844b 100644 --- a/sdk/eventgrid/Azure.Messaging.EventGrid/src/Generated/EventGridModelFactory.cs +++ b/sdk/eventgrid/Azure.Messaging.EventGrid/src/Generated/EventGridModelFactory.cs @@ -1231,17 +1231,29 @@ public static CommunicationIdentifierModel CommunicationIdentifierModel(string r /// Initializes a new instance of CommunicationUserIdentifierModel. /// The Id of the communication user. + /// is null. /// A new instance for mocking. public static CommunicationUserIdentifierModel CommunicationUserIdentifierModel(string id = null) { + if (id == null) + { + throw new ArgumentNullException(nameof(id)); + } + return new CommunicationUserIdentifierModel(id); } /// Initializes a new instance of PhoneNumberIdentifierModel. /// The phone number in E.164 format. + /// is null. /// A new instance for mocking. public static PhoneNumberIdentifierModel PhoneNumberIdentifierModel(string value = null) { + if (value == null) + { + throw new ArgumentNullException(nameof(value)); + } + return new PhoneNumberIdentifierModel(value); } diff --git a/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleCapacity.Serialization.cs b/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleCapacity.Serialization.cs similarity index 100% rename from sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleCapacity.Serialization.cs rename to sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleCapacity.Serialization.cs diff --git a/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleCapacity.cs b/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleCapacity.cs similarity index 100% rename from sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleCapacity.cs rename to sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleCapacity.cs diff --git a/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleConfiguration.Serialization.cs b/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleConfiguration.Serialization.cs similarity index 100% rename from sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleConfiguration.Serialization.cs rename to sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleConfiguration.Serialization.cs diff --git a/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleConfiguration.cs b/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleConfiguration.cs similarity index 100% rename from sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleConfiguration.cs rename to sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleConfiguration.cs diff --git a/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleRecurrence.Serialization.cs b/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleRecurrence.Serialization.cs similarity index 100% rename from sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleRecurrence.Serialization.cs rename to sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleRecurrence.Serialization.cs diff --git a/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleRecurrence.cs b/sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleRecurrence.cs similarity index 100% rename from sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoscaleRecurrence.cs rename to sdk/hdinsight/Azure.ResourceManager.HDInsight/src/Generated/Models/HDInsightAutoScaleRecurrence.cs diff --git a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Generated/MicrosoftAzureMetricsAdvisorRestAPIOpenAPIV2ModelFactory.cs b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Generated/MicrosoftAzureMetricsAdvisorRestAPIOpenAPIV2ModelFactory.cs index 9b76209a00ecb..3ddca373d4047 100644 --- a/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Generated/MicrosoftAzureMetricsAdvisorRestAPIOpenAPIV2ModelFactory.cs +++ b/sdk/metricsadvisor/Azure.AI.MetricsAdvisor/src/Generated/MicrosoftAzureMetricsAdvisorRestAPIOpenAPIV2ModelFactory.cs @@ -41,9 +41,15 @@ public static AnomalyAlertConfiguration AnomalyAlertConfiguration(string id = nu /// anomaly time. /// created time. /// modified time. + /// is null. /// A new instance for mocking. public static AnomalyAlert AnomalyAlert(string id = null, DateTimeOffset timestamp = default, DateTimeOffset createdOn = default, DateTimeOffset lastModified = default) { + if (id == null) + { + throw new ArgumentNullException(nameof(id)); + } + return new AnomalyAlert(id, timestamp, createdOn, lastModified); } @@ -92,9 +98,15 @@ public static DataFeedMetric DataFeedMetric(string id = null, string name = null /// data slice timestamp. /// latest ingestion task status for this data slice. /// the trimmed message of last ingestion job. + /// is null. /// A new instance for mocking. public static DataFeedIngestionStatus DataFeedIngestionStatus(DateTimeOffset timestamp = default, IngestionStatusType status = default, string message = null) { + if (message == null) + { + throw new ArgumentNullException(nameof(message)); + } + return new DataFeedIngestionStatus(timestamp, status, message); } @@ -117,9 +129,19 @@ public static DataFeedIngestionProgress DataFeedIngestionProgress(DateTimeOffset /// data slice timestamp. /// latest enrichment status for this data slice. /// the trimmed message describes details of the enrichment status. + /// or is null. /// A new instance for mocking. public static EnrichmentStatus EnrichmentStatus(DateTimeOffset timestamp = default, string status = null, string message = null) { + if (status == null) + { + throw new ArgumentNullException(nameof(status)); + } + if (message == null) + { + throw new ArgumentNullException(nameof(message)); + } + return new EnrichmentStatus(timestamp, status, message); } } diff --git a/sdk/monitor/Azure.Monitor.Query/src/Generated/MonitorQueryModelFactory.cs b/sdk/monitor/Azure.Monitor.Query/src/Generated/MonitorQueryModelFactory.cs index e214f7b0e9fc5..d8bcf25939a6e 100644 --- a/sdk/monitor/Azure.Monitor.Query/src/Generated/MonitorQueryModelFactory.cs +++ b/sdk/monitor/Azure.Monitor.Query/src/Generated/MonitorQueryModelFactory.cs @@ -15,9 +15,15 @@ public static partial class MonitorQueryModelFactory /// Initializes a new instance of LogsTableColumn. /// The name of this column. /// The data type of this column. + /// is null. /// A new instance for mocking. public static LogsTableColumn LogsTableColumn(string name = null, LogsColumnType type = default) { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + return new LogsTableColumn(name, type); } diff --git a/sdk/storage/Azure.Storage.Blobs/src/Generated/BlobsModelFactory.cs b/sdk/storage/Azure.Storage.Blobs/src/Generated/BlobsModelFactory.cs index 4a466cda1d41e..e18033ea74088 100644 --- a/sdk/storage/Azure.Storage.Blobs/src/Generated/BlobsModelFactory.cs +++ b/sdk/storage/Azure.Storage.Blobs/src/Generated/BlobsModelFactory.cs @@ -22,9 +22,31 @@ public static partial class BlobsModelFactory /// Abbreviation of the Azure Storage service that accepts the key. /// The service version that created the key. /// The key as a base64 string. + /// , , , or is null. /// A new instance for mocking. public static UserDelegationKey UserDelegationKey(string signedObjectId = null, string signedTenantId = null, DateTimeOffset signedStartsOn = default, DateTimeOffset signedExpiresOn = default, string signedService = null, string signedVersion = null, string value = null) { + if (signedObjectId == null) + { + throw new ArgumentNullException(nameof(signedObjectId)); + } + if (signedTenantId == null) + { + throw new ArgumentNullException(nameof(signedTenantId)); + } + if (signedService == null) + { + throw new ArgumentNullException(nameof(signedService)); + } + if (signedVersion == null) + { + throw new ArgumentNullException(nameof(signedVersion)); + } + if (value == null) + { + throw new ArgumentNullException(nameof(value)); + } + return new UserDelegationKey(signedObjectId, signedTenantId, signedStartsOn, signedExpiresOn, signedService, signedVersion, value); } } diff --git a/sdk/storage/Azure.Storage.Blobs/src/Generated/Models/BlobName.Serialization.cs b/sdk/storage/Azure.Storage.Blobs/src/Generated/Models/BlobName.Serialization.cs index 3294a023091ab..02ab55b135ad9 100644 --- a/sdk/storage/Azure.Storage.Blobs/src/Generated/Models/BlobName.Serialization.cs +++ b/sdk/storage/Azure.Storage.Blobs/src/Generated/Models/BlobName.Serialization.cs @@ -6,7 +6,6 @@ #nullable disable using System.Xml.Linq; -using Azure.Core; namespace Azure.Storage.Blobs.Models { diff --git a/sdk/storage/Azure.Storage.Files.DataLake/src/Generated/Models/StorageError.Serialization.cs b/sdk/storage/Azure.Storage.Files.DataLake/src/Generated/Models/StorageError.Serialization.cs index b422063026ef3..532d78a88be57 100644 --- a/sdk/storage/Azure.Storage.Files.DataLake/src/Generated/Models/StorageError.Serialization.cs +++ b/sdk/storage/Azure.Storage.Files.DataLake/src/Generated/Models/StorageError.Serialization.cs @@ -13,6 +13,16 @@ namespace Azure.Storage.Files.DataLake.Models { internal partial class StorageError { + internal static StorageError DeserializeStorageError(XElement element) + { + StorageErrorError error = default; + if (element.Element("error") is XElement errorElement) + { + error = StorageErrorError.DeserializeStorageErrorError(errorElement); + } + return new StorageError(error); + } + internal static StorageError DeserializeStorageError(JsonElement element) { Optional error = default; @@ -31,15 +41,5 @@ internal static StorageError DeserializeStorageError(JsonElement element) } return new StorageError(error.Value); } - - internal static StorageError DeserializeStorageError(XElement element) - { - StorageErrorError error = default; - if (element.Element("error") is XElement errorElement) - { - error = StorageErrorError.DeserializeStorageErrorError(errorElement); - } - return new StorageError(error); - } } } diff --git a/sdk/storage/Azure.Storage.Files.DataLake/src/Generated/Models/StorageErrorError.Serialization.cs b/sdk/storage/Azure.Storage.Files.DataLake/src/Generated/Models/StorageErrorError.Serialization.cs index 8d905ca074eef..ab47581efb386 100644 --- a/sdk/storage/Azure.Storage.Files.DataLake/src/Generated/Models/StorageErrorError.Serialization.cs +++ b/sdk/storage/Azure.Storage.Files.DataLake/src/Generated/Models/StorageErrorError.Serialization.cs @@ -13,6 +13,21 @@ namespace Azure.Storage.Files.DataLake.Models { internal partial class StorageErrorError { + internal static StorageErrorError DeserializeStorageErrorError(XElement element) + { + string code = default; + string message = default; + if (element.Element("Code") is XElement codeElement) + { + code = (string)codeElement; + } + if (element.Element("Message") is XElement messageElement) + { + message = (string)messageElement; + } + return new StorageErrorError(code, message); + } + internal static StorageErrorError DeserializeStorageErrorError(JsonElement element) { Optional code = default; @@ -32,20 +47,5 @@ internal static StorageErrorError DeserializeStorageErrorError(JsonElement eleme } return new StorageErrorError(code.Value, message.Value); } - - internal static StorageErrorError DeserializeStorageErrorError(XElement element) - { - string code = default; - string message = default; - if (element.Element("Code") is XElement codeElement) - { - code = (string)codeElement; - } - if (element.Element("Message") is XElement messageElement) - { - message = (string)messageElement; - } - return new StorageErrorError(code, message); - } } } diff --git a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsModelFactory.cs b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsModelFactory.cs index 7db0d9a2c783d..7d1cfc8f72241 100644 --- a/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsModelFactory.cs +++ b/sdk/synapse/Azure.Analytics.Synapse.Artifacts/src/Generated/ArtifactsModelFactory.cs @@ -321,9 +321,15 @@ public static NotebookResource NotebookResource(string id = null, string name = /// Initializes a new instance of CreateRunResponse. /// Identifier of a run. + /// is null. /// A new instance for mocking. public static CreateRunResponse CreateRunResponse(string runId = null) { + if (runId == null) + { + throw new ArgumentNullException(nameof(runId)); + } + return new CreateRunResponse(runId); } diff --git a/sdk/tables/Azure.Data.Tables/src/Generated/Models/TableServiceError.Serialization.cs b/sdk/tables/Azure.Data.Tables/src/Generated/Models/TableServiceError.Serialization.cs index 564db78e08f9c..19ed9268dc97c 100644 --- a/sdk/tables/Azure.Data.Tables/src/Generated/Models/TableServiceError.Serialization.cs +++ b/sdk/tables/Azure.Data.Tables/src/Generated/Models/TableServiceError.Serialization.cs @@ -13,6 +13,16 @@ namespace Azure.Data.Tables.Models { internal partial class TableServiceError { + internal static TableServiceError DeserializeTableServiceError(XElement element) + { + string message = default; + if (element.Element("Message") is XElement messageElement) + { + message = (string)messageElement; + } + return new TableServiceError(message); + } + internal static TableServiceError DeserializeTableServiceError(JsonElement element) { Optional message = default; @@ -26,15 +36,5 @@ internal static TableServiceError DeserializeTableServiceError(JsonElement eleme } return new TableServiceError(message.Value); } - - internal static TableServiceError DeserializeTableServiceError(XElement element) - { - string message = default; - if (element.Element("Message") is XElement messageElement) - { - message = (string)messageElement; - } - return new TableServiceError(message); - } } } diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/api/Azure.ResourceManager.TrafficManager.netstandard2.0.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/api/Azure.ResourceManager.TrafficManager.netstandard2.0.cs new file mode 100644 index 0000000000000..6b40e9bc8c820 --- /dev/null +++ b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/api/Azure.ResourceManager.TrafficManager.netstandard2.0.cs @@ -0,0 +1,462 @@ +namespace Azure.ResourceManager.TrafficManager +{ + public partial class EndpointCollection : Azure.ResourceManager.ArmCollection, System.Collections.Generic.IAsyncEnumerable, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable + { + protected EndpointCollection() { } + public virtual Azure.ResourceManager.ArmOperation CreateOrUpdate(Azure.WaitUntil waitUntil, string endpointType, string endpointName, Azure.ResourceManager.TrafficManager.EndpointData data, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(Azure.WaitUntil waitUntil, string endpointType, string endpointName, Azure.ResourceManager.TrafficManager.EndpointData data, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Exists(string endpointType, string endpointName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> ExistsAsync(string endpointType, string endpointName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Get(string endpointType, string endpointName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetAll() { throw null; } + public virtual Azure.AsyncPageable GetAllAsync() { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(string endpointType, string endpointName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + System.Collections.Generic.IAsyncEnumerator System.Collections.Generic.IAsyncEnumerable.GetAsyncEnumerator(System.Threading.CancellationToken cancellationToken) { throw null; } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } + public partial class EndpointData : Azure.ResourceManager.TrafficManager.Models.ProxyResource + { + public EndpointData() { } + public System.Collections.Generic.IList CustomHeaders { get { throw null; } } + public string EndpointLocation { get { throw null; } set { } } + public Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus? EndpointMonitorStatus { get { throw null; } set { } } + public Azure.ResourceManager.TrafficManager.Models.EndpointStatus? EndpointStatus { get { throw null; } set { } } + public System.Collections.Generic.IList GeoMapping { get { throw null; } } + public long? MinChildEndpoints { get { throw null; } set { } } + public long? MinChildEndpointsIPv4 { get { throw null; } set { } } + public long? MinChildEndpointsIPv6 { get { throw null; } set { } } + public long? Priority { get { throw null; } set { } } + public System.Collections.Generic.IList Subnets { get { throw null; } } + public string Target { get { throw null; } set { } } + public string TargetResourceId { get { throw null; } set { } } + public long? Weight { get { throw null; } set { } } + } + public partial class EndpointResource : Azure.ResourceManager.ArmResource + { + public static readonly Azure.Core.ResourceType ResourceType; + protected EndpointResource() { } + public virtual Azure.ResourceManager.TrafficManager.EndpointData Data { get { throw null; } } + public virtual bool HasData { get { throw null; } } + public static Azure.Core.ResourceIdentifier CreateResourceIdentifier(string subscriptionId, string resourceGroupName, string profileName, string endpointType, string endpointName) { throw null; } + public virtual Azure.ResourceManager.ArmOperation Delete(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteAsync(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Update(Azure.ResourceManager.TrafficManager.EndpointData data, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.TrafficManager.EndpointData data, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class HeatMapModelCollection : Azure.ResourceManager.ArmCollection + { + protected HeatMapModelCollection() { } + public virtual Azure.Response Exists(Azure.ResourceManager.TrafficManager.Models.HeatMapType heatMapType, System.Collections.Generic.IEnumerable topLeft = null, System.Collections.Generic.IEnumerable botRight = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> ExistsAsync(Azure.ResourceManager.TrafficManager.Models.HeatMapType heatMapType, System.Collections.Generic.IEnumerable topLeft = null, System.Collections.Generic.IEnumerable botRight = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Get(Azure.ResourceManager.TrafficManager.Models.HeatMapType heatMapType, System.Collections.Generic.IEnumerable topLeft = null, System.Collections.Generic.IEnumerable botRight = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(Azure.ResourceManager.TrafficManager.Models.HeatMapType heatMapType, System.Collections.Generic.IEnumerable topLeft = null, System.Collections.Generic.IEnumerable botRight = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class HeatMapModelData : Azure.ResourceManager.TrafficManager.Models.ProxyResource + { + public HeatMapModelData() { } + public System.DateTimeOffset? EndOn { get { throw null; } set { } } + public System.Collections.Generic.IList Endpoints { get { throw null; } } + public System.DateTimeOffset? StartOn { get { throw null; } set { } } + public System.Collections.Generic.IList TrafficFlows { get { throw null; } } + } + public partial class HeatMapModelResource : Azure.ResourceManager.ArmResource + { + public static readonly Azure.Core.ResourceType ResourceType; + protected HeatMapModelResource() { } + public virtual Azure.ResourceManager.TrafficManager.HeatMapModelData Data { get { throw null; } } + public virtual bool HasData { get { throw null; } } + public static Azure.Core.ResourceIdentifier CreateResourceIdentifier(string subscriptionId, string resourceGroupName, string profileName, Azure.ResourceManager.TrafficManager.Models.HeatMapType heatMapType) { throw null; } + public virtual Azure.Response Get(System.Collections.Generic.IEnumerable topLeft = null, System.Collections.Generic.IEnumerable botRight = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Collections.Generic.IEnumerable topLeft = null, System.Collections.Generic.IEnumerable botRight = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class ProfileCollection : Azure.ResourceManager.ArmCollection, System.Collections.Generic.IAsyncEnumerable, System.Collections.Generic.IEnumerable, System.Collections.IEnumerable + { + protected ProfileCollection() { } + public virtual Azure.ResourceManager.ArmOperation CreateOrUpdate(Azure.WaitUntil waitUntil, string profileName, Azure.ResourceManager.TrafficManager.ProfileData data, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(Azure.WaitUntil waitUntil, string profileName, Azure.ResourceManager.TrafficManager.ProfileData data, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Exists(string profileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> ExistsAsync(string profileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Get(string profileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Pageable GetAll(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AsyncPageable GetAllAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(string profileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + System.Collections.Generic.IAsyncEnumerator System.Collections.Generic.IAsyncEnumerable.GetAsyncEnumerator(System.Threading.CancellationToken cancellationToken) { throw null; } + System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } + System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } + } + public partial class ProfileData : Azure.ResourceManager.TrafficManager.Models.TrackedResource + { + public ProfileData() { } + public System.Collections.Generic.IList AllowedEndpointRecordTypes { get { throw null; } } + public Azure.ResourceManager.TrafficManager.Models.DnsConfig DnsConfig { get { throw null; } set { } } + public System.Collections.Generic.IList Endpoints { get { throw null; } } + public long? MaxReturn { get { throw null; } set { } } + public Azure.ResourceManager.TrafficManager.Models.MonitorConfig MonitorConfig { get { throw null; } set { } } + public Azure.ResourceManager.TrafficManager.Models.ProfileStatus? ProfileStatus { get { throw null; } set { } } + public Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod? TrafficRoutingMethod { get { throw null; } set { } } + public Azure.ResourceManager.TrafficManager.Models.TrafficViewEnrollmentStatus? TrafficViewEnrollmentStatus { get { throw null; } set { } } + } + public partial class ProfileResource : Azure.ResourceManager.ArmResource + { + public static readonly Azure.Core.ResourceType ResourceType; + protected ProfileResource() { } + public virtual Azure.ResourceManager.TrafficManager.ProfileData Data { get { throw null; } } + public virtual bool HasData { get { throw null; } } + public virtual Azure.Response AddTag(string key, string value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> AddTagAsync(string key, string value, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.Core.ResourceIdentifier CreateResourceIdentifier(string subscriptionId, string resourceGroupName, string profileName) { throw null; } + public virtual Azure.ResourceManager.ArmOperation Delete(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteAsync(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response GetEndpoint(string endpointType, string endpointName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetEndpointAsync(string endpointType, string endpointName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.TrafficManager.EndpointCollection GetEndpoints() { throw null; } + public virtual Azure.Response GetHeatMapModel(Azure.ResourceManager.TrafficManager.Models.HeatMapType heatMapType, System.Collections.Generic.IEnumerable topLeft = null, System.Collections.Generic.IEnumerable botRight = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetHeatMapModelAsync(Azure.ResourceManager.TrafficManager.Models.HeatMapType heatMapType, System.Collections.Generic.IEnumerable topLeft = null, System.Collections.Generic.IEnumerable botRight = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.ResourceManager.TrafficManager.HeatMapModelCollection GetHeatMapModels() { throw null; } + public virtual Azure.Response RemoveTag(string key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> RemoveTagAsync(string key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response SetTags(System.Collections.Generic.IDictionary tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> SetTagsAsync(System.Collections.Generic.IDictionary tags, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Update(Azure.ResourceManager.TrafficManager.ProfileData data, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> UpdateAsync(Azure.ResourceManager.TrafficManager.ProfileData data, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public static partial class TrafficManagerExtensions + { + public static Azure.Response CheckTrafficManagerRelativeDnsNameAvailabilityProfile(this Azure.ResourceManager.Resources.TenantResource tenantResource, Azure.ResourceManager.TrafficManager.Models.CheckTrafficManagerRelativeDnsNameAvailabilityContent content, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static System.Threading.Tasks.Task> CheckTrafficManagerRelativeDnsNameAvailabilityProfileAsync(this Azure.ResourceManager.Resources.TenantResource tenantResource, Azure.ResourceManager.TrafficManager.Models.CheckTrafficManagerRelativeDnsNameAvailabilityContent content, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.ResourceManager.TrafficManager.EndpointResource GetEndpointResource(this Azure.ResourceManager.ArmClient client, Azure.Core.ResourceIdentifier id) { throw null; } + public static Azure.ResourceManager.TrafficManager.HeatMapModelResource GetHeatMapModelResource(this Azure.ResourceManager.ArmClient client, Azure.Core.ResourceIdentifier id) { throw null; } + public static Azure.Response GetProfile(this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource, string profileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static System.Threading.Tasks.Task> GetProfileAsync(this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource, string profileName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.ResourceManager.TrafficManager.ProfileResource GetProfileResource(this Azure.ResourceManager.ArmClient client, Azure.Core.ResourceIdentifier id) { throw null; } + public static Azure.ResourceManager.TrafficManager.ProfileCollection GetProfiles(this Azure.ResourceManager.Resources.ResourceGroupResource resourceGroupResource) { throw null; } + public static Azure.Pageable GetProfiles(this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.AsyncPageable GetProfilesAsync(this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.ResourceManager.TrafficManager.TrafficManagerGeographicHierarchyResource GetTrafficManagerGeographicHierarchy(this Azure.ResourceManager.Resources.TenantResource tenantResource) { throw null; } + public static Azure.ResourceManager.TrafficManager.TrafficManagerGeographicHierarchyResource GetTrafficManagerGeographicHierarchyResource(this Azure.ResourceManager.ArmClient client, Azure.Core.ResourceIdentifier id) { throw null; } + public static Azure.ResourceManager.TrafficManager.UserMetricsModelResource GetUserMetricsModel(this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource) { throw null; } + public static Azure.ResourceManager.TrafficManager.UserMetricsModelResource GetUserMetricsModelResource(this Azure.ResourceManager.ArmClient client, Azure.Core.ResourceIdentifier id) { throw null; } + } + public partial class TrafficManagerGeographicHierarchyData : Azure.ResourceManager.TrafficManager.Models.ProxyResource + { + public TrafficManagerGeographicHierarchyData() { } + public Azure.ResourceManager.TrafficManager.Models.Region GeographicHierarchy { get { throw null; } set { } } + } + public partial class TrafficManagerGeographicHierarchyResource : Azure.ResourceManager.ArmResource + { + public static readonly Azure.Core.ResourceType ResourceType; + protected TrafficManagerGeographicHierarchyResource() { } + public virtual Azure.ResourceManager.TrafficManager.TrafficManagerGeographicHierarchyData Data { get { throw null; } } + public virtual bool HasData { get { throw null; } } + public static Azure.Core.ResourceIdentifier CreateResourceIdentifier() { throw null; } + public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class UserMetricsModelData : Azure.ResourceManager.TrafficManager.Models.ProxyResource + { + public UserMetricsModelData() { } + public string Key { get { throw null; } set { } } + } + public partial class UserMetricsModelResource : Azure.ResourceManager.ArmResource + { + public static readonly Azure.Core.ResourceType ResourceType; + protected UserMetricsModelResource() { } + public virtual Azure.ResourceManager.TrafficManager.UserMetricsModelData Data { get { throw null; } } + public virtual bool HasData { get { throw null; } } + public virtual Azure.ResourceManager.ArmOperation CreateOrUpdate(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> CreateOrUpdateAsync(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public static Azure.Core.ResourceIdentifier CreateResourceIdentifier(string subscriptionId) { throw null; } + public virtual Azure.ResourceManager.ArmOperation Delete(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteAsync(Azure.WaitUntil waitUntil, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Get(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> GetAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } +} +namespace Azure.ResourceManager.TrafficManager.Models +{ + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct AllowedEndpointRecordType : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public AllowedEndpointRecordType(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType Any { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType DomainName { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType IPv4Address { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType IPv6Address { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType left, Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType left, Azure.ResourceManager.TrafficManager.Models.AllowedEndpointRecordType right) { throw null; } + public override string ToString() { throw null; } + } + public partial class CheckTrafficManagerRelativeDnsNameAvailabilityContent + { + public CheckTrafficManagerRelativeDnsNameAvailabilityContent() { } + public string Name { get { throw null; } set { } } + public string ResourceType { get { throw null; } set { } } + } + public partial class DnsConfig + { + public DnsConfig() { } + public string Fqdn { get { throw null; } } + public string RelativeName { get { throw null; } set { } } + public long? Ttl { get { throw null; } set { } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct EndpointMonitorStatus : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public EndpointMonitorStatus(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus CheckingEndpoint { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus Degraded { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus Disabled { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus Inactive { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus Online { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus Stopped { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus left, Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus left, Azure.ResourceManager.TrafficManager.Models.EndpointMonitorStatus right) { throw null; } + public override string ToString() { throw null; } + } + public partial class EndpointPropertiesCustomHeadersItem + { + public EndpointPropertiesCustomHeadersItem() { } + public string Name { get { throw null; } set { } } + public string Value { get { throw null; } set { } } + } + public partial class EndpointPropertiesSubnetsItem + { + public EndpointPropertiesSubnetsItem() { } + public string First { get { throw null; } set { } } + public string Last { get { throw null; } set { } } + public int? Scope { get { throw null; } set { } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct EndpointStatus : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public EndpointStatus(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.EndpointStatus Disabled { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.EndpointStatus Enabled { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.EndpointStatus other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.EndpointStatus left, Azure.ResourceManager.TrafficManager.Models.EndpointStatus right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.EndpointStatus (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.EndpointStatus left, Azure.ResourceManager.TrafficManager.Models.EndpointStatus right) { throw null; } + public override string ToString() { throw null; } + } + public partial class HeatMapEndpoint + { + public HeatMapEndpoint() { } + public int? EndpointId { get { throw null; } set { } } + public string ResourceId { get { throw null; } set { } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct HeatMapType : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public HeatMapType(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.HeatMapType Default { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.HeatMapType other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.HeatMapType left, Azure.ResourceManager.TrafficManager.Models.HeatMapType right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.HeatMapType (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.HeatMapType left, Azure.ResourceManager.TrafficManager.Models.HeatMapType right) { throw null; } + public override string ToString() { throw null; } + } + public partial class MonitorConfig + { + public MonitorConfig() { } + public System.Collections.Generic.IList CustomHeaders { get { throw null; } } + public System.Collections.Generic.IList ExpectedStatusCodeRanges { get { throw null; } } + public long? IntervalInSeconds { get { throw null; } set { } } + public string Path { get { throw null; } set { } } + public long? Port { get { throw null; } set { } } + public Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus? ProfileMonitorStatus { get { throw null; } set { } } + public Azure.ResourceManager.TrafficManager.Models.MonitorProtocol? Protocol { get { throw null; } set { } } + public long? TimeoutInSeconds { get { throw null; } set { } } + public long? ToleratedNumberOfFailures { get { throw null; } set { } } + } + public partial class MonitorConfigCustomHeadersItem + { + public MonitorConfigCustomHeadersItem() { } + public string Name { get { throw null; } set { } } + public string Value { get { throw null; } set { } } + } + public partial class MonitorConfigExpectedStatusCodeRangesItem + { + public MonitorConfigExpectedStatusCodeRangesItem() { } + public int? Max { get { throw null; } set { } } + public int? Min { get { throw null; } set { } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct MonitorProtocol : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public MonitorProtocol(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.MonitorProtocol Http { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.MonitorProtocol Https { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.MonitorProtocol TCP { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.MonitorProtocol other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.MonitorProtocol left, Azure.ResourceManager.TrafficManager.Models.MonitorProtocol right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.MonitorProtocol (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.MonitorProtocol left, Azure.ResourceManager.TrafficManager.Models.MonitorProtocol right) { throw null; } + public override string ToString() { throw null; } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct ProfileMonitorStatus : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public ProfileMonitorStatus(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus CheckingEndpoints { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus Degraded { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus Disabled { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus Inactive { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus Online { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus left, Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus left, Azure.ResourceManager.TrafficManager.Models.ProfileMonitorStatus right) { throw null; } + public override string ToString() { throw null; } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct ProfileStatus : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public ProfileStatus(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.ProfileStatus Disabled { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.ProfileStatus Enabled { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.ProfileStatus other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.ProfileStatus left, Azure.ResourceManager.TrafficManager.Models.ProfileStatus right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.ProfileStatus (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.ProfileStatus left, Azure.ResourceManager.TrafficManager.Models.ProfileStatus right) { throw null; } + public override string ToString() { throw null; } + } + public partial class ProxyResource : Azure.ResourceManager.TrafficManager.Models.TrafficManagerResourceData + { + public ProxyResource() { } + } + public partial class QueryExperience + { + public QueryExperience(int endpointId, int queryCount) { } + public int EndpointId { get { throw null; } set { } } + public double? Latency { get { throw null; } set { } } + public int QueryCount { get { throw null; } set { } } + } + public partial class Region + { + public Region() { } + public string Code { get { throw null; } set { } } + public string Name { get { throw null; } set { } } + public System.Collections.Generic.IList Regions { get { throw null; } } + } + public partial class TrackedResource : Azure.ResourceManager.TrafficManager.Models.TrafficManagerResourceData + { + public TrackedResource() { } + public string Location { get { throw null; } set { } } + public System.Collections.Generic.IDictionary Tags { get { throw null; } } + } + public partial class TrafficFlow + { + public TrafficFlow() { } + public double? Latitude { get { throw null; } set { } } + public double? Longitude { get { throw null; } set { } } + public System.Collections.Generic.IList QueryExperiences { get { throw null; } } + public string SourceIP { get { throw null; } set { } } + } + public partial class TrafficManagerNameAvailability + { + internal TrafficManagerNameAvailability() { } + public string Message { get { throw null; } } + public string Name { get { throw null; } } + public bool? NameAvailable { get { throw null; } } + public string Reason { get { throw null; } } + public string ResourceType { get { throw null; } } + } + public partial class TrafficManagerResourceData + { + public TrafficManagerResourceData() { } + public string Id { get { throw null; } set { } } + public string Name { get { throw null; } set { } } + public string ResourceType { get { throw null; } set { } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct TrafficRoutingMethod : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public TrafficRoutingMethod(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod Geographic { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod MultiValue { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod Performance { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod Priority { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod Subnet { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod Weighted { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod left, Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod left, Azure.ResourceManager.TrafficManager.Models.TrafficRoutingMethod right) { throw null; } + public override string ToString() { throw null; } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct TrafficViewEnrollmentStatus : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public TrafficViewEnrollmentStatus(string value) { throw null; } + public static Azure.ResourceManager.TrafficManager.Models.TrafficViewEnrollmentStatus Disabled { get { throw null; } } + public static Azure.ResourceManager.TrafficManager.Models.TrafficViewEnrollmentStatus Enabled { get { throw null; } } + public bool Equals(Azure.ResourceManager.TrafficManager.Models.TrafficViewEnrollmentStatus other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.ResourceManager.TrafficManager.Models.TrafficViewEnrollmentStatus left, Azure.ResourceManager.TrafficManager.Models.TrafficViewEnrollmentStatus right) { throw null; } + public static implicit operator Azure.ResourceManager.TrafficManager.Models.TrafficViewEnrollmentStatus (string value) { throw null; } + public static bool operator !=(Azure.ResourceManager.TrafficManager.Models.TrafficViewEnrollmentStatus left, Azure.ResourceManager.TrafficManager.Models.TrafficViewEnrollmentStatus right) { throw null; } + public override string ToString() { throw null; } + } +} diff --git a/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/HeatmapType.cs b/sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/HeatMapType.cs similarity index 100% rename from sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/HeatmapType.cs rename to sdk/trafficmanager/Azure.ResourceManager.TrafficManager/src/Generated/Models/HeatMapType.cs