diff --git a/src/libs/RevAI/Generated/RevAI.AccountClient.g.cs b/src/libs/RevAI/Generated/RevAI.AccountClient.g.cs index d24fcc6..4f7b055 100644 --- a/src/libs/RevAI/Generated/RevAI.AccountClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.AccountClient.g.cs @@ -62,6 +62,27 @@ public AccountClient( { } + /// + /// Creates a new instance of the AccountClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public AccountClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the AccountClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.CaptionsClient.g.cs b/src/libs/RevAI/Generated/RevAI.CaptionsClient.g.cs index b3d77e9..074849b 100644 --- a/src/libs/RevAI/Generated/RevAI.CaptionsClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.CaptionsClient.g.cs @@ -62,6 +62,27 @@ public CaptionsClient( { } + /// + /// Creates a new instance of the CaptionsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public CaptionsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the CaptionsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.LanguageIdentificationJobsClient.g.cs b/src/libs/RevAI/Generated/RevAI.LanguageIdentificationJobsClient.g.cs index f839924..642f5d1 100644 --- a/src/libs/RevAI/Generated/RevAI.LanguageIdentificationJobsClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.LanguageIdentificationJobsClient.g.cs @@ -62,6 +62,27 @@ public LanguageIdentificationJobsClient( { } + /// + /// Creates a new instance of the LanguageIdentificationJobsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public LanguageIdentificationJobsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the LanguageIdentificationJobsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.LanguageIdentificationResultsClient.g.cs b/src/libs/RevAI/Generated/RevAI.LanguageIdentificationResultsClient.g.cs index 23366fe..97acb4b 100644 --- a/src/libs/RevAI/Generated/RevAI.LanguageIdentificationResultsClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.LanguageIdentificationResultsClient.g.cs @@ -62,6 +62,27 @@ public LanguageIdentificationResultsClient( { } + /// + /// Creates a new instance of the LanguageIdentificationResultsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public LanguageIdentificationResultsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the LanguageIdentificationResultsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.RevAIClient.g.cs b/src/libs/RevAI/Generated/RevAI.RevAIClient.g.cs index 4809811..c34fbd8 100644 --- a/src/libs/RevAI/Generated/RevAI.RevAIClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.RevAIClient.g.cs @@ -153,6 +153,27 @@ public RevAIClient( { } + /// + /// Creates a new instance of the RevAIClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public RevAIClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the RevAIClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.SentimentAnalysisJobsClient.g.cs b/src/libs/RevAI/Generated/RevAI.SentimentAnalysisJobsClient.g.cs index a8cccd1..8ae856f 100644 --- a/src/libs/RevAI/Generated/RevAI.SentimentAnalysisJobsClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.SentimentAnalysisJobsClient.g.cs @@ -62,6 +62,27 @@ public SentimentAnalysisJobsClient( { } + /// + /// Creates a new instance of the SentimentAnalysisJobsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public SentimentAnalysisJobsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the SentimentAnalysisJobsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.SentimentAnalysisResultsClient.g.cs b/src/libs/RevAI/Generated/RevAI.SentimentAnalysisResultsClient.g.cs index 9947507..5b7ef3f 100644 --- a/src/libs/RevAI/Generated/RevAI.SentimentAnalysisResultsClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.SentimentAnalysisResultsClient.g.cs @@ -62,6 +62,27 @@ public SentimentAnalysisResultsClient( { } + /// + /// Creates a new instance of the SentimentAnalysisResultsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public SentimentAnalysisResultsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the SentimentAnalysisResultsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.TopicExtractionJobsClient.g.cs b/src/libs/RevAI/Generated/RevAI.TopicExtractionJobsClient.g.cs index 9e3e0cd..40237b7 100644 --- a/src/libs/RevAI/Generated/RevAI.TopicExtractionJobsClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.TopicExtractionJobsClient.g.cs @@ -62,6 +62,27 @@ public TopicExtractionJobsClient( { } + /// + /// Creates a new instance of the TopicExtractionJobsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public TopicExtractionJobsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the TopicExtractionJobsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.TopicExtractionResultsClient.g.cs b/src/libs/RevAI/Generated/RevAI.TopicExtractionResultsClient.g.cs index 55cc827..228029a 100644 --- a/src/libs/RevAI/Generated/RevAI.TopicExtractionResultsClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.TopicExtractionResultsClient.g.cs @@ -62,6 +62,27 @@ public TopicExtractionResultsClient( { } + /// + /// Creates a new instance of the TopicExtractionResultsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public TopicExtractionResultsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the TopicExtractionResultsClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.TranscriptClient.g.cs b/src/libs/RevAI/Generated/RevAI.TranscriptClient.g.cs index 41f9464..94cb778 100644 --- a/src/libs/RevAI/Generated/RevAI.TranscriptClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.TranscriptClient.g.cs @@ -62,6 +62,27 @@ public TranscriptClient( { } + /// + /// Creates a new instance of the TranscriptClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public TranscriptClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the TranscriptClient. /// If no httpClient is provided, a new one will be created. diff --git a/src/libs/RevAI/Generated/RevAI.TranscriptionJobsClient.g.cs b/src/libs/RevAI/Generated/RevAI.TranscriptionJobsClient.g.cs index 8d5cd01..da7dad6 100644 --- a/src/libs/RevAI/Generated/RevAI.TranscriptionJobsClient.g.cs +++ b/src/libs/RevAI/Generated/RevAI.TranscriptionJobsClient.g.cs @@ -62,6 +62,27 @@ public TranscriptionJobsClient( { } + /// + /// Creates a new instance of the TranscriptionJobsClient with explicit options but no base URL override. + /// Skips passing baseUri so the default base URL from the OpenAPI spec applies. + /// + /// The HttpClient instance. If not provided, a new one will be created. + /// The authorizations to use for the requests. + /// Client-wide request defaults such as headers, query parameters, retries, and timeout. + /// Dispose the HttpClient when the instance is disposed. True by default. + public TranscriptionJobsClient( + global::System.Net.Http.HttpClient? httpClient, + global::System.Collections.Generic.List? authorizations, + global::RevAI.AutoSDKClientOptions? options, + bool disposeHttpClient = true) : this( + httpClient, + baseUri: null, + authorizations, + options, + disposeHttpClient: disposeHttpClient) + { + } + /// /// Creates a new instance of the TranscriptionJobsClient. /// If no httpClient is provided, a new one will be created.