Documentation ¶
Overview ¶
Code generated by client-gen. DO NOT EDIT.
Code generated by client-gen. DO NOT EDIT.
Index ¶
- Constants
- Variables
- func AzureCloudConfigFromName(cloudName string) *cloud.Configuration
- func AzureCloudConfigFromURL(endpoint string) (*cloud.Configuration, error)
- func AzureCloudConfigOverrideFromEnv(config *cloud.Configuration) (*cloud.Configuration, error)
- func GetAzCoreClientOption(armConfig *ARMClientConfig) (*policy.ClientOptions, error)
- func GetAzureCloudConfig(armConfig *ARMClientConfig) (*cloud.Configuration, error)
- func GetDefaultResourceClientOption(armConfig *ARMClientConfig, factoryConfig *ClientFactoryConfig) (*policy.ClientOptions, error)
- func IsMultiTenant(armConfig *ARMClientConfig) bool
- type ARMClientConfig
- type AuthProvider
- func (factory *AuthProvider) GetAzIdentity() azcore.TokenCredential
- func (factory *AuthProvider) GetMultiTenantIdentity() azcore.TokenCredential
- func (factory *AuthProvider) GetNetworkAzIdentity() azcore.TokenCredential
- func (factory *AuthProvider) IsMultiTenantModeEnabled() bool
- func (factory *AuthProvider) TokenScope() string
- type AzureAuthAuxiliaryTokenProvider
- type AzureAuthConfig
- type ClientFactory
- type ClientFactoryConfig
- type ClientFactoryImpl
- func (factory *ClientFactoryImpl) GetAccountClient() accountclient.Interface
- func (factory *ClientFactoryImpl) GetAccountClientForSub(subscriptionID string) (accountclient.Interface, error)
- func (factory *ClientFactoryImpl) GetAvailabilitySetClient() availabilitysetclient.Interface
- func (factory *ClientFactoryImpl) GetBlobContainerClient() blobcontainerclient.Interface
- func (factory *ClientFactoryImpl) GetBlobContainerClientForSub(subscriptionID string) (blobcontainerclient.Interface, error)
- func (factory *ClientFactoryImpl) GetBlobServicePropertiesClient() blobservicepropertiesclient.Interface
- func (factory *ClientFactoryImpl) GetDeploymentClient() deploymentclient.Interface
- func (factory *ClientFactoryImpl) GetDiskClient() diskclient.Interface
- func (factory *ClientFactoryImpl) GetDiskClientForSub(subscriptionID string) (diskclient.Interface, error)
- func (factory *ClientFactoryImpl) GetFileShareClient() fileshareclient.Interface
- func (factory *ClientFactoryImpl) GetFileShareClientForSub(subscriptionID string) (fileshareclient.Interface, error)
- func (factory *ClientFactoryImpl) GetIPGroupClient() ipgroupclient.Interface
- func (factory *ClientFactoryImpl) GetInterfaceClient() interfaceclient.Interface
- func (factory *ClientFactoryImpl) GetLoadBalancerClient() loadbalancerclient.Interface
- func (factory *ClientFactoryImpl) GetManagedClusterClient() managedclusterclient.Interface
- func (factory *ClientFactoryImpl) GetPrivateEndpointClient() privateendpointclient.Interface
- func (factory *ClientFactoryImpl) GetPrivateLinkServiceClient() privatelinkserviceclient.Interface
- func (factory *ClientFactoryImpl) GetPrivateZoneClient() privatezoneclient.Interface
- func (factory *ClientFactoryImpl) GetProviderClient() providerclient.Interface
- func (factory *ClientFactoryImpl) GetPublicIPAddressClient() publicipaddressclient.Interface
- func (factory *ClientFactoryImpl) GetPublicIPPrefixClient() publicipprefixclient.Interface
- func (factory *ClientFactoryImpl) GetRegistryClient() registryclient.Interface
- func (factory *ClientFactoryImpl) GetResourceGroupClient() resourcegroupclient.Interface
- func (factory *ClientFactoryImpl) GetRouteTableClient() routetableclient.Interface
- func (factory *ClientFactoryImpl) GetSSHPublicKeyResourceClient() sshpublickeyresourceclient.Interface
- func (factory *ClientFactoryImpl) GetSecretClient() secretclient.Interface
- func (factory *ClientFactoryImpl) GetSecurityGroupClient() securitygroupclient.Interface
- func (factory *ClientFactoryImpl) GetSnapshotClient() snapshotclient.Interface
- func (factory *ClientFactoryImpl) GetSnapshotClientForSub(subscriptionID string) (snapshotclient.Interface, error)
- func (factory *ClientFactoryImpl) GetSubnetClient() subnetclient.Interface
- func (factory *ClientFactoryImpl) GetVaultClient() vaultclient.Interface
- func (factory *ClientFactoryImpl) GetVirtualMachineClient() virtualmachineclient.Interface
- func (factory *ClientFactoryImpl) GetVirtualMachineScaleSetClient() virtualmachinescalesetclient.Interface
- func (factory *ClientFactoryImpl) GetVirtualMachineScaleSetVMClient() virtualmachinescalesetvmclient.Interface
- func (factory *ClientFactoryImpl) GetVirtualNetworkClient() virtualnetworkclient.Interface
- func (factory *ClientFactoryImpl) GetVirtualNetworkLinkClient() virtualnetworklinkclient.Interface
- type Environment
- type ResourceIdentifier
Constants ¶
View Source
const ( // EnvironmentFilepathName captures the name of the environment variable containing the path to the file // to be used while populating the Azure Environment. EnvironmentFilepathName = "AZURE_ENVIRONMENT_FILEPATH" )
Variables ¶
View Source
var DefaultResourceClientTransport *http.Client
View Source
var EnvironmentMapping = map[string]*cloud.Configuration{ "AZURECHINACLOUD": &cloud.AzureChina, "AZURECLOUD": &cloud.AzurePublic, "AZUREPUBLICCLOUD": &cloud.AzurePublic, "AZUREUSGOVERNMENT": &cloud.AzureGovernment, "AZUREUSGOVERNMENTCLOUD": &cloud.AzureGovernment, }
Functions ¶
func AzureCloudConfigFromName ¶
func AzureCloudConfigFromName(cloudName string) *cloud.Configuration
func AzureCloudConfigFromURL ¶
func AzureCloudConfigFromURL(endpoint string) (*cloud.Configuration, error)
AzureCloudConfigFromURL returns cloud config from url track2 sdk will add this one in the near future https://github.com/Azure/azure-sdk-for-go/issues/20959
func AzureCloudConfigOverrideFromEnv ¶
func AzureCloudConfigOverrideFromEnv(config *cloud.Configuration) (*cloud.Configuration, error)
func GetAzCoreClientOption ¶
func GetAzCoreClientOption(armConfig *ARMClientConfig) (*policy.ClientOptions, error)
func GetAzureCloudConfig ¶
func GetAzureCloudConfig(armConfig *ARMClientConfig) (*cloud.Configuration, error)
GetAzureCloudConfig returns the cloud configuration for the given ARMClientConfig.
func GetDefaultResourceClientOption ¶
func GetDefaultResourceClientOption(armConfig *ARMClientConfig, factoryConfig *ClientFactoryConfig) (*policy.ClientOptions, error)
func IsMultiTenant ¶ added in v0.0.8
func IsMultiTenant(armConfig *ARMClientConfig) bool
Types ¶
type ARMClientConfig ¶
type ARMClientConfig struct { // The cloud environment identifier. Takes values from https://pkg.go.dev/github.com/Azure/azure-sdk-for-go/sdk/azcore@v1.6.0/cloud Cloud string `json:"cloud,omitempty" yaml:"cloud,omitempty"` // The user agent for Azure customer usage attribution UserAgent string `json:"userAgent,omitempty" yaml:"userAgent,omitempty"` // ResourceManagerEndpoint is the cloud's resource manager endpoint. If set, cloud provider queries this endpoint // in order to generate an autorest.Environment instance instead of using one of the pre-defined Environments. ResourceManagerEndpoint string `json:"resourceManagerEndpoint,omitempty" yaml:"resourceManagerEndpoint,omitempty"` // The AAD Tenant ID for the Subscription that the cluster is deployed in TenantID string `json:"tenantId,omitempty" yaml:"tenantId,omitempty"` // The AAD Tenant ID for the Subscription that the network resources are deployed in. NetworkResourceTenantID string `json:"networkResourceTenantID,omitempty" yaml:"networkResourceTenantID,omitempty"` }
func (*ARMClientConfig) GetTenantID ¶
func (config *ARMClientConfig) GetTenantID() string
type AuthProvider ¶
type AuthProvider struct { FederatedIdentityCredential azcore.TokenCredential ManagedIdentityCredential azcore.TokenCredential ClientSecretCredential azcore.TokenCredential ClientCertificateCredential azcore.TokenCredential NetworkTokenCredential azcore.TokenCredential NetworkClientSecretCredential azcore.TokenCredential MultiTenantCredential azcore.TokenCredential ClientOptions *policy.ClientOptions }
func NewAuthProvider ¶
func NewAuthProvider(armConfig *ARMClientConfig, config *AzureAuthConfig, clientOptionsMutFn ...func(option *policy.ClientOptions)) (*AuthProvider, error)
func (*AuthProvider) GetAzIdentity ¶
func (factory *AuthProvider) GetAzIdentity() azcore.TokenCredential
func (*AuthProvider) GetMultiTenantIdentity ¶
func (factory *AuthProvider) GetMultiTenantIdentity() azcore.TokenCredential
func (*AuthProvider) GetNetworkAzIdentity ¶
func (factory *AuthProvider) GetNetworkAzIdentity() azcore.TokenCredential
func (*AuthProvider) IsMultiTenantModeEnabled ¶
func (factory *AuthProvider) IsMultiTenantModeEnabled() bool
func (*AuthProvider) TokenScope ¶ added in v0.0.20
func (factory *AuthProvider) TokenScope() string
type AzureAuthAuxiliaryTokenProvider ¶ added in v0.0.8
type AzureAuthAuxiliaryTokenProvider struct { SubscriptionID string `json:"subscriptionID,omitempty"` ResourceGroup string `json:"resourceGroup,omitempty"` VaultName string `json:"vaultName,omitempty"` SecretName string `json:"secretName,omitempty"` }
func (*AzureAuthAuxiliaryTokenProvider) SecretResourceID ¶ added in v0.0.20
func (config *AzureAuthAuxiliaryTokenProvider) SecretResourceID() armauth.SecretResourceID
type AzureAuthConfig ¶
type AzureAuthConfig struct { // The ClientID for an AAD application with RBAC access to talk to Azure RM APIs AADClientID string `json:"aadClientId,omitempty" yaml:"aadClientId,omitempty"` // The ClientSecret for an AAD application with RBAC access to talk to Azure RM APIs AADClientSecret string `json:"aadClientSecret,omitempty" yaml:"aadClientSecret,omitempty" datapolicy:"token"` // The path of a client certificate for an AAD application with RBAC access to talk to Azure RM APIs AADClientCertPath string `json:"aadClientCertPath,omitempty" yaml:"aadClientCertPath,omitempty"` // The password of the client certificate for an AAD application with RBAC access to talk to Azure RM APIs AADClientCertPassword string `json:"aadClientCertPassword,omitempty" yaml:"aadClientCertPassword,omitempty" datapolicy:"password"` // Use managed service identity for the virtual machine to access Azure ARM APIs UseManagedIdentityExtension bool `json:"useManagedIdentityExtension,omitempty" yaml:"useManagedIdentityExtension,omitempty"` // UserAssignedIdentityID contains the Client ID of the user assigned MSI which is assigned to the underlying VMs. If empty the user assigned identity is not used. // More details of the user assigned identity can be found at: https://docs.microsoft.com/en-us/azure/active-directory/managed-service-identity/overview // For the user assigned identity specified here to be used, the UseManagedIdentityExtension has to be set to true. UserAssignedIdentityID string `json:"userAssignedIdentityID,omitempty" yaml:"userAssignedIdentityID,omitempty"` // The AAD federated token file AADFederatedTokenFile string `json:"aadFederatedTokenFile,omitempty" yaml:"aadFederatedTokenFile,omitempty"` // Use workload identity federation for the virtual machine to access Azure ARM APIs UseFederatedWorkloadIdentityExtension bool `json:"useFederatedWorkloadIdentityExtension,omitempty" yaml:"useFederatedWorkloadIdentityExtension,omitempty"` // Auxiliary token provider for accessing resources from network tenant // Require MSI to be enabled and have permission to access the KeyVault AuxiliaryTokenProvider *AzureAuthAuxiliaryTokenProvider `json:"auxiliaryTokenProvider,omitempty" yaml:"auxiliaryTokenProvider,omitempty"` }
AzureAuthConfig holds auth related part of cloud config
func (*AzureAuthConfig) GetAADClientID ¶
func (config *AzureAuthConfig) GetAADClientID() string
func (*AzureAuthConfig) GetAADClientSecret ¶
func (config *AzureAuthConfig) GetAADClientSecret() string
func (*AzureAuthConfig) GetAzureFederatedTokenFile ¶
func (config *AzureAuthConfig) GetAzureFederatedTokenFile() (string, bool)
type ClientFactory ¶
type ClientFactory interface { GetAccountClient() accountclient.Interface GetAccountClientForSub(subscriptionID string) (accountclient.Interface, error) GetAvailabilitySetClient() availabilitysetclient.Interface GetBlobContainerClient() blobcontainerclient.Interface GetBlobContainerClientForSub(subscriptionID string) (blobcontainerclient.Interface, error) GetBlobServicePropertiesClient() blobservicepropertiesclient.Interface GetDeploymentClient() deploymentclient.Interface GetDiskClient() diskclient.Interface GetDiskClientForSub(subscriptionID string) (diskclient.Interface, error) GetInterfaceClient() interfaceclient.Interface GetIPGroupClient() ipgroupclient.Interface GetLoadBalancerClient() loadbalancerclient.Interface GetManagedClusterClient() managedclusterclient.Interface GetPrivateEndpointClient() privateendpointclient.Interface GetPrivateLinkServiceClient() privatelinkserviceclient.Interface GetPrivateZoneClient() privatezoneclient.Interface GetProviderClient() providerclient.Interface GetPublicIPAddressClient() publicipaddressclient.Interface GetPublicIPPrefixClient() publicipprefixclient.Interface GetRegistryClient() registryclient.Interface GetResourceGroupClient() resourcegroupclient.Interface GetRouteTableClient() routetableclient.Interface GetSecretClient() secretclient.Interface GetSecurityGroupClient() securitygroupclient.Interface GetSnapshotClient() snapshotclient.Interface GetSnapshotClientForSub(subscriptionID string) (snapshotclient.Interface, error) GetSSHPublicKeyResourceClient() sshpublickeyresourceclient.Interface GetSubnetClient() subnetclient.Interface GetVaultClient() vaultclient.Interface GetVirtualMachineClient() virtualmachineclient.Interface GetVirtualMachineScaleSetClient() virtualmachinescalesetclient.Interface GetVirtualMachineScaleSetVMClient() virtualmachinescalesetvmclient.Interface GetVirtualNetworkClient() virtualnetworkclient.Interface GetVirtualNetworkLinkClient() virtualnetworklinkclient.Interface }
func NewClientFactory ¶
func NewClientFactory(config *ClientFactoryConfig, armConfig *ARMClientConfig, cred azcore.TokenCredential, clientOptionsMutFn ...func(option *arm.ClientOptions)) (ClientFactory, error)
type ClientFactoryConfig ¶
type ClientFactoryConfig struct { ratelimit.CloudProviderRateLimitConfig // Enable exponential backoff to manage resource request retries CloudProviderBackoff bool `json:"cloudProviderBackoff,omitempty" yaml:"cloudProviderBackoff,omitempty"` // The ID of the Azure Subscription that the cluster is deployed in SubscriptionID string `json:"subscriptionId,omitempty" yaml:"subscriptionId,omitempty"` }
type ClientFactoryImpl ¶
type ClientFactoryImpl struct {
// contains filtered or unexported fields
}
func (*ClientFactoryImpl) GetAccountClient ¶
func (factory *ClientFactoryImpl) GetAccountClient() accountclient.Interface
func (*ClientFactoryImpl) GetAccountClientForSub ¶
func (factory *ClientFactoryImpl) GetAccountClientForSub(subscriptionID string) (accountclient.Interface, error)
func (*ClientFactoryImpl) GetAvailabilitySetClient ¶
func (factory *ClientFactoryImpl) GetAvailabilitySetClient() availabilitysetclient.Interface
func (*ClientFactoryImpl) GetBlobContainerClient ¶
func (factory *ClientFactoryImpl) GetBlobContainerClient() blobcontainerclient.Interface
func (*ClientFactoryImpl) GetBlobContainerClientForSub ¶
func (factory *ClientFactoryImpl) GetBlobContainerClientForSub(subscriptionID string) (blobcontainerclient.Interface, error)
func (*ClientFactoryImpl) GetBlobServicePropertiesClient ¶
func (factory *ClientFactoryImpl) GetBlobServicePropertiesClient() blobservicepropertiesclient.Interface
func (*ClientFactoryImpl) GetDeploymentClient ¶
func (factory *ClientFactoryImpl) GetDeploymentClient() deploymentclient.Interface
func (*ClientFactoryImpl) GetDiskClient ¶
func (factory *ClientFactoryImpl) GetDiskClient() diskclient.Interface
func (*ClientFactoryImpl) GetDiskClientForSub ¶
func (factory *ClientFactoryImpl) GetDiskClientForSub(subscriptionID string) (diskclient.Interface, error)
func (*ClientFactoryImpl) GetFileShareClient ¶
func (factory *ClientFactoryImpl) GetFileShareClient() fileshareclient.Interface
func (*ClientFactoryImpl) GetFileShareClientForSub ¶
func (factory *ClientFactoryImpl) GetFileShareClientForSub(subscriptionID string) (fileshareclient.Interface, error)
func (*ClientFactoryImpl) GetIPGroupClient ¶
func (factory *ClientFactoryImpl) GetIPGroupClient() ipgroupclient.Interface
func (*ClientFactoryImpl) GetInterfaceClient ¶
func (factory *ClientFactoryImpl) GetInterfaceClient() interfaceclient.Interface
func (*ClientFactoryImpl) GetLoadBalancerClient ¶
func (factory *ClientFactoryImpl) GetLoadBalancerClient() loadbalancerclient.Interface
func (*ClientFactoryImpl) GetManagedClusterClient ¶
func (factory *ClientFactoryImpl) GetManagedClusterClient() managedclusterclient.Interface
func (*ClientFactoryImpl) GetPrivateEndpointClient ¶
func (factory *ClientFactoryImpl) GetPrivateEndpointClient() privateendpointclient.Interface
func (*ClientFactoryImpl) GetPrivateLinkServiceClient ¶
func (factory *ClientFactoryImpl) GetPrivateLinkServiceClient() privatelinkserviceclient.Interface
func (*ClientFactoryImpl) GetPrivateZoneClient ¶
func (factory *ClientFactoryImpl) GetPrivateZoneClient() privatezoneclient.Interface
func (*ClientFactoryImpl) GetProviderClient ¶
func (factory *ClientFactoryImpl) GetProviderClient() providerclient.Interface
func (*ClientFactoryImpl) GetPublicIPAddressClient ¶
func (factory *ClientFactoryImpl) GetPublicIPAddressClient() publicipaddressclient.Interface
func (*ClientFactoryImpl) GetPublicIPPrefixClient ¶
func (factory *ClientFactoryImpl) GetPublicIPPrefixClient() publicipprefixclient.Interface
func (*ClientFactoryImpl) GetRegistryClient ¶
func (factory *ClientFactoryImpl) GetRegistryClient() registryclient.Interface
func (*ClientFactoryImpl) GetResourceGroupClient ¶
func (factory *ClientFactoryImpl) GetResourceGroupClient() resourcegroupclient.Interface
func (*ClientFactoryImpl) GetRouteTableClient ¶
func (factory *ClientFactoryImpl) GetRouteTableClient() routetableclient.Interface
func (*ClientFactoryImpl) GetSSHPublicKeyResourceClient ¶
func (factory *ClientFactoryImpl) GetSSHPublicKeyResourceClient() sshpublickeyresourceclient.Interface
func (*ClientFactoryImpl) GetSecretClient ¶
func (factory *ClientFactoryImpl) GetSecretClient() secretclient.Interface
func (*ClientFactoryImpl) GetSecurityGroupClient ¶
func (factory *ClientFactoryImpl) GetSecurityGroupClient() securitygroupclient.Interface
func (*ClientFactoryImpl) GetSnapshotClient ¶
func (factory *ClientFactoryImpl) GetSnapshotClient() snapshotclient.Interface
func (*ClientFactoryImpl) GetSnapshotClientForSub ¶
func (factory *ClientFactoryImpl) GetSnapshotClientForSub(subscriptionID string) (snapshotclient.Interface, error)
func (*ClientFactoryImpl) GetSubnetClient ¶
func (factory *ClientFactoryImpl) GetSubnetClient() subnetclient.Interface
func (*ClientFactoryImpl) GetVaultClient ¶
func (factory *ClientFactoryImpl) GetVaultClient() vaultclient.Interface
func (*ClientFactoryImpl) GetVirtualMachineClient ¶
func (factory *ClientFactoryImpl) GetVirtualMachineClient() virtualmachineclient.Interface
func (*ClientFactoryImpl) GetVirtualMachineScaleSetClient ¶
func (factory *ClientFactoryImpl) GetVirtualMachineScaleSetClient() virtualmachinescalesetclient.Interface
func (*ClientFactoryImpl) GetVirtualMachineScaleSetVMClient ¶
func (factory *ClientFactoryImpl) GetVirtualMachineScaleSetVMClient() virtualmachinescalesetvmclient.Interface
func (*ClientFactoryImpl) GetVirtualNetworkClient ¶
func (factory *ClientFactoryImpl) GetVirtualNetworkClient() virtualnetworkclient.Interface
func (*ClientFactoryImpl) GetVirtualNetworkLinkClient ¶
func (factory *ClientFactoryImpl) GetVirtualNetworkLinkClient() virtualnetworklinkclient.Interface
type Environment ¶
type Environment struct { Name string `json:"name"` ManagementPortalURL string `json:"managementPortalURL"` PublishSettingsURL string `json:"publishSettingsURL"` ServiceManagementEndpoint string `json:"serviceManagementEndpoint"` ResourceManagerEndpoint string `json:"resourceManagerEndpoint"` ActiveDirectoryEndpoint string `json:"activeDirectoryEndpoint"` GalleryEndpoint string `json:"galleryEndpoint"` KeyVaultEndpoint string `json:"keyVaultEndpoint"` ManagedHSMEndpoint string `json:"managedHSMEndpoint"` GraphEndpoint string `json:"graphEndpoint"` ServiceBusEndpoint string `json:"serviceBusEndpoint"` BatchManagementEndpoint string `json:"batchManagementEndpoint"` MicrosoftGraphEndpoint string `json:"microsoftGraphEndpoint"` StorageEndpointSuffix string `json:"storageEndpointSuffix"` CosmosDBDNSSuffix string `json:"cosmosDBDNSSuffix"` MariaDBDNSSuffix string `json:"mariaDBDNSSuffix"` MySQLDatabaseDNSSuffix string `json:"mySqlDatabaseDNSSuffix"` PostgresqlDatabaseDNSSuffix string `json:"postgresqlDatabaseDNSSuffix"` SQLDatabaseDNSSuffix string `json:"sqlDatabaseDNSSuffix"` TrafficManagerDNSSuffix string `json:"trafficManagerDNSSuffix"` KeyVaultDNSSuffix string `json:"keyVaultDNSSuffix"` ManagedHSMDNSSuffix string `json:"managedHSMDNSSuffix"` ServiceBusEndpointSuffix string `json:"serviceBusEndpointSuffix"` ServiceManagementVMDNSSuffix string `json:"serviceManagementVMDNSSuffix"` ResourceManagerVMDNSSuffix string `json:"resourceManagerVMDNSSuffix"` ContainerRegistryDNSSuffix string `json:"containerRegistryDNSSuffix"` TokenAudience string `json:"tokenAudience"` APIManagementHostNameSuffix string `json:"apiManagementHostNameSuffix"` SynapseEndpointSuffix string `json:"synapseEndpointSuffix"` DatalakeSuffix string `json:"datalakeSuffix"` ResourceIdentifiers ResourceIdentifier `json:"resourceIdentifiers"` }
Environment represents a set of endpoints for each of Azure's Clouds.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_accountclient
Package mock_accountclient is a generated GoMock package.
|
Package mock_accountclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_availabilitysetclient
Package mock_availabilitysetclient is a generated GoMock package.
|
Package mock_availabilitysetclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_blobcontainerclient
Package mock_blobcontainerclient is a generated GoMock package.
|
Package mock_blobcontainerclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_blobservicepropertiesclient
Package mock_blobservicepropertiesclient is a generated GoMock package.
|
Package mock_blobservicepropertiesclient is a generated GoMock package. |
client-gen
module
|
|
configloader
module
|
|
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_deploymentclient
Package mock_deploymentclient is a generated GoMock package.
|
Package mock_deploymentclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_diskclient
Package mock_diskclient is a generated GoMock package.
|
Package mock_diskclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_fileshareclient
Package mock_fileshareclient is a generated GoMock package.
|
Package mock_fileshareclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_interfaceclient
Package mock_interfaceclient is a generated GoMock package.
|
Package mock_interfaceclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_ipgroupclient
Package mock_ipgroupclient is a generated GoMock package.
|
Package mock_ipgroupclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_loadbalancerclient
Package mock_loadbalancerclient is a generated GoMock package.
|
Package mock_loadbalancerclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_managedclusterclient
Package mock_managedclusterclient is a generated GoMock package.
|
Package mock_managedclusterclient is a generated GoMock package. |
Package mock_azclient is a generated GoMock package.
|
Package mock_azclient is a generated GoMock package. |
policy
|
|
ratelimit/flowcontrol
flowcontrol is imported from https://github.com/kubernetes/client-go/tree/master/util/flowcontrol
|
flowcontrol is imported from https://github.com/kubernetes/client-go/tree/master/util/flowcontrol |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_privateendpointclient
Package mock_privateendpointclient is a generated GoMock package.
|
Package mock_privateendpointclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_privatelinkserviceclient
Package mock_privatelinkserviceclient is a generated GoMock package.
|
Package mock_privatelinkserviceclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_privatezoneclient
Package mock_privatezoneclient is a generated GoMock package.
|
Package mock_privatezoneclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_providerclient
Package mock_providerclient is a generated GoMock package.
|
Package mock_providerclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_publicipaddressclient
Package mock_publicipaddressclient is a generated GoMock package.
|
Package mock_publicipaddressclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_publicipprefixclient
Package mock_publicipprefixclient is a generated GoMock package.
|
Package mock_publicipprefixclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_registryclient
Package mock_registryclient is a generated GoMock package.
|
Package mock_registryclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_resourcegroupclient
Package mock_resourcegroupclient is a generated GoMock package.
|
Package mock_resourcegroupclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_routetableclient
Package mock_routetableclient is a generated GoMock package.
|
Package mock_routetableclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_secretclient
Package mock_secretclient is a generated GoMock package.
|
Package mock_secretclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_securitygroupclient
Package mock_securitygroupclient is a generated GoMock package.
|
Package mock_securitygroupclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_snapshotclient
Package mock_snapshotclient is a generated GoMock package.
|
Package mock_snapshotclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_sshpublickeyresourceclient
Package mock_sshpublickeyresourceclient is a generated GoMock package.
|
Package mock_sshpublickeyresourceclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_subnetclient
Package mock_subnetclient is a generated GoMock package.
|
Package mock_subnetclient is a generated GoMock package. |
trace
module
|
|
armbalancer/mock
Package mock is a generated GoMock package.
|
Package mock is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_vaultclient
Package mock_vaultclient is a generated GoMock package.
|
Package mock_vaultclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_virtualmachineclient
Package mock_virtualmachineclient is a generated GoMock package.
|
Package mock_virtualmachineclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_virtualmachinescalesetclient
Package mock_virtualmachinescalesetclient is a generated GoMock package.
|
Package mock_virtualmachinescalesetclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_virtualmachinescalesetvmclient
Package mock_virtualmachinescalesetvmclient is a generated GoMock package.
|
Package mock_virtualmachinescalesetvmclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_virtualnetworkclient
Package mock_virtualnetworkclient is a generated GoMock package.
|
Package mock_virtualnetworkclient is a generated GoMock package. |
+azure:enableclientgen:=true
|
+azure:enableclientgen:=true |
mock_virtualnetworklinkclient
Package mock_virtualnetworklinkclient is a generated GoMock package.
|
Package mock_virtualnetworklinkclient is a generated GoMock package. |
Click to show internal directories.
Click to hide internal directories.