Documentation ¶
Overview ¶
Package v1beta1 is the v1beta1 version of the API.
Package v1beta1 contains API Schema definitions for the AzureApplicationGatewayBackendPool v1 API group
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( // SchemeGroupVersion is group version used to register these objects SchemeGroupVersion = schema.GroupVersion{ Group: "appgw.ingress.azure.io", Version: "v1beta1", } // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = runtime.NewSchemeBuilder(addKnownTypes) // AddToScheme adds all Resources to the Scheme AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
func Resource ¶
func Resource(resource string) schema.GroupResource
Resource takes an unqualified resource and returns a Group qualified GroupResource
Types ¶
type AzureApplicationGatewayBackendPool ¶
type AzureApplicationGatewayBackendPool struct { metav1.TypeMeta `json:",inline"` // +optional metav1.ObjectMeta `json:"metadata,omitempty"` // +optional Spec AzureApplicationGatewayBackendPoolSpec `json:"spec"` }
AzureApplicationGatewayBackendPool is the resource AGIC is watching on for any backend address change
func (*AzureApplicationGatewayBackendPool) DeepCopy ¶
func (in *AzureApplicationGatewayBackendPool) DeepCopy() *AzureApplicationGatewayBackendPool
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureApplicationGatewayBackendPool.
func (*AzureApplicationGatewayBackendPool) DeepCopyInto ¶
func (in *AzureApplicationGatewayBackendPool) DeepCopyInto(out *AzureApplicationGatewayBackendPool)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AzureApplicationGatewayBackendPool) DeepCopyObject ¶
func (in *AzureApplicationGatewayBackendPool) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AzureApplicationGatewayBackendPoolList ¶
type AzureApplicationGatewayBackendPoolList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata"` Items []AzureApplicationGatewayBackendPool `json:"items"` }
AzureApplicationGatewayBackendPoolList is the list of backend pool
func (*AzureApplicationGatewayBackendPoolList) DeepCopy ¶
func (in *AzureApplicationGatewayBackendPoolList) DeepCopy() *AzureApplicationGatewayBackendPoolList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureApplicationGatewayBackendPoolList.
func (*AzureApplicationGatewayBackendPoolList) DeepCopyInto ¶
func (in *AzureApplicationGatewayBackendPoolList) DeepCopyInto(out *AzureApplicationGatewayBackendPoolList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AzureApplicationGatewayBackendPoolList) DeepCopyObject ¶
func (in *AzureApplicationGatewayBackendPoolList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AzureApplicationGatewayBackendPoolSpec ¶
type AzureApplicationGatewayBackendPoolSpec struct { metav1.TypeMeta `json:",inline"` // +optional metav1.ObjectMeta `json:"metadata,omitempty"` // BackendAddressPools include a list of Application Gateway backend pools BackendAddressPools []BackendAddressPool `json:"backendAddressPools,omitempty"` }
AzureApplicationGatewayBackendPoolSpec defines a list of backend pool addresses
func (*AzureApplicationGatewayBackendPoolSpec) DeepCopy ¶
func (in *AzureApplicationGatewayBackendPoolSpec) DeepCopy() *AzureApplicationGatewayBackendPoolSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AzureApplicationGatewayBackendPoolSpec.
func (*AzureApplicationGatewayBackendPoolSpec) DeepCopyInto ¶
func (in *AzureApplicationGatewayBackendPoolSpec) DeepCopyInto(out *AzureApplicationGatewayBackendPoolSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BackendAddress ¶
type BackendAddress struct {
IPAddress string `json:"ipAddress,omitempty"`
}
BackendAddress includes IP address
func (*BackendAddress) DeepCopy ¶
func (in *BackendAddress) DeepCopy() *BackendAddress
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendAddress.
func (*BackendAddress) DeepCopyInto ¶
func (in *BackendAddress) DeepCopyInto(out *BackendAddress)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BackendAddressPool ¶
type BackendAddressPool struct { Name string `json:"name,omitempty"` BackendAddresses []BackendAddress `json:"backendAddresses,omitempty"` }
BackendAddressPool defines a backend pool name and a list of backend addresses
func (*BackendAddressPool) DeepCopy ¶
func (in *BackendAddressPool) DeepCopy() *BackendAddressPool
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BackendAddressPool.
func (*BackendAddressPool) DeepCopyInto ¶
func (in *BackendAddressPool) DeepCopyInto(out *BackendAddressPool)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.