managedclusters

package
v0.20240527.1094340 Latest Latest
Warning

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

Go to latest
Published: May 27, 2024 License: MPL-2.0 Imports: 19 Imported by: 0

README

github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2023-06-02-preview/managedclusters Documentation

The managedclusters SDK allows for interaction with the Azure Resource Manager Service containerservice (API Version 2023-06-02-preview).

This readme covers example usages, but further information on using this SDK can be found in the project root.

Import Path

import "github.com/hashicorp/go-azure-helpers/resourcemanager/commonids"
import "github.com/hashicorp/go-azure-sdk/resource-manager/containerservice/2023-06-02-preview/managedclusters"

Client Initialization

client := managedclusters.NewManagedClustersClientWithBaseURI("https://management.azure.com")
client.Client.Authorizer = authorizer

Example Usage: ManagedClustersClient.AbortLatestOperation

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

if err := client.AbortLatestOperationThenPoll(ctx, id); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.CreateOrUpdate

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

payload := managedclusters.ManagedCluster{
	// ...
}


if err := client.CreateOrUpdateThenPoll(ctx, id, payload); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.Delete

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

if err := client.DeleteThenPoll(ctx, id, managedclusters.DefaultDeleteOperationOptions()); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.Get

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

read, err := client.Get(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.GetAccessProfile

ctx := context.TODO()
id := managedclusters.NewAccessProfileID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue", "accessProfileValue")

read, err := client.GetAccessProfile(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.GetCommandResult

ctx := context.TODO()
id := managedclusters.NewCommandResultID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue", "commandIdValue")

read, err := client.GetCommandResult(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.GetMeshRevisionProfile

ctx := context.TODO()
id := managedclusters.NewMeshRevisionProfileID("12345678-1234-9876-4563-123456789012", "locationValue", "meshRevisionProfileValue")

read, err := client.GetMeshRevisionProfile(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.GetMeshUpgradeProfile

ctx := context.TODO()
id := managedclusters.NewMeshUpgradeProfileID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue", "meshUpgradeProfileValue")

read, err := client.GetMeshUpgradeProfile(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.GetOSOptions

ctx := context.TODO()
id := managedclusters.NewLocationID("12345678-1234-9876-4563-123456789012", "locationValue")

read, err := client.GetOSOptions(ctx, id, managedclusters.DefaultGetOSOptionsOperationOptions())
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.GetUpgradeProfile

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

read, err := client.GetUpgradeProfile(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.List

ctx := context.TODO()
id := commonids.NewSubscriptionID("12345678-1234-9876-4563-123456789012")

// alternatively `client.List(ctx, id)` can be used to do batched pagination
items, err := client.ListComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Example Usage: ManagedClustersClient.ListByResourceGroup

ctx := context.TODO()
id := commonids.NewResourceGroupID("12345678-1234-9876-4563-123456789012", "example-resource-group")

// alternatively `client.ListByResourceGroup(ctx, id)` can be used to do batched pagination
items, err := client.ListByResourceGroupComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Example Usage: ManagedClustersClient.ListClusterAdminCredentials

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

read, err := client.ListClusterAdminCredentials(ctx, id, managedclusters.DefaultListClusterAdminCredentialsOperationOptions())
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.ListClusterMonitoringUserCredentials

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

read, err := client.ListClusterMonitoringUserCredentials(ctx, id, managedclusters.DefaultListClusterMonitoringUserCredentialsOperationOptions())
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.ListClusterUserCredentials

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

read, err := client.ListClusterUserCredentials(ctx, id, managedclusters.DefaultListClusterUserCredentialsOperationOptions())
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.ListKubernetesVersions

ctx := context.TODO()
id := managedclusters.NewLocationID("12345678-1234-9876-4563-123456789012", "locationValue")

read, err := client.ListKubernetesVersions(ctx, id)
if err != nil {
	// handle the error
}
if model := read.Model; model != nil {
	// do something with the model/response object
}

Example Usage: ManagedClustersClient.ListMeshRevisionProfiles

ctx := context.TODO()
id := managedclusters.NewLocationID("12345678-1234-9876-4563-123456789012", "locationValue")

// alternatively `client.ListMeshRevisionProfiles(ctx, id)` can be used to do batched pagination
items, err := client.ListMeshRevisionProfilesComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Example Usage: ManagedClustersClient.ListMeshUpgradeProfiles

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

// alternatively `client.ListMeshUpgradeProfiles(ctx, id)` can be used to do batched pagination
items, err := client.ListMeshUpgradeProfilesComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Example Usage: ManagedClustersClient.ListOutboundNetworkDependenciesEndpoints

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

// alternatively `client.ListOutboundNetworkDependenciesEndpoints(ctx, id)` can be used to do batched pagination
items, err := client.ListOutboundNetworkDependenciesEndpointsComplete(ctx, id)
if err != nil {
	// handle the error
}
for _, item := range items {
	// do something
}

Example Usage: ManagedClustersClient.ResetAADProfile

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

payload := managedclusters.ManagedClusterAADProfile{
	// ...
}


if err := client.ResetAADProfileThenPoll(ctx, id, payload); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.ResetServicePrincipalProfile

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

payload := managedclusters.ManagedClusterServicePrincipalProfile{
	// ...
}


if err := client.ResetServicePrincipalProfileThenPoll(ctx, id, payload); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.RotateClusterCertificates

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

if err := client.RotateClusterCertificatesThenPoll(ctx, id); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.RotateServiceAccountSigningKeys

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

if err := client.RotateServiceAccountSigningKeysThenPoll(ctx, id); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.RunCommand

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

payload := managedclusters.RunCommandRequest{
	// ...
}


if err := client.RunCommandThenPoll(ctx, id, payload); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.Start

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

if err := client.StartThenPoll(ctx, id); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.Stop

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

if err := client.StopThenPoll(ctx, id); err != nil {
	// handle the error
}

Example Usage: ManagedClustersClient.UpdateTags

ctx := context.TODO()
id := commonids.NewKubernetesClusterID("12345678-1234-9876-4563-123456789012", "example-resource-group", "managedClusterValue")

payload := managedclusters.TagsObject{
	// ...
}


if err := client.UpdateTagsThenPoll(ctx, id, payload); err != nil {
	// handle the error
}

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func PossibleValuesForAgentPoolMode

func PossibleValuesForAgentPoolMode() []string

func PossibleValuesForAgentPoolSSHAccess

func PossibleValuesForAgentPoolSSHAccess() []string

func PossibleValuesForAgentPoolType

func PossibleValuesForAgentPoolType() []string

func PossibleValuesForBackendPoolType

func PossibleValuesForBackendPoolType() []string

func PossibleValuesForCode

func PossibleValuesForCode() []string

func PossibleValuesForControlPlaneUpgradeOverride

func PossibleValuesForControlPlaneUpgradeOverride() []string

func PossibleValuesForControlledValues

func PossibleValuesForControlledValues() []string

func PossibleValuesForExpander

func PossibleValuesForExpander() []string

func PossibleValuesForFormat

func PossibleValuesForFormat() []string

func PossibleValuesForGPUInstanceProfile

func PossibleValuesForGPUInstanceProfile() []string

func PossibleValuesForIPFamily

func PossibleValuesForIPFamily() []string

func PossibleValuesForIPvsScheduler

func PossibleValuesForIPvsScheduler() []string

func PossibleValuesForIstioIngressGatewayMode

func PossibleValuesForIstioIngressGatewayMode() []string

func PossibleValuesForKeyVaultNetworkAccessTypes

func PossibleValuesForKeyVaultNetworkAccessTypes() []string

func PossibleValuesForKubeletDiskType

func PossibleValuesForKubeletDiskType() []string

func PossibleValuesForKubernetesSupportPlan

func PossibleValuesForKubernetesSupportPlan() []string

func PossibleValuesForLevel

func PossibleValuesForLevel() []string

func PossibleValuesForLicenseType

func PossibleValuesForLicenseType() []string

func PossibleValuesForLoadBalancerSku

func PossibleValuesForLoadBalancerSku() []string

func PossibleValuesForManagedClusterPodIdentityProvisioningState

func PossibleValuesForManagedClusterPodIdentityProvisioningState() []string

func PossibleValuesForManagedClusterSKUName

func PossibleValuesForManagedClusterSKUName() []string

func PossibleValuesForManagedClusterSKUTier

func PossibleValuesForManagedClusterSKUTier() []string

func PossibleValuesForMode

func PossibleValuesForMode() []string

func PossibleValuesForNetworkDataplane

func PossibleValuesForNetworkDataplane() []string

func PossibleValuesForNetworkMode

func PossibleValuesForNetworkMode() []string

func PossibleValuesForNetworkPlugin

func PossibleValuesForNetworkPlugin() []string

func PossibleValuesForNetworkPluginMode

func PossibleValuesForNetworkPluginMode() []string

func PossibleValuesForNetworkPolicy

func PossibleValuesForNetworkPolicy() []string

func PossibleValuesForNodeOSUpgradeChannel

func PossibleValuesForNodeOSUpgradeChannel() []string

func PossibleValuesForOSDiskType

func PossibleValuesForOSDiskType() []string

func PossibleValuesForOSSKU

func PossibleValuesForOSSKU() []string

func PossibleValuesForOSType

func PossibleValuesForOSType() []string

func PossibleValuesForOutboundType

func PossibleValuesForOutboundType() []string

func PossibleValuesForProtocol

func PossibleValuesForProtocol() []string

func PossibleValuesForPublicNetworkAccess

func PossibleValuesForPublicNetworkAccess() []string

func PossibleValuesForRestrictionLevel

func PossibleValuesForRestrictionLevel() []string

func PossibleValuesForScaleDownMode

func PossibleValuesForScaleDownMode() []string

func PossibleValuesForScaleSetEvictionPolicy

func PossibleValuesForScaleSetEvictionPolicy() []string

func PossibleValuesForScaleSetPriority

func PossibleValuesForScaleSetPriority() []string

func PossibleValuesForServiceMeshMode

func PossibleValuesForServiceMeshMode() []string

func PossibleValuesForUpdateMode

func PossibleValuesForUpdateMode() []string

func PossibleValuesForUpgradeChannel

func PossibleValuesForUpgradeChannel() []string

func PossibleValuesForWorkloadRuntime

func PossibleValuesForWorkloadRuntime() []string

func ValidateAccessProfileID

func ValidateAccessProfileID(input interface{}, key string) (warnings []string, errors []error)

ValidateAccessProfileID checks that 'input' can be parsed as a Access Profile ID

func ValidateCommandResultID

func ValidateCommandResultID(input interface{}, key string) (warnings []string, errors []error)

ValidateCommandResultID checks that 'input' can be parsed as a Command Result ID

func ValidateLocationID

func ValidateLocationID(input interface{}, key string) (warnings []string, errors []error)

ValidateLocationID checks that 'input' can be parsed as a Location ID

func ValidateMeshRevisionProfileID

func ValidateMeshRevisionProfileID(input interface{}, key string) (warnings []string, errors []error)

ValidateMeshRevisionProfileID checks that 'input' can be parsed as a Mesh Revision Profile ID

func ValidateMeshUpgradeProfileID

func ValidateMeshUpgradeProfileID(input interface{}, key string) (warnings []string, errors []error)

ValidateMeshUpgradeProfileID checks that 'input' can be parsed as a Mesh Upgrade Profile ID

Types

type AbortLatestOperationOperationResponse

type AbortLatestOperationOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type AccessProfile

type AccessProfile struct {
	KubeConfig *string `json:"kubeConfig,omitempty"`
}

type AccessProfileId

type AccessProfileId struct {
	SubscriptionId     string
	ResourceGroupName  string
	ManagedClusterName string
	AccessProfileName  string
}

AccessProfileId is a struct representing the Resource ID for a Access Profile

func NewAccessProfileID

func NewAccessProfileID(subscriptionId string, resourceGroupName string, managedClusterName string, accessProfileName string) AccessProfileId

NewAccessProfileID returns a new AccessProfileId struct

func ParseAccessProfileID

func ParseAccessProfileID(input string) (*AccessProfileId, error)

ParseAccessProfileID parses 'input' into a AccessProfileId

func ParseAccessProfileIDInsensitively

func ParseAccessProfileIDInsensitively(input string) (*AccessProfileId, error)

ParseAccessProfileIDInsensitively parses 'input' case-insensitively into a AccessProfileId note: this method should only be used for API response data and not user input

func (*AccessProfileId) FromParseResult

func (id *AccessProfileId) FromParseResult(input resourceids.ParseResult) error

func (AccessProfileId) ID

func (id AccessProfileId) ID() string

ID returns the formatted Access Profile ID

func (AccessProfileId) Segments

func (id AccessProfileId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Access Profile ID

func (AccessProfileId) String

func (id AccessProfileId) String() string

String returns a human-readable description of this Access Profile ID

type AgentPoolMode

type AgentPoolMode string
const (
	AgentPoolModeSystem AgentPoolMode = "System"
	AgentPoolModeUser   AgentPoolMode = "User"
)

func (*AgentPoolMode) UnmarshalJSON added in v0.20240213.1120950

func (s *AgentPoolMode) UnmarshalJSON(bytes []byte) error

type AgentPoolNetworkProfile

type AgentPoolNetworkProfile struct {
	AllowedHostPorts          *[]PortRange `json:"allowedHostPorts,omitempty"`
	ApplicationSecurityGroups *[]string    `json:"applicationSecurityGroups,omitempty"`
	NodePublicIPTags          *[]IPTag     `json:"nodePublicIPTags,omitempty"`
}

type AgentPoolSSHAccess

type AgentPoolSSHAccess string
const (
	AgentPoolSSHAccessDisabled  AgentPoolSSHAccess = "Disabled"
	AgentPoolSSHAccessLocalUser AgentPoolSSHAccess = "LocalUser"
)

func (*AgentPoolSSHAccess) UnmarshalJSON added in v0.20240213.1120950

func (s *AgentPoolSSHAccess) UnmarshalJSON(bytes []byte) error

type AgentPoolSecurityProfile

type AgentPoolSecurityProfile struct {
	SshAccess *AgentPoolSSHAccess `json:"sshAccess,omitempty"`
}

type AgentPoolType

type AgentPoolType string
const (
	AgentPoolTypeAvailabilitySet         AgentPoolType = "AvailabilitySet"
	AgentPoolTypeVirtualMachineScaleSets AgentPoolType = "VirtualMachineScaleSets"
)

func (*AgentPoolType) UnmarshalJSON added in v0.20240213.1120950

func (s *AgentPoolType) UnmarshalJSON(bytes []byte) error

type AgentPoolUpgradeSettings

type AgentPoolUpgradeSettings struct {
	DrainTimeoutInMinutes *int64  `json:"drainTimeoutInMinutes,omitempty"`
	MaxSurge              *string `json:"maxSurge,omitempty"`
}

type AgentPoolWindowsProfile

type AgentPoolWindowsProfile struct {
	DisableOutboundNat *bool `json:"disableOutboundNat,omitempty"`
}

type AzureKeyVaultKms

type AzureKeyVaultKms struct {
	Enabled               *bool                       `json:"enabled,omitempty"`
	KeyId                 *string                     `json:"keyId,omitempty"`
	KeyVaultNetworkAccess *KeyVaultNetworkAccessTypes `json:"keyVaultNetworkAccess,omitempty"`
	KeyVaultResourceId    *string                     `json:"keyVaultResourceId,omitempty"`
}

type BackendPoolType

type BackendPoolType string
const (
	BackendPoolTypeNodeIP              BackendPoolType = "NodeIP"
	BackendPoolTypeNodeIPConfiguration BackendPoolType = "NodeIPConfiguration"
)

func (*BackendPoolType) UnmarshalJSON added in v0.20240213.1120950

func (s *BackendPoolType) UnmarshalJSON(bytes []byte) error

type ClusterUpgradeSettings

type ClusterUpgradeSettings struct {
	OverrideSettings *UpgradeOverrideSettings `json:"overrideSettings,omitempty"`
}

type Code

type Code string
const (
	CodeRunning Code = "Running"
	CodeStopped Code = "Stopped"
)

func (*Code) UnmarshalJSON added in v0.20240213.1120950

func (s *Code) UnmarshalJSON(bytes []byte) error

type CommandResultId

type CommandResultId struct {
	SubscriptionId     string
	ResourceGroupName  string
	ManagedClusterName string
	CommandId          string
}

CommandResultId is a struct representing the Resource ID for a Command Result

func NewCommandResultID

func NewCommandResultID(subscriptionId string, resourceGroupName string, managedClusterName string, commandId string) CommandResultId

NewCommandResultID returns a new CommandResultId struct

func ParseCommandResultID

func ParseCommandResultID(input string) (*CommandResultId, error)

ParseCommandResultID parses 'input' into a CommandResultId

func ParseCommandResultIDInsensitively

func ParseCommandResultIDInsensitively(input string) (*CommandResultId, error)

ParseCommandResultIDInsensitively parses 'input' case-insensitively into a CommandResultId note: this method should only be used for API response data and not user input

func (*CommandResultId) FromParseResult

func (id *CommandResultId) FromParseResult(input resourceids.ParseResult) error

func (CommandResultId) ID

func (id CommandResultId) ID() string

ID returns the formatted Command Result ID

func (CommandResultId) Segments

func (id CommandResultId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Command Result ID

func (CommandResultId) String

func (id CommandResultId) String() string

String returns a human-readable description of this Command Result ID

type CommandResultProperties

type CommandResultProperties struct {
	ExitCode          *int64  `json:"exitCode,omitempty"`
	FinishedAt        *string `json:"finishedAt,omitempty"`
	Logs              *string `json:"logs,omitempty"`
	ProvisioningState *string `json:"provisioningState,omitempty"`
	Reason            *string `json:"reason,omitempty"`
	StartedAt         *string `json:"startedAt,omitempty"`
}

func (*CommandResultProperties) GetFinishedAtAsTime

func (o *CommandResultProperties) GetFinishedAtAsTime() (*time.Time, error)

func (*CommandResultProperties) GetStartedAtAsTime

func (o *CommandResultProperties) GetStartedAtAsTime() (*time.Time, error)

func (*CommandResultProperties) SetFinishedAtAsTime

func (o *CommandResultProperties) SetFinishedAtAsTime(input time.Time)

func (*CommandResultProperties) SetStartedAtAsTime

func (o *CommandResultProperties) SetStartedAtAsTime(input time.Time)

type CompatibleVersions

type CompatibleVersions struct {
	Name     *string   `json:"name,omitempty"`
	Versions *[]string `json:"versions,omitempty"`
}

type ContainerServiceLinuxProfile

type ContainerServiceLinuxProfile struct {
	AdminUsername string                           `json:"adminUsername"`
	Ssh           ContainerServiceSshConfiguration `json:"ssh"`
}

type ContainerServiceNetworkProfile

type ContainerServiceNetworkProfile struct {
	DnsServiceIP        *string                                        `json:"dnsServiceIP,omitempty"`
	IPFamilies          *[]IPFamily                                    `json:"ipFamilies,omitempty"`
	KubeProxyConfig     *ContainerServiceNetworkProfileKubeProxyConfig `json:"kubeProxyConfig,omitempty"`
	LoadBalancerProfile *ManagedClusterLoadBalancerProfile             `json:"loadBalancerProfile,omitempty"`
	LoadBalancerSku     *LoadBalancerSku                               `json:"loadBalancerSku,omitempty"`
	Monitoring          *NetworkMonitoring                             `json:"monitoring,omitempty"`
	NatGatewayProfile   *ManagedClusterNATGatewayProfile               `json:"natGatewayProfile,omitempty"`
	NetworkDataplane    *NetworkDataplane                              `json:"networkDataplane,omitempty"`
	NetworkMode         *NetworkMode                                   `json:"networkMode,omitempty"`
	NetworkPlugin       *NetworkPlugin                                 `json:"networkPlugin,omitempty"`
	NetworkPluginMode   *NetworkPluginMode                             `json:"networkPluginMode,omitempty"`
	NetworkPolicy       *NetworkPolicy                                 `json:"networkPolicy,omitempty"`
	OutboundType        *OutboundType                                  `json:"outboundType,omitempty"`
	PodCidr             *string                                        `json:"podCidr,omitempty"`
	PodCidrs            *[]string                                      `json:"podCidrs,omitempty"`
	ServiceCidr         *string                                        `json:"serviceCidr,omitempty"`
	ServiceCidrs        *[]string                                      `json:"serviceCidrs,omitempty"`
}

type ContainerServiceNetworkProfileKubeProxyConfig

type ContainerServiceNetworkProfileKubeProxyConfig struct {
	Enabled    *bool                                                    `json:"enabled,omitempty"`
	IPvsConfig *ContainerServiceNetworkProfileKubeProxyConfigIPvsConfig `json:"ipvsConfig,omitempty"`
	Mode       *Mode                                                    `json:"mode,omitempty"`
}

type ContainerServiceNetworkProfileKubeProxyConfigIPvsConfig

type ContainerServiceNetworkProfileKubeProxyConfigIPvsConfig struct {
	Scheduler            *IPvsScheduler `json:"scheduler,omitempty"`
	TcpFinTimeoutSeconds *int64         `json:"tcpFinTimeoutSeconds,omitempty"`
	TcpTimeoutSeconds    *int64         `json:"tcpTimeoutSeconds,omitempty"`
	UdpTimeoutSeconds    *int64         `json:"udpTimeoutSeconds,omitempty"`
}

type ContainerServiceSshConfiguration

type ContainerServiceSshConfiguration struct {
	PublicKeys []ContainerServiceSshPublicKey `json:"publicKeys"`
}

type ContainerServiceSshPublicKey

type ContainerServiceSshPublicKey struct {
	KeyData string `json:"keyData"`
}

type ControlPlaneUpgradeOverride

type ControlPlaneUpgradeOverride string
const (
	ControlPlaneUpgradeOverrideIgnoreKubernetesDeprecations ControlPlaneUpgradeOverride = "IgnoreKubernetesDeprecations"
)

func (*ControlPlaneUpgradeOverride) UnmarshalJSON added in v0.20240213.1120950

func (s *ControlPlaneUpgradeOverride) UnmarshalJSON(bytes []byte) error

type ControlledValues

type ControlledValues string
const (
	ControlledValuesRequestsAndLimits ControlledValues = "RequestsAndLimits"
	ControlledValuesRequestsOnly      ControlledValues = "RequestsOnly"
)

func (*ControlledValues) UnmarshalJSON added in v0.20240213.1120950

func (s *ControlledValues) UnmarshalJSON(bytes []byte) error

type CreateOrUpdateOperationResponse

type CreateOrUpdateOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *ManagedCluster
}

type CreationData

type CreationData struct {
	SourceResourceId *string `json:"sourceResourceId,omitempty"`
}

type CredentialResult

type CredentialResult struct {
	Name  *string `json:"name,omitempty"`
	Value *string `json:"value,omitempty"`
}

type CredentialResults

type CredentialResults struct {
	Kubeconfigs *[]CredentialResult `json:"kubeconfigs,omitempty"`
}

type DeleteOperationOptions

type DeleteOperationOptions struct {
	IgnorePodDisruptionBudget *bool
}

func DefaultDeleteOperationOptions

func DefaultDeleteOperationOptions() DeleteOperationOptions

func (DeleteOperationOptions) ToHeaders added in v0.20240213.1120950

func (o DeleteOperationOptions) ToHeaders() *client.Headers

func (DeleteOperationOptions) ToOData added in v0.20240213.1120950

func (o DeleteOperationOptions) ToOData() *odata.Query

func (DeleteOperationOptions) ToQuery added in v0.20240213.1120950

type DeleteOperationResponse

type DeleteOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type EndpointDependency

type EndpointDependency struct {
	DomainName      *string           `json:"domainName,omitempty"`
	EndpointDetails *[]EndpointDetail `json:"endpointDetails,omitempty"`
}

type EndpointDetail

type EndpointDetail struct {
	Description *string `json:"description,omitempty"`
	IPAddress   *string `json:"ipAddress,omitempty"`
	Port        *int64  `json:"port,omitempty"`
	Protocol    *string `json:"protocol,omitempty"`
}

type Expander

type Expander string
const (
	ExpanderLeastNegativewaste Expander = "least-waste"
	ExpanderMostNegativepods   Expander = "most-pods"
	ExpanderPriority           Expander = "priority"
	ExpanderRandom             Expander = "random"
)

func (*Expander) UnmarshalJSON added in v0.20240213.1120950

func (s *Expander) UnmarshalJSON(bytes []byte) error

type Format

type Format string
const (
	FormatAzure Format = "azure"
	FormatExec  Format = "exec"
)

func (*Format) UnmarshalJSON added in v0.20240213.1120950

func (s *Format) UnmarshalJSON(bytes []byte) error

type GPUInstanceProfile

type GPUInstanceProfile string
const (
	GPUInstanceProfileMIGFourg  GPUInstanceProfile = "MIG4g"
	GPUInstanceProfileMIGOneg   GPUInstanceProfile = "MIG1g"
	GPUInstanceProfileMIGSeveng GPUInstanceProfile = "MIG7g"
	GPUInstanceProfileMIGThreeg GPUInstanceProfile = "MIG3g"
	GPUInstanceProfileMIGTwog   GPUInstanceProfile = "MIG2g"
)

func (*GPUInstanceProfile) UnmarshalJSON added in v0.20240213.1120950

func (s *GPUInstanceProfile) UnmarshalJSON(bytes []byte) error

type GetAccessProfileOperationResponse

type GetAccessProfileOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *ManagedClusterAccessProfile
}

type GetCommandResultOperationResponse

type GetCommandResultOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *RunCommandResult
}

type GetMeshRevisionProfileOperationResponse

type GetMeshRevisionProfileOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *MeshRevisionProfile
}

type GetMeshUpgradeProfileOperationResponse

type GetMeshUpgradeProfileOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *MeshUpgradeProfile
}

type GetOSOptionsOperationOptions

type GetOSOptionsOperationOptions struct {
	ResourceType *string
}

func DefaultGetOSOptionsOperationOptions

func DefaultGetOSOptionsOperationOptions() GetOSOptionsOperationOptions

func (GetOSOptionsOperationOptions) ToHeaders added in v0.20240213.1120950

func (GetOSOptionsOperationOptions) ToOData added in v0.20240213.1120950

func (GetOSOptionsOperationOptions) ToQuery added in v0.20240213.1120950

type GetOSOptionsOperationResponse

type GetOSOptionsOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *OSOptionProfile
}

type GetOperationResponse

type GetOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *ManagedCluster
}

type GetUpgradeProfileOperationResponse

type GetUpgradeProfileOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *ManagedClusterUpgradeProfile
}

type GuardrailsProfile

type GuardrailsProfile struct {
	ExcludedNamespaces       *[]string `json:"excludedNamespaces,omitempty"`
	Level                    Level     `json:"level"`
	SystemExcludedNamespaces *[]string `json:"systemExcludedNamespaces,omitempty"`
	Version                  string    `json:"version"`
}

type IPFamily

type IPFamily string
const (
	IPFamilyIPvFour IPFamily = "IPv4"
	IPFamilyIPvSix  IPFamily = "IPv6"
)

func (*IPFamily) UnmarshalJSON added in v0.20240213.1120950

func (s *IPFamily) UnmarshalJSON(bytes []byte) error

type IPTag

type IPTag struct {
	IPTagType *string `json:"ipTagType,omitempty"`
	Tag       *string `json:"tag,omitempty"`
}

type IPvsScheduler

type IPvsScheduler string
const (
	IPvsSchedulerLeastConnection IPvsScheduler = "LeastConnection"
	IPvsSchedulerRoundRobin      IPvsScheduler = "RoundRobin"
)

func (*IPvsScheduler) UnmarshalJSON added in v0.20240213.1120950

func (s *IPvsScheduler) UnmarshalJSON(bytes []byte) error

type IstioCertificateAuthority

type IstioCertificateAuthority struct {
	Plugin *IstioPluginCertificateAuthority `json:"plugin,omitempty"`
}

type IstioComponents

type IstioComponents struct {
	EgressGateways  *[]IstioEgressGateway  `json:"egressGateways,omitempty"`
	IngressGateways *[]IstioIngressGateway `json:"ingressGateways,omitempty"`
}

type IstioEgressGateway

type IstioEgressGateway struct {
	Enabled      bool               `json:"enabled"`
	NodeSelector *map[string]string `json:"nodeSelector,omitempty"`
}

type IstioIngressGateway

type IstioIngressGateway struct {
	Enabled bool                    `json:"enabled"`
	Mode    IstioIngressGatewayMode `json:"mode"`
}

type IstioIngressGatewayMode

type IstioIngressGatewayMode string
const (
	IstioIngressGatewayModeExternal IstioIngressGatewayMode = "External"
	IstioIngressGatewayModeInternal IstioIngressGatewayMode = "Internal"
)

func (*IstioIngressGatewayMode) UnmarshalJSON added in v0.20240213.1120950

func (s *IstioIngressGatewayMode) UnmarshalJSON(bytes []byte) error

type IstioPluginCertificateAuthority

type IstioPluginCertificateAuthority struct {
	CertChainObjectName *string `json:"certChainObjectName,omitempty"`
	CertObjectName      *string `json:"certObjectName,omitempty"`
	KeyObjectName       *string `json:"keyObjectName,omitempty"`
	KeyVaultId          *string `json:"keyVaultId,omitempty"`
	RootCertObjectName  *string `json:"rootCertObjectName,omitempty"`
}

type IstioServiceMesh

type IstioServiceMesh struct {
	CertificateAuthority *IstioCertificateAuthority `json:"certificateAuthority,omitempty"`
	Components           *IstioComponents           `json:"components,omitempty"`
	Revisions            *[]string                  `json:"revisions,omitempty"`
}

type KeyVaultNetworkAccessTypes

type KeyVaultNetworkAccessTypes string
const (
	KeyVaultNetworkAccessTypesPrivate KeyVaultNetworkAccessTypes = "Private"
	KeyVaultNetworkAccessTypesPublic  KeyVaultNetworkAccessTypes = "Public"
)

func (*KeyVaultNetworkAccessTypes) UnmarshalJSON added in v0.20240213.1120950

func (s *KeyVaultNetworkAccessTypes) UnmarshalJSON(bytes []byte) error

type KubeletConfig

type KubeletConfig struct {
	AllowedUnsafeSysctls  *[]string `json:"allowedUnsafeSysctls,omitempty"`
	ContainerLogMaxFiles  *int64    `json:"containerLogMaxFiles,omitempty"`
	ContainerLogMaxSizeMB *int64    `json:"containerLogMaxSizeMB,omitempty"`
	CpuCfsQuota           *bool     `json:"cpuCfsQuota,omitempty"`
	CpuCfsQuotaPeriod     *string   `json:"cpuCfsQuotaPeriod,omitempty"`
	CpuManagerPolicy      *string   `json:"cpuManagerPolicy,omitempty"`
	FailSwapOn            *bool     `json:"failSwapOn,omitempty"`
	ImageGcHighThreshold  *int64    `json:"imageGcHighThreshold,omitempty"`
	ImageGcLowThreshold   *int64    `json:"imageGcLowThreshold,omitempty"`
	PodMaxPids            *int64    `json:"podMaxPids,omitempty"`
	TopologyManagerPolicy *string   `json:"topologyManagerPolicy,omitempty"`
}

type KubeletDiskType

type KubeletDiskType string
const (
	KubeletDiskTypeOS        KubeletDiskType = "OS"
	KubeletDiskTypeTemporary KubeletDiskType = "Temporary"
)

func (*KubeletDiskType) UnmarshalJSON added in v0.20240213.1120950

func (s *KubeletDiskType) UnmarshalJSON(bytes []byte) error

type KubernetesPatchVersion

type KubernetesPatchVersion struct {
	Upgrades *[]string `json:"upgrades,omitempty"`
}

type KubernetesSupportPlan

type KubernetesSupportPlan string
const (
	KubernetesSupportPlanAKSLongTermSupport KubernetesSupportPlan = "AKSLongTermSupport"
	KubernetesSupportPlanKubernetesOfficial KubernetesSupportPlan = "KubernetesOfficial"
)

func (*KubernetesSupportPlan) UnmarshalJSON added in v0.20240213.1120950

func (s *KubernetesSupportPlan) UnmarshalJSON(bytes []byte) error

type KubernetesVersion

type KubernetesVersion struct {
	Capabilities  *KubernetesVersionCapabilities     `json:"capabilities,omitempty"`
	IsPreview     *bool                              `json:"isPreview,omitempty"`
	PatchVersions *map[string]KubernetesPatchVersion `json:"patchVersions,omitempty"`
	Version       *string                            `json:"version,omitempty"`
}

type KubernetesVersionCapabilities

type KubernetesVersionCapabilities struct {
	SupportPlan *[]KubernetesSupportPlan `json:"supportPlan,omitempty"`
}

type KubernetesVersionListResult

type KubernetesVersionListResult struct {
	Values *[]KubernetesVersion `json:"values,omitempty"`
}

type Level

type Level string
const (
	LevelEnforcement Level = "Enforcement"
	LevelOff         Level = "Off"
	LevelWarning     Level = "Warning"
)

func (*Level) UnmarshalJSON added in v0.20240213.1120950

func (s *Level) UnmarshalJSON(bytes []byte) error

type LicenseType

type LicenseType string
const (
	LicenseTypeNone          LicenseType = "None"
	LicenseTypeWindowsServer LicenseType = "Windows_Server"
)

func (*LicenseType) UnmarshalJSON added in v0.20240213.1120950

func (s *LicenseType) UnmarshalJSON(bytes []byte) error

type LinuxOSConfig

type LinuxOSConfig struct {
	SwapFileSizeMB             *int64        `json:"swapFileSizeMB,omitempty"`
	Sysctls                    *SysctlConfig `json:"sysctls,omitempty"`
	TransparentHugePageDefrag  *string       `json:"transparentHugePageDefrag,omitempty"`
	TransparentHugePageEnabled *string       `json:"transparentHugePageEnabled,omitempty"`
}

type ListByResourceGroupCompleteResult

type ListByResourceGroupCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []ManagedCluster
}

type ListByResourceGroupOperationResponse

type ListByResourceGroupOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]ManagedCluster
}

type ListClusterAdminCredentialsOperationOptions

type ListClusterAdminCredentialsOperationOptions struct {
	ServerFqdn *string
}

func DefaultListClusterAdminCredentialsOperationOptions

func DefaultListClusterAdminCredentialsOperationOptions() ListClusterAdminCredentialsOperationOptions

func (ListClusterAdminCredentialsOperationOptions) ToHeaders added in v0.20240213.1120950

func (ListClusterAdminCredentialsOperationOptions) ToOData added in v0.20240213.1120950

func (ListClusterAdminCredentialsOperationOptions) ToQuery added in v0.20240213.1120950

type ListClusterAdminCredentialsOperationResponse

type ListClusterAdminCredentialsOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *CredentialResults
}

type ListClusterMonitoringUserCredentialsOperationOptions

type ListClusterMonitoringUserCredentialsOperationOptions struct {
	ServerFqdn *string
}

func DefaultListClusterMonitoringUserCredentialsOperationOptions

func DefaultListClusterMonitoringUserCredentialsOperationOptions() ListClusterMonitoringUserCredentialsOperationOptions

func (ListClusterMonitoringUserCredentialsOperationOptions) ToHeaders added in v0.20240213.1120950

func (ListClusterMonitoringUserCredentialsOperationOptions) ToOData added in v0.20240213.1120950

func (ListClusterMonitoringUserCredentialsOperationOptions) ToQuery added in v0.20240213.1120950

type ListClusterMonitoringUserCredentialsOperationResponse

type ListClusterMonitoringUserCredentialsOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *CredentialResults
}

type ListClusterUserCredentialsOperationOptions

type ListClusterUserCredentialsOperationOptions struct {
	Format     *Format
	ServerFqdn *string
}

func DefaultListClusterUserCredentialsOperationOptions

func DefaultListClusterUserCredentialsOperationOptions() ListClusterUserCredentialsOperationOptions

func (ListClusterUserCredentialsOperationOptions) ToHeaders added in v0.20240213.1120950

func (ListClusterUserCredentialsOperationOptions) ToOData added in v0.20240213.1120950

func (ListClusterUserCredentialsOperationOptions) ToQuery added in v0.20240213.1120950

type ListClusterUserCredentialsOperationResponse

type ListClusterUserCredentialsOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *CredentialResults
}

type ListCompleteResult

type ListCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []ManagedCluster
}

type ListKubernetesVersionsOperationResponse

type ListKubernetesVersionsOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *KubernetesVersionListResult
}

type ListMeshRevisionProfilesCompleteResult

type ListMeshRevisionProfilesCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []MeshRevisionProfile
}

type ListMeshRevisionProfilesOperationResponse

type ListMeshRevisionProfilesOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]MeshRevisionProfile
}

type ListMeshUpgradeProfilesCompleteResult

type ListMeshUpgradeProfilesCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []MeshUpgradeProfile
}

type ListMeshUpgradeProfilesOperationResponse

type ListMeshUpgradeProfilesOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]MeshUpgradeProfile
}

type ListOperationResponse

type ListOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]ManagedCluster
}

type ListOutboundNetworkDependenciesEndpointsCompleteResult

type ListOutboundNetworkDependenciesEndpointsCompleteResult struct {
	LatestHttpResponse *http.Response
	Items              []OutboundEnvironmentEndpoint
}

type ListOutboundNetworkDependenciesEndpointsOperationResponse

type ListOutboundNetworkDependenciesEndpointsOperationResponse struct {
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *[]OutboundEnvironmentEndpoint
}

type LoadBalancerSku

type LoadBalancerSku string
const (
	LoadBalancerSkuBasic    LoadBalancerSku = "basic"
	LoadBalancerSkuStandard LoadBalancerSku = "standard"
)

func (*LoadBalancerSku) UnmarshalJSON added in v0.20240213.1120950

func (s *LoadBalancerSku) UnmarshalJSON(bytes []byte) error

type LocationId

type LocationId struct {
	SubscriptionId string
	LocationName   string
}

LocationId is a struct representing the Resource ID for a Location

func NewLocationID

func NewLocationID(subscriptionId string, locationName string) LocationId

NewLocationID returns a new LocationId struct

func ParseLocationID

func ParseLocationID(input string) (*LocationId, error)

ParseLocationID parses 'input' into a LocationId

func ParseLocationIDInsensitively

func ParseLocationIDInsensitively(input string) (*LocationId, error)

ParseLocationIDInsensitively parses 'input' case-insensitively into a LocationId note: this method should only be used for API response data and not user input

func (*LocationId) FromParseResult

func (id *LocationId) FromParseResult(input resourceids.ParseResult) error

func (LocationId) ID

func (id LocationId) ID() string

ID returns the formatted Location ID

func (LocationId) Segments

func (id LocationId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Location ID

func (LocationId) String

func (id LocationId) String() string

String returns a human-readable description of this Location ID

type ManagedCluster

type ManagedCluster struct {
	ExtendedLocation *edgezones.Model                  `json:"extendedLocation,omitempty"`
	Id               *string                           `json:"id,omitempty"`
	Identity         *identity.SystemOrUserAssignedMap `json:"identity,omitempty"`
	Location         string                            `json:"location"`
	Name             *string                           `json:"name,omitempty"`
	Properties       *ManagedClusterProperties         `json:"properties,omitempty"`
	Sku              *ManagedClusterSKU                `json:"sku,omitempty"`
	SystemData       *systemdata.SystemData            `json:"systemData,omitempty"`
	Tags             *map[string]string                `json:"tags,omitempty"`
	Type             *string                           `json:"type,omitempty"`
}

type ManagedClusterAADProfile

type ManagedClusterAADProfile struct {
	AdminGroupObjectIDs *[]string `json:"adminGroupObjectIDs,omitempty"`
	ClientAppID         *string   `json:"clientAppID,omitempty"`
	EnableAzureRBAC     *bool     `json:"enableAzureRBAC,omitempty"`
	Managed             *bool     `json:"managed,omitempty"`
	ServerAppID         *string   `json:"serverAppID,omitempty"`
	ServerAppSecret     *string   `json:"serverAppSecret,omitempty"`
	TenantID            *string   `json:"tenantID,omitempty"`
}

type ManagedClusterAPIServerAccessProfile

type ManagedClusterAPIServerAccessProfile struct {
	AuthorizedIPRanges             *[]string `json:"authorizedIPRanges,omitempty"`
	DisableRunCommand              *bool     `json:"disableRunCommand,omitempty"`
	EnablePrivateCluster           *bool     `json:"enablePrivateCluster,omitempty"`
	EnablePrivateClusterPublicFQDN *bool     `json:"enablePrivateClusterPublicFQDN,omitempty"`
	EnableVnetIntegration          *bool     `json:"enableVnetIntegration,omitempty"`
	PrivateDNSZone                 *string   `json:"privateDNSZone,omitempty"`
	SubnetId                       *string   `json:"subnetId,omitempty"`
}

type ManagedClusterAccessProfile

type ManagedClusterAccessProfile struct {
	Id         *string                `json:"id,omitempty"`
	Location   string                 `json:"location"`
	Name       *string                `json:"name,omitempty"`
	Properties *AccessProfile         `json:"properties,omitempty"`
	SystemData *systemdata.SystemData `json:"systemData,omitempty"`
	Tags       *map[string]string     `json:"tags,omitempty"`
	Type       *string                `json:"type,omitempty"`
}

type ManagedClusterAddonProfile

type ManagedClusterAddonProfile struct {
	Config   *map[string]string    `json:"config,omitempty"`
	Enabled  bool                  `json:"enabled"`
	Identity *UserAssignedIdentity `json:"identity,omitempty"`
}

type ManagedClusterAgentPoolProfile

type ManagedClusterAgentPoolProfile struct {
	AvailabilityZones          *zones.Schema             `json:"availabilityZones,omitempty"`
	CapacityReservationGroupID *string                   `json:"capacityReservationGroupID,omitempty"`
	Count                      *int64                    `json:"count,omitempty"`
	CreationData               *CreationData             `json:"creationData,omitempty"`
	CurrentOrchestratorVersion *string                   `json:"currentOrchestratorVersion,omitempty"`
	EnableAutoScaling          *bool                     `json:"enableAutoScaling,omitempty"`
	EnableCustomCATrust        *bool                     `json:"enableCustomCATrust,omitempty"`
	EnableEncryptionAtHost     *bool                     `json:"enableEncryptionAtHost,omitempty"`
	EnableFIPS                 *bool                     `json:"enableFIPS,omitempty"`
	EnableNodePublicIP         *bool                     `json:"enableNodePublicIP,omitempty"`
	EnableUltraSSD             *bool                     `json:"enableUltraSSD,omitempty"`
	GpuInstanceProfile         *GPUInstanceProfile       `json:"gpuInstanceProfile,omitempty"`
	HostGroupID                *string                   `json:"hostGroupID,omitempty"`
	KubeletConfig              *KubeletConfig            `json:"kubeletConfig,omitempty"`
	KubeletDiskType            *KubeletDiskType          `json:"kubeletDiskType,omitempty"`
	LinuxOSConfig              *LinuxOSConfig            `json:"linuxOSConfig,omitempty"`
	MaxCount                   *int64                    `json:"maxCount,omitempty"`
	MaxPods                    *int64                    `json:"maxPods,omitempty"`
	MessageOfTheDay            *string                   `json:"messageOfTheDay,omitempty"`
	MinCount                   *int64                    `json:"minCount,omitempty"`
	Mode                       *AgentPoolMode            `json:"mode,omitempty"`
	Name                       string                    `json:"name"`
	NetworkProfile             *AgentPoolNetworkProfile  `json:"networkProfile,omitempty"`
	NodeImageVersion           *string                   `json:"nodeImageVersion,omitempty"`
	NodeLabels                 *map[string]string        `json:"nodeLabels,omitempty"`
	NodePublicIPPrefixID       *string                   `json:"nodePublicIPPrefixID,omitempty"`
	NodeTaints                 *[]string                 `json:"nodeTaints,omitempty"`
	OrchestratorVersion        *string                   `json:"orchestratorVersion,omitempty"`
	OsDiskSizeGB               *int64                    `json:"osDiskSizeGB,omitempty"`
	OsDiskType                 *OSDiskType               `json:"osDiskType,omitempty"`
	OsSKU                      *OSSKU                    `json:"osSKU,omitempty"`
	OsType                     *OSType                   `json:"osType,omitempty"`
	PodSubnetID                *string                   `json:"podSubnetID,omitempty"`
	PowerState                 *PowerState               `json:"powerState,omitempty"`
	ProvisioningState          *string                   `json:"provisioningState,omitempty"`
	ProximityPlacementGroupID  *string                   `json:"proximityPlacementGroupID,omitempty"`
	ScaleDownMode              *ScaleDownMode            `json:"scaleDownMode,omitempty"`
	ScaleSetEvictionPolicy     *ScaleSetEvictionPolicy   `json:"scaleSetEvictionPolicy,omitempty"`
	ScaleSetPriority           *ScaleSetPriority         `json:"scaleSetPriority,omitempty"`
	SecurityProfile            *AgentPoolSecurityProfile `json:"securityProfile,omitempty"`
	SpotMaxPrice               *float64                  `json:"spotMaxPrice,omitempty"`
	Tags                       *map[string]string        `json:"tags,omitempty"`
	Type                       *AgentPoolType            `json:"type,omitempty"`
	UpgradeSettings            *AgentPoolUpgradeSettings `json:"upgradeSettings,omitempty"`
	VMSize                     *string                   `json:"vmSize,omitempty"`
	VnetSubnetID               *string                   `json:"vnetSubnetID,omitempty"`
	WindowsProfile             *AgentPoolWindowsProfile  `json:"windowsProfile,omitempty"`
	WorkloadRuntime            *WorkloadRuntime          `json:"workloadRuntime,omitempty"`
}

type ManagedClusterAutoUpgradeProfile

type ManagedClusterAutoUpgradeProfile struct {
	NodeOSUpgradeChannel *NodeOSUpgradeChannel `json:"nodeOSUpgradeChannel,omitempty"`
	UpgradeChannel       *UpgradeChannel       `json:"upgradeChannel,omitempty"`
}

type ManagedClusterAzureMonitorProfile

type ManagedClusterAzureMonitorProfile struct {
	Metrics *ManagedClusterAzureMonitorProfileMetrics `json:"metrics,omitempty"`
}

type ManagedClusterAzureMonitorProfileKubeStateMetrics

type ManagedClusterAzureMonitorProfileKubeStateMetrics struct {
	MetricAnnotationsAllowList *string `json:"metricAnnotationsAllowList,omitempty"`
	MetricLabelsAllowlist      *string `json:"metricLabelsAllowlist,omitempty"`
}

type ManagedClusterAzureMonitorProfileMetrics

type ManagedClusterAzureMonitorProfileMetrics struct {
	Enabled          bool                                               `json:"enabled"`
	KubeStateMetrics *ManagedClusterAzureMonitorProfileKubeStateMetrics `json:"kubeStateMetrics,omitempty"`
}

type ManagedClusterHTTPProxyConfig

type ManagedClusterHTTPProxyConfig struct {
	EffectiveNoProxy *[]string `json:"effectiveNoProxy,omitempty"`
	HTTPProxy        *string   `json:"httpProxy,omitempty"`
	HTTPSProxy       *string   `json:"httpsProxy,omitempty"`
	NoProxy          *[]string `json:"noProxy,omitempty"`
	TrustedCa        *string   `json:"trustedCa,omitempty"`
}

type ManagedClusterIngressProfile

type ManagedClusterIngressProfile struct {
	WebAppRouting *ManagedClusterIngressProfileWebAppRouting `json:"webAppRouting,omitempty"`
}

type ManagedClusterIngressProfileWebAppRouting

type ManagedClusterIngressProfileWebAppRouting struct {
	DnsZoneResourceId *string               `json:"dnsZoneResourceId,omitempty"`
	Enabled           *bool                 `json:"enabled,omitempty"`
	Identity          *UserAssignedIdentity `json:"identity,omitempty"`
}

type ManagedClusterLoadBalancerProfile

type ManagedClusterLoadBalancerProfile struct {
	AllocatedOutboundPorts              *int64                                               `json:"allocatedOutboundPorts,omitempty"`
	BackendPoolType                     *BackendPoolType                                     `json:"backendPoolType,omitempty"`
	EffectiveOutboundIPs                *[]ResourceReference                                 `json:"effectiveOutboundIPs,omitempty"`
	EnableMultipleStandardLoadBalancers *bool                                                `json:"enableMultipleStandardLoadBalancers,omitempty"`
	IdleTimeoutInMinutes                *int64                                               `json:"idleTimeoutInMinutes,omitempty"`
	ManagedOutboundIPs                  *ManagedClusterLoadBalancerProfileManagedOutboundIPs `json:"managedOutboundIPs,omitempty"`
	OutboundIPPrefixes                  *ManagedClusterLoadBalancerProfileOutboundIPPrefixes `json:"outboundIPPrefixes,omitempty"`
	OutboundIPs                         *ManagedClusterLoadBalancerProfileOutboundIPs        `json:"outboundIPs,omitempty"`
}

type ManagedClusterLoadBalancerProfileManagedOutboundIPs

type ManagedClusterLoadBalancerProfileManagedOutboundIPs struct {
	Count     *int64 `json:"count,omitempty"`
	CountIPv6 *int64 `json:"countIPv6,omitempty"`
}

type ManagedClusterLoadBalancerProfileOutboundIPPrefixes

type ManagedClusterLoadBalancerProfileOutboundIPPrefixes struct {
	PublicIPPrefixes *[]ResourceReference `json:"publicIPPrefixes,omitempty"`
}

type ManagedClusterLoadBalancerProfileOutboundIPs

type ManagedClusterLoadBalancerProfileOutboundIPs struct {
	PublicIPs *[]ResourceReference `json:"publicIPs,omitempty"`
}

type ManagedClusterManagedOutboundIPProfile

type ManagedClusterManagedOutboundIPProfile struct {
	Count *int64 `json:"count,omitempty"`
}

type ManagedClusterNATGatewayProfile

type ManagedClusterNATGatewayProfile struct {
	EffectiveOutboundIPs     *[]ResourceReference                    `json:"effectiveOutboundIPs,omitempty"`
	IdleTimeoutInMinutes     *int64                                  `json:"idleTimeoutInMinutes,omitempty"`
	ManagedOutboundIPProfile *ManagedClusterManagedOutboundIPProfile `json:"managedOutboundIPProfile,omitempty"`
}

type ManagedClusterNodeResourceGroupProfile

type ManagedClusterNodeResourceGroupProfile struct {
	RestrictionLevel *RestrictionLevel `json:"restrictionLevel,omitempty"`
}

type ManagedClusterOIDCIssuerProfile

type ManagedClusterOIDCIssuerProfile struct {
	Enabled   *bool   `json:"enabled,omitempty"`
	IssuerURL *string `json:"issuerURL,omitempty"`
}

type ManagedClusterOperationPredicate

type ManagedClusterOperationPredicate struct {
	Id       *string
	Location *string
	Name     *string
	Type     *string
}

func (ManagedClusterOperationPredicate) Matches

type ManagedClusterPodIdentity

type ManagedClusterPodIdentity struct {
	BindingSelector   *string                                     `json:"bindingSelector,omitempty"`
	Identity          UserAssignedIdentity                        `json:"identity"`
	Name              string                                      `json:"name"`
	Namespace         string                                      `json:"namespace"`
	ProvisioningInfo  *ManagedClusterPodIdentityProvisioningInfo  `json:"provisioningInfo,omitempty"`
	ProvisioningState *ManagedClusterPodIdentityProvisioningState `json:"provisioningState,omitempty"`
}

type ManagedClusterPodIdentityException

type ManagedClusterPodIdentityException struct {
	Name      string            `json:"name"`
	Namespace string            `json:"namespace"`
	PodLabels map[string]string `json:"podLabels"`
}

type ManagedClusterPodIdentityProfile

type ManagedClusterPodIdentityProfile struct {
	AllowNetworkPluginKubenet      *bool                                 `json:"allowNetworkPluginKubenet,omitempty"`
	Enabled                        *bool                                 `json:"enabled,omitempty"`
	UserAssignedIdentities         *[]ManagedClusterPodIdentity          `json:"userAssignedIdentities,omitempty"`
	UserAssignedIdentityExceptions *[]ManagedClusterPodIdentityException `json:"userAssignedIdentityExceptions,omitempty"`
}

type ManagedClusterPodIdentityProvisioningError

type ManagedClusterPodIdentityProvisioningError struct {
	Error *ManagedClusterPodIdentityProvisioningErrorBody `json:"error,omitempty"`
}

type ManagedClusterPodIdentityProvisioningErrorBody

type ManagedClusterPodIdentityProvisioningErrorBody struct {
	Code    *string                                           `json:"code,omitempty"`
	Details *[]ManagedClusterPodIdentityProvisioningErrorBody `json:"details,omitempty"`
	Message *string                                           `json:"message,omitempty"`
	Target  *string                                           `json:"target,omitempty"`
}

type ManagedClusterPodIdentityProvisioningInfo

type ManagedClusterPodIdentityProvisioningInfo struct {
	Error *ManagedClusterPodIdentityProvisioningError `json:"error,omitempty"`
}

type ManagedClusterPodIdentityProvisioningState

type ManagedClusterPodIdentityProvisioningState string
const (
	ManagedClusterPodIdentityProvisioningStateAssigned  ManagedClusterPodIdentityProvisioningState = "Assigned"
	ManagedClusterPodIdentityProvisioningStateCanceled  ManagedClusterPodIdentityProvisioningState = "Canceled"
	ManagedClusterPodIdentityProvisioningStateDeleting  ManagedClusterPodIdentityProvisioningState = "Deleting"
	ManagedClusterPodIdentityProvisioningStateFailed    ManagedClusterPodIdentityProvisioningState = "Failed"
	ManagedClusterPodIdentityProvisioningStateSucceeded ManagedClusterPodIdentityProvisioningState = "Succeeded"
	ManagedClusterPodIdentityProvisioningStateUpdating  ManagedClusterPodIdentityProvisioningState = "Updating"
)

func (*ManagedClusterPodIdentityProvisioningState) UnmarshalJSON added in v0.20240213.1120950

func (s *ManagedClusterPodIdentityProvisioningState) UnmarshalJSON(bytes []byte) error

type ManagedClusterPoolUpgradeProfile

type ManagedClusterPoolUpgradeProfile struct {
	KubernetesVersion string                                             `json:"kubernetesVersion"`
	Name              *string                                            `json:"name,omitempty"`
	OsType            OSType                                             `json:"osType"`
	Upgrades          *[]ManagedClusterPoolUpgradeProfileUpgradesInlined `json:"upgrades,omitempty"`
}

type ManagedClusterPoolUpgradeProfileUpgradesInlined

type ManagedClusterPoolUpgradeProfileUpgradesInlined struct {
	IsPreview         *bool   `json:"isPreview,omitempty"`
	KubernetesVersion *string `json:"kubernetesVersion,omitempty"`
}

type ManagedClusterProperties

type ManagedClusterProperties struct {
	AadProfile                *ManagedClusterAADProfile                  `json:"aadProfile,omitempty"`
	AddonProfiles             *map[string]ManagedClusterAddonProfile     `json:"addonProfiles,omitempty"`
	AgentPoolProfiles         *[]ManagedClusterAgentPoolProfile          `json:"agentPoolProfiles,omitempty"`
	ApiServerAccessProfile    *ManagedClusterAPIServerAccessProfile      `json:"apiServerAccessProfile,omitempty"`
	AutoScalerProfile         *ManagedClusterPropertiesAutoScalerProfile `json:"autoScalerProfile,omitempty"`
	AutoUpgradeProfile        *ManagedClusterAutoUpgradeProfile          `json:"autoUpgradeProfile,omitempty"`
	AzureMonitorProfile       *ManagedClusterAzureMonitorProfile         `json:"azureMonitorProfile,omitempty"`
	AzurePortalFQDN           *string                                    `json:"azurePortalFQDN,omitempty"`
	CreationData              *CreationData                              `json:"creationData,omitempty"`
	CurrentKubernetesVersion  *string                                    `json:"currentKubernetesVersion,omitempty"`
	DisableLocalAccounts      *bool                                      `json:"disableLocalAccounts,omitempty"`
	DiskEncryptionSetID       *string                                    `json:"diskEncryptionSetID,omitempty"`
	DnsPrefix                 *string                                    `json:"dnsPrefix,omitempty"`
	EnableNamespaceResources  *bool                                      `json:"enableNamespaceResources,omitempty"`
	EnablePodSecurityPolicy   *bool                                      `json:"enablePodSecurityPolicy,omitempty"`
	EnableRBAC                *bool                                      `json:"enableRBAC,omitempty"`
	Fqdn                      *string                                    `json:"fqdn,omitempty"`
	FqdnSubdomain             *string                                    `json:"fqdnSubdomain,omitempty"`
	GuardrailsProfile         *GuardrailsProfile                         `json:"guardrailsProfile,omitempty"`
	HTTPProxyConfig           *ManagedClusterHTTPProxyConfig             `json:"httpProxyConfig,omitempty"`
	IdentityProfile           *map[string]UserAssignedIdentity           `json:"identityProfile,omitempty"`
	IngressProfile            *ManagedClusterIngressProfile              `json:"ingressProfile,omitempty"`
	KubernetesVersion         *string                                    `json:"kubernetesVersion,omitempty"`
	LinuxProfile              *ContainerServiceLinuxProfile              `json:"linuxProfile,omitempty"`
	MaxAgentPools             *int64                                     `json:"maxAgentPools,omitempty"`
	NetworkProfile            *ContainerServiceNetworkProfile            `json:"networkProfile,omitempty"`
	NodeResourceGroup         *string                                    `json:"nodeResourceGroup,omitempty"`
	NodeResourceGroupProfile  *ManagedClusterNodeResourceGroupProfile    `json:"nodeResourceGroupProfile,omitempty"`
	OidcIssuerProfile         *ManagedClusterOIDCIssuerProfile           `json:"oidcIssuerProfile,omitempty"`
	PodIdentityProfile        *ManagedClusterPodIdentityProfile          `json:"podIdentityProfile,omitempty"`
	PowerState                *PowerState                                `json:"powerState,omitempty"`
	PrivateFQDN               *string                                    `json:"privateFQDN,omitempty"`
	PrivateLinkResources      *[]PrivateLinkResource                     `json:"privateLinkResources,omitempty"`
	ProvisioningState         *string                                    `json:"provisioningState,omitempty"`
	PublicNetworkAccess       *PublicNetworkAccess                       `json:"publicNetworkAccess,omitempty"`
	SecurityProfile           *ManagedClusterSecurityProfile             `json:"securityProfile,omitempty"`
	ServiceMeshProfile        *ServiceMeshProfile                        `json:"serviceMeshProfile,omitempty"`
	ServicePrincipalProfile   *ManagedClusterServicePrincipalProfile     `json:"servicePrincipalProfile,omitempty"`
	StorageProfile            *ManagedClusterStorageProfile              `json:"storageProfile,omitempty"`
	SupportPlan               *KubernetesSupportPlan                     `json:"supportPlan,omitempty"`
	UpgradeSettings           *ClusterUpgradeSettings                    `json:"upgradeSettings,omitempty"`
	WindowsProfile            *ManagedClusterWindowsProfile              `json:"windowsProfile,omitempty"`
	WorkloadAutoScalerProfile *ManagedClusterWorkloadAutoScalerProfile   `json:"workloadAutoScalerProfile,omitempty"`
}

type ManagedClusterPropertiesAutoScalerProfile

type ManagedClusterPropertiesAutoScalerProfile struct {
	BalanceSimilarNodeGroups      *string   `json:"balance-similar-node-groups,omitempty"`
	Expander                      *Expander `json:"expander,omitempty"`
	MaxEmptyBulkDelete            *string   `json:"max-empty-bulk-delete,omitempty"`
	MaxGracefulTerminationSec     *string   `json:"max-graceful-termination-sec,omitempty"`
	MaxNodeProvisionTime          *string   `json:"max-node-provision-time,omitempty"`
	MaxTotalUnreadyPercentage     *string   `json:"max-total-unready-percentage,omitempty"`
	NewPodScaleUpDelay            *string   `json:"new-pod-scale-up-delay,omitempty"`
	OkTotalUnreadyCount           *string   `json:"ok-total-unready-count,omitempty"`
	ScaleDownDelayAfterAdd        *string   `json:"scale-down-delay-after-add,omitempty"`
	ScaleDownDelayAfterDelete     *string   `json:"scale-down-delay-after-delete,omitempty"`
	ScaleDownDelayAfterFailure    *string   `json:"scale-down-delay-after-failure,omitempty"`
	ScaleDownUnneededTime         *string   `json:"scale-down-unneeded-time,omitempty"`
	ScaleDownUnreadyTime          *string   `json:"scale-down-unready-time,omitempty"`
	ScaleDownUtilizationThreshold *string   `json:"scale-down-utilization-threshold,omitempty"`
	ScanInterval                  *string   `json:"scan-interval,omitempty"`
	SkipNodesWithLocalStorage     *string   `json:"skip-nodes-with-local-storage,omitempty"`
	SkipNodesWithSystemPods       *string   `json:"skip-nodes-with-system-pods,omitempty"`
}

type ManagedClusterSKU

type ManagedClusterSKU struct {
	Name *ManagedClusterSKUName `json:"name,omitempty"`
	Tier *ManagedClusterSKUTier `json:"tier,omitempty"`
}

type ManagedClusterSKUName

type ManagedClusterSKUName string
const (
	ManagedClusterSKUNameBase ManagedClusterSKUName = "Base"
)

func (*ManagedClusterSKUName) UnmarshalJSON added in v0.20240213.1120950

func (s *ManagedClusterSKUName) UnmarshalJSON(bytes []byte) error

type ManagedClusterSKUTier

type ManagedClusterSKUTier string
const (
	ManagedClusterSKUTierFree     ManagedClusterSKUTier = "Free"
	ManagedClusterSKUTierPremium  ManagedClusterSKUTier = "Premium"
	ManagedClusterSKUTierStandard ManagedClusterSKUTier = "Standard"
)

func (*ManagedClusterSKUTier) UnmarshalJSON added in v0.20240213.1120950

func (s *ManagedClusterSKUTier) UnmarshalJSON(bytes []byte) error

type ManagedClusterSecurityProfile

type ManagedClusterSecurityProfile struct {
	AzureKeyVaultKms          *AzureKeyVaultKms                              `json:"azureKeyVaultKms,omitempty"`
	CustomCATrustCertificates *[]string                                      `json:"customCATrustCertificates,omitempty"`
	Defender                  *ManagedClusterSecurityProfileDefender         `json:"defender,omitempty"`
	ImageCleaner              *ManagedClusterSecurityProfileImageCleaner     `json:"imageCleaner,omitempty"`
	ImageIntegrity            *ManagedClusterSecurityProfileImageIntegrity   `json:"imageIntegrity,omitempty"`
	NodeRestriction           *ManagedClusterSecurityProfileNodeRestriction  `json:"nodeRestriction,omitempty"`
	WorkloadIdentity          *ManagedClusterSecurityProfileWorkloadIdentity `json:"workloadIdentity,omitempty"`
}

type ManagedClusterSecurityProfileDefender

type ManagedClusterSecurityProfileDefender struct {
	LogAnalyticsWorkspaceResourceId *string                                                  `json:"logAnalyticsWorkspaceResourceId,omitempty"`
	SecurityMonitoring              *ManagedClusterSecurityProfileDefenderSecurityMonitoring `json:"securityMonitoring,omitempty"`
}

type ManagedClusterSecurityProfileDefenderSecurityMonitoring

type ManagedClusterSecurityProfileDefenderSecurityMonitoring struct {
	Enabled *bool `json:"enabled,omitempty"`
}

type ManagedClusterSecurityProfileImageCleaner

type ManagedClusterSecurityProfileImageCleaner struct {
	Enabled       *bool  `json:"enabled,omitempty"`
	IntervalHours *int64 `json:"intervalHours,omitempty"`
}

type ManagedClusterSecurityProfileImageIntegrity

type ManagedClusterSecurityProfileImageIntegrity struct {
	Enabled *bool `json:"enabled,omitempty"`
}

type ManagedClusterSecurityProfileNodeRestriction

type ManagedClusterSecurityProfileNodeRestriction struct {
	Enabled *bool `json:"enabled,omitempty"`
}

type ManagedClusterSecurityProfileWorkloadIdentity

type ManagedClusterSecurityProfileWorkloadIdentity struct {
	Enabled *bool `json:"enabled,omitempty"`
}

type ManagedClusterServicePrincipalProfile

type ManagedClusterServicePrincipalProfile struct {
	ClientId string  `json:"clientId"`
	Secret   *string `json:"secret,omitempty"`
}

type ManagedClusterStorageProfile

type ManagedClusterStorageProfile struct {
	BlobCSIDriver      *ManagedClusterStorageProfileBlobCSIDriver      `json:"blobCSIDriver,omitempty"`
	DiskCSIDriver      *ManagedClusterStorageProfileDiskCSIDriver      `json:"diskCSIDriver,omitempty"`
	FileCSIDriver      *ManagedClusterStorageProfileFileCSIDriver      `json:"fileCSIDriver,omitempty"`
	SnapshotController *ManagedClusterStorageProfileSnapshotController `json:"snapshotController,omitempty"`
}

type ManagedClusterStorageProfileBlobCSIDriver

type ManagedClusterStorageProfileBlobCSIDriver struct {
	Enabled *bool `json:"enabled,omitempty"`
}

type ManagedClusterStorageProfileDiskCSIDriver

type ManagedClusterStorageProfileDiskCSIDriver struct {
	Enabled *bool   `json:"enabled,omitempty"`
	Version *string `json:"version,omitempty"`
}

type ManagedClusterStorageProfileFileCSIDriver

type ManagedClusterStorageProfileFileCSIDriver struct {
	Enabled *bool `json:"enabled,omitempty"`
}

type ManagedClusterStorageProfileSnapshotController

type ManagedClusterStorageProfileSnapshotController struct {
	Enabled *bool `json:"enabled,omitempty"`
}

type ManagedClusterUpgradeProfile

type ManagedClusterUpgradeProfile struct {
	Id         *string                                `json:"id,omitempty"`
	Name       *string                                `json:"name,omitempty"`
	Properties ManagedClusterUpgradeProfileProperties `json:"properties"`
	Type       *string                                `json:"type,omitempty"`
}

type ManagedClusterUpgradeProfileProperties

type ManagedClusterUpgradeProfileProperties struct {
	AgentPoolProfiles   []ManagedClusterPoolUpgradeProfile `json:"agentPoolProfiles"`
	ControlPlaneProfile ManagedClusterPoolUpgradeProfile   `json:"controlPlaneProfile"`
}

type ManagedClusterWindowsProfile

type ManagedClusterWindowsProfile struct {
	AdminPassword  *string             `json:"adminPassword,omitempty"`
	AdminUsername  string              `json:"adminUsername"`
	EnableCSIProxy *bool               `json:"enableCSIProxy,omitempty"`
	GmsaProfile    *WindowsGmsaProfile `json:"gmsaProfile,omitempty"`
	LicenseType    *LicenseType        `json:"licenseType,omitempty"`
}

type ManagedClusterWorkloadAutoScalerProfile

type ManagedClusterWorkloadAutoScalerProfile struct {
	Keda                  *ManagedClusterWorkloadAutoScalerProfileKeda                  `json:"keda,omitempty"`
	VerticalPodAutoscaler *ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler `json:"verticalPodAutoscaler,omitempty"`
}

type ManagedClusterWorkloadAutoScalerProfileKeda

type ManagedClusterWorkloadAutoScalerProfileKeda struct {
	Enabled bool `json:"enabled"`
}

type ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler

type ManagedClusterWorkloadAutoScalerProfileVerticalPodAutoscaler struct {
	ControlledValues ControlledValues `json:"controlledValues"`
	Enabled          bool             `json:"enabled"`
	UpdateMode       UpdateMode       `json:"updateMode"`
}

type ManagedClustersClient

type ManagedClustersClient struct {
	Client *resourcemanager.Client
}

func NewManagedClustersClientWithBaseURI

func NewManagedClustersClientWithBaseURI(sdkApi sdkEnv.Api) (*ManagedClustersClient, error)

func (ManagedClustersClient) AbortLatestOperation

AbortLatestOperation ...

func (ManagedClustersClient) AbortLatestOperationThenPoll

func (c ManagedClustersClient) AbortLatestOperationThenPoll(ctx context.Context, id commonids.KubernetesClusterId) error

AbortLatestOperationThenPoll performs AbortLatestOperation then polls until it's completed

func (ManagedClustersClient) CreateOrUpdate

CreateOrUpdate ...

func (ManagedClustersClient) CreateOrUpdateThenPoll

func (c ManagedClustersClient) CreateOrUpdateThenPoll(ctx context.Context, id commonids.KubernetesClusterId, input ManagedCluster) error

CreateOrUpdateThenPoll performs CreateOrUpdate then polls until it's completed

func (ManagedClustersClient) Delete

Delete ...

func (ManagedClustersClient) DeleteThenPoll

DeleteThenPoll performs Delete then polls until it's completed

func (ManagedClustersClient) Get

Get ...

func (ManagedClustersClient) GetAccessProfile

GetAccessProfile ...

func (ManagedClustersClient) GetCommandResult

GetCommandResult ...

func (ManagedClustersClient) GetMeshRevisionProfile

GetMeshRevisionProfile ...

func (ManagedClustersClient) GetMeshUpgradeProfile

GetMeshUpgradeProfile ...

func (ManagedClustersClient) GetOSOptions

GetOSOptions ...

func (ManagedClustersClient) GetUpgradeProfile

GetUpgradeProfile ...

func (ManagedClustersClient) List

List ...

func (ManagedClustersClient) ListByResourceGroup

ListByResourceGroup ...

func (ManagedClustersClient) ListByResourceGroupComplete

ListByResourceGroupComplete retrieves all the results into a single object

func (ManagedClustersClient) ListByResourceGroupCompleteMatchingPredicate

func (c ManagedClustersClient) ListByResourceGroupCompleteMatchingPredicate(ctx context.Context, id commonids.ResourceGroupId, predicate ManagedClusterOperationPredicate) (result ListByResourceGroupCompleteResult, err error)

ListByResourceGroupCompleteMatchingPredicate retrieves all the results and then applies the predicate

func (ManagedClustersClient) ListClusterAdminCredentials

ListClusterAdminCredentials ...

func (ManagedClustersClient) ListClusterMonitoringUserCredentials

ListClusterMonitoringUserCredentials ...

func (ManagedClustersClient) ListClusterUserCredentials

ListClusterUserCredentials ...

func (ManagedClustersClient) ListComplete

ListComplete retrieves all the results into a single object

func (ManagedClustersClient) ListCompleteMatchingPredicate

func (c ManagedClustersClient) ListCompleteMatchingPredicate(ctx context.Context, id commonids.SubscriptionId, predicate ManagedClusterOperationPredicate) (result ListCompleteResult, err error)

ListCompleteMatchingPredicate retrieves all the results and then applies the predicate

func (ManagedClustersClient) ListKubernetesVersions

func (c ManagedClustersClient) ListKubernetesVersions(ctx context.Context, id LocationId) (result ListKubernetesVersionsOperationResponse, err error)

ListKubernetesVersions ...

func (ManagedClustersClient) ListMeshRevisionProfiles

func (c ManagedClustersClient) ListMeshRevisionProfiles(ctx context.Context, id LocationId) (result ListMeshRevisionProfilesOperationResponse, err error)

ListMeshRevisionProfiles ...

func (ManagedClustersClient) ListMeshRevisionProfilesComplete

func (c ManagedClustersClient) ListMeshRevisionProfilesComplete(ctx context.Context, id LocationId) (ListMeshRevisionProfilesCompleteResult, error)

ListMeshRevisionProfilesComplete retrieves all the results into a single object

func (ManagedClustersClient) ListMeshRevisionProfilesCompleteMatchingPredicate

func (c ManagedClustersClient) ListMeshRevisionProfilesCompleteMatchingPredicate(ctx context.Context, id LocationId, predicate MeshRevisionProfileOperationPredicate) (result ListMeshRevisionProfilesCompleteResult, err error)

ListMeshRevisionProfilesCompleteMatchingPredicate retrieves all the results and then applies the predicate

func (ManagedClustersClient) ListMeshUpgradeProfiles

ListMeshUpgradeProfiles ...

func (ManagedClustersClient) ListMeshUpgradeProfilesComplete

ListMeshUpgradeProfilesComplete retrieves all the results into a single object

func (ManagedClustersClient) ListMeshUpgradeProfilesCompleteMatchingPredicate

func (c ManagedClustersClient) ListMeshUpgradeProfilesCompleteMatchingPredicate(ctx context.Context, id commonids.KubernetesClusterId, predicate MeshUpgradeProfileOperationPredicate) (result ListMeshUpgradeProfilesCompleteResult, err error)

ListMeshUpgradeProfilesCompleteMatchingPredicate retrieves all the results and then applies the predicate

func (ManagedClustersClient) ListOutboundNetworkDependenciesEndpoints

ListOutboundNetworkDependenciesEndpoints ...

func (ManagedClustersClient) ListOutboundNetworkDependenciesEndpointsComplete

ListOutboundNetworkDependenciesEndpointsComplete retrieves all the results into a single object

func (ManagedClustersClient) ListOutboundNetworkDependenciesEndpointsCompleteMatchingPredicate

func (c ManagedClustersClient) ListOutboundNetworkDependenciesEndpointsCompleteMatchingPredicate(ctx context.Context, id commonids.KubernetesClusterId, predicate OutboundEnvironmentEndpointOperationPredicate) (result ListOutboundNetworkDependenciesEndpointsCompleteResult, err error)

ListOutboundNetworkDependenciesEndpointsCompleteMatchingPredicate retrieves all the results and then applies the predicate

func (ManagedClustersClient) ResetAADProfile

ResetAADProfile ...

func (ManagedClustersClient) ResetAADProfileThenPoll

ResetAADProfileThenPoll performs ResetAADProfile then polls until it's completed

func (ManagedClustersClient) ResetServicePrincipalProfile

ResetServicePrincipalProfile ...

func (ManagedClustersClient) ResetServicePrincipalProfileThenPoll

func (c ManagedClustersClient) ResetServicePrincipalProfileThenPoll(ctx context.Context, id commonids.KubernetesClusterId, input ManagedClusterServicePrincipalProfile) error

ResetServicePrincipalProfileThenPoll performs ResetServicePrincipalProfile then polls until it's completed

func (ManagedClustersClient) RotateClusterCertificates

RotateClusterCertificates ...

func (ManagedClustersClient) RotateClusterCertificatesThenPoll

func (c ManagedClustersClient) RotateClusterCertificatesThenPoll(ctx context.Context, id commonids.KubernetesClusterId) error

RotateClusterCertificatesThenPoll performs RotateClusterCertificates then polls until it's completed

func (ManagedClustersClient) RotateServiceAccountSigningKeys

RotateServiceAccountSigningKeys ...

func (ManagedClustersClient) RotateServiceAccountSigningKeysThenPoll

func (c ManagedClustersClient) RotateServiceAccountSigningKeysThenPoll(ctx context.Context, id commonids.KubernetesClusterId) error

RotateServiceAccountSigningKeysThenPoll performs RotateServiceAccountSigningKeys then polls until it's completed

func (ManagedClustersClient) RunCommand

RunCommand ...

func (ManagedClustersClient) RunCommandThenPoll

RunCommandThenPoll performs RunCommand then polls until it's completed

func (ManagedClustersClient) Start

Start ...

func (ManagedClustersClient) StartThenPoll

StartThenPoll performs Start then polls until it's completed

func (ManagedClustersClient) Stop

Stop ...

func (ManagedClustersClient) StopThenPoll

StopThenPoll performs Stop then polls until it's completed

func (ManagedClustersClient) UpdateTags

UpdateTags ...

func (ManagedClustersClient) UpdateTagsThenPoll

func (c ManagedClustersClient) UpdateTagsThenPoll(ctx context.Context, id commonids.KubernetesClusterId, input TagsObject) error

UpdateTagsThenPoll performs UpdateTags then polls until it's completed

type MeshRevision

type MeshRevision struct {
	CompatibleWith *[]CompatibleVersions `json:"compatibleWith,omitempty"`
	Revision       *string               `json:"revision,omitempty"`
	Upgrades       *[]string             `json:"upgrades,omitempty"`
}

type MeshRevisionProfile

type MeshRevisionProfile struct {
	Id         *string                        `json:"id,omitempty"`
	Name       *string                        `json:"name,omitempty"`
	Properties *MeshRevisionProfileProperties `json:"properties,omitempty"`
	SystemData *systemdata.SystemData         `json:"systemData,omitempty"`
	Type       *string                        `json:"type,omitempty"`
}

type MeshRevisionProfileId

type MeshRevisionProfileId struct {
	SubscriptionId          string
	LocationName            string
	MeshRevisionProfileName string
}

MeshRevisionProfileId is a struct representing the Resource ID for a Mesh Revision Profile

func NewMeshRevisionProfileID

func NewMeshRevisionProfileID(subscriptionId string, locationName string, meshRevisionProfileName string) MeshRevisionProfileId

NewMeshRevisionProfileID returns a new MeshRevisionProfileId struct

func ParseMeshRevisionProfileID

func ParseMeshRevisionProfileID(input string) (*MeshRevisionProfileId, error)

ParseMeshRevisionProfileID parses 'input' into a MeshRevisionProfileId

func ParseMeshRevisionProfileIDInsensitively

func ParseMeshRevisionProfileIDInsensitively(input string) (*MeshRevisionProfileId, error)

ParseMeshRevisionProfileIDInsensitively parses 'input' case-insensitively into a MeshRevisionProfileId note: this method should only be used for API response data and not user input

func (*MeshRevisionProfileId) FromParseResult

func (id *MeshRevisionProfileId) FromParseResult(input resourceids.ParseResult) error

func (MeshRevisionProfileId) ID

func (id MeshRevisionProfileId) ID() string

ID returns the formatted Mesh Revision Profile ID

func (MeshRevisionProfileId) Segments

func (id MeshRevisionProfileId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Mesh Revision Profile ID

func (MeshRevisionProfileId) String

func (id MeshRevisionProfileId) String() string

String returns a human-readable description of this Mesh Revision Profile ID

type MeshRevisionProfileOperationPredicate

type MeshRevisionProfileOperationPredicate struct {
	Id   *string
	Name *string
	Type *string
}

func (MeshRevisionProfileOperationPredicate) Matches

type MeshRevisionProfileProperties

type MeshRevisionProfileProperties struct {
	MeshRevisions *[]MeshRevision `json:"meshRevisions,omitempty"`
}

type MeshUpgradeProfile

type MeshUpgradeProfile struct {
	Id         *string                `json:"id,omitempty"`
	Name       *string                `json:"name,omitempty"`
	Properties *MeshRevision          `json:"properties,omitempty"`
	SystemData *systemdata.SystemData `json:"systemData,omitempty"`
	Type       *string                `json:"type,omitempty"`
}

type MeshUpgradeProfileId

type MeshUpgradeProfileId struct {
	SubscriptionId         string
	ResourceGroupName      string
	ManagedClusterName     string
	MeshUpgradeProfileName string
}

MeshUpgradeProfileId is a struct representing the Resource ID for a Mesh Upgrade Profile

func NewMeshUpgradeProfileID

func NewMeshUpgradeProfileID(subscriptionId string, resourceGroupName string, managedClusterName string, meshUpgradeProfileName string) MeshUpgradeProfileId

NewMeshUpgradeProfileID returns a new MeshUpgradeProfileId struct

func ParseMeshUpgradeProfileID

func ParseMeshUpgradeProfileID(input string) (*MeshUpgradeProfileId, error)

ParseMeshUpgradeProfileID parses 'input' into a MeshUpgradeProfileId

func ParseMeshUpgradeProfileIDInsensitively

func ParseMeshUpgradeProfileIDInsensitively(input string) (*MeshUpgradeProfileId, error)

ParseMeshUpgradeProfileIDInsensitively parses 'input' case-insensitively into a MeshUpgradeProfileId note: this method should only be used for API response data and not user input

func (*MeshUpgradeProfileId) FromParseResult

func (id *MeshUpgradeProfileId) FromParseResult(input resourceids.ParseResult) error

func (MeshUpgradeProfileId) ID

func (id MeshUpgradeProfileId) ID() string

ID returns the formatted Mesh Upgrade Profile ID

func (MeshUpgradeProfileId) Segments

func (id MeshUpgradeProfileId) Segments() []resourceids.Segment

Segments returns a slice of Resource ID Segments which comprise this Mesh Upgrade Profile ID

func (MeshUpgradeProfileId) String

func (id MeshUpgradeProfileId) String() string

String returns a human-readable description of this Mesh Upgrade Profile ID

type MeshUpgradeProfileOperationPredicate

type MeshUpgradeProfileOperationPredicate struct {
	Id   *string
	Name *string
	Type *string
}

func (MeshUpgradeProfileOperationPredicate) Matches

type Mode

type Mode string
const (
	ModeIPTABLES Mode = "IPTABLES"
	ModeIPVS     Mode = "IPVS"
)

func (*Mode) UnmarshalJSON added in v0.20240213.1120950

func (s *Mode) UnmarshalJSON(bytes []byte) error

type NetworkDataplane

type NetworkDataplane string
const (
	NetworkDataplaneAzure  NetworkDataplane = "azure"
	NetworkDataplaneCilium NetworkDataplane = "cilium"
)

func (*NetworkDataplane) UnmarshalJSON added in v0.20240213.1120950

func (s *NetworkDataplane) UnmarshalJSON(bytes []byte) error

type NetworkMode

type NetworkMode string
const (
	NetworkModeBridge      NetworkMode = "bridge"
	NetworkModeTransparent NetworkMode = "transparent"
)

func (*NetworkMode) UnmarshalJSON added in v0.20240213.1120950

func (s *NetworkMode) UnmarshalJSON(bytes []byte) error

type NetworkMonitoring

type NetworkMonitoring struct {
	Enabled *bool `json:"enabled,omitempty"`
}

type NetworkPlugin

type NetworkPlugin string
const (
	NetworkPluginAzure   NetworkPlugin = "azure"
	NetworkPluginKubenet NetworkPlugin = "kubenet"
	NetworkPluginNone    NetworkPlugin = "none"
)

func (*NetworkPlugin) UnmarshalJSON added in v0.20240213.1120950

func (s *NetworkPlugin) UnmarshalJSON(bytes []byte) error

type NetworkPluginMode

type NetworkPluginMode string
const (
	NetworkPluginModeOverlay NetworkPluginMode = "overlay"
)

func (*NetworkPluginMode) UnmarshalJSON added in v0.20240213.1120950

func (s *NetworkPluginMode) UnmarshalJSON(bytes []byte) error

type NetworkPolicy

type NetworkPolicy string
const (
	NetworkPolicyAzure  NetworkPolicy = "azure"
	NetworkPolicyCalico NetworkPolicy = "calico"
	NetworkPolicyCilium NetworkPolicy = "cilium"
)

func (*NetworkPolicy) UnmarshalJSON added in v0.20240213.1120950

func (s *NetworkPolicy) UnmarshalJSON(bytes []byte) error

type NodeOSUpgradeChannel

type NodeOSUpgradeChannel string
const (
	NodeOSUpgradeChannelNodeImage     NodeOSUpgradeChannel = "NodeImage"
	NodeOSUpgradeChannelNone          NodeOSUpgradeChannel = "None"
	NodeOSUpgradeChannelSecurityPatch NodeOSUpgradeChannel = "SecurityPatch"
	NodeOSUpgradeChannelUnmanaged     NodeOSUpgradeChannel = "Unmanaged"
)

func (*NodeOSUpgradeChannel) UnmarshalJSON added in v0.20240213.1120950

func (s *NodeOSUpgradeChannel) UnmarshalJSON(bytes []byte) error

type OSDiskType

type OSDiskType string
const (
	OSDiskTypeEphemeral OSDiskType = "Ephemeral"
	OSDiskTypeManaged   OSDiskType = "Managed"
)

func (*OSDiskType) UnmarshalJSON added in v0.20240213.1120950

func (s *OSDiskType) UnmarshalJSON(bytes []byte) error

type OSOptionProfile

type OSOptionProfile struct {
	Id         *string              `json:"id,omitempty"`
	Name       *string              `json:"name,omitempty"`
	Properties OSOptionPropertyList `json:"properties"`
	Type       *string              `json:"type,omitempty"`
}

type OSOptionProperty

type OSOptionProperty struct {
	EnableFipsImage bool   `json:"enable-fips-image"`
	OsType          string `json:"os-type"`
}

type OSOptionPropertyList

type OSOptionPropertyList struct {
	OsOptionPropertyList []OSOptionProperty `json:"osOptionPropertyList"`
}

type OSSKU

type OSSKU string
const (
	OSSKUAzureLinux            OSSKU = "AzureLinux"
	OSSKUCBLMariner            OSSKU = "CBLMariner"
	OSSKUMariner               OSSKU = "Mariner"
	OSSKUUbuntu                OSSKU = "Ubuntu"
	OSSKUWindowsTwoZeroOneNine OSSKU = "Windows2019"
	OSSKUWindowsTwoZeroTwoTwo  OSSKU = "Windows2022"
)

func (*OSSKU) UnmarshalJSON added in v0.20240213.1120950

func (s *OSSKU) UnmarshalJSON(bytes []byte) error

type OSType

type OSType string
const (
	OSTypeLinux   OSType = "Linux"
	OSTypeWindows OSType = "Windows"
)

func (*OSType) UnmarshalJSON added in v0.20240213.1120950

func (s *OSType) UnmarshalJSON(bytes []byte) error

type OutboundEnvironmentEndpoint

type OutboundEnvironmentEndpoint struct {
	Category  *string               `json:"category,omitempty"`
	Endpoints *[]EndpointDependency `json:"endpoints,omitempty"`
}

type OutboundEnvironmentEndpointOperationPredicate

type OutboundEnvironmentEndpointOperationPredicate struct {
	Category *string
}

func (OutboundEnvironmentEndpointOperationPredicate) Matches

type OutboundType

type OutboundType string
const (
	OutboundTypeLoadBalancer           OutboundType = "loadBalancer"
	OutboundTypeManagedNATGateway      OutboundType = "managedNATGateway"
	OutboundTypeUserAssignedNATGateway OutboundType = "userAssignedNATGateway"
	OutboundTypeUserDefinedRouting     OutboundType = "userDefinedRouting"
)

func (*OutboundType) UnmarshalJSON added in v0.20240213.1120950

func (s *OutboundType) UnmarshalJSON(bytes []byte) error

type PortRange

type PortRange struct {
	PortEnd   *int64    `json:"portEnd,omitempty"`
	PortStart *int64    `json:"portStart,omitempty"`
	Protocol  *Protocol `json:"protocol,omitempty"`
}

type PowerState

type PowerState struct {
	Code *Code `json:"code,omitempty"`
}

type PrivateLinkResource

type PrivateLinkResource struct {
	GroupId              *string   `json:"groupId,omitempty"`
	Id                   *string   `json:"id,omitempty"`
	Name                 *string   `json:"name,omitempty"`
	PrivateLinkServiceID *string   `json:"privateLinkServiceID,omitempty"`
	RequiredMembers      *[]string `json:"requiredMembers,omitempty"`
	Type                 *string   `json:"type,omitempty"`
}

type Protocol

type Protocol string
const (
	ProtocolTCP Protocol = "TCP"
	ProtocolUDP Protocol = "UDP"
)

func (*Protocol) UnmarshalJSON added in v0.20240213.1120950

func (s *Protocol) UnmarshalJSON(bytes []byte) error

type PublicNetworkAccess

type PublicNetworkAccess string
const (
	PublicNetworkAccessDisabled           PublicNetworkAccess = "Disabled"
	PublicNetworkAccessEnabled            PublicNetworkAccess = "Enabled"
	PublicNetworkAccessSecuredByPerimeter PublicNetworkAccess = "SecuredByPerimeter"
)

func (*PublicNetworkAccess) UnmarshalJSON added in v0.20240213.1120950

func (s *PublicNetworkAccess) UnmarshalJSON(bytes []byte) error

type ResetAADProfileOperationResponse

type ResetAADProfileOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type ResetServicePrincipalProfileOperationResponse

type ResetServicePrincipalProfileOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type ResourceReference

type ResourceReference struct {
	Id *string `json:"id,omitempty"`
}

type RestrictionLevel

type RestrictionLevel string
const (
	RestrictionLevelReadOnly     RestrictionLevel = "ReadOnly"
	RestrictionLevelUnrestricted RestrictionLevel = "Unrestricted"
)

func (*RestrictionLevel) UnmarshalJSON added in v0.20240213.1120950

func (s *RestrictionLevel) UnmarshalJSON(bytes []byte) error

type RotateClusterCertificatesOperationResponse

type RotateClusterCertificatesOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type RotateServiceAccountSigningKeysOperationResponse

type RotateServiceAccountSigningKeysOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type RunCommandOperationResponse

type RunCommandOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *RunCommandResult
}

type RunCommandRequest

type RunCommandRequest struct {
	ClusterToken *string `json:"clusterToken,omitempty"`
	Command      string  `json:"command"`
	Context      *string `json:"context,omitempty"`
}

type RunCommandResult

type RunCommandResult struct {
	Id         *string                  `json:"id,omitempty"`
	Properties *CommandResultProperties `json:"properties,omitempty"`
}

type ScaleDownMode

type ScaleDownMode string
const (
	ScaleDownModeDeallocate ScaleDownMode = "Deallocate"
	ScaleDownModeDelete     ScaleDownMode = "Delete"
)

func (*ScaleDownMode) UnmarshalJSON added in v0.20240213.1120950

func (s *ScaleDownMode) UnmarshalJSON(bytes []byte) error

type ScaleSetEvictionPolicy

type ScaleSetEvictionPolicy string
const (
	ScaleSetEvictionPolicyDeallocate ScaleSetEvictionPolicy = "Deallocate"
	ScaleSetEvictionPolicyDelete     ScaleSetEvictionPolicy = "Delete"
)

func (*ScaleSetEvictionPolicy) UnmarshalJSON added in v0.20240213.1120950

func (s *ScaleSetEvictionPolicy) UnmarshalJSON(bytes []byte) error

type ScaleSetPriority

type ScaleSetPriority string
const (
	ScaleSetPriorityRegular ScaleSetPriority = "Regular"
	ScaleSetPrioritySpot    ScaleSetPriority = "Spot"
)

func (*ScaleSetPriority) UnmarshalJSON added in v0.20240213.1120950

func (s *ScaleSetPriority) UnmarshalJSON(bytes []byte) error

type ServiceMeshMode

type ServiceMeshMode string
const (
	ServiceMeshModeDisabled ServiceMeshMode = "Disabled"
	ServiceMeshModeIstio    ServiceMeshMode = "Istio"
)

func (*ServiceMeshMode) UnmarshalJSON added in v0.20240213.1120950

func (s *ServiceMeshMode) UnmarshalJSON(bytes []byte) error

type ServiceMeshProfile

type ServiceMeshProfile struct {
	Istio *IstioServiceMesh `json:"istio,omitempty"`
	Mode  ServiceMeshMode   `json:"mode"`
}

type StartOperationResponse

type StartOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type StopOperationResponse

type StopOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
}

type SysctlConfig

type SysctlConfig struct {
	FsAioMaxNr                     *int64  `json:"fsAioMaxNr,omitempty"`
	FsFileMax                      *int64  `json:"fsFileMax,omitempty"`
	FsInotifyMaxUserWatches        *int64  `json:"fsInotifyMaxUserWatches,omitempty"`
	FsNrOpen                       *int64  `json:"fsNrOpen,omitempty"`
	KernelThreadsMax               *int64  `json:"kernelThreadsMax,omitempty"`
	NetCoreNetdevMaxBacklog        *int64  `json:"netCoreNetdevMaxBacklog,omitempty"`
	NetCoreOptmemMax               *int64  `json:"netCoreOptmemMax,omitempty"`
	NetCoreRmemDefault             *int64  `json:"netCoreRmemDefault,omitempty"`
	NetCoreRmemMax                 *int64  `json:"netCoreRmemMax,omitempty"`
	NetCoreSomaxconn               *int64  `json:"netCoreSomaxconn,omitempty"`
	NetCoreWmemDefault             *int64  `json:"netCoreWmemDefault,omitempty"`
	NetCoreWmemMax                 *int64  `json:"netCoreWmemMax,omitempty"`
	NetIPv4IPLocalPortRange        *string `json:"netIpv4IpLocalPortRange,omitempty"`
	NetIPv4NeighDefaultGcThresh1   *int64  `json:"netIpv4NeighDefaultGcThresh1,omitempty"`
	NetIPv4NeighDefaultGcThresh2   *int64  `json:"netIpv4NeighDefaultGcThresh2,omitempty"`
	NetIPv4NeighDefaultGcThresh3   *int64  `json:"netIpv4NeighDefaultGcThresh3,omitempty"`
	NetIPv4TcpFinTimeout           *int64  `json:"netIpv4TcpFinTimeout,omitempty"`
	NetIPv4TcpKeepaliveProbes      *int64  `json:"netIpv4TcpKeepaliveProbes,omitempty"`
	NetIPv4TcpKeepaliveTime        *int64  `json:"netIpv4TcpKeepaliveTime,omitempty"`
	NetIPv4TcpMaxSynBacklog        *int64  `json:"netIpv4TcpMaxSynBacklog,omitempty"`
	NetIPv4TcpMaxTwBuckets         *int64  `json:"netIpv4TcpMaxTwBuckets,omitempty"`
	NetIPv4TcpTwReuse              *bool   `json:"netIpv4TcpTwReuse,omitempty"`
	NetIPv4TcpkeepaliveIntvl       *int64  `json:"netIpv4TcpkeepaliveIntvl,omitempty"`
	NetNetfilterNfConntrackBuckets *int64  `json:"netNetfilterNfConntrackBuckets,omitempty"`
	NetNetfilterNfConntrackMax     *int64  `json:"netNetfilterNfConntrackMax,omitempty"`
	VMMaxMapCount                  *int64  `json:"vmMaxMapCount,omitempty"`
	VMSwappiness                   *int64  `json:"vmSwappiness,omitempty"`
	VMVfsCachePressure             *int64  `json:"vmVfsCachePressure,omitempty"`
}

type TagsObject

type TagsObject struct {
	Tags *map[string]string `json:"tags,omitempty"`
}

type UpdateMode

type UpdateMode string
const (
	UpdateModeAuto     UpdateMode = "Auto"
	UpdateModeInitial  UpdateMode = "Initial"
	UpdateModeOff      UpdateMode = "Off"
	UpdateModeRecreate UpdateMode = "Recreate"
)

func (*UpdateMode) UnmarshalJSON added in v0.20240213.1120950

func (s *UpdateMode) UnmarshalJSON(bytes []byte) error

type UpdateTagsOperationResponse

type UpdateTagsOperationResponse struct {
	Poller       pollers.Poller
	HttpResponse *http.Response
	OData        *odata.OData
	Model        *ManagedCluster
}

type UpgradeChannel

type UpgradeChannel string
const (
	UpgradeChannelNodeNegativeimage UpgradeChannel = "node-image"
	UpgradeChannelNone              UpgradeChannel = "none"
	UpgradeChannelPatch             UpgradeChannel = "patch"
	UpgradeChannelRapid             UpgradeChannel = "rapid"
	UpgradeChannelStable            UpgradeChannel = "stable"
)

func (*UpgradeChannel) UnmarshalJSON added in v0.20240213.1120950

func (s *UpgradeChannel) UnmarshalJSON(bytes []byte) error

type UpgradeOverrideSettings

type UpgradeOverrideSettings struct {
	ControlPlaneOverrides *[]ControlPlaneUpgradeOverride `json:"controlPlaneOverrides,omitempty"`
	Until                 *string                        `json:"until,omitempty"`
}

func (*UpgradeOverrideSettings) GetUntilAsTime

func (o *UpgradeOverrideSettings) GetUntilAsTime() (*time.Time, error)

func (*UpgradeOverrideSettings) SetUntilAsTime

func (o *UpgradeOverrideSettings) SetUntilAsTime(input time.Time)

type UserAssignedIdentity

type UserAssignedIdentity struct {
	ClientId   *string `json:"clientId,omitempty"`
	ObjectId   *string `json:"objectId,omitempty"`
	ResourceId *string `json:"resourceId,omitempty"`
}

type WindowsGmsaProfile

type WindowsGmsaProfile struct {
	DnsServer      *string `json:"dnsServer,omitempty"`
	Enabled        *bool   `json:"enabled,omitempty"`
	RootDomainName *string `json:"rootDomainName,omitempty"`
}

type WorkloadRuntime

type WorkloadRuntime string
const (
	WorkloadRuntimeKataMshvVMIsolation WorkloadRuntime = "KataMshvVmIsolation"
	WorkloadRuntimeOCIContainer        WorkloadRuntime = "OCIContainer"
	WorkloadRuntimeWasmWasi            WorkloadRuntime = "WasmWasi"
)

func (*WorkloadRuntime) UnmarshalJSON added in v0.20240213.1120950

func (s *WorkloadRuntime) UnmarshalJSON(bytes []byte) error

Source Files

Jump to

Keyboard shortcuts

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