Documentation ¶
Index ¶
- func AzureEnvironmentByNameFromEndpoint(ctx context.Context, endpoint string, environmentName string) (*azure.Environment, error)
- func DetermineEnvironment(name string) (*azure.Environment, error)
- func IsEnvironmentAzureStack(ctx context.Context, endpoint string, environmentName string) (bool, error)
- func LoadEnvironmentFromUrl(endpoint string) (*azure.Environment, error)
- type Authentication
- type Builder
- type Config
- func (c Config) BearerAuthorizerCallback(sender autorest.Sender, oauthConfig *OAuthConfig) *autorest.BearerAuthorizerCallback
- func (c Config) BuildOAuthConfig(activeDirectoryEndpoint string) (*OAuthConfig, error)
- func (c Config) GetAuthorizationToken(sender autorest.Sender, oauth *OAuthConfig, endpoint string) (autorest.Authorizer, error)
- func (c Config) GetMultiTenantOAuthConfig(activeDirectoryEndpoint string) (*adal.MultiTenantOAuthConfig, error)
- func (c Config) GetOAuthConfig(activeDirectoryEndpoint string) (*adal.OAuthConfig, error)
- type Environment
- type OAuthConfig
- type Suffixes
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func AzureEnvironmentByNameFromEndpoint ¶ added in v0.11.0
func AzureEnvironmentByNameFromEndpoint(ctx context.Context, endpoint string, environmentName string) (*azure.Environment, error)
AzureEnvironmentByName returns a specific Azure Environment from the specified endpoint
func DetermineEnvironment ¶
func DetermineEnvironment(name string) (*azure.Environment, error)
DetermineEnvironment determines what the Environment name is within the Azure SDK for Go and then returns the association environment, if it exists.
func IsEnvironmentAzureStack ¶ added in v0.11.0
func IsEnvironmentAzureStack(ctx context.Context, endpoint string, environmentName string) (bool, error)
IsEnvironmentAzureStack returns whether a specific Azure Environment is an Azure Stack environment
func LoadEnvironmentFromUrl ¶ added in v0.1.1
func LoadEnvironmentFromUrl(endpoint string) (*azure.Environment, error)
LoadEnvironmentFromUrl attempts to load the specified environment from the endpoint. if the endpoint is an empty string, or an environment can't be found at the endpoint url then an error is returned
Types ¶
type Authentication ¶ added in v0.11.0
type Builder ¶
type Builder struct { // Core ClientID string SubscriptionID string TenantID string TenantOnly bool Environment string MetadataHost string // Auxiliary tenant IDs used for multi tenant auth SupportsAuxiliaryTenants bool AuxiliaryTenantIDs []string // The custom Resource Manager Endpoint which should be used // only applicable for Azure Stack at this time. CustomResourceManagerEndpoint string // Azure CLI Tokens Auth SupportsAzureCliToken bool // Managed Service Identity Auth SupportsManagedServiceIdentity bool MsiEndpoint string // Service Principal (Client Cert) Auth SupportsClientCertAuth bool ClientCertPath string ClientCertPassword string // Service Principal (Client Secret) Auth SupportsClientSecretAuth bool ClientSecret string ClientSecretDocsLink string }
Builder supports all of the possible Authentication values and feature toggles required to build a working Config for Authentication purposes.
type Config ¶
type Config struct { ClientID string SubscriptionID string TenantID string AuxiliaryTenantIDs []string Environment string MetadataHost string GetAuthenticatedObjectID func(context.Context) (string, error) AuthenticatedAsAServicePrincipal bool // A Custom Resource Manager Endpoint // at this time this should only be applicable for Azure Stack. CustomResourceManagerEndpoint string // contains filtered or unexported fields }
Config is the configuration structure used to instantiate a new Azure management client.
func (Config) BearerAuthorizerCallback ¶ added in v0.7.0
func (c Config) BearerAuthorizerCallback(sender autorest.Sender, oauthConfig *OAuthConfig) *autorest.BearerAuthorizerCallback
BearerAuthorizerCallback returns a BearerAuthorizer valid only for the Primary Tenant this signs a request using the AccessToken returned from the primary Resource Manager authorizer
func (Config) BuildOAuthConfig ¶ added in v0.7.0
func (c Config) BuildOAuthConfig(activeDirectoryEndpoint string) (*OAuthConfig, error)
BuildOAuthConfig builds the authorization configuration for the specified Active Directory Endpoint
func (Config) GetAuthorizationToken ¶
func (c Config) GetAuthorizationToken(sender autorest.Sender, oauth *OAuthConfig, endpoint string) (autorest.Authorizer, error)
GetAuthorizationToken returns an authorization token for the authentication method defined in the Config
func (Config) GetMultiTenantOAuthConfig ¶ added in v0.6.0
func (c Config) GetMultiTenantOAuthConfig(activeDirectoryEndpoint string) (*adal.MultiTenantOAuthConfig, error)
GetMultiTenantOAuthConfig returns a multi-tenant authorization token for the authentication method defined in the Config
func (Config) GetOAuthConfig ¶ added in v0.6.0
func (c Config) GetOAuthConfig(activeDirectoryEndpoint string) (*adal.OAuthConfig, error)
GetAuthorizationToken returns an authorization token for the authentication method defined in the Config
type Environment ¶ added in v0.11.0
type Environment struct { Portal string `json:"portal"` Authentication Authentication `json:"authentication"` Media string `json:"media"` GraphAudience string `json:"graphAudience"` Graph string `json:"graph"` Name string `json:"name"` Suffixes Suffixes `json:"suffixes"` Batch string `json:"batch"` ResourceManager string `json:"resourceManager"` VmImageAliasDoc string `json:"vmImageAliasDoc"` ActiveDirectoryDataLake string `json:"activeDirectoryDataLake"` SqlManagement string `json:"sqlManagement"` Gallery string `json:"gallery"` }
type OAuthConfig ¶ added in v0.7.0
type OAuthConfig struct { OAuth *adal.OAuthConfig MultiTenantOauth *adal.MultiTenantOAuthConfig }
type Suffixes ¶ added in v0.11.0
type Suffixes struct { AzureDataLakeStoreFileSystem string `json:"azureDataLakeStoreFileSystem"` AcrLoginServer string `json:"acrLoginServer"` SqlServerHostname string `json:"sqlServerHostname"` AzureDataLakeAnalyticsCatalogAndJob string `json:"azureDataLakeAnalyticsCatalogAndJob"` KeyVaultDns string `json:"keyVaultDns"` Storage string `json:"storage"` AzureFrontDoorEndpointSuffix string `json:"azureFrontDoorEndpointSuffix"` }
Source Files ¶
- auth_method.go
- auth_method_azure_cli_token.go
- auth_method_azure_cli_token_multi_tenant.go
- auth_method_client_cert.go
- auth_method_client_secret.go
- auth_method_client_secret_multi_tenant.go
- auth_method_msi.go
- azure_cli_access_token.go
- azure_cli_profile_multi_tenant.go
- azure_cli_profile_multi_tenant_population.go
- azure_sp_objectid.go
- builder.go
- config.go
- environment.go