/** * AzureEnvironmentType specifies the Azure cloud environment endpoints to use for * connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint. * The following endpoints are available, also see here: https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152 * PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud */ export type IAzureEnvironmentType = "PublicCloud" | "USGovernmentCloud" | "ChinaCloud" | "GermanCloud"; export type AzureEnvironmentType = IAzureEnvironmentType; export type { IAzureEnvironmentType as IComGithubExternalSecretsExternalSecretsApisExternalsecretsV1beta1AzureEnvironmentType, AzureEnvironmentType as ComGithubExternalSecretsExternalSecretsApisExternalsecretsV1beta1AzureEnvironmentType };