namespace Azure { public abstract partial class AsyncPageable : System.Collections.Generic.IAsyncEnumerable where T : notnull { protected AsyncPageable() { } protected AsyncPageable(System.Threading.CancellationToken cancellationToken) { } protected virtual System.Threading.CancellationToken CancellationToken { get { throw null; } } public abstract System.Collections.Generic.IAsyncEnumerable> AsPages(string? continuationToken = null, int? pageSizeHint = default(int?)); public override bool Equals(object? obj) { throw null; } public static Azure.AsyncPageable FromPages(System.Collections.Generic.IEnumerable> pages) { throw null; } public virtual System.Collections.Generic.IAsyncEnumerator GetAsyncEnumerator(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override int GetHashCode() { throw null; } public override string? ToString() { throw null; } } public static partial class AzureCoreExtensions { [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This utilizes reflection-based JSON serialization and deserialization which is not compatible with trimming.")] public static dynamic ToDynamicFromJson(this System.BinaryData utf8Json) { throw null; } [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This utilizes reflection-based JSON serialization and deserialization which is not compatible with trimming.")] public static dynamic ToDynamicFromJson(this System.BinaryData utf8Json, Azure.Core.Serialization.JsonPropertyNames propertyNameFormat, string dateTimeFormat = "o") { throw null; } public static System.Threading.Tasks.ValueTask ToObjectAsync(this System.BinaryData data, Azure.Core.Serialization.ObjectSerializer serializer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This utilizes reflection-based JSON serialization and deserialization which is not compatible with trimming.")] public static object? ToObjectFromJson(this System.BinaryData data) { throw null; } public static T? ToObject(this System.BinaryData data, Azure.Core.Serialization.ObjectSerializer serializer, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } public partial class AzureKeyCredential : System.ClientModel.ApiKeyCredential { public AzureKeyCredential(string key) : base (default(string)) { } public string Key { get { throw null; } } } public partial class AzureNamedKeyCredential { public AzureNamedKeyCredential(string name, string key) { } public string Name { get { throw null; } } public void Deconstruct(out string name, out string key) { throw null; } public void Update(string name, string key) { } } public partial class AzureSasCredential { public AzureSasCredential(string signature) { } public string Signature { get { throw null; } } public void Update(string signature) { } } [System.FlagsAttribute] public enum ErrorOptions { Default = 0, NoThrow = 1, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ETag : System.IEquatable { private readonly object _dummy; private readonly int _dummyPrimitive; public static readonly Azure.ETag All; public ETag(string etag) { throw null; } public bool Equals(Azure.ETag other) { throw null; } public override bool Equals(object? obj) { throw null; } public bool Equals(string? other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(Azure.ETag left, Azure.ETag right) { throw null; } public static bool operator !=(Azure.ETag left, Azure.ETag right) { throw null; } public override string ToString() { throw null; } public string ToString(string format) { throw null; } } public partial class HttpAuthorization { public HttpAuthorization(string scheme, string parameter) { } public string Parameter { get { throw null; } } public string Scheme { get { throw null; } } public override string ToString() { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct HttpRange : System.IEquatable { private readonly int _dummyPrimitive; public HttpRange(long offset = (long)0, long? length = default(long?)) { throw null; } public long? Length { get { throw null; } } public long Offset { get { throw null; } } public bool Equals(Azure.HttpRange other) { throw null; } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(Azure.HttpRange left, Azure.HttpRange right) { throw null; } public static bool operator !=(Azure.HttpRange left, Azure.HttpRange right) { throw null; } public override string ToString() { throw null; } } public partial class JsonPatchDocument { [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("JsonObjectSerializer uses reflection-based JSON serialization and deserialization that is not compatible with trimming.")] public JsonPatchDocument() { } public JsonPatchDocument(Azure.Core.Serialization.ObjectSerializer serializer) { } [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("JsonObjectSerializer uses reflection-based JSON serialization and deserialization that is not compatible with trimming.")] public JsonPatchDocument(System.ReadOnlyMemory rawDocument) { } public JsonPatchDocument(System.ReadOnlyMemory rawDocument, Azure.Core.Serialization.ObjectSerializer serializer) { } public void AppendAddRaw(string path, string rawJsonValue) { } public void AppendAdd(string path, T value) { } public void AppendCopy(string from, string path) { } public void AppendMove(string from, string path) { } public void AppendRemove(string path) { } public void AppendReplaceRaw(string path, string rawJsonValue) { } public void AppendReplace(string path, T value) { } public void AppendTestRaw(string path, string rawJsonValue) { } public void AppendTest(string path, T value) { } public System.ReadOnlyMemory ToBytes() { throw null; } public override string ToString() { throw null; } } public partial class MatchConditions { public MatchConditions() { } public Azure.ETag? IfMatch { get { throw null; } set { } } public Azure.ETag? IfNoneMatch { get { throw null; } set { } } } public abstract partial class NullableResponse { protected NullableResponse() { } public abstract bool HasValue { get; } public abstract T? Value { get; } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public abstract Azure.Response GetRawResponse(); public override string ToString() { throw null; } } public abstract partial class Operation { protected Operation() { } public abstract bool HasCompleted { get; } public abstract string Id { get; } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public abstract Azure.Response GetRawResponse(); public virtual Azure.Core.RehydrationToken? GetRehydrationToken() { throw null; } public static Azure.Operation Rehydrate(Azure.Core.Pipeline.HttpPipeline pipeline, Azure.Core.RehydrationToken rehydrationToken, Azure.Core.ClientOptions? options = null) { throw null; } public static System.Threading.Tasks.Task RehydrateAsync(Azure.Core.Pipeline.HttpPipeline pipeline, Azure.Core.RehydrationToken rehydrationToken, Azure.Core.ClientOptions? options = null) { throw null; } [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This method uses reflection.")] public static System.Threading.Tasks.Task> RehydrateAsync(Azure.Core.Pipeline.HttpPipeline pipeline, Azure.Core.RehydrationToken rehydrationToken, Azure.Core.ClientOptions? options = null) where T : System.ClientModel.Primitives.IPersistableModel { throw null; } [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This method uses reflection.")] public static Azure.Operation Rehydrate(Azure.Core.Pipeline.HttpPipeline pipeline, Azure.Core.RehydrationToken rehydrationToken, Azure.Core.ClientOptions? options = null) where T : System.ClientModel.Primitives.IPersistableModel { throw null; } public override string? ToString() { throw null; } public abstract Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); public abstract System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); public virtual Azure.Response WaitForCompletionResponse(Azure.Core.DelayStrategy delayStrategy, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response WaitForCompletionResponse(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response WaitForCompletionResponse(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(Azure.Core.DelayStrategy delayStrategy, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } public abstract partial class Operation : Azure.Operation where T : notnull { protected Operation() { } public abstract bool HasValue { get; } public abstract T Value { get; } public virtual Azure.Response WaitForCompletion(Azure.Core.DelayStrategy delayStrategy, System.Threading.CancellationToken cancellationToken) { throw null; } public virtual Azure.Response WaitForCompletion(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response WaitForCompletion(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken) { throw null; } public virtual System.Threading.Tasks.ValueTask> WaitForCompletionAsync(Azure.Core.DelayStrategy delayStrategy, System.Threading.CancellationToken cancellationToken) { throw null; } public virtual System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask WaitForCompletionResponseAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } public abstract partial class PageableOperation : Azure.Operation> where T : notnull { protected PageableOperation() { } public override Azure.AsyncPageable Value { get { throw null; } } public abstract Azure.Pageable GetValues(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); public abstract Azure.AsyncPageable GetValuesAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } public abstract partial class Pageable : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable where T : notnull { protected Pageable() { } protected Pageable(System.Threading.CancellationToken cancellationToken) { } protected virtual System.Threading.CancellationToken CancellationToken { get { throw null; } } public abstract System.Collections.Generic.IEnumerable> AsPages(string? continuationToken = null, int? pageSizeHint = default(int?)); public override bool Equals(object? obj) { throw null; } public static Azure.Pageable FromPages(System.Collections.Generic.IEnumerable> pages) { throw null; } public virtual System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } public override int GetHashCode() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public override string? ToString() { throw null; } } public abstract partial class Page { protected Page() { } public abstract string? ContinuationToken { get; } public abstract System.Collections.Generic.IReadOnlyList Values { get; } public override bool Equals(object? obj) { throw null; } public static Azure.Page FromValues(System.Collections.Generic.IReadOnlyList values, string? continuationToken, Azure.Response response) { throw null; } public override int GetHashCode() { throw null; } public abstract Azure.Response GetRawResponse(); public override string? ToString() { throw null; } } public partial class RequestConditions : Azure.MatchConditions { public RequestConditions() { } public System.DateTimeOffset? IfModifiedSince { get { throw null; } set { } } public System.DateTimeOffset? IfUnmodifiedSince { get { throw null; } set { } } } public partial class RequestContext { public RequestContext() { } public System.Threading.CancellationToken CancellationToken { get { throw null; } set { } } public Azure.ErrorOptions ErrorOptions { get { throw null; } set { } } public void AddClassifier(Azure.Core.ResponseClassificationHandler classifier) { } public void AddClassifier(int statusCode, bool isError) { } public void AddPolicy(Azure.Core.Pipeline.HttpPipelinePolicy policy, Azure.Core.HttpPipelinePosition position) { } public static implicit operator Azure.RequestContext (Azure.ErrorOptions options) { throw null; } } public partial class RequestFailedException : System.Exception, System.Runtime.Serialization.ISerializable { public RequestFailedException(Azure.Response response) { } public RequestFailedException(Azure.Response response, System.Exception? innerException) { } public RequestFailedException(Azure.Response response, System.Exception? innerException, Azure.Core.RequestFailedDetailsParser? detailsParser) { } public RequestFailedException(int status, string message) { } public RequestFailedException(int status, string message, System.Exception? innerException) { } public RequestFailedException(int status, string message, string? errorCode, System.Exception? innerException) { } [System.ObsoleteAttribute(DiagnosticId="SYSLIB0051")] protected RequestFailedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public RequestFailedException(string message) { } public RequestFailedException(string message, System.Exception? innerException) { } public string? ErrorCode { get { throw null; } } public int Status { get { throw null; } } [System.ObsoleteAttribute(DiagnosticId="SYSLIB0051")] public override void GetObjectData(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public Azure.Response? GetRawResponse() { throw null; } } public abstract partial class Response : System.IDisposable { protected Response() { } public abstract string ClientRequestId { get; set; } public virtual System.BinaryData Content { get { throw null; } } public abstract System.IO.Stream? ContentStream { get; set; } public virtual Azure.Core.ResponseHeaders Headers { get { throw null; } } public virtual bool IsError { get { throw null; } } public abstract string ReasonPhrase { get; } public abstract int Status { get; } protected internal abstract bool ContainsHeader(string name); public abstract void Dispose(); protected internal abstract System.Collections.Generic.IEnumerable EnumerateHeaders(); public static Azure.Response FromValue(T value, Azure.Response response) { throw null; } public override string ToString() { throw null; } protected internal abstract bool TryGetHeader(string name, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out string? value); protected internal abstract bool TryGetHeaderValues(string name, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Collections.Generic.IEnumerable? values); } public sealed partial class ResponseError : System.ClientModel.Primitives.IJsonModel, System.ClientModel.Primitives.IPersistableModel { public ResponseError() { } public ResponseError(string? code, string? message) { } public string? Code { get { throw null; } } public string? Message { get { throw null; } } Azure.ResponseError System.ClientModel.Primitives.IJsonModel.Create(ref System.Text.Json.Utf8JsonReader reader, System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } void System.ClientModel.Primitives.IJsonModel.Write(System.Text.Json.Utf8JsonWriter writer, System.ClientModel.Primitives.ModelReaderWriterOptions options) { } Azure.ResponseError System.ClientModel.Primitives.IPersistableModel.Create(System.BinaryData data, System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } string System.ClientModel.Primitives.IPersistableModel.GetFormatFromOptions(System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } System.BinaryData System.ClientModel.Primitives.IPersistableModel.Write(System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } public override string ToString() { throw null; } } public abstract partial class Response : Azure.NullableResponse { protected Response() { } public override bool HasValue { get { throw null; } } public override T Value { get { throw null; } } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public static implicit operator T (Azure.Response? response) { throw null; } } public partial class SyncAsyncEventArgs : System.EventArgs { public SyncAsyncEventArgs(bool isRunningSynchronously, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { } public System.Threading.CancellationToken CancellationToken { get { throw null; } } public bool IsRunningSynchronously { get { throw null; } } } public enum WaitUntil { Completed = 0, Started = 1, } } namespace Azure.Core { [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct AccessToken { private object _dummy; private int _dummyPrimitive; public AccessToken(string accessToken, System.DateTimeOffset expiresOn) { throw null; } public AccessToken(string accessToken, System.DateTimeOffset expiresOn, System.DateTimeOffset? refreshOn) { throw null; } public AccessToken(string accessToken, System.DateTimeOffset expiresOn, System.DateTimeOffset? refreshOn, string tokenType) { throw null; } public AccessToken(string accessToken, System.DateTimeOffset expiresOn, System.DateTimeOffset? refreshOn, string tokenType, System.Security.Cryptography.X509Certificates.X509Certificate2 bindingCertificate) { throw null; } public System.Security.Cryptography.X509Certificates.X509Certificate2? BindingCertificate { get { throw null; } } public System.DateTimeOffset ExpiresOn { get { throw null; } } public System.DateTimeOffset? RefreshOn { get { throw null; } } public string Token { get { throw null; } } public string TokenType { get { throw null; } } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } } public partial class AzureCoreContext : System.ClientModel.Primitives.ModelReaderWriterContext { internal AzureCoreContext() { } public static Azure.Core.AzureCoreContext Default { get { throw null; } } protected override bool TryGetTypeBuilderCore(System.Type type, out System.ClientModel.Primitives.ModelReaderWriterTypeBuilder builder) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct AzureLocation : System.IEquatable { private readonly object _dummy; private readonly int _dummyPrimitive; public AzureLocation(string location) { throw null; } public AzureLocation(string name, string displayName) { throw null; } public static Azure.Core.AzureLocation AustraliaCentral { get { throw null; } } public static Azure.Core.AzureLocation AustraliaCentral2 { get { throw null; } } public static Azure.Core.AzureLocation AustraliaEast { get { throw null; } } public static Azure.Core.AzureLocation AustraliaSoutheast { get { throw null; } } public static Azure.Core.AzureLocation BrazilSouth { get { throw null; } } public static Azure.Core.AzureLocation BrazilSoutheast { get { throw null; } } public static Azure.Core.AzureLocation CanadaCentral { get { throw null; } } public static Azure.Core.AzureLocation CanadaEast { get { throw null; } } public static Azure.Core.AzureLocation CentralIndia { get { throw null; } } public static Azure.Core.AzureLocation CentralUS { get { throw null; } } public static Azure.Core.AzureLocation ChinaEast { get { throw null; } } public static Azure.Core.AzureLocation ChinaEast2 { get { throw null; } } public static Azure.Core.AzureLocation ChinaEast3 { get { throw null; } } public static Azure.Core.AzureLocation ChinaNorth { get { throw null; } } public static Azure.Core.AzureLocation ChinaNorth2 { get { throw null; } } public static Azure.Core.AzureLocation ChinaNorth3 { get { throw null; } } public static Azure.Core.AzureLocation DenmarkEast { get { throw null; } } public string? DisplayName { get { throw null; } } public static Azure.Core.AzureLocation EastAsia { get { throw null; } } public static Azure.Core.AzureLocation EastUS { get { throw null; } } public static Azure.Core.AzureLocation EastUS2 { get { throw null; } } public static Azure.Core.AzureLocation FranceCentral { get { throw null; } } public static Azure.Core.AzureLocation FranceSouth { get { throw null; } } public static Azure.Core.AzureLocation GermanyCentral { get { throw null; } } public static Azure.Core.AzureLocation GermanyNorth { get { throw null; } } public static Azure.Core.AzureLocation GermanyNorthEast { get { throw null; } } public static Azure.Core.AzureLocation GermanyWestCentral { get { throw null; } } public static Azure.Core.AzureLocation IndonesiaCentral { get { throw null; } } public static Azure.Core.AzureLocation IsraelCentral { get { throw null; } } public static Azure.Core.AzureLocation ItalyNorth { get { throw null; } } public static Azure.Core.AzureLocation JapanEast { get { throw null; } } public static Azure.Core.AzureLocation JapanWest { get { throw null; } } public static Azure.Core.AzureLocation KoreaCentral { get { throw null; } } public static Azure.Core.AzureLocation KoreaSouth { get { throw null; } } public static Azure.Core.AzureLocation MalaysiaWest { get { throw null; } } public static Azure.Core.AzureLocation MexicoCentral { get { throw null; } } public string Name { get { throw null; } } public static Azure.Core.AzureLocation NewZealandNorth { get { throw null; } } public static Azure.Core.AzureLocation NorthCentralUS { get { throw null; } } public static Azure.Core.AzureLocation NorthEurope { get { throw null; } } public static Azure.Core.AzureLocation NorwayEast { get { throw null; } } public static Azure.Core.AzureLocation NorwayWest { get { throw null; } } public static Azure.Core.AzureLocation PolandCentral { get { throw null; } } public static Azure.Core.AzureLocation QatarCentral { get { throw null; } } public static Azure.Core.AzureLocation SouthAfricaNorth { get { throw null; } } public static Azure.Core.AzureLocation SouthAfricaWest { get { throw null; } } public static Azure.Core.AzureLocation SouthCentralUS { get { throw null; } } public static Azure.Core.AzureLocation SoutheastAsia { get { throw null; } } public static Azure.Core.AzureLocation SouthIndia { get { throw null; } } public static Azure.Core.AzureLocation SpainCentral { get { throw null; } } public static Azure.Core.AzureLocation SwedenCentral { get { throw null; } } public static Azure.Core.AzureLocation SwedenSouth { get { throw null; } } public static Azure.Core.AzureLocation SwitzerlandNorth { get { throw null; } } public static Azure.Core.AzureLocation SwitzerlandWest { get { throw null; } } public static Azure.Core.AzureLocation UAECentral { get { throw null; } } public static Azure.Core.AzureLocation UAENorth { get { throw null; } } public static Azure.Core.AzureLocation UKSouth { get { throw null; } } public static Azure.Core.AzureLocation UKWest { get { throw null; } } public static Azure.Core.AzureLocation USDoDCentral { get { throw null; } } public static Azure.Core.AzureLocation USDoDEast { get { throw null; } } public static Azure.Core.AzureLocation USGovArizona { get { throw null; } } public static Azure.Core.AzureLocation USGovIowa { get { throw null; } } public static Azure.Core.AzureLocation USGovTexas { get { throw null; } } public static Azure.Core.AzureLocation USGovVirginia { get { throw null; } } public static Azure.Core.AzureLocation WestCentralUS { get { throw null; } } public static Azure.Core.AzureLocation WestEurope { get { throw null; } } public static Azure.Core.AzureLocation WestIndia { get { throw null; } } public static Azure.Core.AzureLocation WestUS { get { throw null; } } public static Azure.Core.AzureLocation WestUS2 { get { throw null; } } public static Azure.Core.AzureLocation WestUS3 { get { throw null; } } public bool Equals(Azure.Core.AzureLocation other) { throw null; } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(Azure.Core.AzureLocation left, Azure.Core.AzureLocation right) { throw null; } public static implicit operator string (Azure.Core.AzureLocation location) { throw null; } public static implicit operator Azure.Core.AzureLocation (string? location) { throw null; } public static bool operator !=(Azure.Core.AzureLocation left, Azure.Core.AzureLocation right) { throw null; } public override string ToString() { throw null; } } public abstract partial class ClientOptions { protected ClientOptions() { } protected ClientOptions(Azure.Core.DiagnosticsOptions? diagnostics) { } [System.Diagnostics.CodeAnalysis.ExperimentalAttribute("SCME0002")] protected ClientOptions(Microsoft.Extensions.Configuration.IConfigurationSection section, Azure.Core.DiagnosticsOptions? diagnostics) { } public static Azure.Core.ClientOptions Default { get { throw null; } } public Azure.Core.DiagnosticsOptions Diagnostics { get { throw null; } } protected int MaxApplicationIdLength { get { throw null; } set { } } public Azure.Core.RetryOptions Retry { get { throw null; } } public Azure.Core.Pipeline.HttpPipelinePolicy? RetryPolicy { get { throw null; } set { } } public Azure.Core.Pipeline.HttpPipelineTransport Transport { get { throw null; } set { } } public void AddPolicy(Azure.Core.Pipeline.HttpPipelinePolicy policy, Azure.Core.HttpPipelinePosition position) { } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public override string? ToString() { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ContentType : System.IEquatable, System.IEquatable { private readonly object _dummy; private readonly int _dummyPrimitive; public ContentType(string contentType) { throw null; } public static Azure.Core.ContentType ApplicationJson { get { throw null; } } public static Azure.Core.ContentType ApplicationOctetStream { get { throw null; } } public static Azure.Core.ContentType TextPlain { get { throw null; } } public bool Equals(Azure.Core.ContentType other) { throw null; } public override bool Equals(object? obj) { throw null; } public bool Equals(string? other) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(Azure.Core.ContentType left, Azure.Core.ContentType right) { throw null; } public static implicit operator Azure.Core.ContentType (string? contentType) { throw null; } public static bool operator !=(Azure.Core.ContentType left, Azure.Core.ContentType right) { throw null; } public override string ToString() { throw null; } } public abstract partial class DelayStrategy { protected DelayStrategy(System.TimeSpan? maxDelay = default(System.TimeSpan?), double jitterFactor = 0.2) { } public static Azure.Core.DelayStrategy CreateExponentialDelayStrategy(System.TimeSpan? initialDelay = default(System.TimeSpan?), System.TimeSpan? maxDelay = default(System.TimeSpan?)) { throw null; } public static Azure.Core.DelayStrategy CreateFixedDelayStrategy(System.TimeSpan? delay = default(System.TimeSpan?)) { throw null; } public System.TimeSpan GetNextDelay(Azure.Response? response, int retryNumber) { throw null; } protected abstract System.TimeSpan GetNextDelayCore(Azure.Response? response, int retryNumber); protected static System.TimeSpan Max(System.TimeSpan val1, System.TimeSpan val2) { throw null; } protected static System.TimeSpan Min(System.TimeSpan val1, System.TimeSpan val2) { throw null; } } public static partial class DelegatedTokenCredential { public static Azure.Core.TokenCredential Create(System.Func getToken) { throw null; } public static Azure.Core.TokenCredential Create(System.Func getToken, System.Func> getTokenAsync) { throw null; } } public partial class DiagnosticsOptions { protected internal DiagnosticsOptions() { } [System.Diagnostics.CodeAnalysis.ExperimentalAttribute("SCME0002")] protected internal DiagnosticsOptions(Microsoft.Extensions.Configuration.IConfigurationSection section) { } public string? ApplicationId { get { throw null; } set { } } public static string? DefaultApplicationId { get { throw null; } set { } } public bool IsDistributedTracingEnabled { get { throw null; } set { } } public bool IsLoggingContentEnabled { get { throw null; } set { } } public bool IsLoggingEnabled { get { throw null; } set { } } public bool IsTelemetryEnabled { get { throw null; } set { } } public int LoggedContentSizeLimit { get { throw null; } set { } } public System.Collections.Generic.IList LoggedHeaderNames { get { throw null; } } public System.Collections.Generic.IList LoggedQueryParameters { get { throw null; } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct HttpHeader : System.IEquatable { private readonly object _dummy; private readonly int _dummyPrimitive; public HttpHeader(string name, string value) { throw null; } public string Name { get { throw null; } } public string Value { get { throw null; } } public bool Equals(Azure.Core.HttpHeader other) { throw null; } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } public static partial class Common { public static readonly Azure.Core.HttpHeader FormUrlEncodedContentType; public static readonly Azure.Core.HttpHeader JsonAccept; public static readonly Azure.Core.HttpHeader JsonContentType; public static readonly Azure.Core.HttpHeader OctetStreamContentType; } public static partial class Names { public static string Accept { get { throw null; } } public static string Authorization { get { throw null; } } public static string ContentDisposition { get { throw null; } } public static string ContentLength { get { throw null; } } public static string ContentType { get { throw null; } } public static string Date { get { throw null; } } public static string ETag { get { throw null; } } public static string Host { get { throw null; } } public static string IfMatch { get { throw null; } } public static string IfModifiedSince { get { throw null; } } public static string IfNoneMatch { get { throw null; } } public static string IfUnmodifiedSince { get { throw null; } } public static string Prefer { get { throw null; } } public static string Range { get { throw null; } } public static string Referer { get { throw null; } } public static string UserAgent { get { throw null; } } public static string WwwAuthenticate { get { throw null; } } public static string XMsDate { get { throw null; } } public static string XMsRange { get { throw null; } } public static string XMsRequestId { get { throw null; } } } } public sealed partial class HttpMessage : System.IDisposable { public HttpMessage(Azure.Core.Request request, Azure.Core.ResponseClassifier responseClassifier) { } public bool BufferResponse { get { throw null; } set { } } public System.Threading.CancellationToken CancellationToken { get { throw null; } } public bool HasResponse { get { throw null; } } public System.TimeSpan? NetworkTimeout { get { throw null; } set { } } public Azure.Core.MessageProcessingContext ProcessingContext { get { throw null; } } public Azure.Core.Request Request { get { throw null; } } public Azure.Response Response { get { throw null; } set { } } public Azure.Core.ResponseClassifier ResponseClassifier { get { throw null; } set { } } public void Dispose() { } public System.IO.Stream? ExtractResponseContent() { throw null; } public void SetProperty(string name, object value) { } public void SetProperty(System.Type type, object value) { } public bool TryGetProperty(string name, out object? value) { throw null; } public bool TryGetProperty(System.Type type, out object? value) { throw null; } } public enum HttpPipelinePosition { PerCall = 0, PerRetry = 1, BeforeTransport = 2, } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct MessageProcessingContext { private readonly object _dummy; private readonly int _dummyPrimitive; public int RetryNumber { get { throw null; } set { } } public System.DateTimeOffset StartTime { get { throw null; } } } public static partial class MultipartResponse { public static Azure.Response[] Parse(Azure.Response response, bool expectCrLf, System.Threading.CancellationToken cancellationToken) { throw null; } public static System.Threading.Tasks.Task ParseAsync(Azure.Response response, bool expectCrLf, System.Threading.CancellationToken cancellationToken) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct RehydrationToken : System.ClientModel.Primitives.IJsonModel, System.ClientModel.Primitives.IJsonModel, System.ClientModel.Primitives.IPersistableModel, System.ClientModel.Primitives.IPersistableModel { private readonly object _dummy; private readonly int _dummyPrimitive; public string Id { get { throw null; } } Azure.Core.RehydrationToken System.ClientModel.Primitives.IJsonModel.Create(ref System.Text.Json.Utf8JsonReader reader, System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } void System.ClientModel.Primitives.IJsonModel.Write(System.Text.Json.Utf8JsonWriter writer, System.ClientModel.Primitives.ModelReaderWriterOptions options) { } object System.ClientModel.Primitives.IJsonModel.Create(ref System.Text.Json.Utf8JsonReader reader, System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } void System.ClientModel.Primitives.IJsonModel.Write(System.Text.Json.Utf8JsonWriter writer, System.ClientModel.Primitives.ModelReaderWriterOptions options) { } Azure.Core.RehydrationToken System.ClientModel.Primitives.IPersistableModel.Create(System.BinaryData data, System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } string System.ClientModel.Primitives.IPersistableModel.GetFormatFromOptions(System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } System.BinaryData System.ClientModel.Primitives.IPersistableModel.Write(System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } object System.ClientModel.Primitives.IPersistableModel.Create(System.BinaryData data, System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } string System.ClientModel.Primitives.IPersistableModel.GetFormatFromOptions(System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } System.BinaryData System.ClientModel.Primitives.IPersistableModel.Write(System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } } public abstract partial class Request : System.IDisposable { protected Request() { } public abstract string ClientRequestId { get; set; } public virtual Azure.Core.RequestContent? Content { get { throw null; } set { } } public Azure.Core.RequestHeaders Headers { get { throw null; } } public virtual Azure.Core.RequestMethod Method { get { throw null; } set { } } public virtual Azure.Core.RequestUriBuilder Uri { get { throw null; } set { } } protected internal abstract void AddHeader(string name, string value); protected internal abstract bool ContainsHeader(string name); public abstract void Dispose(); protected internal abstract System.Collections.Generic.IEnumerable EnumerateHeaders(); protected internal abstract bool RemoveHeader(string name); protected internal virtual void SetHeader(string name, string value) { } protected internal abstract bool TryGetHeader(string name, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out string? value); protected internal abstract bool TryGetHeaderValues(string name, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Collections.Generic.IEnumerable? values); } public abstract partial class RequestContent : System.IDisposable { protected RequestContent() { } public static Azure.Core.RequestContent Create(Azure.Core.Serialization.DynamicData content) { throw null; } public static Azure.Core.RequestContent Create(System.BinaryData content) { throw null; } public static Azure.Core.RequestContent Create(System.Buffers.ReadOnlySequence bytes) { throw null; } public static Azure.Core.RequestContent Create(byte[] bytes) { throw null; } public static Azure.Core.RequestContent Create(byte[] bytes, int index, int length) { throw null; } public static Azure.Core.RequestContent Create(System.IO.Stream stream) { throw null; } [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This method uses reflection-based serialization which is incompatible with trimming. Try using one of the 'Create' overloads that doesn't wrap a serialized version of an object.")] public static Azure.Core.RequestContent Create(object serializable) { throw null; } [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This method uses reflection-based serialization which is incompatible with trimming. Try using one of the 'Create' overloads that doesn't wrap a serialized version of an object.")] public static Azure.Core.RequestContent Create(object serializable, Azure.Core.Serialization.JsonPropertyNames propertyNameFormat, string dateTimeFormat = "o") { throw null; } [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This method uses reflection-based serialization which is incompatible with trimming. Try using one of the 'Create' overloads that doesn't wrap a serialized version of an object.")] public static Azure.Core.RequestContent Create(object serializable, Azure.Core.Serialization.ObjectSerializer? serializer) { throw null; } public static Azure.Core.RequestContent Create(System.ReadOnlyMemory bytes) { throw null; } public static Azure.Core.RequestContent Create(string content) { throw null; } public static Azure.Core.RequestContent Create(T model, System.ClientModel.Primitives.ModelReaderWriterOptions? options = null) where T : System.ClientModel.Primitives.IPersistableModel { throw null; } public abstract void Dispose(); public static implicit operator Azure.Core.RequestContent? (Azure.Core.Serialization.DynamicData? content) { throw null; } public static implicit operator Azure.Core.RequestContent? (System.BinaryData? content) { throw null; } public static implicit operator Azure.Core.RequestContent? (string? content) { throw null; } public abstract bool TryComputeLength(out long length); public abstract void WriteTo(System.IO.Stream stream, System.Threading.CancellationToken cancellation); public abstract System.Threading.Tasks.Task WriteToAsync(System.IO.Stream stream, System.Threading.CancellationToken cancellation); } public abstract partial class RequestFailedDetailsParser { protected RequestFailedDetailsParser() { } public abstract bool TryParse(Azure.Response response, out Azure.ResponseError? error, out System.Collections.Generic.IDictionary? data); } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct RequestHeaders : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable { private readonly object _dummy; private readonly int _dummyPrimitive; public void Add(Azure.Core.HttpHeader header) { } public void Add(string name, string value) { } public bool Contains(string name) { throw null; } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } public bool Remove(string name) { throw null; } public void SetValue(string name, string value) { } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public bool TryGetValue(string name, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out string? value) { throw null; } public bool TryGetValues(string name, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Collections.Generic.IEnumerable? values) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct RequestMethod : System.IEquatable { private readonly object _dummy; private readonly int _dummyPrimitive; public RequestMethod(string method) { throw null; } public static Azure.Core.RequestMethod Delete { get { throw null; } } public static Azure.Core.RequestMethod Get { get { throw null; } } public static Azure.Core.RequestMethod Head { get { throw null; } } public string Method { get { throw null; } } public static Azure.Core.RequestMethod Options { get { throw null; } } public static Azure.Core.RequestMethod Patch { get { throw null; } } public static Azure.Core.RequestMethod Post { get { throw null; } } public static Azure.Core.RequestMethod Put { get { throw null; } } public static Azure.Core.RequestMethod Trace { get { throw null; } } public bool Equals(Azure.Core.RequestMethod other) { throw null; } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(Azure.Core.RequestMethod left, Azure.Core.RequestMethod right) { throw null; } public static bool operator !=(Azure.Core.RequestMethod left, Azure.Core.RequestMethod right) { throw null; } public static Azure.Core.RequestMethod Parse(string method) { throw null; } public override string ToString() { throw null; } } public partial class RequestUriBuilder { public RequestUriBuilder() { } protected bool HasPath { get { throw null; } } protected bool HasQuery { get { throw null; } } public string? Host { get { throw null; } set { } } public string Path { get { throw null; } set { } } public string PathAndQuery { get { throw null; } } public int Port { get { throw null; } set { } } public string Query { get { throw null; } set { } } public string? Scheme { get { throw null; } set { } } public void AppendPath(System.ReadOnlySpan value, bool escape) { } public void AppendPath(string value) { } public void AppendPath(string value, bool escape) { } public void AppendQuery(System.ReadOnlySpan name, System.ReadOnlySpan value, bool escapeValue) { } public void AppendQuery(string name, string value) { } public void AppendQuery(string name, string value, bool escapeValue) { } public void Reset(System.Uri value) { } public override string ToString() { throw null; } public System.Uri ToUri() { throw null; } } public sealed partial class ResourceIdentifier : System.IComparable, System.IEquatable { public static readonly Azure.Core.ResourceIdentifier Root; public ResourceIdentifier(string resourceId) { } public Azure.Core.AzureLocation? Location { get { throw null; } } public string Name { get { throw null; } } public Azure.Core.ResourceIdentifier? Parent { get { throw null; } } public string? Provider { get { throw null; } } public string? ResourceGroupName { get { throw null; } } public Azure.Core.ResourceType ResourceType { get { throw null; } } public string? SubscriptionId { get { throw null; } } public Azure.Core.ResourceIdentifier AppendChildResource(string childResourceType, string childResourceName) { throw null; } public Azure.Core.ResourceIdentifier AppendProviderResource(string providerNamespace, string resourceType, string resourceName) { throw null; } public int CompareTo(Azure.Core.ResourceIdentifier? other) { throw null; } public bool Equals(Azure.Core.ResourceIdentifier? other) { throw null; } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(Azure.Core.ResourceIdentifier left, Azure.Core.ResourceIdentifier right) { throw null; } public static bool operator >(Azure.Core.ResourceIdentifier left, Azure.Core.ResourceIdentifier right) { throw null; } public static bool operator >=(Azure.Core.ResourceIdentifier left, Azure.Core.ResourceIdentifier right) { throw null; } public static implicit operator string (Azure.Core.ResourceIdentifier id) { throw null; } public static bool operator !=(Azure.Core.ResourceIdentifier left, Azure.Core.ResourceIdentifier right) { throw null; } public static bool operator <(Azure.Core.ResourceIdentifier left, Azure.Core.ResourceIdentifier right) { throw null; } public static bool operator <=(Azure.Core.ResourceIdentifier left, Azure.Core.ResourceIdentifier right) { throw null; } public static Azure.Core.ResourceIdentifier Parse(string input) { throw null; } public override string ToString() { throw null; } public static bool TryParse(string? input, out Azure.Core.ResourceIdentifier? result) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ResourceType : System.IComparable, System.IEquatable { private readonly object _dummy; private readonly int _dummyPrimitive; public ResourceType(string resourceType) { throw null; } public string Namespace { get { throw null; } } public string Type { get { throw null; } } public int CompareTo(Azure.Core.ResourceType other) { throw null; } public bool Equals(Azure.Core.ResourceType other) { throw null; } public override bool Equals(object? other) { throw null; } public override int GetHashCode() { throw null; } public string GetLastType() { throw null; } public static bool operator ==(Azure.Core.ResourceType left, Azure.Core.ResourceType right) { throw null; } public static implicit operator string (Azure.Core.ResourceType resourceType) { throw null; } public static implicit operator Azure.Core.ResourceType (string? resourceType) { throw null; } public static bool operator !=(Azure.Core.ResourceType left, Azure.Core.ResourceType right) { throw null; } public override string ToString() { throw null; } } public abstract partial class ResponseClassificationHandler { protected ResponseClassificationHandler() { } public abstract bool TryClassify(Azure.Core.HttpMessage message, out bool isError); } public partial class ResponseClassifier { public ResponseClassifier() { } public virtual bool IsErrorResponse(Azure.Core.HttpMessage message) { throw null; } public virtual bool IsRetriable(Azure.Core.HttpMessage message, System.Exception exception) { throw null; } public virtual bool IsRetriableException(System.Exception exception) { throw null; } public virtual bool IsRetriableResponse(Azure.Core.HttpMessage message) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct ResponseHeaders : System.Collections.Generic.IEnumerable, System.Collections.IEnumerable { private readonly object _dummy; private readonly int _dummyPrimitive; public int? ContentLength { get { throw null; } } public long? ContentLengthLong { get { throw null; } } public string? ContentType { get { throw null; } } public System.DateTimeOffset? Date { get { throw null; } } public Azure.ETag? ETag { get { throw null; } } public string? RequestId { get { throw null; } } public bool Contains(string name) { throw null; } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } public bool TryGetValue(string name, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out string? value) { throw null; } public bool TryGetValues(string name, [System.Diagnostics.CodeAnalysis.NotNullWhenAttribute(true)] out System.Collections.Generic.IEnumerable? values) { throw null; } } public enum RetryMode { Fixed = 0, Exponential = 1, } public partial class RetryOptions { internal RetryOptions() { } public System.TimeSpan Delay { get { throw null; } set { } } public System.TimeSpan MaxDelay { get { throw null; } set { } } public int MaxRetries { get { throw null; } set { } } public Azure.Core.RetryMode Mode { get { throw null; } set { } } public System.TimeSpan NetworkTimeout { get { throw null; } set { } } } public partial class StatusCodeClassifier : Azure.Core.ResponseClassifier { public StatusCodeClassifier(System.ReadOnlySpan successStatusCodes) { } public override bool IsErrorResponse(Azure.Core.HttpMessage message) { throw null; } } public delegate System.Threading.Tasks.Task SyncAsyncEventHandler(T e) where T : Azure.SyncAsyncEventArgs; public partial class TelemetryDetails { public TelemetryDetails(System.Reflection.Assembly assembly, string? applicationId = null) { } public string? ApplicationId { get { throw null; } } public System.Reflection.Assembly Assembly { get { throw null; } } public void Apply(Azure.Core.HttpMessage message) { } public override string ToString() { throw null; } } public abstract partial class TokenCredential : System.ClientModel.AuthenticationTokenProvider { protected TokenCredential() { } public override System.ClientModel.Primitives.GetTokenOptions? CreateTokenOptions(System.Collections.Generic.IReadOnlyDictionary properties) { throw null; } public abstract Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken); public override System.ClientModel.Primitives.AuthenticationToken GetToken(System.ClientModel.Primitives.GetTokenOptions properties, System.Threading.CancellationToken cancellationToken) { throw null; } public abstract System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken); public override System.Threading.Tasks.ValueTask GetTokenAsync(System.ClientModel.Primitives.GetTokenOptions properties, System.Threading.CancellationToken cancellationToken) { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct TokenRequestContext { private readonly object _dummy; private readonly int _dummyPrimitive; public TokenRequestContext(string[] scopes, string? parentRequestId) { throw null; } public TokenRequestContext(string[] scopes, string? parentRequestId, string? claims) { throw null; } public TokenRequestContext(string[] scopes, string? parentRequestId, string? claims, string? tenantId) { throw null; } public TokenRequestContext(string[] scopes, string? parentRequestId, string? claims, string? tenantId, bool isCaeEnabled) { throw null; } public TokenRequestContext(string[] scopes, string? parentRequestId = null, string? claims = null, string? tenantId = null, bool isCaeEnabled = false, bool isProofOfPossessionEnabled = false, string? proofOfPossessionNonce = null, System.Uri? requestUri = null, string? requestMethod = null) { throw null; } public string? Claims { get { throw null; } } public bool IsCaeEnabled { get { throw null; } } public bool IsProofOfPossessionEnabled { get { throw null; } } public string? ParentRequestId { get { throw null; } } public string? ProofOfPossessionNonce { get { throw null; } } public string? ResourceRequestMethod { get { throw null; } } public System.Uri? ResourceRequestUri { get { throw null; } } public string[] Scopes { get { throw null; } } public string? TenantId { get { throw null; } } } } namespace Azure.Core.Cryptography { public partial interface IKeyEncryptionKey { string KeyId { get; } byte[] UnwrapKey(string algorithm, System.ReadOnlyMemory encryptedKey, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); System.Threading.Tasks.Task UnwrapKeyAsync(string algorithm, System.ReadOnlyMemory encryptedKey, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); byte[] WrapKey(string algorithm, System.ReadOnlyMemory key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); System.Threading.Tasks.Task WrapKeyAsync(string algorithm, System.ReadOnlyMemory key, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } public partial interface IKeyEncryptionKeyResolver { Azure.Core.Cryptography.IKeyEncryptionKey Resolve(string keyId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); System.Threading.Tasks.Task ResolveAsync(string keyId, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); } } namespace Azure.Core.Diagnostics { public partial class AzureEventSourceListener : System.Diagnostics.Tracing.EventListener { public const string TraitName = "AzureEventSource"; public const string TraitValue = "true"; public AzureEventSourceListener(System.Action log, System.Diagnostics.Tracing.EventLevel level) { } public AzureEventSourceListener(System.Action log, System.Diagnostics.Tracing.EventLevel level) { } public static Azure.Core.Diagnostics.AzureEventSourceListener CreateConsoleLogger(System.Diagnostics.Tracing.EventLevel level = System.Diagnostics.Tracing.EventLevel.Informational) { throw null; } public static Azure.Core.Diagnostics.AzureEventSourceListener CreateTraceLogger(System.Diagnostics.Tracing.EventLevel level = System.Diagnostics.Tracing.EventLevel.Informational) { throw null; } protected sealed override void OnEventSourceCreated(System.Diagnostics.Tracing.EventSource eventSource) { } protected sealed override void OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs eventData) { } } } namespace Azure.Core.Extensions { public partial interface IAzureClientBuilder where TOptions : class { } public partial interface IAzureClientFactoryBuilder { Azure.Core.Extensions.IAzureClientBuilder RegisterClientFactory(System.Func clientFactory) where TOptions : class; } public partial interface IAzureClientFactoryBuilderWithConfiguration : Azure.Core.Extensions.IAzureClientFactoryBuilder { [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("Binding strongly typed objects to configuration values requires generating dynamic code at runtime, for example instantiating generic types. Use the Configuration Binder Source Generator (EnableConfigurationBindingGenerator=true) instead.")] Azure.Core.Extensions.IAzureClientBuilder RegisterClientFactory(TConfiguration configuration) where TOptions : class; } public partial interface IAzureClientFactoryBuilderWithCredential { Azure.Core.Extensions.IAzureClientBuilder RegisterClientFactory(System.Func clientFactory, bool requiresCredential = true) where TOptions : class; } } namespace Azure.Core.GeoJson { [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct GeoArray : System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.Generic.IReadOnlyList, System.Collections.IEnumerable { private readonly object _dummy; private readonly int _dummyPrimitive; public int Count { get { throw null; } } public T this[int index] { get { throw null; } } public Azure.Core.GeoJson.GeoArray.Enumerator GetEnumerator() { throw null; } System.Collections.Generic.IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct Enumerator : System.Collections.Generic.IEnumerator, System.Collections.IEnumerator, System.IDisposable { private object _dummy; private int _dummyPrimitive; public T Current { get { throw null; } } object System.Collections.IEnumerator.Current { get { throw null; } } public void Dispose() { } public bool MoveNext() { throw null; } public void Reset() { } } } public sealed partial class GeoBoundingBox : System.IEquatable { public GeoBoundingBox(double west, double south, double east, double north) { } public GeoBoundingBox(double west, double south, double east, double north, double? minAltitude, double? maxAltitude) { } public double East { get { throw null; } } public double this[int index] { get { throw null; } } public double? MaxAltitude { get { throw null; } } public double? MinAltitude { get { throw null; } } public double North { get { throw null; } } public double South { get { throw null; } } public double West { get { throw null; } } public bool Equals(Azure.Core.GeoJson.GeoBoundingBox? other) { throw null; } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public override string ToString() { throw null; } } public sealed partial class GeoCollection : Azure.Core.GeoJson.GeoObject, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.Generic.IReadOnlyList, System.Collections.IEnumerable { public GeoCollection(System.Collections.Generic.IEnumerable geometries) { } public GeoCollection(System.Collections.Generic.IEnumerable geometries, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary customProperties) { } public int Count { get { throw null; } } public Azure.Core.GeoJson.GeoObject this[int index] { get { throw null; } } public override Azure.Core.GeoJson.GeoObjectType Type { get { throw null; } } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } public sealed partial class GeoLinearRing { public GeoLinearRing(System.Collections.Generic.IEnumerable coordinates) { } public Azure.Core.GeoJson.GeoArray Coordinates { get { throw null; } } } public sealed partial class GeoLineString : Azure.Core.GeoJson.GeoObject { public GeoLineString(System.Collections.Generic.IEnumerable coordinates) { } public GeoLineString(System.Collections.Generic.IEnumerable coordinates, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary customProperties) { } public Azure.Core.GeoJson.GeoArray Coordinates { get { throw null; } } public override Azure.Core.GeoJson.GeoObjectType Type { get { throw null; } } } public sealed partial class GeoLineStringCollection : Azure.Core.GeoJson.GeoObject, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.Generic.IReadOnlyList, System.Collections.IEnumerable { public GeoLineStringCollection(System.Collections.Generic.IEnumerable lines) { } public GeoLineStringCollection(System.Collections.Generic.IEnumerable lines, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary customProperties) { } public Azure.Core.GeoJson.GeoArray> Coordinates { get { throw null; } } public int Count { get { throw null; } } public Azure.Core.GeoJson.GeoLineString this[int index] { get { throw null; } } public override Azure.Core.GeoJson.GeoObjectType Type { get { throw null; } } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } public abstract partial class GeoObject { internal GeoObject() { } public Azure.Core.GeoJson.GeoBoundingBox? BoundingBox { get { throw null; } } public abstract Azure.Core.GeoJson.GeoObjectType Type { get; } public static Azure.Core.GeoJson.GeoObject Parse(string json) { throw null; } public override string ToString() { throw null; } public bool TryGetCustomProperty(string name, out object? value) { throw null; } } public enum GeoObjectType { Point = 0, MultiPoint = 1, Polygon = 2, MultiPolygon = 3, LineString = 4, MultiLineString = 5, GeometryCollection = 6, } public sealed partial class GeoPoint : Azure.Core.GeoJson.GeoObject, System.ClientModel.Primitives.IJsonModel, System.ClientModel.Primitives.IPersistableModel { public GeoPoint() { } public GeoPoint(Azure.Core.GeoJson.GeoPosition position) { } public GeoPoint(Azure.Core.GeoJson.GeoPosition position, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary customProperties) { } public GeoPoint(double longitude, double latitude) { } public GeoPoint(double longitude, double latitude, double? altitude) { } public Azure.Core.GeoJson.GeoPosition Coordinates { get { throw null; } } public override Azure.Core.GeoJson.GeoObjectType Type { get { throw null; } } Azure.Core.GeoJson.GeoPoint? System.ClientModel.Primitives.IJsonModel.Create(ref System.Text.Json.Utf8JsonReader reader, System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } void System.ClientModel.Primitives.IJsonModel.Write(System.Text.Json.Utf8JsonWriter writer, System.ClientModel.Primitives.ModelReaderWriterOptions options) { } Azure.Core.GeoJson.GeoPoint? System.ClientModel.Primitives.IPersistableModel.Create(System.BinaryData data, System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } string System.ClientModel.Primitives.IPersistableModel.GetFormatFromOptions(System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } System.BinaryData System.ClientModel.Primitives.IPersistableModel.Write(System.ClientModel.Primitives.ModelReaderWriterOptions options) { throw null; } } public sealed partial class GeoPointCollection : Azure.Core.GeoJson.GeoObject, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.Generic.IReadOnlyList, System.Collections.IEnumerable { public GeoPointCollection(System.Collections.Generic.IEnumerable points) { } public GeoPointCollection(System.Collections.Generic.IEnumerable points, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary customProperties) { } public Azure.Core.GeoJson.GeoArray Coordinates { get { throw null; } } public int Count { get { throw null; } } public Azure.Core.GeoJson.GeoPoint this[int index] { get { throw null; } } public override Azure.Core.GeoJson.GeoObjectType Type { get { throw null; } } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } public sealed partial class GeoPolygon : Azure.Core.GeoJson.GeoObject { public GeoPolygon(System.Collections.Generic.IEnumerable rings) { } public GeoPolygon(System.Collections.Generic.IEnumerable rings, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary customProperties) { } public GeoPolygon(System.Collections.Generic.IEnumerable positions) { } public Azure.Core.GeoJson.GeoArray> Coordinates { get { throw null; } } public Azure.Core.GeoJson.GeoLinearRing OuterRing { get { throw null; } } public System.Collections.Generic.IReadOnlyList Rings { get { throw null; } } public override Azure.Core.GeoJson.GeoObjectType Type { get { throw null; } } } public sealed partial class GeoPolygonCollection : Azure.Core.GeoJson.GeoObject, System.Collections.Generic.IEnumerable, System.Collections.Generic.IReadOnlyCollection, System.Collections.Generic.IReadOnlyList, System.Collections.IEnumerable { public GeoPolygonCollection(System.Collections.Generic.IEnumerable polygons) { } public GeoPolygonCollection(System.Collections.Generic.IEnumerable polygons, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary customProperties) { } public Azure.Core.GeoJson.GeoArray>> Coordinates { get { throw null; } } public int Count { get { throw null; } } public Azure.Core.GeoJson.GeoPolygon this[int index] { get { throw null; } } public override Azure.Core.GeoJson.GeoObjectType Type { get { throw null; } } public System.Collections.Generic.IEnumerator GetEnumerator() { throw null; } System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct GeoPosition : System.IEquatable { private readonly int _dummyPrimitive; public GeoPosition(double longitude, double latitude) { throw null; } public GeoPosition(double longitude, double latitude, double? altitude) { throw null; } public double? Altitude { get { throw null; } } public int Count { get { throw null; } } public double this[int index] { get { throw null; } } public double Latitude { get { throw null; } } public double Longitude { get { throw null; } } public bool Equals(Azure.Core.GeoJson.GeoPosition other) { throw null; } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(Azure.Core.GeoJson.GeoPosition left, Azure.Core.GeoJson.GeoPosition right) { throw null; } public static bool operator !=(Azure.Core.GeoJson.GeoPosition left, Azure.Core.GeoJson.GeoPosition right) { throw null; } public override string ToString() { throw null; } } } namespace Azure.Core.Pipeline { public partial class BearerTokenAuthenticationPolicy : Azure.Core.Pipeline.HttpPipelinePolicy { public BearerTokenAuthenticationPolicy(Azure.Core.TokenCredential credential, System.Collections.Generic.IEnumerable scopes) { } public BearerTokenAuthenticationPolicy(Azure.Core.TokenCredential credential, string scope) { } protected void AuthenticateAndAuthorizeRequest(Azure.Core.HttpMessage message, Azure.Core.TokenRequestContext context) { } protected System.Threading.Tasks.ValueTask AuthenticateAndAuthorizeRequestAsync(Azure.Core.HttpMessage message, Azure.Core.TokenRequestContext context) { throw null; } protected virtual void AuthorizeRequest(Azure.Core.HttpMessage message) { } protected virtual System.Threading.Tasks.ValueTask AuthorizeRequestAsync(Azure.Core.HttpMessage message) { throw null; } protected virtual bool AuthorizeRequestOnChallenge(Azure.Core.HttpMessage message) { throw null; } protected virtual System.Threading.Tasks.ValueTask AuthorizeRequestOnChallengeAsync(Azure.Core.HttpMessage message) { throw null; } public override void Process(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { } public override System.Threading.Tasks.ValueTask ProcessAsync(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { throw null; } } public sealed partial class DisposableHttpPipeline : Azure.Core.Pipeline.HttpPipeline, System.IDisposable { internal DisposableHttpPipeline() : base (default(Azure.Core.Pipeline.HttpPipelineTransport), default(Azure.Core.Pipeline.HttpPipelinePolicy[]), default(Azure.Core.ResponseClassifier)) { } public void Dispose() { } } public partial class HttpClientTransport : Azure.Core.Pipeline.HttpPipelineTransport, System.IDisposable { public static readonly Azure.Core.Pipeline.HttpClientTransport Shared; public HttpClientTransport() { } public HttpClientTransport(System.Func clientFactory) { } public HttpClientTransport(System.Func handlerFactory) { } public HttpClientTransport(System.Net.Http.HttpClient client) { } public HttpClientTransport(System.Net.Http.HttpMessageHandler messageHandler) { } public sealed override Azure.Core.Request CreateRequest() { throw null; } public void Dispose() { } public override void Process(Azure.Core.HttpMessage message) { } public override System.Threading.Tasks.ValueTask ProcessAsync(Azure.Core.HttpMessage message) { throw null; } public override void Update(Azure.Core.Pipeline.HttpPipelineTransportOptions options) { } } public partial class HttpPipeline { public HttpPipeline(Azure.Core.Pipeline.HttpPipelineTransport transport, Azure.Core.Pipeline.HttpPipelinePolicy[]? policies = null, Azure.Core.ResponseClassifier? responseClassifier = null) { } public Azure.Core.ResponseClassifier ResponseClassifier { get { throw null; } } public static System.IDisposable CreateClientRequestIdScope(string? clientRequestId) { throw null; } public static System.IDisposable CreateHttpMessagePropertiesScope(System.Collections.Generic.IDictionary messageProperties) { throw null; } public Azure.Core.HttpMessage CreateMessage() { throw null; } public Azure.Core.HttpMessage CreateMessage(Azure.RequestContext? context) { throw null; } public Azure.Core.HttpMessage CreateMessage(Azure.RequestContext? context, Azure.Core.ResponseClassifier? classifier = null) { throw null; } public Azure.Core.Request CreateRequest() { throw null; } public void Send(Azure.Core.HttpMessage message, System.Threading.CancellationToken cancellationToken) { } public System.Threading.Tasks.ValueTask SendAsync(Azure.Core.HttpMessage message, System.Threading.CancellationToken cancellationToken) { throw null; } public Azure.Response SendRequest(Azure.Core.Request request, System.Threading.CancellationToken cancellationToken) { throw null; } public System.Threading.Tasks.ValueTask SendRequestAsync(Azure.Core.Request request, System.Threading.CancellationToken cancellationToken) { throw null; } } public static partial class HttpPipelineBuilder { public static Azure.Core.Pipeline.HttpPipeline Build(Azure.Core.ClientOptions options, params Azure.Core.Pipeline.HttpPipelinePolicy[] perRetryPolicies) { throw null; } public static Azure.Core.Pipeline.DisposableHttpPipeline Build(Azure.Core.ClientOptions options, Azure.Core.Pipeline.HttpPipelinePolicy[] perCallPolicies, Azure.Core.Pipeline.HttpPipelinePolicy[] perRetryPolicies, Azure.Core.Pipeline.HttpPipelineTransportOptions transportOptions, Azure.Core.ResponseClassifier? responseClassifier) { throw null; } public static Azure.Core.Pipeline.HttpPipeline Build(Azure.Core.ClientOptions options, Azure.Core.Pipeline.HttpPipelinePolicy[] perCallPolicies, Azure.Core.Pipeline.HttpPipelinePolicy[] perRetryPolicies, Azure.Core.ResponseClassifier? responseClassifier) { throw null; } public static Azure.Core.Pipeline.HttpPipeline Build(Azure.Core.Pipeline.HttpPipelineOptions options) { throw null; } public static Azure.Core.Pipeline.DisposableHttpPipeline Build(Azure.Core.Pipeline.HttpPipelineOptions options, Azure.Core.Pipeline.HttpPipelineTransportOptions transportOptions) { throw null; } } public partial class HttpPipelineOptions { public HttpPipelineOptions(Azure.Core.ClientOptions options) { } public Azure.Core.ClientOptions ClientOptions { get { throw null; } } public System.Collections.Generic.IList PerCallPolicies { get { throw null; } } public System.Collections.Generic.IList PerRetryPolicies { get { throw null; } } public Azure.Core.RequestFailedDetailsParser RequestFailedDetailsParser { get { throw null; } set { } } public Azure.Core.ResponseClassifier? ResponseClassifier { get { throw null; } set { } } } public abstract partial class HttpPipelinePolicy { protected HttpPipelinePolicy() { } public abstract void Process(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline); public abstract System.Threading.Tasks.ValueTask ProcessAsync(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline); protected static void ProcessNext(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { } protected static System.Threading.Tasks.ValueTask ProcessNextAsync(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { throw null; } } [System.Diagnostics.CodeAnalysis.DynamicallyAccessedMembersAttribute(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.PublicMethods)] public abstract partial class HttpPipelineSynchronousPolicy : Azure.Core.Pipeline.HttpPipelinePolicy { protected HttpPipelineSynchronousPolicy() { } public virtual void OnReceivedResponse(Azure.Core.HttpMessage message) { } public virtual void OnSendingRequest(Azure.Core.HttpMessage message) { } public override void Process(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { } public override System.Threading.Tasks.ValueTask ProcessAsync(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { throw null; } } public abstract partial class HttpPipelineTransport { protected HttpPipelineTransport() { } public abstract Azure.Core.Request CreateRequest(); public abstract void Process(Azure.Core.HttpMessage message); public abstract System.Threading.Tasks.ValueTask ProcessAsync(Azure.Core.HttpMessage message); public virtual void Update(Azure.Core.Pipeline.HttpPipelineTransportOptions options) { } } public partial class HttpPipelineTransportOptions { public HttpPipelineTransportOptions() { } public System.Collections.Generic.IList ClientCertificates { get { throw null; } } public bool IsClientRedirectEnabled { get { throw null; } set { } } public System.Func? ServerCertificateCustomValidationCallback { get { throw null; } set { } } } public sealed partial class RedirectPolicy : Azure.Core.Pipeline.HttpPipelinePolicy { internal RedirectPolicy() { } public override void Process(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { } public override System.Threading.Tasks.ValueTask ProcessAsync(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { throw null; } public static void SetAllowAutoRedirect(Azure.Core.HttpMessage message, bool allowAutoRedirect) { } } public partial class RetryPolicy : Azure.Core.Pipeline.HttpPipelinePolicy { public RetryPolicy(int maxRetries = 3, Azure.Core.DelayStrategy? delayStrategy = null) { } protected internal virtual void OnRequestSent(Azure.Core.HttpMessage message) { } protected internal virtual System.Threading.Tasks.ValueTask OnRequestSentAsync(Azure.Core.HttpMessage message) { throw null; } protected internal virtual void OnSendingRequest(Azure.Core.HttpMessage message) { } protected internal virtual System.Threading.Tasks.ValueTask OnSendingRequestAsync(Azure.Core.HttpMessage message) { throw null; } public override void Process(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { } public override System.Threading.Tasks.ValueTask ProcessAsync(Azure.Core.HttpMessage message, System.ReadOnlyMemory pipeline) { throw null; } protected internal virtual bool ShouldRetry(Azure.Core.HttpMessage message, System.Exception? exception) { throw null; } protected internal virtual System.Threading.Tasks.ValueTask ShouldRetryAsync(Azure.Core.HttpMessage message, System.Exception? exception) { throw null; } } public partial class ServerCertificateCustomValidationArgs { public ServerCertificateCustomValidationArgs(System.Security.Cryptography.X509Certificates.X509Certificate2? certificate, System.Security.Cryptography.X509Certificates.X509Chain? certificateAuthorityChain, System.Net.Security.SslPolicyErrors sslPolicyErrors) { } public System.Security.Cryptography.X509Certificates.X509Certificate2? Certificate { get { throw null; } } public System.Security.Cryptography.X509Certificates.X509Chain? CertificateAuthorityChain { get { throw null; } } public System.Net.Security.SslPolicyErrors SslPolicyErrors { get { throw null; } } } } namespace Azure.Core.Serialization { [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This class utilizes reflection-based JSON serialization and deserialization which is not compatible with trimming.")] [System.Diagnostics.DebuggerDisplayAttribute("{DebuggerDisplay,nq}")] public sealed partial class DynamicData : System.Dynamic.IDynamicMetaObjectProvider, System.IDisposable { internal DynamicData() { } public void Dispose() { } public override bool Equals(object? obj) { throw null; } public override int GetHashCode() { throw null; } public static bool operator ==(Azure.Core.Serialization.DynamicData? left, object? right) { throw null; } public static explicit operator System.DateTime (Azure.Core.Serialization.DynamicData value) { throw null; } public static explicit operator System.DateTimeOffset (Azure.Core.Serialization.DynamicData value) { throw null; } public static explicit operator System.Guid (Azure.Core.Serialization.DynamicData value) { throw null; } public static implicit operator bool (Azure.Core.Serialization.DynamicData? value) { throw null; } public static implicit operator byte (Azure.Core.Serialization.DynamicData value) { throw null; } public static implicit operator decimal (Azure.Core.Serialization.DynamicData? value) { throw null; } public static implicit operator double (Azure.Core.Serialization.DynamicData? value) { throw null; } public static implicit operator short (Azure.Core.Serialization.DynamicData value) { throw null; } public static implicit operator int (Azure.Core.Serialization.DynamicData value) { throw null; } public static implicit operator long (Azure.Core.Serialization.DynamicData value) { throw null; } public static implicit operator sbyte (Azure.Core.Serialization.DynamicData value) { throw null; } public static implicit operator float (Azure.Core.Serialization.DynamicData value) { throw null; } public static implicit operator string? (Azure.Core.Serialization.DynamicData? value) { throw null; } public static implicit operator ushort (Azure.Core.Serialization.DynamicData value) { throw null; } public static implicit operator uint (Azure.Core.Serialization.DynamicData? value) { throw null; } public static implicit operator ulong (Azure.Core.Serialization.DynamicData? value) { throw null; } public static bool operator !=(Azure.Core.Serialization.DynamicData? left, object? right) { throw null; } System.Dynamic.DynamicMetaObject System.Dynamic.IDynamicMetaObjectProvider.GetMetaObject(System.Linq.Expressions.Expression parameter) { throw null; } public override string ToString() { throw null; } } public partial interface IMemberNameConverter { string? ConvertMemberName(System.Reflection.MemberInfo member); } [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This class uses reflection-based JSON serialization and deserialization that is not compatible with trimming.")] public partial class JsonObjectSerializer : Azure.Core.Serialization.ObjectSerializer, Azure.Core.Serialization.IMemberNameConverter { public JsonObjectSerializer() { } public JsonObjectSerializer(System.Text.Json.JsonSerializerOptions options) { } public static Azure.Core.Serialization.JsonObjectSerializer Default { get { throw null; } } string? Azure.Core.Serialization.IMemberNameConverter.ConvertMemberName(System.Reflection.MemberInfo member) { throw null; } public override object? Deserialize(System.IO.Stream stream, System.Type returnType, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask DeserializeAsync(System.IO.Stream stream, System.Type returnType, System.Threading.CancellationToken cancellationToken) { throw null; } public override void Serialize(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken) { } public override System.BinaryData Serialize(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } public enum JsonPropertyNames { UseExact = 0, CamelCase = 1, } public abstract partial class ObjectSerializer { protected ObjectSerializer() { } public abstract object? Deserialize(System.IO.Stream stream, System.Type returnType, System.Threading.CancellationToken cancellationToken); public abstract System.Threading.Tasks.ValueTask DeserializeAsync(System.IO.Stream stream, System.Type returnType, System.Threading.CancellationToken cancellationToken); public abstract void Serialize(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken); public virtual System.BinaryData Serialize(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public abstract System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken); public virtual System.Threading.Tasks.ValueTask SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } } namespace Azure.Identity { [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class AuthenticationFailedException : System.Exception { [System.ObsoleteAttribute(DiagnosticId="SYSLIB0051")] protected AuthenticationFailedException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) { } public AuthenticationFailedException(string message) { } public AuthenticationFailedException(string message, System.Exception innerException) { } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class AuthenticationRecord { internal AuthenticationRecord() { } public string Authority { get { throw null; } } public string ClientId { get { throw null; } } public string HomeAccountId { get { throw null; } } public string TenantId { get { throw null; } } public string Username { get { throw null; } } public static Azure.Identity.AuthenticationRecord Deserialize(System.IO.Stream stream, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public static System.Threading.Tasks.Task DeserializeAsync(System.IO.Stream stream, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public void Serialize(System.IO.Stream stream, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { } public System.Threading.Tasks.Task SerializeAsync(System.IO.Stream stream, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class AuthenticationRequiredException : Azure.Identity.CredentialUnavailableException { [System.ObsoleteAttribute(DiagnosticId="SYSLIB0051")] protected AuthenticationRequiredException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base (default(string)) { } public AuthenticationRequiredException(string message, Azure.Core.TokenRequestContext context) : base (default(string)) { } public AuthenticationRequiredException(string message, Azure.Core.TokenRequestContext context, System.Exception innerException) : base (default(string)) { } public Azure.Core.TokenRequestContext TokenRequestContext { get { throw null; } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class AuthorizationCodeCredential : Azure.Core.TokenCredential { protected AuthorizationCodeCredential() { } public AuthorizationCodeCredential(string tenantId, string clientId, string clientSecret, string authorizationCode) { } public AuthorizationCodeCredential(string tenantId, string clientId, string clientSecret, string authorizationCode, Azure.Identity.AuthorizationCodeCredentialOptions options) { } public AuthorizationCodeCredential(string tenantId, string clientId, string clientSecret, string authorizationCode, Azure.Identity.TokenCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class AuthorizationCodeCredentialOptions : Azure.Identity.TokenCredentialOptions { public AuthorizationCodeCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public System.Uri RedirectUri { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public static partial class AzureAuthorityHosts { public static System.Uri AzureChina { get { throw null; } } [System.ObsoleteAttribute("Microsoft Cloud Germany was closed on October 29th, 2021.")] public static System.Uri AzureGermany { get { throw null; } } public static System.Uri AzureGovernment { get { throw null; } } public static System.Uri AzurePublicCloud { get { throw null; } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class AzureCliCredential : Azure.Core.TokenCredential { public AzureCliCredential() { } public AzureCliCredential(Azure.Identity.AzureCliCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class AzureCliCredentialOptions : Azure.Identity.TokenCredentialOptions { public AzureCliCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public System.TimeSpan? ProcessTimeout { get { throw null; } set { } } public string Subscription { get { throw null; } set { } } public string TenantId { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class AzureDeveloperCliCredential : Azure.Core.TokenCredential { public AzureDeveloperCliCredential() { } public AzureDeveloperCliCredential(Azure.Identity.AzureDeveloperCliCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class AzureDeveloperCliCredentialOptions : Azure.Identity.TokenCredentialOptions { public AzureDeveloperCliCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public System.TimeSpan? ProcessTimeout { get { throw null; } set { } } public string TenantId { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class AzurePipelinesCredential : Azure.Core.TokenCredential { protected AzurePipelinesCredential() { } public AzurePipelinesCredential(string tenantId, string clientId, string serviceConnectionId, string systemAccessToken, Azure.Identity.AzurePipelinesCredentialOptions options = null) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class AzurePipelinesCredentialOptions : Azure.Identity.TokenCredentialOptions { public AzurePipelinesCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public Azure.Identity.TokenCachePersistenceOptions TokenCachePersistenceOptions { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class AzurePowerShellCredential : Azure.Core.TokenCredential { public AzurePowerShellCredential() { } public AzurePowerShellCredential(Azure.Identity.AzurePowerShellCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class AzurePowerShellCredentialOptions : Azure.Identity.TokenCredentialOptions { public AzurePowerShellCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public System.TimeSpan? ProcessTimeout { get { throw null; } set { } } public string TenantId { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class BrowserCustomizationOptions { public BrowserCustomizationOptions() { } public string ErrorMessage { get { throw null; } set { } } public string SuccessMessage { get { throw null; } set { } } [System.ObsoleteAttribute("This option requires additional dependencies on Microsoft.Identity.Client.Desktop and is no longer supported. Consider using brokered authentication instead")] public bool? UseEmbeddedWebView { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class ChainedTokenCredential : Azure.Core.TokenCredential { protected ChainedTokenCredential() { } public ChainedTokenCredential(params Azure.Core.TokenCredential[] sources) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class ClientAssertionCredential : Azure.Core.TokenCredential { protected ClientAssertionCredential() { } public ClientAssertionCredential(string tenantId, string clientId, System.Func assertionCallback, Azure.Identity.ClientAssertionCredentialOptions options = null) { } public ClientAssertionCredential(string tenantId, string clientId, System.Func> assertionCallback, Azure.Identity.ClientAssertionCredentialOptions options = null) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class ClientAssertionCredentialOptions : Azure.Identity.TokenCredentialOptions { public ClientAssertionCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public Azure.Identity.TokenCachePersistenceOptions TokenCachePersistenceOptions { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class ClientCertificateCredential : Azure.Core.TokenCredential { protected ClientCertificateCredential() { } public ClientCertificateCredential(string tenantId, string clientId, System.Security.Cryptography.X509Certificates.X509Certificate2 clientCertificate) { } public ClientCertificateCredential(string tenantId, string clientId, System.Security.Cryptography.X509Certificates.X509Certificate2 clientCertificate, Azure.Identity.ClientCertificateCredentialOptions options) { } public ClientCertificateCredential(string tenantId, string clientId, System.Security.Cryptography.X509Certificates.X509Certificate2 clientCertificate, Azure.Identity.TokenCredentialOptions options) { } public ClientCertificateCredential(string tenantId, string clientId, string clientCertificatePath) { } public ClientCertificateCredential(string tenantId, string clientId, string clientCertificatePath, Azure.Identity.ClientCertificateCredentialOptions options) { } public ClientCertificateCredential(string tenantId, string clientId, string clientCertificatePath, Azure.Identity.TokenCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class ClientCertificateCredentialOptions : Azure.Identity.TokenCredentialOptions { public ClientCertificateCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public bool SendCertificateChain { get { throw null; } set { } } public Azure.Identity.TokenCachePersistenceOptions TokenCachePersistenceOptions { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class ClientSecretCredential : Azure.Core.TokenCredential { protected ClientSecretCredential() { } public ClientSecretCredential(string tenantId, string clientId, string clientSecret) { } public ClientSecretCredential(string tenantId, string clientId, string clientSecret, Azure.Identity.ClientSecretCredentialOptions options) { } public ClientSecretCredential(string tenantId, string clientId, string clientSecret, Azure.Identity.TokenCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class ClientSecretCredentialOptions : Azure.Identity.TokenCredentialOptions { public ClientSecretCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public Azure.Identity.TokenCachePersistenceOptions TokenCachePersistenceOptions { get { throw null; } set { } } } [System.Diagnostics.CodeAnalysis.ExperimentalAttribute("SCME0002")] [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public static partial class ConfigurationExtensions { public static System.ClientModel.Primitives.IClientBuilder AddAzureClient(this Microsoft.Extensions.Hosting.IHostApplicationBuilder host, string sectionName) where TClient : class where TSettings : System.ClientModel.Primitives.ClientSettings, new() { throw null; } public static System.ClientModel.Primitives.IClientBuilder AddAzureClient(this Microsoft.Extensions.Hosting.IHostApplicationBuilder host, string sectionName, System.Action configureSettings) where TClient : class where TSettings : System.ClientModel.Primitives.ClientSettings, new() { throw null; } public static System.ClientModel.Primitives.IClientBuilder AddKeyedAzureClient(this Microsoft.Extensions.Hosting.IHostApplicationBuilder host, string key, string sectionName) where TClient : class where TSettings : System.ClientModel.Primitives.ClientSettings, new() { throw null; } public static System.ClientModel.Primitives.IClientBuilder AddKeyedAzureClient(this Microsoft.Extensions.Hosting.IHostApplicationBuilder host, string key, string sectionName, System.Action configureSettings) where TClient : class where TSettings : System.ClientModel.Primitives.ClientSettings, new() { throw null; } public static T GetAzureClientSettings(this Microsoft.Extensions.Configuration.IConfiguration configuration, string sectionName) where T : System.ClientModel.Primitives.ClientSettings, new() { throw null; } public static System.ClientModel.Primitives.IClientBuilder WithAzureCredential(this System.ClientModel.Primitives.IClientBuilder clientBuilder) { throw null; } public static T WithAzureCredential(this T settings) where T : System.ClientModel.Primitives.ClientSettings { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class CredentialUnavailableException : Azure.Identity.AuthenticationFailedException { [System.ObsoleteAttribute(DiagnosticId="SYSLIB0051")] protected CredentialUnavailableException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base (default(string)) { } public CredentialUnavailableException(string message) : base (default(string)) { } public CredentialUnavailableException(string message, System.Exception innerException) : base (default(string)) { } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class DefaultAzureCredential : Azure.Core.TokenCredential { public const string DefaultEnvironmentVariableName = "AZURE_TOKEN_CREDENTIALS"; protected DefaultAzureCredential() { } public DefaultAzureCredential(Azure.Identity.DefaultAzureCredentialOptions options) { } public DefaultAzureCredential(bool includeInteractiveCredentials = false) { } public DefaultAzureCredential(string configurationEnvironmentVariableName, Azure.Identity.DefaultAzureCredentialOptions options = null) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class DefaultAzureCredentialOptions : Azure.Identity.TokenCredentialOptions { public DefaultAzureCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public System.TimeSpan? CredentialProcessTimeout { get { throw null; } set { } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public bool ExcludeAzureCliCredential { get { throw null; } set { } } public bool ExcludeAzureDeveloperCliCredential { get { throw null; } set { } } public bool ExcludeAzurePowerShellCredential { get { throw null; } set { } } public bool ExcludeBrokerCredential { get { throw null; } set { } } public bool ExcludeEnvironmentCredential { get { throw null; } set { } } public bool ExcludeInteractiveBrowserCredential { get { throw null; } set { } } public bool ExcludeManagedIdentityCredential { get { throw null; } set { } } [System.ObsoleteAttribute("SharedTokenCacheCredential is deprecated. Consider using other dev tool credentials, such as VisualStudioCredential.")] public bool ExcludeSharedTokenCacheCredential { get { throw null; } set { } } public bool ExcludeVisualStudioCodeCredential { get { throw null; } set { } } public bool ExcludeVisualStudioCredential { get { throw null; } set { } } public bool ExcludeWorkloadIdentityCredential { get { throw null; } set { } } public string InteractiveBrowserCredentialClientId { get { throw null; } set { } } public string InteractiveBrowserTenantId { get { throw null; } set { } } public string ManagedIdentityClientId { get { throw null; } set { } } public Azure.Core.ResourceIdentifier ManagedIdentityResourceId { get { throw null; } set { } } public string SharedTokenCacheTenantId { get { throw null; } set { } } [System.ObsoleteAttribute("SharedTokenCacheCredential is deprecated. Consider using other dev tool credentials, such as VisualStudioCredential.")] public string SharedTokenCacheUsername { get { throw null; } set { } } public string TenantId { get { throw null; } set { } } public string VisualStudioCodeTenantId { get { throw null; } set { } } public string VisualStudioTenantId { get { throw null; } set { } } public string WorkloadIdentityClientId { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class DeviceCodeCredential : Azure.Core.TokenCredential { public DeviceCodeCredential() { } public DeviceCodeCredential(Azure.Identity.DeviceCodeCredentialOptions options) { } public DeviceCodeCredential(System.Func deviceCodeCallback, string clientId, Azure.Identity.TokenCredentialOptions options = null) { } public DeviceCodeCredential(System.Func deviceCodeCallback, string tenantId, string clientId, Azure.Identity.TokenCredentialOptions options = null) { } public virtual Azure.Identity.AuthenticationRecord Authenticate(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Identity.AuthenticationRecord Authenticate(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task AuthenticateAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task AuthenticateAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class DeviceCodeCredentialOptions : Azure.Identity.TokenCredentialOptions { public DeviceCodeCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public Azure.Identity.AuthenticationRecord AuthenticationRecord { get { throw null; } set { } } public string ClientId { get { throw null; } set { } } public System.Func DeviceCodeCallback { get { throw null; } set { } } public bool DisableAutomaticAuthentication { get { throw null; } set { } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public string TenantId { get { throw null; } set { } } public Azure.Identity.TokenCachePersistenceOptions TokenCachePersistenceOptions { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct DeviceCodeInfo { private object _dummy; private int _dummyPrimitive; public string ClientId { get { throw null; } } public string DeviceCode { get { throw null; } } public System.DateTimeOffset ExpiresOn { get { throw null; } } public string Message { get { throw null; } } public System.Collections.Generic.IReadOnlyCollection Scopes { get { throw null; } } public string UserCode { get { throw null; } } public System.Uri VerificationUri { get { throw null; } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class EnvironmentCredential : Azure.Core.TokenCredential { public EnvironmentCredential() { } public EnvironmentCredential(Azure.Identity.EnvironmentCredentialOptions options) { } public EnvironmentCredential(Azure.Identity.TokenCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class EnvironmentCredentialOptions : Azure.Identity.TokenCredentialOptions { public EnvironmentCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public bool DisableInstanceDiscovery { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public static partial class IdentityModelFactory { public static Azure.Identity.AuthenticationRecord AuthenticationRecord(string username, string authority, string homeAccountId, string tenantId, string clientId) { throw null; } public static Azure.Identity.DeviceCodeInfo DeviceCodeInfo(string userCode, string deviceCode, System.Uri verificationUri, System.DateTimeOffset expiresOn, string message, string clientId, System.Collections.Generic.IReadOnlyCollection scopes) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class InteractiveBrowserCredential : Azure.Core.TokenCredential { public InteractiveBrowserCredential() { } public InteractiveBrowserCredential(Azure.Identity.InteractiveBrowserCredentialOptions options) { } public InteractiveBrowserCredential(string clientId) { } public InteractiveBrowserCredential(string tenantId, string clientId, Azure.Identity.TokenCredentialOptions options = null) { } public virtual Azure.Identity.AuthenticationRecord Authenticate(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Identity.AuthenticationRecord Authenticate(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task AuthenticateAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task AuthenticateAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class InteractiveBrowserCredentialOptions : Azure.Identity.TokenCredentialOptions { public InteractiveBrowserCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public Azure.Identity.AuthenticationRecord AuthenticationRecord { get { throw null; } set { } } public Azure.Identity.BrowserCustomizationOptions BrowserCustomization { get { throw null; } set { } } public string ClientId { get { throw null; } set { } } public bool DisableAutomaticAuthentication { get { throw null; } set { } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public string LoginHint { get { throw null; } set { } } public System.Uri RedirectUri { get { throw null; } set { } } public string TenantId { get { throw null; } set { } } public Azure.Identity.TokenCachePersistenceOptions TokenCachePersistenceOptions { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class ManagedIdentityCredential : Azure.Core.TokenCredential { protected ManagedIdentityCredential() { } [System.ObsoleteAttribute("Use constructor ManagedIdentityCredential(ManagedIdentityId id) or ManagedIdentityCredential(ManagedIdentityCredentialOptions options).")] public ManagedIdentityCredential(Azure.Core.ResourceIdentifier resourceId, Azure.Identity.TokenCredentialOptions options = null) { } public ManagedIdentityCredential(Azure.Identity.ManagedIdentityCredentialOptions options) { } public ManagedIdentityCredential(Azure.Identity.ManagedIdentityId id) { } [System.ObsoleteAttribute("Use constructor ManagedIdentityCredential(ManagedIdentityId id) or ManagedIdentityCredential(ManagedIdentityCredentialOptions options).")] public ManagedIdentityCredential(string clientId = null, Azure.Identity.TokenCredentialOptions options = null) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class ManagedIdentityCredentialOptions : Azure.Identity.TokenCredentialOptions { public ManagedIdentityCredentialOptions(Azure.Identity.ManagedIdentityId managedIdentityId = null) { } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class ManagedIdentityId { internal ManagedIdentityId() { } public static Azure.Identity.ManagedIdentityId SystemAssigned { get { throw null; } } public static Azure.Identity.ManagedIdentityId FromUserAssignedClientId(string id) { throw null; } public static Azure.Identity.ManagedIdentityId FromUserAssignedObjectId(string id) { throw null; } public static Azure.Identity.ManagedIdentityId FromUserAssignedResourceId(Azure.Core.ResourceIdentifier id) { throw null; } public override string ToString() { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class OnBehalfOfCredential : Azure.Core.TokenCredential { protected OnBehalfOfCredential() { } public OnBehalfOfCredential(string tenantId, string clientId, System.Func clientAssertionCallback, string userAssertion, Azure.Identity.OnBehalfOfCredentialOptions options = null) { } public OnBehalfOfCredential(string tenantId, string clientId, System.Func> clientAssertionCallback, string userAssertion, Azure.Identity.OnBehalfOfCredentialOptions options = null) { } public OnBehalfOfCredential(string tenantId, string clientId, System.Security.Cryptography.X509Certificates.X509Certificate2 clientCertificate, string userAssertion) { } public OnBehalfOfCredential(string tenantId, string clientId, System.Security.Cryptography.X509Certificates.X509Certificate2 clientCertificate, string userAssertion, Azure.Identity.OnBehalfOfCredentialOptions options) { } public OnBehalfOfCredential(string tenantId, string clientId, string clientSecret, string userAssertion) { } public OnBehalfOfCredential(string tenantId, string clientId, string clientSecret, string userAssertion, Azure.Identity.OnBehalfOfCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class OnBehalfOfCredentialOptions : Azure.Identity.TokenCredentialOptions { public OnBehalfOfCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public bool SendCertificateChain { get { throw null; } set { } } public Azure.Identity.TokenCachePersistenceOptions TokenCachePersistenceOptions { get { throw null; } set { } } } [System.ObsoleteAttribute("This credential is deprecated. Consider using other dev tool credentials, such as VisualStudioCredential.")] [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class SharedTokenCacheCredential : Azure.Core.TokenCredential { public SharedTokenCacheCredential() { } public SharedTokenCacheCredential(Azure.Identity.SharedTokenCacheCredentialOptions options) { } public SharedTokenCacheCredential(string username, Azure.Identity.TokenCredentialOptions options = null) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.ObsoleteAttribute("SharedTokenCacheCredential is deprecated. Consider using other dev tool credentials, such as VisualStudioCredential.")] [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class SharedTokenCacheCredentialOptions : Azure.Identity.TokenCredentialOptions { public SharedTokenCacheCredentialOptions() { } public SharedTokenCacheCredentialOptions(Azure.Identity.TokenCachePersistenceOptions tokenCacheOptions) { } public Azure.Identity.AuthenticationRecord AuthenticationRecord { get { throw null; } set { } } public string ClientId { get { throw null; } set { } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public bool EnableGuestTenantAuthentication { get { throw null; } set { } } public string TenantId { get { throw null; } set { } } public Azure.Identity.TokenCachePersistenceOptions TokenCachePersistenceOptions { get { throw null; } set { } } public string Username { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public partial struct TokenCacheData { private object _dummy; private int _dummyPrimitive; public TokenCacheData(System.ReadOnlyMemory cacheBytes) { throw null; } public System.ReadOnlyMemory CacheBytes { get { throw null; } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class TokenCachePersistenceOptions { public TokenCachePersistenceOptions() { } public string Name { get { throw null; } set { } } public bool UnsafeAllowUnencryptedStorage { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class TokenCacheRefreshArgs { internal TokenCacheRefreshArgs() { } public bool IsCaeEnabled { get { throw null; } } public string SuggestedCacheKey { get { throw null; } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class TokenCacheUpdatedArgs { internal TokenCacheUpdatedArgs() { } public bool IsCaeEnabled { get { throw null; } } public System.ReadOnlyMemory UnsafeCacheData { get { throw null; } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class TokenCredentialDiagnosticsOptions : Azure.Core.DiagnosticsOptions { public TokenCredentialDiagnosticsOptions() { } public bool IsAccountIdentifierLoggingEnabled { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class TokenCredentialOptions : Azure.Core.ClientOptions { public TokenCredentialOptions() { } [System.Diagnostics.CodeAnalysis.ExperimentalAttribute("AZID0001")] public System.Collections.Generic.IDictionary AdditionalQueryParameters { get { throw null; } } public System.Uri AuthorityHost { get { throw null; } set { } } public new Azure.Identity.TokenCredentialDiagnosticsOptions Diagnostics { get { throw null; } } public bool IsUnsafeSupportLoggingEnabled { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public abstract partial class UnsafeTokenCacheOptions : Azure.Identity.TokenCachePersistenceOptions { protected UnsafeTokenCacheOptions() { } protected internal abstract System.Threading.Tasks.Task> RefreshCacheAsync(); protected internal virtual System.Threading.Tasks.Task RefreshCacheAsync(Azure.Identity.TokenCacheRefreshArgs args, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } protected internal abstract System.Threading.Tasks.Task TokenCacheUpdatedAsync(Azure.Identity.TokenCacheUpdatedArgs tokenCacheUpdatedArgs); } [System.ObsoleteAttribute("This credential is deprecated because it doesn't support multifactor authentication (MFA). See https://aka.ms/azsdk/identity/mfa for details about MFA enforcement for Microsoft Entra ID and migration guidance.")] [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class UsernamePasswordCredential : Azure.Core.TokenCredential { protected UsernamePasswordCredential() { } public UsernamePasswordCredential(string username, string password, string tenantId, string clientId) { } public UsernamePasswordCredential(string username, string password, string tenantId, string clientId, Azure.Identity.TokenCredentialOptions options) { } public UsernamePasswordCredential(string username, string password, string tenantId, string clientId, Azure.Identity.UsernamePasswordCredentialOptions options) { } public virtual Azure.Identity.AuthenticationRecord Authenticate(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Identity.AuthenticationRecord Authenticate(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task AuthenticateAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task AuthenticateAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.ObsoleteAttribute("This credential is deprecated because it doesn't support multifactor authentication (MFA). See https://aka.ms/azsdk/identity/mfa for details about MFA enforcement for Microsoft Entra ID and migration guidance.")] [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class UsernamePasswordCredentialOptions : Azure.Identity.TokenCredentialOptions { public UsernamePasswordCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public bool DisableInstanceDiscovery { get { throw null; } set { } } public Azure.Identity.TokenCachePersistenceOptions TokenCachePersistenceOptions { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class VisualStudioCodeCredential : Azure.Identity.InteractiveBrowserCredential { public VisualStudioCodeCredential() { } public VisualStudioCodeCredential(Azure.Identity.VisualStudioCodeCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class VisualStudioCodeCredentialOptions : Azure.Identity.TokenCredentialOptions { public VisualStudioCodeCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public string TenantId { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class VisualStudioCredential : Azure.Core.TokenCredential { public VisualStudioCredential() { } public VisualStudioCredential(Azure.Identity.VisualStudioCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class VisualStudioCredentialOptions : Azure.Identity.TokenCredentialOptions { public VisualStudioCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public System.TimeSpan? ProcessTimeout { get { throw null; } set { } } public string TenantId { get { throw null; } set { } } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] [System.Runtime.Versioning.UnsupportedOSPlatformAttribute("browser")] public partial class WorkloadIdentityCredential : Azure.Core.TokenCredential { public WorkloadIdentityCredential() { } public WorkloadIdentityCredential(Azure.Identity.WorkloadIdentityCredentialOptions options) { } public override Azure.Core.AccessToken GetToken(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public override System.Threading.Tasks.ValueTask GetTokenAsync(Azure.Core.TokenRequestContext requestContext, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } } [System.Runtime.CompilerServices.TypeForwardedFromAttribute("Azure.Identity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=92742159e12e44c8")] public partial class WorkloadIdentityCredentialOptions : Azure.Identity.TokenCredentialOptions { public WorkloadIdentityCredentialOptions() { } public System.Collections.Generic.IList AdditionallyAllowedTenants { get { throw null; } } public string ClientId { get { throw null; } set { } } public bool DisableInstanceDiscovery { get { throw null; } set { } } [System.Diagnostics.CodeAnalysis.ExperimentalAttribute("AZID0002")] public bool IsAzureProxyEnabled { get { throw null; } set { } } public string TenantId { get { throw null; } set { } } public string TokenFilePath { get { throw null; } set { } } } } namespace Azure.Messaging { [System.Diagnostics.CodeAnalysis.RequiresDynamicCodeAttribute("This utilizes reflection-based JSON serialization and deserialization which is not compatible with trimming.")] public partial class CloudEvent { public CloudEvent(string source, string type, System.BinaryData? data, string? dataContentType, Azure.Messaging.CloudEventDataFormat dataFormat = Azure.Messaging.CloudEventDataFormat.Binary) { } public CloudEvent(string source, string type, object? jsonSerializableData, System.Type? dataSerializationType = null) { } public System.BinaryData? Data { get { throw null; } set { } } public string? DataContentType { get { throw null; } set { } } public string? DataSchema { get { throw null; } set { } } public System.Collections.Generic.IDictionary ExtensionAttributes { get { throw null; } } public string Id { get { throw null; } set { } } public string Source { get { throw null; } set { } } public string? Subject { get { throw null; } set { } } public System.DateTimeOffset? Time { get { throw null; } set { } } public string Type { get { throw null; } set { } } public static Azure.Messaging.CloudEvent? Parse(System.BinaryData json, bool skipValidation = false) { throw null; } public static Azure.Messaging.CloudEvent[] ParseMany(System.BinaryData json, bool skipValidation = false) { throw null; } } public enum CloudEventDataFormat { Binary = 0, Json = 1, } public partial class MessageContent { public MessageContent() { } public virtual Azure.Core.ContentType? ContentType { get { throw null; } set { } } protected virtual Azure.Core.ContentType? ContentTypeCore { get { throw null; } set { } } public virtual System.BinaryData? Data { get { throw null; } set { } } public virtual bool IsReadOnly { get { throw null; } } } }