Interface AzureOptions

All Superinterfaces:
HasDisplayData, PipelineOptions
All Known Subinterfaces:
BlobstoreOptions, CosmosOptions

public interface AzureOptions extends PipelineOptions
  • Method Details

    • getAzureCredentialsProvider

      @InstanceFactory(AzureUserCredentialsFactory.class) com.azure.core.credential.TokenCredential getAzureCredentialsProvider()
      The credential instance that should be used to authenticate against Azure services. The option value must contain a "@type" field and an Azure credentials provider class as the field value.

      For example, to specify the Azure client id, tenant id, and client secret, specify the following: {"@type" : "ClientSecretCredential", "azureClientId": "client_id_value", "azureTenantId": "tenant_id_value", "azureClientSecret": "client_secret_value"}

    • setAzureCredentialsProvider

      void setAzureCredentialsProvider(com.azure.core.credential.TokenCredential value)