Documentation ¶
Overview ¶
Package v1 contains hand-crafted API Schema definitions for the sql v1 API group +groupName=sql.azure.com
Package v1 contains API Schema definitions for sql data plane APIs +kubebuilder:object:generate=true All object properties are optional by default, this will be overridden when needed: +kubebuilder:validation:Optional +groupName=sql.azure.com
Copyright (c) Microsoft Corporation. Licensed under the MIT license.
Index ¶
- Variables
- type LocalUserSpec
- type User
- func (user *User) AzureName() string
- func (in *User) DeepCopy() *User
- func (in *User) DeepCopyInto(out *User)
- func (in *User) DeepCopyObject() runtime.Object
- func (user *User) Default()
- func (user *User) GetConditions() conditions.Conditions
- func (user *User) Hub()
- func (user *User) Owner() *genruntime.ResourceReference
- func (user *User) SetConditions(conditions conditions.Conditions)
- func (user *User) ValidateCreate() (admission.Warnings, error)
- func (user *User) ValidateDelete() (admission.Warnings, error)
- func (user *User) ValidateUpdate(old runtime.Object) (admission.Warnings, error)
- type UserList
- type UserSpec
- type UserStatus
Constants ¶
This section is empty.
Variables ¶
var ( // GroupVersion is group version used to register these objects GroupVersion = schema.GroupVersion{Group: "sql.azure.com", Version: "v1"} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
Functions ¶
This section is empty.
Types ¶
type LocalUserSpec ¶
type LocalUserSpec struct { // +kubebuilder:validation:Required // ServerAdminUsername is the username of the Server administrator. If the // administrator is a group, the ServerAdminUsername should be the group name, not the actual username of the // identity to log in with. For example if the administrator group is "admin-group" and identity "my-identity" is // a member of that group, the ServerAdminUsername should be "admin-group". ServerAdminUsername string `json:"serverAdminUsername,omitempty"` // +kubebuilder:validation:Required // ServerAdminPassword is a reference to a secret containing the servers administrator password. ServerAdminPassword *genruntime.SecretReference `json:"serverAdminPassword,omitempty"` // +kubebuilder:validation:Required // Password is the password to use for the user Password *genruntime.SecretReference `json:"password,omitempty"` }
func (*LocalUserSpec) DeepCopy ¶
func (in *LocalUserSpec) DeepCopy() *LocalUserSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new LocalUserSpec.
func (*LocalUserSpec) DeepCopyInto ¶
func (in *LocalUserSpec) DeepCopyInto(out *LocalUserSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type User ¶
type User struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec UserSpec `json:"spec,omitempty"` Status UserStatus `json:"status,omitempty"` }
+kubebuilder:object:root=true +kubebuilder:subresource:status +kubebuilder:printcolumn:name="Ready",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="Severity",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].severity" +kubebuilder:printcolumn:name="Reason",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].reason" +kubebuilder:printcolumn:name="Message",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].message" +kubebuilder:storageversion User is an Azure SQL user
func (*User) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new User.
func (*User) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*User) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*User) Default ¶
func (user *User) Default()
Default applies defaults to the FlexibleServer resource
func (*User) GetConditions ¶
func (user *User) GetConditions() conditions.Conditions
GetConditions returns the conditions of the resource
func (*User) Hub ¶
func (user *User) Hub()
Hub marks that this userSpec is the hub type for conversion
func (*User) Owner ¶
func (user *User) Owner() *genruntime.ResourceReference
Owner returns the ResourceReference of the owner, or nil if there is no owner
func (*User) SetConditions ¶
func (user *User) SetConditions(conditions conditions.Conditions)
SetConditions sets the conditions on the resource status
func (*User) ValidateCreate ¶
ValidateCreate validates the creation of the resource
func (*User) ValidateDelete ¶
ValidateDelete validates the deletion of the resource
type UserList ¶
type UserList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []User `json:"items"` }
+kubebuilder:object:root=true
func (*UserList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserList.
func (*UserList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*UserList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type UserSpec ¶
type UserSpec struct { // AzureName: The name of the resource in Azure. This is often the same as the name of the resource in Kubernetes but it // doesn't have to be. // If not specified, the default is the name of the Kubernetes object. // When creating a local user, this will be the name of the user created. // When creating an AAD user, this must have a specific format depending on the type of AAD user being created. // For managed identity: "my-managed-identity-name" // For standard AAD user: "myuser@mydomain.onmicrosoft.com" // For AAD group: "my-group" AzureName string `json:"azureName,omitempty"` // +kubebuilder:validation:Required // Owner: The owner of the resource. The owner controls where the resource goes when it is deployed. The owner also // controls the resources lifecycle. When the owner is deleted the resource will also be deleted. Owner is expected to be a // reference to an sql.azure.com/ServersDatabase resource Owner *genruntime.KnownResourceReference `group:"sql.azure.com" json:"owner,omitempty" kind:"ServersDatabase"` // The roles assigned to the user. // See https://learn.microsoft.com/sql/relational-databases/security/authentication-access/database-level-roles?view=sql-server-ver16#fixed-database-roles // for the fixed set of roles supported by Azure SQL. // Roles include the following: db_owner, db_securityadmin, db_accessadmin, db_backupoperator, // db_ddladmin, db_datawriter, db_datareader, db_denydatawriter, and db_denydatareader. Roles []string `json:"roles,omitempty"` // +kubebuilder:validation:Required // LocalUser contains details for creating a standard (non-aad) Azure SQL User LocalUser *LocalUserSpec `json:"localUser,omitempty"` }
func (*UserSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserSpec.
func (*UserSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*UserSpec) OriginalVersion ¶
OriginalVersion returns the original API version used to create the resource.
func (*UserSpec) SetAzureName ¶
SetAzureName sets the Azure name of the resource
type UserStatus ¶
type UserStatus struct { // Conditions: The observed state of the resource Conditions []conditions.Condition `json:"conditions,omitempty"` }
func (*UserStatus) DeepCopy ¶
func (in *UserStatus) DeepCopy() *UserStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserStatus.
func (*UserStatus) DeepCopyInto ¶
func (in *UserStatus) DeepCopyInto(out *UserStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.