Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=conditionalaccess.azuread.upbound.io +versionName=v1beta1
Index ¶
- Constants
- Variables
- type CountryObservation
- type CountryParameters
- type IPObservation
- type IPParameters
- type Location
- func (in *Location) DeepCopy() *Location
- func (in *Location) DeepCopyInto(out *Location)
- func (in *Location) DeepCopyObject() runtime.Object
- func (mg *Location) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Location) GetConnectionDetailsMapping() map[string]string
- func (mg *Location) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Location) GetID() string
- func (tr *Location) GetObservation() (map[string]any, error)
- func (tr *Location) GetParameters() (map[string]any, error)
- func (mg *Location) GetProviderConfigReference() *xpv1.Reference
- func (mg *Location) GetProviderReference() *xpv1.Reference
- func (mg *Location) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Location) GetTerraformResourceType() string
- func (tr *Location) GetTerraformSchemaVersion() int
- func (mg *Location) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Location) LateInitialize(attrs []byte) (bool, error)
- func (mg *Location) SetConditions(c ...xpv1.Condition)
- func (mg *Location) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Location) SetObservation(obs map[string]any) error
- func (tr *Location) SetParameters(params map[string]any) error
- func (mg *Location) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Location) SetProviderReference(r *xpv1.Reference)
- func (mg *Location) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Location) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type LocationList
- type LocationObservation
- type LocationParameters
- type LocationSpec
- type LocationStatus
Constants ¶
const ( CRDGroup = "conditionalaccess.azuread.upbound.io" CRDVersion = "v1beta1" )
Package type metadata.
Variables ¶
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( Location_Kind = "Location" Location_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Location_Kind}.String() Location_KindAPIVersion = Location_Kind + "." + CRDGroupVersion.String() Location_GroupVersionKind = CRDGroupVersion.WithKind(Location_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type CountryObservation ¶
type CountryObservation struct { }
func (*CountryObservation) DeepCopy ¶
func (in *CountryObservation) DeepCopy() *CountryObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CountryObservation.
func (*CountryObservation) DeepCopyInto ¶
func (in *CountryObservation) DeepCopyInto(out *CountryObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CountryParameters ¶
type CountryParameters struct { // List of countries and/or regions in two-letter format specified by ISO 3166-2. // +kubebuilder:validation:Required CountriesAndRegions []*string `json:"countriesAndRegions" tf:"countries_and_regions,omitempty"` // Whether IP addresses that don't map to a country or region should be included in the named location. Defaults to false. // +kubebuilder:validation:Optional IncludeUnknownCountriesAndRegions *bool `json:"includeUnknownCountriesAndRegions,omitempty" tf:"include_unknown_countries_and_regions,omitempty"` }
func (*CountryParameters) DeepCopy ¶
func (in *CountryParameters) DeepCopy() *CountryParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CountryParameters.
func (*CountryParameters) DeepCopyInto ¶
func (in *CountryParameters) DeepCopyInto(out *CountryParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPObservation ¶
type IPObservation struct { }
func (*IPObservation) DeepCopy ¶
func (in *IPObservation) DeepCopy() *IPObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPObservation.
func (*IPObservation) DeepCopyInto ¶
func (in *IPObservation) DeepCopyInto(out *IPObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type IPParameters ¶
type IPParameters struct { // List of IP address ranges in IPv4 CIDR format (e.g. 1.2.3.4/32) or any allowable IPv6 format from IETF RFC596. // +kubebuilder:validation:Required IPRanges []*string `json:"ipRanges" tf:"ip_ranges,omitempty"` // Whether the named location is trusted. Defaults to false. // +kubebuilder:validation:Optional Trusted *bool `json:"trusted,omitempty" tf:"trusted,omitempty"` }
func (*IPParameters) DeepCopy ¶
func (in *IPParameters) DeepCopy() *IPParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IPParameters.
func (*IPParameters) DeepCopyInto ¶
func (in *IPParameters) DeepCopyInto(out *IPParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Location ¶
type Location struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec LocationSpec `json:"spec"` Status LocationStatus `json:"status,omitempty"` }
Location is the Schema for the Locations API. +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,azuread}
func (*Location) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Location.
func (*Location) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Location) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Location) GetCondition ¶
func (mg *Location) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Location.
func (*Location) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Location
func (*Location) GetDeletionPolicy ¶
func (mg *Location) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Location.
func (*Location) GetObservation ¶
GetObservation of this Location
func (*Location) GetParameters ¶
GetParameters of this Location
func (*Location) GetProviderConfigReference ¶
GetProviderConfigReference of this Location.
func (*Location) GetProviderReference ¶
GetProviderReference of this Location. Deprecated: Use GetProviderConfigReference.
func (*Location) GetPublishConnectionDetailsTo ¶
func (mg *Location) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Location.
func (*Location) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Location
func (*Location) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Location) GetWriteConnectionSecretToReference ¶
func (mg *Location) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Location.
func (*Location) LateInitialize ¶
LateInitialize this Location using its observed tfState. returns True if there are any spec changes for the resource.
func (*Location) SetConditions ¶
SetConditions of this Location.
func (*Location) SetDeletionPolicy ¶
func (mg *Location) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Location.
func (*Location) SetObservation ¶
SetObservation for this Location
func (*Location) SetParameters ¶
SetParameters for this Location
func (*Location) SetProviderConfigReference ¶
SetProviderConfigReference of this Location.
func (*Location) SetProviderReference ¶
SetProviderReference of this Location. Deprecated: Use SetProviderConfigReference.
func (*Location) SetPublishConnectionDetailsTo ¶
func (mg *Location) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Location.
func (*Location) SetWriteConnectionSecretToReference ¶
func (mg *Location) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Location.
type LocationList ¶
type LocationList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Location `json:"items"` }
LocationList contains a list of Locations
func (*LocationList) DeepCopy ¶
func (in *LocationList) DeepCopy() *LocationList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocationList.
func (*LocationList) DeepCopyInto ¶
func (in *LocationList) DeepCopyInto(out *LocationList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*LocationList) DeepCopyObject ¶
func (in *LocationList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*LocationList) GetItems ¶
func (l *LocationList) GetItems() []resource.Managed
GetItems of this LocationList.
type LocationObservation ¶
type LocationObservation struct { // The ID of the named location. ID *string `json:"id,omitempty" tf:"id,omitempty"` }
func (*LocationObservation) DeepCopy ¶
func (in *LocationObservation) DeepCopy() *LocationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocationObservation.
func (*LocationObservation) DeepCopyInto ¶
func (in *LocationObservation) DeepCopyInto(out *LocationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LocationParameters ¶
type LocationParameters struct { // A country block as documented below, which configures a country-based named location. // +kubebuilder:validation:Optional Country []CountryParameters `json:"country,omitempty" tf:"country,omitempty"` // The friendly name for this named location. // +kubebuilder:validation:Required DisplayName *string `json:"displayName" tf:"display_name,omitempty"` // An ip block as documented below, which configures an IP-based named location. // +kubebuilder:validation:Optional IP []IPParameters `json:"ip,omitempty" tf:"ip,omitempty"` }
func (*LocationParameters) DeepCopy ¶
func (in *LocationParameters) DeepCopy() *LocationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocationParameters.
func (*LocationParameters) DeepCopyInto ¶
func (in *LocationParameters) DeepCopyInto(out *LocationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LocationSpec ¶
type LocationSpec struct { v1.ResourceSpec `json:",inline"` ForProvider LocationParameters `json:"forProvider"` }
LocationSpec defines the desired state of Location
func (*LocationSpec) DeepCopy ¶
func (in *LocationSpec) DeepCopy() *LocationSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocationSpec.
func (*LocationSpec) DeepCopyInto ¶
func (in *LocationSpec) DeepCopyInto(out *LocationSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type LocationStatus ¶
type LocationStatus struct { v1.ResourceStatus `json:",inline"` AtProvider LocationObservation `json:"atProvider,omitempty"` }
LocationStatus defines the observed state of Location.
func (*LocationStatus) DeepCopy ¶
func (in *LocationStatus) DeepCopy() *LocationStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocationStatus.
func (*LocationStatus) DeepCopyInto ¶
func (in *LocationStatus) DeepCopyInto(out *LocationStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.