client

package
v1.33.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 23, 2023 License: Apache-2.0, MIT Imports: 20 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsAzureAPINotFoundError added in v1.18.0

func IsAzureAPINotFoundError(err error) bool

IsAzureAPINotFoundError tries to determine if an error is a resource not found error.

func IsAzureAPIUnauthorized added in v1.33.0

func IsAzureAPIUnauthorized(err error) bool

IsAzureAPIUnauthorized tries to determine if the API error is due to unauthorized access

Types

type AzureFactory added in v1.15.0

type AzureFactory struct {
	// contains filtered or unexported fields
}

AzureFactory is an implementation of Factory to produce clients for various Azure services.

func (AzureFactory) DNSRecordSet added in v1.21.0

func (f AzureFactory) DNSRecordSet(ctx context.Context, secretRef corev1.SecretReference) (DNSRecordSet, error)

DNSRecordSet reads the secret from the passed reference and return an Azure DNS record set client.

func (AzureFactory) DNSZone added in v1.21.0

func (f AzureFactory) DNSZone(ctx context.Context, secretRef corev1.SecretReference) (DNSZone, error)

DNSZone reads the secret from the passed reference and return an Azure DNS zone client.

func (AzureFactory) Disk added in v1.26.0

func (f AzureFactory) Disk(ctx context.Context, secretRef corev1.SecretReference) (Disk, error)

Disk reads the secret from the passed reference and return an Azure disk client.

func (AzureFactory) Group added in v1.15.0

func (f AzureFactory) Group(ctx context.Context, secretRef corev1.SecretReference) (Group, error)

Group reads the secret from the passed reference and return an Azure resource group client.

func (AzureFactory) NetworkInterface added in v1.26.0

func (f AzureFactory) NetworkInterface(ctx context.Context, secretRef corev1.SecretReference) (NetworkInterface, error)

NetworkInterface reads the secret from the passed reference and return an Azure network interface client.

func (AzureFactory) NetworkSecurityGroup added in v1.26.0

func (f AzureFactory) NetworkSecurityGroup(ctx context.Context, secretRef corev1.SecretReference) (NetworkSecurityGroup, error)

NetworkSecurityGroup reads the secret from the passed reference and return an Azure network security group client.

func (AzureFactory) PublicIP added in v1.26.0

func (f AzureFactory) PublicIP(ctx context.Context, secretRef corev1.SecretReference) (PublicIP, error)

PublicIP reads the secret from the passed reference and return an Azure network PublicIPClient.

func (AzureFactory) Storage added in v1.15.0

func (f AzureFactory) Storage(ctx context.Context, secretRef corev1.SecretReference) (Storage, error)

Storage reads the secret from the passed reference and return an Azure (blob) storage client.

func (AzureFactory) StorageAccount added in v1.15.0

func (f AzureFactory) StorageAccount(ctx context.Context, secretRef corev1.SecretReference) (StorageAccount, error)

StorageAccount reads the secret from the passed reference and return an Azure storage account client.

func (AzureFactory) Subnet added in v1.26.0

func (f AzureFactory) Subnet(ctx context.Context, secretRef corev1.SecretReference) (Subnet, error)

Subnet reads the secret from the passed reference and return an Azure Subnet client.

func (AzureFactory) VirtualMachine added in v1.26.0

func (f AzureFactory) VirtualMachine(ctx context.Context, secretRef corev1.SecretReference) (VirtualMachine, error)

VirtualMachine reads the secret from the passed reference and return an Azure virtual machine client.

func (AzureFactory) Vmss added in v1.18.0

func (f AzureFactory) Vmss(ctx context.Context, secretRef corev1.SecretReference) (Vmss, error)

Vmss reads the secret from the passed reference and return an Azure virtual machine scale set client.

type DNSRecordSet added in v1.21.0

type DNSRecordSet interface {
	CreateOrUpdate(context.Context, string, string, string, []string, int64) error
	Delete(context.Context, string, string, string) error
}

DNSRecordSet represents an Azure DNS recordset client.

type DNSRecordSetClient added in v1.21.0

type DNSRecordSetClient struct {
	// contains filtered or unexported fields
}

DNSRecordSetClient is an implementation of DNSRecordSet for a DNS recordset client.

func (DNSRecordSetClient) CreateOrUpdate added in v1.21.0

func (c DNSRecordSetClient) CreateOrUpdate(ctx context.Context, zoneID string, name string, recordType string, values []string, ttl int64) error

CreateOrUpdate creates or updates the recordset with the given name, record type, values, and TTL in the zone with the given zone ID.

func (DNSRecordSetClient) Delete added in v1.21.0

func (c DNSRecordSetClient) Delete(ctx context.Context, zoneID string, name string, recordType string) error

Delete deletes the recordset with the given name and record type in the zone with the given zone ID.

type DNSZone added in v1.21.0

type DNSZone interface {
	GetAll(context.Context) (map[string]string, error)
}

DNSZone represents an Azure DNS zone client.

type DNSZoneClient added in v1.21.0

type DNSZoneClient struct {
	// contains filtered or unexported fields
}

DNSZoneClient is an implementation of DNSZone for a DNS zone client.

func (DNSZoneClient) GetAll added in v1.21.0

func (c DNSZoneClient) GetAll(ctx context.Context) (map[string]string, error)

GetAll returns a map of all zone names mapped to their IDs.

type Disk added in v1.26.0

type Disk interface {
	Get(ctx context.Context, resourceGroupName string, name string) (*compute.Disk, error)
	CreateOrUpdate(ctx context.Context, resourceGroupName string, diskName string, disk compute.Disk) (*compute.Disk, error)
	Delete(ctx context.Context, resourceGroupName, name string) error
}

Disk represents an Azure Disk client.

type DisksClient added in v1.26.0

type DisksClient struct {
	// contains filtered or unexported fields
}

DisksClient is an implementation of Disk for a disk client.

func (DisksClient) CreateOrUpdate added in v1.26.0

func (c DisksClient) CreateOrUpdate(ctx context.Context, resourceGroupName string, diskName string, disk compute.Disk) (*compute.Disk, error)

CreateOrUpdate will create or update a disk.

func (DisksClient) Delete added in v1.26.0

func (c DisksClient) Delete(ctx context.Context, resourceGroupName, name string) error

Delete will delete a disk.

func (DisksClient) Get added in v1.26.0

func (c DisksClient) Get(ctx context.Context, resourceGroupName string, name string) (*compute.Disk, error)

Get will fetch a disk by given name in a given resource group.

type Factory added in v1.15.0

Factory represents a factory to produce clients for various Azure services.

func NewAzureClientFactory added in v1.15.0

func NewAzureClientFactory(client client.Client) Factory

NewAzureClientFactory returns a new factory to produce clients for various Azure services.

type Group added in v1.15.0

type Group interface {
	Get(context.Context, string) (*resources.Group, error)
	CreateOrUpdate(context.Context, string, string) error
	DeleteIfExits(context.Context, string) error
}

Group represents an Azure group client.

type GroupClient added in v1.15.0

type GroupClient struct {
	// contains filtered or unexported fields
}

GroupClient is an implementation of Group for a resource group client.

func (GroupClient) CreateOrUpdate added in v1.15.0

func (c GroupClient) CreateOrUpdate(ctx context.Context, resourceGroupName, region string) error

CreateOrUpdate creates a resource group or update an existing resource group.

func (GroupClient) DeleteIfExits added in v1.15.0

func (c GroupClient) DeleteIfExits(ctx context.Context, resourceGroupName string) error

DeleteIfExits deletes a resource group if it exits.

func (GroupClient) Get added in v1.28.0

func (c GroupClient) Get(ctx context.Context, resourceGroupName string) (*resources.Group, error)

Get gets a resource group. If the requested resource group not exists nil will be returned.

type NetworkInterface added in v1.26.0

type NetworkInterface interface {
	Get(ctx context.Context, resourceGroupName string, name string, expander string) (*network.Interface, error)
	CreateOrUpdate(ctx context.Context, resourceGroupName, name string, parameters network.Interface) (*network.Interface, error)
	Delete(ctx context.Context, resourceGroupName, name string) error
}

NetworkInterface represents an Azure Network Interface client.

type NetworkInterfaceClient added in v1.26.0

type NetworkInterfaceClient struct {
	// contains filtered or unexported fields
}

NetworkInterfaceClient is an implementation of Network Interface.

func (NetworkInterfaceClient) CreateOrUpdate added in v1.26.0

func (c NetworkInterfaceClient) CreateOrUpdate(ctx context.Context, resourceGroupName, name string, parameters network.Interface) (*network.Interface, error)

CreateOrUpdate indicates an expected call of Network interface CreateOrUpdate.

func (NetworkInterfaceClient) Delete added in v1.26.0

func (c NetworkInterfaceClient) Delete(ctx context.Context, resourceGroupName, name string) error

Delete will delete a Network interface.

func (NetworkInterfaceClient) Get added in v1.26.0

func (c NetworkInterfaceClient) Get(ctx context.Context, resourceGroupName string, name string, expander string) (*network.Interface, error)

Get will get a Network interface.

type NetworkSecurityGroup added in v1.26.0

type NetworkSecurityGroup interface {
	Get(ctx context.Context, resourceGroupName string, networkSecurityGroupName, name string) (*network.SecurityGroup, error)
	CreateOrUpdate(ctx context.Context, resourceGroupName, name string, parameters network.SecurityGroup) (*network.SecurityGroup, error)
}

NetworkSecurityGroup represents an Azure Network security group client.

type NetworkSecurityGroupClient added in v1.26.0

type NetworkSecurityGroupClient struct {
	// contains filtered or unexported fields
}

NetworkSecurityGroupClient is an implementation of Network Security Group for a network security group client.

func (NetworkSecurityGroupClient) CreateOrUpdate added in v1.26.0

func (c NetworkSecurityGroupClient) CreateOrUpdate(ctx context.Context, resourceGroupName, name string, parameters network.SecurityGroup) (*network.SecurityGroup, error)

CreateOrUpdate indicates an expected call of Network Security Group CreateOrUpdate.

func (NetworkSecurityGroupClient) Get added in v1.26.0

func (c NetworkSecurityGroupClient) Get(ctx context.Context, resourceGroupName string, networkSecurityGroupName, name string) (*network.SecurityGroup, error)

Get will fetch a network security group

type PublicIP added in v1.26.0

type PublicIP interface {
	Get(ctx context.Context, resourceGroupName string, name string, expander string) (*network.PublicIPAddress, error)
	CreateOrUpdate(ctx context.Context, resourceGroupName, name string, parameters network.PublicIPAddress) (*network.PublicIPAddress, error)
	Delete(ctx context.Context, resourceGroupName, name string) error
}

PublicIP represents an Azure Network PUblic IP client.

type PublicIPClient added in v1.26.0

type PublicIPClient struct {
	// contains filtered or unexported fields
}

PublicIPClient is an implementation of Network Public IP Address.

func (PublicIPClient) CreateOrUpdate added in v1.26.0

func (c PublicIPClient) CreateOrUpdate(ctx context.Context, resourceGroupName, name string, parameters network.PublicIPAddress) (*network.PublicIPAddress, error)

CreateOrUpdate indicates an expected call of Network Public IP CreateOrUpdate.

func (PublicIPClient) Delete added in v1.26.0

func (c PublicIPClient) Delete(ctx context.Context, resourceGroupName, name string) error

Delete will delete a network Public IP Address.

func (PublicIPClient) Get added in v1.26.0

func (c PublicIPClient) Get(ctx context.Context, resourceGroupName string, name string, expander string) (*network.PublicIPAddress, error)

Get will get a network public IP Address

type SecurityRulesClient added in v1.26.0

type SecurityRulesClient struct {
	// contains filtered or unexported fields
}

SecurityRulesClient is an implementation of Network Security Groups rules.

func (SecurityRulesClient) Get added in v1.26.0

func (c SecurityRulesClient) Get(ctx context.Context, resourceGroupName string, networkSecurityGroupName string, name string) (*network.SecurityRule, error)

Get will get a Security rules.

type Storage

type Storage interface {
	DeleteObjectsWithPrefix(context.Context, string, string) error
	CreateContainerIfNotExists(context.Context, string) error
	DeleteContainerIfExists(context.Context, string) error
}

Storage represents an Azure (blob) storage client.

type StorageAccount added in v1.15.0

type StorageAccount interface {
	CreateStorageAccount(context.Context, string, string, string) error
	ListStorageAccountKey(context.Context, string, string) (string, error)
}

StorageAccount represents an Azure storage account client.

type StorageAccountClient added in v1.15.0

type StorageAccountClient struct {
	// contains filtered or unexported fields
}

StorageAccountClient is an implementation of StorageAccount for storage account client.

func (StorageAccountClient) CreateStorageAccount added in v1.15.0

func (c StorageAccountClient) CreateStorageAccount(ctx context.Context, resourceGroupName, storageAccountName, region string) error

CreateStorageAccount creates a storage account.

func (StorageAccountClient) ListStorageAccountKey added in v1.15.0

func (c StorageAccountClient) ListStorageAccountKey(ctx context.Context, resourceGroupName, storageAccountName string) (string, error)

ListStorageAccountKey lists the first key of a storage account.

type StorageClient

type StorageClient struct {
	// contains filtered or unexported fields
}

StorageClient is an implementation of Storage for a (blob) storage client.

func (StorageClient) CreateContainerIfNotExists

func (c StorageClient) CreateContainerIfNotExists(ctx context.Context, container string) error

CreateContainerIfNotExists creates the azure blob container with name <container>. If it already exist,no error is returned.

func (StorageClient) DeleteContainerIfExists

func (c StorageClient) DeleteContainerIfExists(ctx context.Context, container string) error

DeleteContainerIfExists deletes the azure blob container with name <container>. If it does not exist, no error is returned.

func (StorageClient) DeleteObjectsWithPrefix

func (c StorageClient) DeleteObjectsWithPrefix(ctx context.Context, container, prefix string) error

DeleteObjectsWithPrefix deletes the blob objects with the specific <prefix> from <container>. If it does not exist, no error is returned.

type Subnet added in v1.26.0

type Subnet interface {
	Get(ctx context.Context, resourceGroupName string, vnetName string, name string, expander string) (*network.Subnet, error)
	List(context.Context, string, string) ([]network.Subnet, error)
	Delete(context.Context, string, string, string) error
}

Subnet represents an Azure Subnet client.

type SubnetsClient added in v1.26.0

type SubnetsClient struct {
	// contains filtered or unexported fields
}

SubnetsClient is an implementation of Subnet for a Subnet client.

func (SubnetsClient) Delete added in v1.28.0

func (c SubnetsClient) Delete(ctx context.Context, resourceGroupName, vnetName, subnetName string) error

Delete deletes a subnet in a given virtual network.

func (SubnetsClient) Get added in v1.26.0

func (c SubnetsClient) Get(ctx context.Context, resourceGroupName string, vnetName string, name string, expander string) (*network.Subnet, error)

Get will get a subnet in a given virtual network. If the requested subnet not exists nil will be returned.

func (SubnetsClient) List added in v1.28.0

func (c SubnetsClient) List(ctx context.Context, resourceGroupName, vnetName string) ([]network.Subnet, error)

List lists all subnets of a given virtual network.

type VirtualMachine added in v1.26.0

type VirtualMachine interface {
	Get(ctx context.Context, resourceGroupName string, name string, instanceViewTypes compute.InstanceViewTypes) (*compute.VirtualMachine, error)
	Create(ctx context.Context, resourceGroupName string, name string, parameters *compute.VirtualMachine) (*compute.VirtualMachine, error)
	Delete(ctx context.Context, resourceGroupName string, name string, forceDeletion *bool) error
}

VirtualMachine represents an Azure virtual machine client.

type VirtualMachinesClient added in v1.26.0

type VirtualMachinesClient struct {
	// contains filtered or unexported fields
}

VirtualMachinesClient is an implementation of Vm for a virtual machine client.

func (VirtualMachinesClient) Create added in v1.26.0

func (c VirtualMachinesClient) Create(ctx context.Context, resourceGroupName string, name string, parameters *compute.VirtualMachine) (*compute.VirtualMachine, error)

Create will Create a virtual machine.

func (VirtualMachinesClient) Delete added in v1.26.0

func (c VirtualMachinesClient) Delete(ctx context.Context, resourceGroupName, name string, forceDeletion *bool) error

Delete will delete a virtual machine.

func (VirtualMachinesClient) Get added in v1.26.0

func (c VirtualMachinesClient) Get(ctx context.Context, resourceGroupName string, name string, instanceViewTypes compute.InstanceViewTypes) (*compute.VirtualMachine, error)

Get will get virtual machines in a resource group.

type Vmss added in v1.18.0

Vmss represents an Azure virtual machine scale set client.

type VmssClient added in v1.18.0

type VmssClient struct {
	// contains filtered or unexported fields
}

VmssClient is an implementation of Vmss for a virtual machine scale set client.

func (VmssClient) Create added in v1.18.0

func (c VmssClient) Create(ctx context.Context, resourceGroupName, name string, properties *compute.VirtualMachineScaleSet) (*compute.VirtualMachineScaleSet, error)

Create will create a vmss.

func (VmssClient) Delete added in v1.18.0

func (c VmssClient) Delete(ctx context.Context, resourceGroupName, name string, forceDeletion *bool) error

Delete will delete a vmss.

func (VmssClient) Get added in v1.18.0

Get will fetch a vmss.

func (VmssClient) List added in v1.18.0

func (c VmssClient) List(ctx context.Context, resourceGroupName string) ([]compute.VirtualMachineScaleSet, error)

List will list vmss in a resource group.

Directories

Path Synopsis
Package client is a generated GoMock package.
Package client is a generated GoMock package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL