v1alpha1

package
v0.4.0 Latest Latest
Warning

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

Go to latest
Published: Jun 11, 2024 License: Apache-2.0 Imports: 13 Imported by: 0

Documentation

Overview

+kubebuilder:object:generate=true +groupName=identity.openstack.crossplane.io +versionName=v1alpha1

Index

Constants

View Source
const (
	CRDGroup   = "identity.openstack.crossplane.io"
	CRDVersion = "v1alpha1"
)

Package type metadata.

Variables

View Source
var (
	ApplicationCredentialV3_Kind             = "ApplicationCredentialV3"
	ApplicationCredentialV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: ApplicationCredentialV3_Kind}.String()
	ApplicationCredentialV3_KindAPIVersion   = ApplicationCredentialV3_Kind + "." + CRDGroupVersion.String()
	ApplicationCredentialV3_GroupVersionKind = CRDGroupVersion.WithKind(ApplicationCredentialV3_Kind)
)

Repository type metadata.

View Source
var (
	EC2CredentialV3_Kind             = "EC2CredentialV3"
	EC2CredentialV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: EC2CredentialV3_Kind}.String()
	EC2CredentialV3_KindAPIVersion   = EC2CredentialV3_Kind + "." + CRDGroupVersion.String()
	EC2CredentialV3_GroupVersionKind = CRDGroupVersion.WithKind(EC2CredentialV3_Kind)
)

Repository type metadata.

View Source
var (
	EndpointV3_Kind             = "EndpointV3"
	EndpointV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: EndpointV3_Kind}.String()
	EndpointV3_KindAPIVersion   = EndpointV3_Kind + "." + CRDGroupVersion.String()
	EndpointV3_GroupVersionKind = CRDGroupVersion.WithKind(EndpointV3_Kind)
)

Repository type metadata.

View Source
var (
	GroupV3_Kind             = "GroupV3"
	GroupV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: GroupV3_Kind}.String()
	GroupV3_KindAPIVersion   = GroupV3_Kind + "." + CRDGroupVersion.String()
	GroupV3_GroupVersionKind = CRDGroupVersion.WithKind(GroupV3_Kind)
)

Repository type metadata.

View Source
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
)
View Source
var (
	InheritRoleAssignmentV3_Kind             = "InheritRoleAssignmentV3"
	InheritRoleAssignmentV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: InheritRoleAssignmentV3_Kind}.String()
	InheritRoleAssignmentV3_KindAPIVersion   = InheritRoleAssignmentV3_Kind + "." + CRDGroupVersion.String()
	InheritRoleAssignmentV3_GroupVersionKind = CRDGroupVersion.WithKind(InheritRoleAssignmentV3_Kind)
)

Repository type metadata.

View Source
var (
	ProjectV3_Kind             = "ProjectV3"
	ProjectV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: ProjectV3_Kind}.String()
	ProjectV3_KindAPIVersion   = ProjectV3_Kind + "." + CRDGroupVersion.String()
	ProjectV3_GroupVersionKind = CRDGroupVersion.WithKind(ProjectV3_Kind)
)

Repository type metadata.

View Source
var (
	RoleAssignmentV3_Kind             = "RoleAssignmentV3"
	RoleAssignmentV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: RoleAssignmentV3_Kind}.String()
	RoleAssignmentV3_KindAPIVersion   = RoleAssignmentV3_Kind + "." + CRDGroupVersion.String()
	RoleAssignmentV3_GroupVersionKind = CRDGroupVersion.WithKind(RoleAssignmentV3_Kind)
)

Repository type metadata.

View Source
var (
	RoleV3_Kind             = "RoleV3"
	RoleV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: RoleV3_Kind}.String()
	RoleV3_KindAPIVersion   = RoleV3_Kind + "." + CRDGroupVersion.String()
	RoleV3_GroupVersionKind = CRDGroupVersion.WithKind(RoleV3_Kind)
)

Repository type metadata.

View Source
var (
	ServiceV3_Kind             = "ServiceV3"
	ServiceV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: ServiceV3_Kind}.String()
	ServiceV3_KindAPIVersion   = ServiceV3_Kind + "." + CRDGroupVersion.String()
	ServiceV3_GroupVersionKind = CRDGroupVersion.WithKind(ServiceV3_Kind)
)

Repository type metadata.

View Source
var (
	UserMembershipV3_Kind             = "UserMembershipV3"
	UserMembershipV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: UserMembershipV3_Kind}.String()
	UserMembershipV3_KindAPIVersion   = UserMembershipV3_Kind + "." + CRDGroupVersion.String()
	UserMembershipV3_GroupVersionKind = CRDGroupVersion.WithKind(UserMembershipV3_Kind)
)

Repository type metadata.

View Source
var (
	UserV3_Kind             = "UserV3"
	UserV3_GroupKind        = schema.GroupKind{Group: CRDGroup, Kind: UserV3_Kind}.String()
	UserV3_KindAPIVersion   = UserV3_Kind + "." + CRDGroupVersion.String()
	UserV3_GroupVersionKind = CRDGroupVersion.WithKind(UserV3_Kind)
)

Repository type metadata.

Functions

This section is empty.

Types

type AccessRulesInitParameters added in v0.3.0

type AccessRulesInitParameters struct {

	// The request method that the application credential is
	// permitted to use for a given API endpoint. Allowed values: POST, GET,
	// HEAD, PATCH, PUT and DELETE.
	Method *string `json:"method,omitempty" tf:"method,omitempty"`

	// The API path that the application credential is permitted
	// to access. May use named wildcards such as {tag} or the unnamed wildcard
	// * to match against any string in the path up to a /, or the recursive
	// wildcard ** to include / in the matched path.
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// The service type identifier for the service that the
	// application credential is granted to access. Must be a service type that is
	// listed in the service catalog and not a code name for a service. E.g.
	// identity, compute, volumev3, image, network,
	// object-store, sharev2, dns, key-manager, monitoring, etc.
	Service *string `json:"service,omitempty" tf:"service,omitempty"`
}

func (*AccessRulesInitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessRulesInitParameters.

func (*AccessRulesInitParameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AccessRulesObservation added in v0.1.9

type AccessRulesObservation struct {

	// (Computed) The ID of the existing access rule. The access rule ID of
	// another application credential can be provided.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The request method that the application credential is
	// permitted to use for a given API endpoint. Allowed values: POST, GET,
	// HEAD, PATCH, PUT and DELETE.
	Method *string `json:"method,omitempty" tf:"method,omitempty"`

	// The API path that the application credential is permitted
	// to access. May use named wildcards such as {tag} or the unnamed wildcard
	// * to match against any string in the path up to a /, or the recursive
	// wildcard ** to include / in the matched path.
	Path *string `json:"path,omitempty" tf:"path,omitempty"`

	// The service type identifier for the service that the
	// application credential is granted to access. Must be a service type that is
	// listed in the service catalog and not a code name for a service. E.g.
	// identity, compute, volumev3, image, network,
	// object-store, sharev2, dns, key-manager, monitoring, etc.
	Service *string `json:"service,omitempty" tf:"service,omitempty"`
}

func (*AccessRulesObservation) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessRulesObservation.

func (*AccessRulesObservation) DeepCopyInto added in v0.1.9

func (in *AccessRulesObservation) DeepCopyInto(out *AccessRulesObservation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type AccessRulesParameters added in v0.1.9

type AccessRulesParameters struct {

	// The request method that the application credential is
	// permitted to use for a given API endpoint. Allowed values: POST, GET,
	// HEAD, PATCH, PUT and DELETE.
	// +kubebuilder:validation:Optional
	Method *string `json:"method" tf:"method,omitempty"`

	// The API path that the application credential is permitted
	// to access. May use named wildcards such as {tag} or the unnamed wildcard
	// * to match against any string in the path up to a /, or the recursive
	// wildcard ** to include / in the matched path.
	// +kubebuilder:validation:Optional
	Path *string `json:"path" tf:"path,omitempty"`

	// The service type identifier for the service that the
	// application credential is granted to access. Must be a service type that is
	// listed in the service catalog and not a code name for a service. E.g.
	// identity, compute, volumev3, image, network,
	// object-store, sharev2, dns, key-manager, monitoring, etc.
	// +kubebuilder:validation:Optional
	Service *string `json:"service" tf:"service,omitempty"`
}

func (*AccessRulesParameters) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AccessRulesParameters.

func (*AccessRulesParameters) DeepCopyInto added in v0.1.9

func (in *AccessRulesParameters) DeepCopyInto(out *AccessRulesParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ApplicationCredentialV3 added in v0.1.9

type ApplicationCredentialV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || (has(self.initProvider) && has(self.initProvider.name))",message="spec.forProvider.name is a required parameter"
	Spec   ApplicationCredentialV3Spec   `json:"spec"`
	Status ApplicationCredentialV3Status `json:"status,omitempty"`
}

ApplicationCredentialV3 is the Schema for the ApplicationCredentialV3s API. Manages a V3 Application Credential resource within OpenStack Keystone. +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,openstack}

func (*ApplicationCredentialV3) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationCredentialV3.

func (*ApplicationCredentialV3) DeepCopyInto added in v0.1.9

func (in *ApplicationCredentialV3) DeepCopyInto(out *ApplicationCredentialV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationCredentialV3) DeepCopyObject added in v0.1.9

func (in *ApplicationCredentialV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ApplicationCredentialV3) GetCondition added in v0.1.9

GetCondition of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) GetConnectionDetailsMapping added in v0.1.9

func (tr *ApplicationCredentialV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this ApplicationCredentialV3

func (*ApplicationCredentialV3) GetDeletionPolicy added in v0.1.9

func (mg *ApplicationCredentialV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) GetID added in v0.1.9

func (tr *ApplicationCredentialV3) GetID() string

GetID returns ID of underlying Terraform resource of this ApplicationCredentialV3

func (*ApplicationCredentialV3) GetInitParameters added in v0.3.0

func (tr *ApplicationCredentialV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this ApplicationCredentialV3

func (*ApplicationCredentialV3) GetManagementPolicies added in v0.3.0

func (mg *ApplicationCredentialV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) GetMergedParameters added in v0.3.0

func (tr *ApplicationCredentialV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this ApplicationCredentialV3

func (*ApplicationCredentialV3) GetObservation added in v0.1.9

func (tr *ApplicationCredentialV3) GetObservation() (map[string]any, error)

GetObservation of this ApplicationCredentialV3

func (*ApplicationCredentialV3) GetParameters added in v0.1.9

func (tr *ApplicationCredentialV3) GetParameters() (map[string]any, error)

GetParameters of this ApplicationCredentialV3

func (*ApplicationCredentialV3) GetProviderConfigReference added in v0.1.9

func (mg *ApplicationCredentialV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) GetPublishConnectionDetailsTo added in v0.1.9

func (mg *ApplicationCredentialV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) GetTerraformResourceType added in v0.1.9

func (mg *ApplicationCredentialV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this ApplicationCredentialV3

func (*ApplicationCredentialV3) GetTerraformSchemaVersion added in v0.1.9

func (tr *ApplicationCredentialV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*ApplicationCredentialV3) GetWriteConnectionSecretToReference added in v0.1.9

func (mg *ApplicationCredentialV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) LateInitialize added in v0.1.9

func (tr *ApplicationCredentialV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this ApplicationCredentialV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*ApplicationCredentialV3) SetConditions added in v0.1.9

func (mg *ApplicationCredentialV3) SetConditions(c ...xpv1.Condition)

SetConditions of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) SetDeletionPolicy added in v0.1.9

func (mg *ApplicationCredentialV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) SetManagementPolicies added in v0.3.0

func (mg *ApplicationCredentialV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) SetObservation added in v0.1.9

func (tr *ApplicationCredentialV3) SetObservation(obs map[string]any) error

SetObservation for this ApplicationCredentialV3

func (*ApplicationCredentialV3) SetParameters added in v0.1.9

func (tr *ApplicationCredentialV3) SetParameters(params map[string]any) error

SetParameters for this ApplicationCredentialV3

func (*ApplicationCredentialV3) SetProviderConfigReference added in v0.1.9

func (mg *ApplicationCredentialV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) SetPublishConnectionDetailsTo added in v0.1.9

func (mg *ApplicationCredentialV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this ApplicationCredentialV3.

func (*ApplicationCredentialV3) SetWriteConnectionSecretToReference added in v0.1.9

func (mg *ApplicationCredentialV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this ApplicationCredentialV3.

type ApplicationCredentialV3InitParameters added in v0.3.0

type ApplicationCredentialV3InitParameters struct {

	// A collection of one or more access rules, which
	// this application credential allows to follow. The structure is described
	// below. Changing this creates a new application credential.
	AccessRules []AccessRulesInitParameters `json:"accessRules,omitempty" tf:"access_rules,omitempty"`

	// A description of the application credential.
	// Changing this creates a new application credential.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The expiration time of the application credential
	// in the RFC3339 timestamp format (e.g. 2019-03-09T12:58:49Z). If omitted,
	// an application credential will never expire. Changing this creates a new
	// application credential.
	ExpiresAt *string `json:"expiresAt,omitempty" tf:"expires_at,omitempty"`

	// A name of the application credential. Changing this
	// creates a new application credential.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new application credential.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// A collection of one or more role names, which this
	// application credential has to be associated with its project. If omitted,
	// all the current user's roles within the scoped project will be inherited by
	// a new application credential. Changing this creates a new application
	// credential.
	Roles []*string `json:"roles,omitempty" tf:"roles,omitempty"`

	// A flag indicating whether the application
	// credential may be used for creation or destruction of other application
	// credentials or trusts. Changing this creates a new application credential.
	Unrestricted *bool `json:"unrestricted,omitempty" tf:"unrestricted,omitempty"`
}

func (*ApplicationCredentialV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationCredentialV3InitParameters.

func (*ApplicationCredentialV3InitParameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ApplicationCredentialV3List added in v0.1.9

type ApplicationCredentialV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ApplicationCredentialV3 `json:"items"`
}

ApplicationCredentialV3List contains a list of ApplicationCredentialV3s

func (*ApplicationCredentialV3List) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationCredentialV3List.

func (*ApplicationCredentialV3List) DeepCopyInto added in v0.1.9

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ApplicationCredentialV3List) DeepCopyObject added in v0.1.9

func (in *ApplicationCredentialV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ApplicationCredentialV3List) GetItems added in v0.1.9

GetItems of this ApplicationCredentialV3List.

type ApplicationCredentialV3Observation added in v0.1.9

type ApplicationCredentialV3Observation struct {

	// A collection of one or more access rules, which
	// this application credential allows to follow. The structure is described
	// below. Changing this creates a new application credential.
	AccessRules []AccessRulesObservation `json:"accessRules,omitempty" tf:"access_rules,omitempty"`

	// A description of the application credential.
	// Changing this creates a new application credential.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The expiration time of the application credential
	// in the RFC3339 timestamp format (e.g. 2019-03-09T12:58:49Z). If omitted,
	// an application credential will never expire. Changing this creates a new
	// application credential.
	ExpiresAt *string `json:"expiresAt,omitempty" tf:"expires_at,omitempty"`

	// (Computed) The ID of the existing access rule. The access rule ID of
	// another application credential can be provided.
	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// A name of the application credential. Changing this
	// creates a new application credential.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The ID of the project the application credential was created
	// for and that authentication requests using this application credential will
	// be scoped to.
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new application credential.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// A collection of one or more role names, which this
	// application credential has to be associated with its project. If omitted,
	// all the current user's roles within the scoped project will be inherited by
	// a new application credential. Changing this creates a new application
	// credential.
	Roles []*string `json:"roles,omitempty" tf:"roles,omitempty"`

	// A flag indicating whether the application
	// credential may be used for creation or destruction of other application
	// credentials or trusts. Changing this creates a new application credential.
	Unrestricted *bool `json:"unrestricted,omitempty" tf:"unrestricted,omitempty"`
}

func (*ApplicationCredentialV3Observation) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationCredentialV3Observation.

func (*ApplicationCredentialV3Observation) DeepCopyInto added in v0.1.9

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ApplicationCredentialV3Parameters added in v0.1.9

type ApplicationCredentialV3Parameters struct {

	// A collection of one or more access rules, which
	// this application credential allows to follow. The structure is described
	// below. Changing this creates a new application credential.
	// +kubebuilder:validation:Optional
	AccessRules []AccessRulesParameters `json:"accessRules,omitempty" tf:"access_rules,omitempty"`

	// A description of the application credential.
	// Changing this creates a new application credential.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The expiration time of the application credential
	// in the RFC3339 timestamp format (e.g. 2019-03-09T12:58:49Z). If omitted,
	// an application credential will never expire. Changing this creates a new
	// application credential.
	// +kubebuilder:validation:Optional
	ExpiresAt *string `json:"expiresAt,omitempty" tf:"expires_at,omitempty"`

	// A name of the application credential. Changing this
	// creates a new application credential.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new application credential.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// A collection of one or more role names, which this
	// application credential has to be associated with its project. If omitted,
	// all the current user's roles within the scoped project will be inherited by
	// a new application credential. Changing this creates a new application
	// credential.
	// +kubebuilder:validation:Optional
	Roles []*string `json:"roles,omitempty" tf:"roles,omitempty"`

	// The secret for the application credential. If omitted,
	// it will be generated by the server. Changing this creates a new application
	// credential.
	// +kubebuilder:validation:Optional
	SecretSecretRef *v1.SecretKeySelector `json:"secretSecretRef,omitempty" tf:"-"`

	// A flag indicating whether the application
	// credential may be used for creation or destruction of other application
	// credentials or trusts. Changing this creates a new application credential.
	// +kubebuilder:validation:Optional
	Unrestricted *bool `json:"unrestricted,omitempty" tf:"unrestricted,omitempty"`
}

func (*ApplicationCredentialV3Parameters) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationCredentialV3Parameters.

func (*ApplicationCredentialV3Parameters) DeepCopyInto added in v0.1.9

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ApplicationCredentialV3Spec added in v0.1.9

type ApplicationCredentialV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ApplicationCredentialV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider ApplicationCredentialV3InitParameters `json:"initProvider,omitempty"`
}

ApplicationCredentialV3Spec defines the desired state of ApplicationCredentialV3

func (*ApplicationCredentialV3Spec) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationCredentialV3Spec.

func (*ApplicationCredentialV3Spec) DeepCopyInto added in v0.1.9

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ApplicationCredentialV3Status added in v0.1.9

type ApplicationCredentialV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        ApplicationCredentialV3Observation `json:"atProvider,omitempty"`
}

ApplicationCredentialV3Status defines the observed state of ApplicationCredentialV3.

func (*ApplicationCredentialV3Status) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplicationCredentialV3Status.

func (*ApplicationCredentialV3Status) DeepCopyInto added in v0.1.9

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EC2CredentialV3 added in v0.3.0

type EC2CredentialV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              EC2CredentialV3Spec   `json:"spec"`
	Status            EC2CredentialV3Status `json:"status,omitempty"`
}

EC2CredentialV3 is the Schema for the EC2CredentialV3s API. Manages a V3 EC2 Credential resource within OpenStack Keystone. +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,openstack}

func (*EC2CredentialV3) DeepCopy added in v0.3.0

func (in *EC2CredentialV3) DeepCopy() *EC2CredentialV3

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EC2CredentialV3.

func (*EC2CredentialV3) DeepCopyInto added in v0.3.0

func (in *EC2CredentialV3) DeepCopyInto(out *EC2CredentialV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*EC2CredentialV3) DeepCopyObject added in v0.3.0

func (in *EC2CredentialV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*EC2CredentialV3) GetCondition added in v0.3.0

func (mg *EC2CredentialV3) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this EC2CredentialV3.

func (*EC2CredentialV3) GetConnectionDetailsMapping added in v0.3.0

func (tr *EC2CredentialV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this EC2CredentialV3

func (*EC2CredentialV3) GetDeletionPolicy added in v0.3.0

func (mg *EC2CredentialV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this EC2CredentialV3.

func (*EC2CredentialV3) GetID added in v0.3.0

func (tr *EC2CredentialV3) GetID() string

GetID returns ID of underlying Terraform resource of this EC2CredentialV3

func (*EC2CredentialV3) GetInitParameters added in v0.3.0

func (tr *EC2CredentialV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this EC2CredentialV3

func (*EC2CredentialV3) GetManagementPolicies added in v0.3.0

func (mg *EC2CredentialV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this EC2CredentialV3.

func (*EC2CredentialV3) GetMergedParameters added in v0.3.0

func (tr *EC2CredentialV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this EC2CredentialV3

func (*EC2CredentialV3) GetObservation added in v0.3.0

func (tr *EC2CredentialV3) GetObservation() (map[string]any, error)

GetObservation of this EC2CredentialV3

func (*EC2CredentialV3) GetParameters added in v0.3.0

func (tr *EC2CredentialV3) GetParameters() (map[string]any, error)

GetParameters of this EC2CredentialV3

func (*EC2CredentialV3) GetProviderConfigReference added in v0.3.0

func (mg *EC2CredentialV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this EC2CredentialV3.

func (*EC2CredentialV3) GetPublishConnectionDetailsTo added in v0.3.0

func (mg *EC2CredentialV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this EC2CredentialV3.

func (*EC2CredentialV3) GetTerraformResourceType added in v0.3.0

func (mg *EC2CredentialV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this EC2CredentialV3

func (*EC2CredentialV3) GetTerraformSchemaVersion added in v0.3.0

func (tr *EC2CredentialV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*EC2CredentialV3) GetWriteConnectionSecretToReference added in v0.3.0

func (mg *EC2CredentialV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this EC2CredentialV3.

func (*EC2CredentialV3) LateInitialize added in v0.3.0

func (tr *EC2CredentialV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this EC2CredentialV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*EC2CredentialV3) SetConditions added in v0.3.0

func (mg *EC2CredentialV3) SetConditions(c ...xpv1.Condition)

SetConditions of this EC2CredentialV3.

func (*EC2CredentialV3) SetDeletionPolicy added in v0.3.0

func (mg *EC2CredentialV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this EC2CredentialV3.

func (*EC2CredentialV3) SetManagementPolicies added in v0.3.0

func (mg *EC2CredentialV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this EC2CredentialV3.

func (*EC2CredentialV3) SetObservation added in v0.3.0

func (tr *EC2CredentialV3) SetObservation(obs map[string]any) error

SetObservation for this EC2CredentialV3

func (*EC2CredentialV3) SetParameters added in v0.3.0

func (tr *EC2CredentialV3) SetParameters(params map[string]any) error

SetParameters for this EC2CredentialV3

func (*EC2CredentialV3) SetProviderConfigReference added in v0.3.0

func (mg *EC2CredentialV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this EC2CredentialV3.

func (*EC2CredentialV3) SetPublishConnectionDetailsTo added in v0.3.0

func (mg *EC2CredentialV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this EC2CredentialV3.

func (*EC2CredentialV3) SetWriteConnectionSecretToReference added in v0.3.0

func (mg *EC2CredentialV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this EC2CredentialV3.

type EC2CredentialV3InitParameters added in v0.3.0

type EC2CredentialV3InitParameters struct {

	// The ID of the project the EC2 credential is created
	// for and that authentication requests using this EC2 credential will
	// be scoped to. Only administrative users can specify a project ID different
	// from the current auth scope.
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new EC2 credential.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The ID of the user the EC2 credential is created for.
	// Only administrative users can specify a user ID different from the current
	// auth scope.
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*EC2CredentialV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EC2CredentialV3InitParameters.

func (*EC2CredentialV3InitParameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EC2CredentialV3List added in v0.3.0

type EC2CredentialV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []EC2CredentialV3 `json:"items"`
}

EC2CredentialV3List contains a list of EC2CredentialV3s

func (*EC2CredentialV3List) DeepCopy added in v0.3.0

func (in *EC2CredentialV3List) DeepCopy() *EC2CredentialV3List

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EC2CredentialV3List.

func (*EC2CredentialV3List) DeepCopyInto added in v0.3.0

func (in *EC2CredentialV3List) DeepCopyInto(out *EC2CredentialV3List)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*EC2CredentialV3List) DeepCopyObject added in v0.3.0

func (in *EC2CredentialV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*EC2CredentialV3List) GetItems added in v0.3.0

func (l *EC2CredentialV3List) GetItems() []resource.Managed

GetItems of this EC2CredentialV3List.

type EC2CredentialV3Observation added in v0.3.0

type EC2CredentialV3Observation struct {

	// contains an EC2 credential access UUID
	Access *string `json:"access,omitempty" tf:"access,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The ID of the project the EC2 credential is created
	// for and that authentication requests using this EC2 credential will
	// be scoped to. Only administrative users can specify a project ID different
	// from the current auth scope.
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new EC2 credential.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// contains an EC2 credential trust ID scope
	TrustID *string `json:"trustId,omitempty" tf:"trust_id,omitempty"`

	// The ID of the user the EC2 credential is created for.
	// Only administrative users can specify a user ID different from the current
	// auth scope.
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*EC2CredentialV3Observation) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EC2CredentialV3Observation.

func (*EC2CredentialV3Observation) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EC2CredentialV3Parameters added in v0.3.0

type EC2CredentialV3Parameters struct {

	// The ID of the project the EC2 credential is created
	// for and that authentication requests using this EC2 credential will
	// be scoped to. Only administrative users can specify a project ID different
	// from the current auth scope.
	// +kubebuilder:validation:Optional
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new EC2 credential.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The ID of the user the EC2 credential is created for.
	// Only administrative users can specify a user ID different from the current
	// auth scope.
	// +kubebuilder:validation:Optional
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*EC2CredentialV3Parameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EC2CredentialV3Parameters.

func (*EC2CredentialV3Parameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EC2CredentialV3Spec added in v0.3.0

type EC2CredentialV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     EC2CredentialV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider EC2CredentialV3InitParameters `json:"initProvider,omitempty"`
}

EC2CredentialV3Spec defines the desired state of EC2CredentialV3

func (*EC2CredentialV3Spec) DeepCopy added in v0.3.0

func (in *EC2CredentialV3Spec) DeepCopy() *EC2CredentialV3Spec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EC2CredentialV3Spec.

func (*EC2CredentialV3Spec) DeepCopyInto added in v0.3.0

func (in *EC2CredentialV3Spec) DeepCopyInto(out *EC2CredentialV3Spec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EC2CredentialV3Status added in v0.3.0

type EC2CredentialV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        EC2CredentialV3Observation `json:"atProvider,omitempty"`
}

EC2CredentialV3Status defines the observed state of EC2CredentialV3.

func (*EC2CredentialV3Status) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EC2CredentialV3Status.

func (*EC2CredentialV3Status) DeepCopyInto added in v0.3.0

func (in *EC2CredentialV3Status) DeepCopyInto(out *EC2CredentialV3Status)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EndpointV3 added in v0.3.0

type EndpointV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.endpointRegion) || (has(self.initProvider) && has(self.initProvider.endpointRegion))",message="spec.forProvider.endpointRegion is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.serviceId) || (has(self.initProvider) && has(self.initProvider.serviceId))",message="spec.forProvider.serviceId is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.url) || (has(self.initProvider) && has(self.initProvider.url))",message="spec.forProvider.url is a required parameter"
	Spec   EndpointV3Spec   `json:"spec"`
	Status EndpointV3Status `json:"status,omitempty"`
}

EndpointV3 is the Schema for the EndpointV3s API. Manages a V3 Endpoint resource within OpenStack Keystone. +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,openstack}

func (*EndpointV3) DeepCopy added in v0.3.0

func (in *EndpointV3) DeepCopy() *EndpointV3

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV3.

func (*EndpointV3) DeepCopyInto added in v0.3.0

func (in *EndpointV3) DeepCopyInto(out *EndpointV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*EndpointV3) DeepCopyObject added in v0.3.0

func (in *EndpointV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*EndpointV3) GetCondition added in v0.3.0

func (mg *EndpointV3) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this EndpointV3.

func (*EndpointV3) GetConnectionDetailsMapping added in v0.3.0

func (tr *EndpointV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this EndpointV3

func (*EndpointV3) GetDeletionPolicy added in v0.3.0

func (mg *EndpointV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this EndpointV3.

func (*EndpointV3) GetID added in v0.3.0

func (tr *EndpointV3) GetID() string

GetID returns ID of underlying Terraform resource of this EndpointV3

func (*EndpointV3) GetInitParameters added in v0.3.0

func (tr *EndpointV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this EndpointV3

func (*EndpointV3) GetManagementPolicies added in v0.3.0

func (mg *EndpointV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this EndpointV3.

func (*EndpointV3) GetMergedParameters added in v0.3.0

func (tr *EndpointV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this EndpointV3

func (*EndpointV3) GetObservation added in v0.3.0

func (tr *EndpointV3) GetObservation() (map[string]any, error)

GetObservation of this EndpointV3

func (*EndpointV3) GetParameters added in v0.3.0

func (tr *EndpointV3) GetParameters() (map[string]any, error)

GetParameters of this EndpointV3

func (*EndpointV3) GetProviderConfigReference added in v0.3.0

func (mg *EndpointV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this EndpointV3.

func (*EndpointV3) GetPublishConnectionDetailsTo added in v0.3.0

func (mg *EndpointV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this EndpointV3.

func (*EndpointV3) GetTerraformResourceType added in v0.3.0

func (mg *EndpointV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this EndpointV3

func (*EndpointV3) GetTerraformSchemaVersion added in v0.3.0

func (tr *EndpointV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*EndpointV3) GetWriteConnectionSecretToReference added in v0.3.0

func (mg *EndpointV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this EndpointV3.

func (*EndpointV3) LateInitialize added in v0.3.0

func (tr *EndpointV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this EndpointV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*EndpointV3) SetConditions added in v0.3.0

func (mg *EndpointV3) SetConditions(c ...xpv1.Condition)

SetConditions of this EndpointV3.

func (*EndpointV3) SetDeletionPolicy added in v0.3.0

func (mg *EndpointV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this EndpointV3.

func (*EndpointV3) SetManagementPolicies added in v0.3.0

func (mg *EndpointV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this EndpointV3.

func (*EndpointV3) SetObservation added in v0.3.0

func (tr *EndpointV3) SetObservation(obs map[string]any) error

SetObservation for this EndpointV3

func (*EndpointV3) SetParameters added in v0.3.0

func (tr *EndpointV3) SetParameters(params map[string]any) error

SetParameters for this EndpointV3

func (*EndpointV3) SetProviderConfigReference added in v0.3.0

func (mg *EndpointV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this EndpointV3.

func (*EndpointV3) SetPublishConnectionDetailsTo added in v0.3.0

func (mg *EndpointV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this EndpointV3.

func (*EndpointV3) SetWriteConnectionSecretToReference added in v0.3.0

func (mg *EndpointV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this EndpointV3.

type EndpointV3InitParameters added in v0.3.0

type EndpointV3InitParameters struct {

	// The endpoint region. The region and
	// endpoint_region can be different.
	EndpointRegion *string `json:"endpointRegion,omitempty" tf:"endpoint_region,omitempty"`

	// The endpoint interface. Valid values are public,
	// internal and admin. Default value is public
	Interface *string `json:"interface,omitempty" tf:"interface,omitempty"`

	// The endpoint name.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The endpoint service ID.
	ServiceID *string `json:"serviceId,omitempty" tf:"service_id,omitempty"`

	// The endpoint url.
	URL *string `json:"url,omitempty" tf:"url,omitempty"`
}

func (*EndpointV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV3InitParameters.

func (*EndpointV3InitParameters) DeepCopyInto added in v0.3.0

func (in *EndpointV3InitParameters) DeepCopyInto(out *EndpointV3InitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EndpointV3List added in v0.3.0

type EndpointV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []EndpointV3 `json:"items"`
}

EndpointV3List contains a list of EndpointV3s

func (*EndpointV3List) DeepCopy added in v0.3.0

func (in *EndpointV3List) DeepCopy() *EndpointV3List

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV3List.

func (*EndpointV3List) DeepCopyInto added in v0.3.0

func (in *EndpointV3List) DeepCopyInto(out *EndpointV3List)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*EndpointV3List) DeepCopyObject added in v0.3.0

func (in *EndpointV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*EndpointV3List) GetItems added in v0.3.0

func (l *EndpointV3List) GetItems() []resource.Managed

GetItems of this EndpointV3List.

type EndpointV3Observation added in v0.3.0

type EndpointV3Observation struct {

	// The endpoint region. The region and
	// endpoint_region can be different.
	EndpointRegion *string `json:"endpointRegion,omitempty" tf:"endpoint_region,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The endpoint interface. Valid values are public,
	// internal and admin. Default value is public
	Interface *string `json:"interface,omitempty" tf:"interface,omitempty"`

	// The endpoint name.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The endpoint service ID.
	ServiceID *string `json:"serviceId,omitempty" tf:"service_id,omitempty"`

	// The service name of the endpoint.
	ServiceName *string `json:"serviceName,omitempty" tf:"service_name,omitempty"`

	// The service type of the endpoint.
	ServiceType *string `json:"serviceType,omitempty" tf:"service_type,omitempty"`

	// The endpoint url.
	URL *string `json:"url,omitempty" tf:"url,omitempty"`
}

func (*EndpointV3Observation) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV3Observation.

func (*EndpointV3Observation) DeepCopyInto added in v0.3.0

func (in *EndpointV3Observation) DeepCopyInto(out *EndpointV3Observation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EndpointV3Parameters added in v0.3.0

type EndpointV3Parameters struct {

	// The endpoint region. The region and
	// endpoint_region can be different.
	// +kubebuilder:validation:Optional
	EndpointRegion *string `json:"endpointRegion,omitempty" tf:"endpoint_region,omitempty"`

	// The endpoint interface. Valid values are public,
	// internal and admin. Default value is public
	// +kubebuilder:validation:Optional
	Interface *string `json:"interface,omitempty" tf:"interface,omitempty"`

	// The endpoint name.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The endpoint service ID.
	// +kubebuilder:validation:Optional
	ServiceID *string `json:"serviceId,omitempty" tf:"service_id,omitempty"`

	// The endpoint url.
	// +kubebuilder:validation:Optional
	URL *string `json:"url,omitempty" tf:"url,omitempty"`
}

func (*EndpointV3Parameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV3Parameters.

func (*EndpointV3Parameters) DeepCopyInto added in v0.3.0

func (in *EndpointV3Parameters) DeepCopyInto(out *EndpointV3Parameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EndpointV3Spec added in v0.3.0

type EndpointV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     EndpointV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider EndpointV3InitParameters `json:"initProvider,omitempty"`
}

EndpointV3Spec defines the desired state of EndpointV3

func (*EndpointV3Spec) DeepCopy added in v0.3.0

func (in *EndpointV3Spec) DeepCopy() *EndpointV3Spec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV3Spec.

func (*EndpointV3Spec) DeepCopyInto added in v0.3.0

func (in *EndpointV3Spec) DeepCopyInto(out *EndpointV3Spec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type EndpointV3Status added in v0.3.0

type EndpointV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        EndpointV3Observation `json:"atProvider,omitempty"`
}

EndpointV3Status defines the observed state of EndpointV3.

func (*EndpointV3Status) DeepCopy added in v0.3.0

func (in *EndpointV3Status) DeepCopy() *EndpointV3Status

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointV3Status.

func (*EndpointV3Status) DeepCopyInto added in v0.3.0

func (in *EndpointV3Status) DeepCopyInto(out *EndpointV3Status)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type GroupV3 added in v0.3.0

type GroupV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || (has(self.initProvider) && has(self.initProvider.name))",message="spec.forProvider.name is a required parameter"
	Spec   GroupV3Spec   `json:"spec"`
	Status GroupV3Status `json:"status,omitempty"`
}

GroupV3 is the Schema for the GroupV3s API. Manages a V3 group resource within OpenStack Keystone. +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,openstack}

func (*GroupV3) DeepCopy added in v0.3.0

func (in *GroupV3) DeepCopy() *GroupV3

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupV3.

func (*GroupV3) DeepCopyInto added in v0.3.0

func (in *GroupV3) DeepCopyInto(out *GroupV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GroupV3) DeepCopyObject added in v0.3.0

func (in *GroupV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*GroupV3) GetCondition added in v0.3.0

func (mg *GroupV3) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this GroupV3.

func (*GroupV3) GetConnectionDetailsMapping added in v0.3.0

func (tr *GroupV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this GroupV3

func (*GroupV3) GetDeletionPolicy added in v0.3.0

func (mg *GroupV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this GroupV3.

func (*GroupV3) GetID added in v0.3.0

func (tr *GroupV3) GetID() string

GetID returns ID of underlying Terraform resource of this GroupV3

func (*GroupV3) GetInitParameters added in v0.3.0

func (tr *GroupV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this GroupV3

func (*GroupV3) GetManagementPolicies added in v0.3.0

func (mg *GroupV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this GroupV3.

func (*GroupV3) GetMergedParameters added in v0.3.0

func (tr *GroupV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this GroupV3

func (*GroupV3) GetObservation added in v0.3.0

func (tr *GroupV3) GetObservation() (map[string]any, error)

GetObservation of this GroupV3

func (*GroupV3) GetParameters added in v0.3.0

func (tr *GroupV3) GetParameters() (map[string]any, error)

GetParameters of this GroupV3

func (*GroupV3) GetProviderConfigReference added in v0.3.0

func (mg *GroupV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this GroupV3.

func (*GroupV3) GetPublishConnectionDetailsTo added in v0.3.0

func (mg *GroupV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this GroupV3.

func (*GroupV3) GetTerraformResourceType added in v0.3.0

func (mg *GroupV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this GroupV3

func (*GroupV3) GetTerraformSchemaVersion added in v0.3.0

func (tr *GroupV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*GroupV3) GetWriteConnectionSecretToReference added in v0.3.0

func (mg *GroupV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this GroupV3.

func (*GroupV3) LateInitialize added in v0.3.0

func (tr *GroupV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this GroupV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*GroupV3) SetConditions added in v0.3.0

func (mg *GroupV3) SetConditions(c ...xpv1.Condition)

SetConditions of this GroupV3.

func (*GroupV3) SetDeletionPolicy added in v0.3.0

func (mg *GroupV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this GroupV3.

func (*GroupV3) SetManagementPolicies added in v0.3.0

func (mg *GroupV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this GroupV3.

func (*GroupV3) SetObservation added in v0.3.0

func (tr *GroupV3) SetObservation(obs map[string]any) error

SetObservation for this GroupV3

func (*GroupV3) SetParameters added in v0.3.0

func (tr *GroupV3) SetParameters(params map[string]any) error

SetParameters for this GroupV3

func (*GroupV3) SetProviderConfigReference added in v0.3.0

func (mg *GroupV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this GroupV3.

func (*GroupV3) SetPublishConnectionDetailsTo added in v0.3.0

func (mg *GroupV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this GroupV3.

func (*GroupV3) SetWriteConnectionSecretToReference added in v0.3.0

func (mg *GroupV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this GroupV3.

type GroupV3InitParameters added in v0.3.0

type GroupV3InitParameters struct {

	// A description of the group.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The domain the group belongs to.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The name of the group.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new group.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`
}

func (*GroupV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupV3InitParameters.

func (*GroupV3InitParameters) DeepCopyInto added in v0.3.0

func (in *GroupV3InitParameters) DeepCopyInto(out *GroupV3InitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type GroupV3List added in v0.3.0

type GroupV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []GroupV3 `json:"items"`
}

GroupV3List contains a list of GroupV3s

func (*GroupV3List) DeepCopy added in v0.3.0

func (in *GroupV3List) DeepCopy() *GroupV3List

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupV3List.

func (*GroupV3List) DeepCopyInto added in v0.3.0

func (in *GroupV3List) DeepCopyInto(out *GroupV3List)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*GroupV3List) DeepCopyObject added in v0.3.0

func (in *GroupV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*GroupV3List) GetItems added in v0.3.0

func (l *GroupV3List) GetItems() []resource.Managed

GetItems of this GroupV3List.

type GroupV3Observation added in v0.3.0

type GroupV3Observation struct {

	// A description of the group.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The domain the group belongs to.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The name of the group.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new group.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`
}

func (*GroupV3Observation) DeepCopy added in v0.3.0

func (in *GroupV3Observation) DeepCopy() *GroupV3Observation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupV3Observation.

func (*GroupV3Observation) DeepCopyInto added in v0.3.0

func (in *GroupV3Observation) DeepCopyInto(out *GroupV3Observation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type GroupV3Parameters added in v0.3.0

type GroupV3Parameters struct {

	// A description of the group.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The domain the group belongs to.
	// +kubebuilder:validation:Optional
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The name of the group.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new group.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`
}

func (*GroupV3Parameters) DeepCopy added in v0.3.0

func (in *GroupV3Parameters) DeepCopy() *GroupV3Parameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupV3Parameters.

func (*GroupV3Parameters) DeepCopyInto added in v0.3.0

func (in *GroupV3Parameters) DeepCopyInto(out *GroupV3Parameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type GroupV3Spec added in v0.3.0

type GroupV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     GroupV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider GroupV3InitParameters `json:"initProvider,omitempty"`
}

GroupV3Spec defines the desired state of GroupV3

func (*GroupV3Spec) DeepCopy added in v0.3.0

func (in *GroupV3Spec) DeepCopy() *GroupV3Spec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupV3Spec.

func (*GroupV3Spec) DeepCopyInto added in v0.3.0

func (in *GroupV3Spec) DeepCopyInto(out *GroupV3Spec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type GroupV3Status added in v0.3.0

type GroupV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        GroupV3Observation `json:"atProvider,omitempty"`
}

GroupV3Status defines the observed state of GroupV3.

func (*GroupV3Status) DeepCopy added in v0.3.0

func (in *GroupV3Status) DeepCopy() *GroupV3Status

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GroupV3Status.

func (*GroupV3Status) DeepCopyInto added in v0.3.0

func (in *GroupV3Status) DeepCopyInto(out *GroupV3Status)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type InheritRoleAssignmentV3 added in v0.3.0

type InheritRoleAssignmentV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.roleId) || (has(self.initProvider) && has(self.initProvider.roleId))",message="spec.forProvider.roleId is a required parameter"
	Spec   InheritRoleAssignmentV3Spec   `json:"spec"`
	Status InheritRoleAssignmentV3Status `json:"status,omitempty"`
}

InheritRoleAssignmentV3 is the Schema for the InheritRoleAssignmentV3s API. Manages a V3 Inherit Role assignment within OpenStack Keystone. +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,openstack}

func (*InheritRoleAssignmentV3) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) DeepCopyInto added in v0.3.0

func (in *InheritRoleAssignmentV3) DeepCopyInto(out *InheritRoleAssignmentV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*InheritRoleAssignmentV3) DeepCopyObject added in v0.3.0

func (in *InheritRoleAssignmentV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*InheritRoleAssignmentV3) GetCondition added in v0.3.0

GetCondition of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) GetConnectionDetailsMapping added in v0.3.0

func (tr *InheritRoleAssignmentV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3) GetDeletionPolicy added in v0.3.0

func (mg *InheritRoleAssignmentV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) GetID added in v0.3.0

func (tr *InheritRoleAssignmentV3) GetID() string

GetID returns ID of underlying Terraform resource of this InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3) GetInitParameters added in v0.3.0

func (tr *InheritRoleAssignmentV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3) GetManagementPolicies added in v0.3.0

func (mg *InheritRoleAssignmentV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) GetMergedParameters added in v0.3.0

func (tr *InheritRoleAssignmentV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3) GetObservation added in v0.3.0

func (tr *InheritRoleAssignmentV3) GetObservation() (map[string]any, error)

GetObservation of this InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3) GetParameters added in v0.3.0

func (tr *InheritRoleAssignmentV3) GetParameters() (map[string]any, error)

GetParameters of this InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3) GetProviderConfigReference added in v0.3.0

func (mg *InheritRoleAssignmentV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) GetPublishConnectionDetailsTo added in v0.3.0

func (mg *InheritRoleAssignmentV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) GetTerraformResourceType added in v0.3.0

func (mg *InheritRoleAssignmentV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3) GetTerraformSchemaVersion added in v0.3.0

func (tr *InheritRoleAssignmentV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*InheritRoleAssignmentV3) GetWriteConnectionSecretToReference added in v0.3.0

func (mg *InheritRoleAssignmentV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) LateInitialize added in v0.3.0

func (tr *InheritRoleAssignmentV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this InheritRoleAssignmentV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*InheritRoleAssignmentV3) SetConditions added in v0.3.0

func (mg *InheritRoleAssignmentV3) SetConditions(c ...xpv1.Condition)

SetConditions of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) SetDeletionPolicy added in v0.3.0

func (mg *InheritRoleAssignmentV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) SetManagementPolicies added in v0.3.0

func (mg *InheritRoleAssignmentV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) SetObservation added in v0.3.0

func (tr *InheritRoleAssignmentV3) SetObservation(obs map[string]any) error

SetObservation for this InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3) SetParameters added in v0.3.0

func (tr *InheritRoleAssignmentV3) SetParameters(params map[string]any) error

SetParameters for this InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3) SetProviderConfigReference added in v0.3.0

func (mg *InheritRoleAssignmentV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) SetPublishConnectionDetailsTo added in v0.3.0

func (mg *InheritRoleAssignmentV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3) SetWriteConnectionSecretToReference added in v0.3.0

func (mg *InheritRoleAssignmentV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this InheritRoleAssignmentV3.

type InheritRoleAssignmentV3InitParameters added in v0.3.0

type InheritRoleAssignmentV3InitParameters struct {

	// The domain to assign the role in.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The group to assign the role to.
	GroupID *string `json:"groupId,omitempty" tf:"group_id,omitempty"`

	// The project to assign the role in.
	// The project should be able to containt child projects.
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The role to assign.
	RoleID *string `json:"roleId,omitempty" tf:"role_id,omitempty"`

	// The user to assign the role to.
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*InheritRoleAssignmentV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InheritRoleAssignmentV3InitParameters.

func (*InheritRoleAssignmentV3InitParameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type InheritRoleAssignmentV3List added in v0.3.0

type InheritRoleAssignmentV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []InheritRoleAssignmentV3 `json:"items"`
}

InheritRoleAssignmentV3List contains a list of InheritRoleAssignmentV3s

func (*InheritRoleAssignmentV3List) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InheritRoleAssignmentV3List.

func (*InheritRoleAssignmentV3List) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*InheritRoleAssignmentV3List) DeepCopyObject added in v0.3.0

func (in *InheritRoleAssignmentV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*InheritRoleAssignmentV3List) GetItems added in v0.3.0

GetItems of this InheritRoleAssignmentV3List.

type InheritRoleAssignmentV3Observation added in v0.3.0

type InheritRoleAssignmentV3Observation struct {

	// The domain to assign the role in.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The group to assign the role to.
	GroupID *string `json:"groupId,omitempty" tf:"group_id,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The project to assign the role in.
	// The project should be able to containt child projects.
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The role to assign.
	RoleID *string `json:"roleId,omitempty" tf:"role_id,omitempty"`

	// The user to assign the role to.
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*InheritRoleAssignmentV3Observation) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InheritRoleAssignmentV3Observation.

func (*InheritRoleAssignmentV3Observation) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type InheritRoleAssignmentV3Parameters added in v0.3.0

type InheritRoleAssignmentV3Parameters struct {

	// The domain to assign the role in.
	// +kubebuilder:validation:Optional
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The group to assign the role to.
	// +kubebuilder:validation:Optional
	GroupID *string `json:"groupId,omitempty" tf:"group_id,omitempty"`

	// The project to assign the role in.
	// The project should be able to containt child projects.
	// +kubebuilder:validation:Optional
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The role to assign.
	// +kubebuilder:validation:Optional
	RoleID *string `json:"roleId,omitempty" tf:"role_id,omitempty"`

	// The user to assign the role to.
	// +kubebuilder:validation:Optional
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*InheritRoleAssignmentV3Parameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InheritRoleAssignmentV3Parameters.

func (*InheritRoleAssignmentV3Parameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type InheritRoleAssignmentV3Spec added in v0.3.0

type InheritRoleAssignmentV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     InheritRoleAssignmentV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider InheritRoleAssignmentV3InitParameters `json:"initProvider,omitempty"`
}

InheritRoleAssignmentV3Spec defines the desired state of InheritRoleAssignmentV3

func (*InheritRoleAssignmentV3Spec) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InheritRoleAssignmentV3Spec.

func (*InheritRoleAssignmentV3Spec) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type InheritRoleAssignmentV3Status added in v0.3.0

type InheritRoleAssignmentV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        InheritRoleAssignmentV3Observation `json:"atProvider,omitempty"`
}

InheritRoleAssignmentV3Status defines the observed state of InheritRoleAssignmentV3.

func (*InheritRoleAssignmentV3Status) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InheritRoleAssignmentV3Status.

func (*InheritRoleAssignmentV3Status) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type MultiFactorAuthRuleInitParameters added in v0.3.0

type MultiFactorAuthRuleInitParameters struct {

	// A list of authentication plugins that the user must
	// authenticate with.
	Rule []*string `json:"rule,omitempty" tf:"rule,omitempty"`
}

func (*MultiFactorAuthRuleInitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MultiFactorAuthRuleInitParameters.

func (*MultiFactorAuthRuleInitParameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type MultiFactorAuthRuleObservation added in v0.1.9

type MultiFactorAuthRuleObservation struct {

	// A list of authentication plugins that the user must
	// authenticate with.
	Rule []*string `json:"rule,omitempty" tf:"rule,omitempty"`
}

func (*MultiFactorAuthRuleObservation) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MultiFactorAuthRuleObservation.

func (*MultiFactorAuthRuleObservation) DeepCopyInto added in v0.1.9

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type MultiFactorAuthRuleParameters added in v0.1.9

type MultiFactorAuthRuleParameters struct {

	// A list of authentication plugins that the user must
	// authenticate with.
	// +kubebuilder:validation:Optional
	Rule []*string `json:"rule" tf:"rule,omitempty"`
}

func (*MultiFactorAuthRuleParameters) DeepCopy added in v0.1.9

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MultiFactorAuthRuleParameters.

func (*MultiFactorAuthRuleParameters) DeepCopyInto added in v0.1.9

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProjectV3

type ProjectV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              ProjectV3Spec   `json:"spec"`
	Status            ProjectV3Status `json:"status,omitempty"`
}

ProjectV3 is the Schema for the ProjectV3s API. Manages a V3 Project resource within OpenStack Keystone. +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,openstack}

func (*ProjectV3) DeepCopy

func (in *ProjectV3) DeepCopy() *ProjectV3

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectV3.

func (*ProjectV3) DeepCopyInto

func (in *ProjectV3) DeepCopyInto(out *ProjectV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ProjectV3) DeepCopyObject

func (in *ProjectV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ProjectV3) GetCondition

func (mg *ProjectV3) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this ProjectV3.

func (*ProjectV3) GetConnectionDetailsMapping

func (tr *ProjectV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this ProjectV3

func (*ProjectV3) GetDeletionPolicy

func (mg *ProjectV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this ProjectV3.

func (*ProjectV3) GetID

func (tr *ProjectV3) GetID() string

GetID returns ID of underlying Terraform resource of this ProjectV3

func (*ProjectV3) GetInitParameters added in v0.3.0

func (tr *ProjectV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this ProjectV3

func (*ProjectV3) GetManagementPolicies added in v0.3.0

func (mg *ProjectV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this ProjectV3.

func (*ProjectV3) GetMergedParameters added in v0.3.0

func (tr *ProjectV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this ProjectV3

func (*ProjectV3) GetObservation

func (tr *ProjectV3) GetObservation() (map[string]any, error)

GetObservation of this ProjectV3

func (*ProjectV3) GetParameters

func (tr *ProjectV3) GetParameters() (map[string]any, error)

GetParameters of this ProjectV3

func (*ProjectV3) GetProviderConfigReference

func (mg *ProjectV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this ProjectV3.

func (*ProjectV3) GetPublishConnectionDetailsTo

func (mg *ProjectV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this ProjectV3.

func (*ProjectV3) GetTerraformResourceType

func (mg *ProjectV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this ProjectV3

func (*ProjectV3) GetTerraformSchemaVersion

func (tr *ProjectV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*ProjectV3) GetWriteConnectionSecretToReference

func (mg *ProjectV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this ProjectV3.

func (*ProjectV3) LateInitialize

func (tr *ProjectV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this ProjectV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*ProjectV3) SetConditions

func (mg *ProjectV3) SetConditions(c ...xpv1.Condition)

SetConditions of this ProjectV3.

func (*ProjectV3) SetDeletionPolicy

func (mg *ProjectV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this ProjectV3.

func (*ProjectV3) SetManagementPolicies added in v0.3.0

func (mg *ProjectV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this ProjectV3.

func (*ProjectV3) SetObservation

func (tr *ProjectV3) SetObservation(obs map[string]any) error

SetObservation for this ProjectV3

func (*ProjectV3) SetParameters

func (tr *ProjectV3) SetParameters(params map[string]any) error

SetParameters for this ProjectV3

func (*ProjectV3) SetProviderConfigReference

func (mg *ProjectV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this ProjectV3.

func (*ProjectV3) SetPublishConnectionDetailsTo

func (mg *ProjectV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this ProjectV3.

func (*ProjectV3) SetWriteConnectionSecretToReference

func (mg *ProjectV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this ProjectV3.

type ProjectV3InitParameters added in v0.3.0

type ProjectV3InitParameters struct {

	// A description of the project.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The domain this project belongs to.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// Whether the project is enabled or disabled. Valid
	// values are true and false. Default is true.
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Whether this project is a domain. Valid values
	// are true and false. Default is false. Changing this creates a new
	// project/domain.
	IsDomain *bool `json:"isDomain,omitempty" tf:"is_domain,omitempty"`

	// The name of the project.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The parent of this project. Changing this creates
	// a new project.
	ParentID *string `json:"parentId,omitempty" tf:"parent_id,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new project.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// Tags for the project. Changing this updates the existing
	// project.
	Tags []*string `json:"tags,omitempty" tf:"tags,omitempty"`
}

func (*ProjectV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectV3InitParameters.

func (*ProjectV3InitParameters) DeepCopyInto added in v0.3.0

func (in *ProjectV3InitParameters) DeepCopyInto(out *ProjectV3InitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProjectV3List

type ProjectV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ProjectV3 `json:"items"`
}

ProjectV3List contains a list of ProjectV3s

func (*ProjectV3List) DeepCopy

func (in *ProjectV3List) DeepCopy() *ProjectV3List

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectV3List.

func (*ProjectV3List) DeepCopyInto

func (in *ProjectV3List) DeepCopyInto(out *ProjectV3List)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ProjectV3List) DeepCopyObject

func (in *ProjectV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ProjectV3List) GetItems

func (l *ProjectV3List) GetItems() []resource.Managed

GetItems of this ProjectV3List.

type ProjectV3Observation

type ProjectV3Observation struct {

	// A description of the project.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The domain this project belongs to.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// Whether the project is enabled or disabled. Valid
	// values are true and false. Default is true.
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// Whether this project is a domain. Valid values
	// are true and false. Default is false. Changing this creates a new
	// project/domain.
	IsDomain *bool `json:"isDomain,omitempty" tf:"is_domain,omitempty"`

	// The name of the project.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The parent of this project. Changing this creates
	// a new project.
	ParentID *string `json:"parentId,omitempty" tf:"parent_id,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new project.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// Tags for the project. Changing this updates the existing
	// project.
	Tags []*string `json:"tags,omitempty" tf:"tags,omitempty"`
}

func (*ProjectV3Observation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectV3Observation.

func (*ProjectV3Observation) DeepCopyInto

func (in *ProjectV3Observation) DeepCopyInto(out *ProjectV3Observation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProjectV3Parameters

type ProjectV3Parameters struct {

	// A description of the project.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The domain this project belongs to.
	// +kubebuilder:validation:Optional
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// Whether the project is enabled or disabled. Valid
	// values are true and false. Default is true.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Whether this project is a domain. Valid values
	// are true and false. Default is false. Changing this creates a new
	// project/domain.
	// +kubebuilder:validation:Optional
	IsDomain *bool `json:"isDomain,omitempty" tf:"is_domain,omitempty"`

	// The name of the project.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The parent of this project. Changing this creates
	// a new project.
	// +kubebuilder:validation:Optional
	ParentID *string `json:"parentId,omitempty" tf:"parent_id,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new project.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// Tags for the project. Changing this updates the existing
	// project.
	// +kubebuilder:validation:Optional
	Tags []*string `json:"tags,omitempty" tf:"tags,omitempty"`
}

func (*ProjectV3Parameters) DeepCopy

func (in *ProjectV3Parameters) DeepCopy() *ProjectV3Parameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectV3Parameters.

func (*ProjectV3Parameters) DeepCopyInto

func (in *ProjectV3Parameters) DeepCopyInto(out *ProjectV3Parameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProjectV3Spec

type ProjectV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ProjectV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider ProjectV3InitParameters `json:"initProvider,omitempty"`
}

ProjectV3Spec defines the desired state of ProjectV3

func (*ProjectV3Spec) DeepCopy

func (in *ProjectV3Spec) DeepCopy() *ProjectV3Spec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectV3Spec.

func (*ProjectV3Spec) DeepCopyInto

func (in *ProjectV3Spec) DeepCopyInto(out *ProjectV3Spec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ProjectV3Status

type ProjectV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        ProjectV3Observation `json:"atProvider,omitempty"`
}

ProjectV3Status defines the observed state of ProjectV3.

func (*ProjectV3Status) DeepCopy

func (in *ProjectV3Status) DeepCopy() *ProjectV3Status

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectV3Status.

func (*ProjectV3Status) DeepCopyInto

func (in *ProjectV3Status) DeepCopyInto(out *ProjectV3Status)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleAssignmentV3

type RoleAssignmentV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.roleId) || (has(self.initProvider) && has(self.initProvider.roleId))",message="spec.forProvider.roleId is a required parameter"
	Spec   RoleAssignmentV3Spec   `json:"spec"`
	Status RoleAssignmentV3Status `json:"status,omitempty"`
}

RoleAssignmentV3 is the Schema for the RoleAssignmentV3s API. Manages a V3 Role assignment within OpenStack Keystone. +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,openstack}

func (*RoleAssignmentV3) DeepCopy

func (in *RoleAssignmentV3) DeepCopy() *RoleAssignmentV3

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentV3.

func (*RoleAssignmentV3) DeepCopyInto

func (in *RoleAssignmentV3) DeepCopyInto(out *RoleAssignmentV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RoleAssignmentV3) DeepCopyObject

func (in *RoleAssignmentV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*RoleAssignmentV3) GetCondition

func (mg *RoleAssignmentV3) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this RoleAssignmentV3.

func (*RoleAssignmentV3) GetConnectionDetailsMapping

func (tr *RoleAssignmentV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this RoleAssignmentV3

func (*RoleAssignmentV3) GetDeletionPolicy

func (mg *RoleAssignmentV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this RoleAssignmentV3.

func (*RoleAssignmentV3) GetID

func (tr *RoleAssignmentV3) GetID() string

GetID returns ID of underlying Terraform resource of this RoleAssignmentV3

func (*RoleAssignmentV3) GetInitParameters added in v0.3.0

func (tr *RoleAssignmentV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this RoleAssignmentV3

func (*RoleAssignmentV3) GetManagementPolicies added in v0.3.0

func (mg *RoleAssignmentV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this RoleAssignmentV3.

func (*RoleAssignmentV3) GetMergedParameters added in v0.3.0

func (tr *RoleAssignmentV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this RoleAssignmentV3

func (*RoleAssignmentV3) GetObservation

func (tr *RoleAssignmentV3) GetObservation() (map[string]any, error)

GetObservation of this RoleAssignmentV3

func (*RoleAssignmentV3) GetParameters

func (tr *RoleAssignmentV3) GetParameters() (map[string]any, error)

GetParameters of this RoleAssignmentV3

func (*RoleAssignmentV3) GetProviderConfigReference

func (mg *RoleAssignmentV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this RoleAssignmentV3.

func (*RoleAssignmentV3) GetPublishConnectionDetailsTo

func (mg *RoleAssignmentV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this RoleAssignmentV3.

func (*RoleAssignmentV3) GetTerraformResourceType

func (mg *RoleAssignmentV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this RoleAssignmentV3

func (*RoleAssignmentV3) GetTerraformSchemaVersion

func (tr *RoleAssignmentV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*RoleAssignmentV3) GetWriteConnectionSecretToReference

func (mg *RoleAssignmentV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this RoleAssignmentV3.

func (*RoleAssignmentV3) LateInitialize

func (tr *RoleAssignmentV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this RoleAssignmentV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*RoleAssignmentV3) ResolveReferences

func (mg *RoleAssignmentV3) ResolveReferences(ctx context.Context, c client.Reader) error

ResolveReferences of this RoleAssignmentV3.

func (*RoleAssignmentV3) SetConditions

func (mg *RoleAssignmentV3) SetConditions(c ...xpv1.Condition)

SetConditions of this RoleAssignmentV3.

func (*RoleAssignmentV3) SetDeletionPolicy

func (mg *RoleAssignmentV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this RoleAssignmentV3.

func (*RoleAssignmentV3) SetManagementPolicies added in v0.3.0

func (mg *RoleAssignmentV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this RoleAssignmentV3.

func (*RoleAssignmentV3) SetObservation

func (tr *RoleAssignmentV3) SetObservation(obs map[string]any) error

SetObservation for this RoleAssignmentV3

func (*RoleAssignmentV3) SetParameters

func (tr *RoleAssignmentV3) SetParameters(params map[string]any) error

SetParameters for this RoleAssignmentV3

func (*RoleAssignmentV3) SetProviderConfigReference

func (mg *RoleAssignmentV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this RoleAssignmentV3.

func (*RoleAssignmentV3) SetPublishConnectionDetailsTo

func (mg *RoleAssignmentV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this RoleAssignmentV3.

func (*RoleAssignmentV3) SetWriteConnectionSecretToReference

func (mg *RoleAssignmentV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this RoleAssignmentV3.

type RoleAssignmentV3InitParameters added in v0.3.0

type RoleAssignmentV3InitParameters struct {

	// The domain to assign the role in.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The group to assign the role to.
	GroupID *string `json:"groupId,omitempty" tf:"group_id,omitempty"`

	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The role to assign.
	RoleID *string `json:"roleId,omitempty" tf:"role_id,omitempty"`

	// The user to assign the role to.
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*RoleAssignmentV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentV3InitParameters.

func (*RoleAssignmentV3InitParameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleAssignmentV3List

type RoleAssignmentV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []RoleAssignmentV3 `json:"items"`
}

RoleAssignmentV3List contains a list of RoleAssignmentV3s

func (*RoleAssignmentV3List) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentV3List.

func (*RoleAssignmentV3List) DeepCopyInto

func (in *RoleAssignmentV3List) DeepCopyInto(out *RoleAssignmentV3List)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RoleAssignmentV3List) DeepCopyObject

func (in *RoleAssignmentV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*RoleAssignmentV3List) GetItems

func (l *RoleAssignmentV3List) GetItems() []resource.Managed

GetItems of this RoleAssignmentV3List.

type RoleAssignmentV3Observation

type RoleAssignmentV3Observation struct {

	// The domain to assign the role in.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The group to assign the role to.
	GroupID *string `json:"groupId,omitempty" tf:"group_id,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The project to assign the role in.
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The role to assign.
	RoleID *string `json:"roleId,omitempty" tf:"role_id,omitempty"`

	// The user to assign the role to.
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*RoleAssignmentV3Observation) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentV3Observation.

func (*RoleAssignmentV3Observation) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleAssignmentV3Parameters

type RoleAssignmentV3Parameters struct {

	// The domain to assign the role in.
	// +kubebuilder:validation:Optional
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The group to assign the role to.
	// +kubebuilder:validation:Optional
	GroupID *string `json:"groupId,omitempty" tf:"group_id,omitempty"`

	// The project to assign the role in.
	// +crossplane:generate:reference:type=ProjectV3
	// +kubebuilder:validation:Optional
	ProjectID *string `json:"projectId,omitempty" tf:"project_id,omitempty"`

	// Reference to a ProjectV3 to populate projectId.
	// +kubebuilder:validation:Optional
	ProjectIDRef *v1.Reference `json:"projectIdRef,omitempty" tf:"-"`

	// Selector for a ProjectV3 to populate projectId.
	// +kubebuilder:validation:Optional
	ProjectIDSelector *v1.Selector `json:"projectIdSelector,omitempty" tf:"-"`

	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The role to assign.
	// +kubebuilder:validation:Optional
	RoleID *string `json:"roleId,omitempty" tf:"role_id,omitempty"`

	// The user to assign the role to.
	// +kubebuilder:validation:Optional
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*RoleAssignmentV3Parameters) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentV3Parameters.

func (*RoleAssignmentV3Parameters) DeepCopyInto

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleAssignmentV3Spec

type RoleAssignmentV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     RoleAssignmentV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider RoleAssignmentV3InitParameters `json:"initProvider,omitempty"`
}

RoleAssignmentV3Spec defines the desired state of RoleAssignmentV3

func (*RoleAssignmentV3Spec) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentV3Spec.

func (*RoleAssignmentV3Spec) DeepCopyInto

func (in *RoleAssignmentV3Spec) DeepCopyInto(out *RoleAssignmentV3Spec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleAssignmentV3Status

type RoleAssignmentV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        RoleAssignmentV3Observation `json:"atProvider,omitempty"`
}

RoleAssignmentV3Status defines the observed state of RoleAssignmentV3.

func (*RoleAssignmentV3Status) DeepCopy

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleAssignmentV3Status.

func (*RoleAssignmentV3Status) DeepCopyInto

func (in *RoleAssignmentV3Status) DeepCopyInto(out *RoleAssignmentV3Status)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleV3 added in v0.3.0

type RoleV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || (has(self.initProvider) && has(self.initProvider.name))",message="spec.forProvider.name is a required parameter"
	Spec   RoleV3Spec   `json:"spec"`
	Status RoleV3Status `json:"status,omitempty"`
}

RoleV3 is the Schema for the RoleV3s API. Manages a V3 Role resource within OpenStack Keystone. +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,openstack}

func (*RoleV3) DeepCopy added in v0.3.0

func (in *RoleV3) DeepCopy() *RoleV3

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleV3.

func (*RoleV3) DeepCopyInto added in v0.3.0

func (in *RoleV3) DeepCopyInto(out *RoleV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RoleV3) DeepCopyObject added in v0.3.0

func (in *RoleV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*RoleV3) GetCondition added in v0.3.0

func (mg *RoleV3) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this RoleV3.

func (*RoleV3) GetConnectionDetailsMapping added in v0.3.0

func (tr *RoleV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this RoleV3

func (*RoleV3) GetDeletionPolicy added in v0.3.0

func (mg *RoleV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this RoleV3.

func (*RoleV3) GetID added in v0.3.0

func (tr *RoleV3) GetID() string

GetID returns ID of underlying Terraform resource of this RoleV3

func (*RoleV3) GetInitParameters added in v0.3.0

func (tr *RoleV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this RoleV3

func (*RoleV3) GetManagementPolicies added in v0.3.0

func (mg *RoleV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this RoleV3.

func (*RoleV3) GetMergedParameters added in v0.3.0

func (tr *RoleV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this RoleV3

func (*RoleV3) GetObservation added in v0.3.0

func (tr *RoleV3) GetObservation() (map[string]any, error)

GetObservation of this RoleV3

func (*RoleV3) GetParameters added in v0.3.0

func (tr *RoleV3) GetParameters() (map[string]any, error)

GetParameters of this RoleV3

func (*RoleV3) GetProviderConfigReference added in v0.3.0

func (mg *RoleV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this RoleV3.

func (*RoleV3) GetPublishConnectionDetailsTo added in v0.3.0

func (mg *RoleV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this RoleV3.

func (*RoleV3) GetTerraformResourceType added in v0.3.0

func (mg *RoleV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this RoleV3

func (*RoleV3) GetTerraformSchemaVersion added in v0.3.0

func (tr *RoleV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*RoleV3) GetWriteConnectionSecretToReference added in v0.3.0

func (mg *RoleV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this RoleV3.

func (*RoleV3) LateInitialize added in v0.3.0

func (tr *RoleV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this RoleV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*RoleV3) SetConditions added in v0.3.0

func (mg *RoleV3) SetConditions(c ...xpv1.Condition)

SetConditions of this RoleV3.

func (*RoleV3) SetDeletionPolicy added in v0.3.0

func (mg *RoleV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this RoleV3.

func (*RoleV3) SetManagementPolicies added in v0.3.0

func (mg *RoleV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this RoleV3.

func (*RoleV3) SetObservation added in v0.3.0

func (tr *RoleV3) SetObservation(obs map[string]any) error

SetObservation for this RoleV3

func (*RoleV3) SetParameters added in v0.3.0

func (tr *RoleV3) SetParameters(params map[string]any) error

SetParameters for this RoleV3

func (*RoleV3) SetProviderConfigReference added in v0.3.0

func (mg *RoleV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this RoleV3.

func (*RoleV3) SetPublishConnectionDetailsTo added in v0.3.0

func (mg *RoleV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this RoleV3.

func (*RoleV3) SetWriteConnectionSecretToReference added in v0.3.0

func (mg *RoleV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this RoleV3.

type RoleV3InitParameters added in v0.3.0

type RoleV3InitParameters struct {

	// The domain the role belongs to.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The name of the role.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new Role.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`
}

func (*RoleV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleV3InitParameters.

func (*RoleV3InitParameters) DeepCopyInto added in v0.3.0

func (in *RoleV3InitParameters) DeepCopyInto(out *RoleV3InitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleV3List added in v0.3.0

type RoleV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []RoleV3 `json:"items"`
}

RoleV3List contains a list of RoleV3s

func (*RoleV3List) DeepCopy added in v0.3.0

func (in *RoleV3List) DeepCopy() *RoleV3List

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleV3List.

func (*RoleV3List) DeepCopyInto added in v0.3.0

func (in *RoleV3List) DeepCopyInto(out *RoleV3List)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*RoleV3List) DeepCopyObject added in v0.3.0

func (in *RoleV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*RoleV3List) GetItems added in v0.3.0

func (l *RoleV3List) GetItems() []resource.Managed

GetItems of this RoleV3List.

type RoleV3Observation added in v0.3.0

type RoleV3Observation struct {

	// The domain the role belongs to.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The name of the role.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new Role.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`
}

func (*RoleV3Observation) DeepCopy added in v0.3.0

func (in *RoleV3Observation) DeepCopy() *RoleV3Observation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleV3Observation.

func (*RoleV3Observation) DeepCopyInto added in v0.3.0

func (in *RoleV3Observation) DeepCopyInto(out *RoleV3Observation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleV3Parameters added in v0.3.0

type RoleV3Parameters struct {

	// The domain the role belongs to.
	// +kubebuilder:validation:Optional
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// The name of the role.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new Role.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`
}

func (*RoleV3Parameters) DeepCopy added in v0.3.0

func (in *RoleV3Parameters) DeepCopy() *RoleV3Parameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleV3Parameters.

func (*RoleV3Parameters) DeepCopyInto added in v0.3.0

func (in *RoleV3Parameters) DeepCopyInto(out *RoleV3Parameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleV3Spec added in v0.3.0

type RoleV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     RoleV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider RoleV3InitParameters `json:"initProvider,omitempty"`
}

RoleV3Spec defines the desired state of RoleV3

func (*RoleV3Spec) DeepCopy added in v0.3.0

func (in *RoleV3Spec) DeepCopy() *RoleV3Spec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleV3Spec.

func (*RoleV3Spec) DeepCopyInto added in v0.3.0

func (in *RoleV3Spec) DeepCopyInto(out *RoleV3Spec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type RoleV3Status added in v0.3.0

type RoleV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        RoleV3Observation `json:"atProvider,omitempty"`
}

RoleV3Status defines the observed state of RoleV3.

func (*RoleV3Status) DeepCopy added in v0.3.0

func (in *RoleV3Status) DeepCopy() *RoleV3Status

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new RoleV3Status.

func (*RoleV3Status) DeepCopyInto added in v0.3.0

func (in *RoleV3Status) DeepCopyInto(out *RoleV3Status)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ServiceV3 added in v0.3.0

type ServiceV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.name) || (has(self.initProvider) && has(self.initProvider.name))",message="spec.forProvider.name is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.type) || (has(self.initProvider) && has(self.initProvider.type))",message="spec.forProvider.type is a required parameter"
	Spec   ServiceV3Spec   `json:"spec"`
	Status ServiceV3Status `json:"status,omitempty"`
}

ServiceV3 is the Schema for the ServiceV3s API. Manages a V3 Service resource within OpenStack Keystone. +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,openstack}

func (*ServiceV3) DeepCopy added in v0.3.0

func (in *ServiceV3) DeepCopy() *ServiceV3

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV3.

func (*ServiceV3) DeepCopyInto added in v0.3.0

func (in *ServiceV3) DeepCopyInto(out *ServiceV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ServiceV3) DeepCopyObject added in v0.3.0

func (in *ServiceV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ServiceV3) GetCondition added in v0.3.0

func (mg *ServiceV3) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this ServiceV3.

func (*ServiceV3) GetConnectionDetailsMapping added in v0.3.0

func (tr *ServiceV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this ServiceV3

func (*ServiceV3) GetDeletionPolicy added in v0.3.0

func (mg *ServiceV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this ServiceV3.

func (*ServiceV3) GetID added in v0.3.0

func (tr *ServiceV3) GetID() string

GetID returns ID of underlying Terraform resource of this ServiceV3

func (*ServiceV3) GetInitParameters added in v0.3.0

func (tr *ServiceV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this ServiceV3

func (*ServiceV3) GetManagementPolicies added in v0.3.0

func (mg *ServiceV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this ServiceV3.

func (*ServiceV3) GetMergedParameters added in v0.3.0

func (tr *ServiceV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this ServiceV3

func (*ServiceV3) GetObservation added in v0.3.0

func (tr *ServiceV3) GetObservation() (map[string]any, error)

GetObservation of this ServiceV3

func (*ServiceV3) GetParameters added in v0.3.0

func (tr *ServiceV3) GetParameters() (map[string]any, error)

GetParameters of this ServiceV3

func (*ServiceV3) GetProviderConfigReference added in v0.3.0

func (mg *ServiceV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this ServiceV3.

func (*ServiceV3) GetPublishConnectionDetailsTo added in v0.3.0

func (mg *ServiceV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this ServiceV3.

func (*ServiceV3) GetTerraformResourceType added in v0.3.0

func (mg *ServiceV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this ServiceV3

func (*ServiceV3) GetTerraformSchemaVersion added in v0.3.0

func (tr *ServiceV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*ServiceV3) GetWriteConnectionSecretToReference added in v0.3.0

func (mg *ServiceV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this ServiceV3.

func (*ServiceV3) LateInitialize added in v0.3.0

func (tr *ServiceV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this ServiceV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*ServiceV3) SetConditions added in v0.3.0

func (mg *ServiceV3) SetConditions(c ...xpv1.Condition)

SetConditions of this ServiceV3.

func (*ServiceV3) SetDeletionPolicy added in v0.3.0

func (mg *ServiceV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this ServiceV3.

func (*ServiceV3) SetManagementPolicies added in v0.3.0

func (mg *ServiceV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this ServiceV3.

func (*ServiceV3) SetObservation added in v0.3.0

func (tr *ServiceV3) SetObservation(obs map[string]any) error

SetObservation for this ServiceV3

func (*ServiceV3) SetParameters added in v0.3.0

func (tr *ServiceV3) SetParameters(params map[string]any) error

SetParameters for this ServiceV3

func (*ServiceV3) SetProviderConfigReference added in v0.3.0

func (mg *ServiceV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this ServiceV3.

func (*ServiceV3) SetPublishConnectionDetailsTo added in v0.3.0

func (mg *ServiceV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this ServiceV3.

func (*ServiceV3) SetWriteConnectionSecretToReference added in v0.3.0

func (mg *ServiceV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this ServiceV3.

type ServiceV3InitParameters added in v0.3.0

type ServiceV3InitParameters struct {

	// The service description.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The service status. Defaults to true.
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The service name.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The service type.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*ServiceV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV3InitParameters.

func (*ServiceV3InitParameters) DeepCopyInto added in v0.3.0

func (in *ServiceV3InitParameters) DeepCopyInto(out *ServiceV3InitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ServiceV3List added in v0.3.0

type ServiceV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []ServiceV3 `json:"items"`
}

ServiceV3List contains a list of ServiceV3s

func (*ServiceV3List) DeepCopy added in v0.3.0

func (in *ServiceV3List) DeepCopy() *ServiceV3List

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV3List.

func (*ServiceV3List) DeepCopyInto added in v0.3.0

func (in *ServiceV3List) DeepCopyInto(out *ServiceV3List)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*ServiceV3List) DeepCopyObject added in v0.3.0

func (in *ServiceV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*ServiceV3List) GetItems added in v0.3.0

func (l *ServiceV3List) GetItems() []resource.Managed

GetItems of this ServiceV3List.

type ServiceV3Observation added in v0.3.0

type ServiceV3Observation struct {

	// The service description.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The service status. Defaults to true.
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The service name.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The service type.
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*ServiceV3Observation) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV3Observation.

func (*ServiceV3Observation) DeepCopyInto added in v0.3.0

func (in *ServiceV3Observation) DeepCopyInto(out *ServiceV3Observation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ServiceV3Parameters added in v0.3.0

type ServiceV3Parameters struct {

	// The service description.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The service status. Defaults to true.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// The service name.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The service type.
	// +kubebuilder:validation:Optional
	Type *string `json:"type,omitempty" tf:"type,omitempty"`
}

func (*ServiceV3Parameters) DeepCopy added in v0.3.0

func (in *ServiceV3Parameters) DeepCopy() *ServiceV3Parameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV3Parameters.

func (*ServiceV3Parameters) DeepCopyInto added in v0.3.0

func (in *ServiceV3Parameters) DeepCopyInto(out *ServiceV3Parameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ServiceV3Spec added in v0.3.0

type ServiceV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     ServiceV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider ServiceV3InitParameters `json:"initProvider,omitempty"`
}

ServiceV3Spec defines the desired state of ServiceV3

func (*ServiceV3Spec) DeepCopy added in v0.3.0

func (in *ServiceV3Spec) DeepCopy() *ServiceV3Spec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV3Spec.

func (*ServiceV3Spec) DeepCopyInto added in v0.3.0

func (in *ServiceV3Spec) DeepCopyInto(out *ServiceV3Spec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type ServiceV3Status added in v0.3.0

type ServiceV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        ServiceV3Observation `json:"atProvider,omitempty"`
}

ServiceV3Status defines the observed state of ServiceV3.

func (*ServiceV3Status) DeepCopy added in v0.3.0

func (in *ServiceV3Status) DeepCopy() *ServiceV3Status

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ServiceV3Status.

func (*ServiceV3Status) DeepCopyInto added in v0.3.0

func (in *ServiceV3Status) DeepCopyInto(out *ServiceV3Status)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserMembershipV3 added in v0.3.0

type UserMembershipV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.groupId) || (has(self.initProvider) && has(self.initProvider.groupId))",message="spec.forProvider.groupId is a required parameter"
	// +kubebuilder:validation:XValidation:rule="!('*' in self.managementPolicies || 'Create' in self.managementPolicies || 'Update' in self.managementPolicies) || has(self.forProvider.userId) || (has(self.initProvider) && has(self.initProvider.userId))",message="spec.forProvider.userId is a required parameter"
	Spec   UserMembershipV3Spec   `json:"spec"`
	Status UserMembershipV3Status `json:"status,omitempty"`
}

UserMembershipV3 is the Schema for the UserMembershipV3s API. Manages a user membership to group V3 resource within OpenStack. +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,openstack}

func (*UserMembershipV3) DeepCopy added in v0.3.0

func (in *UserMembershipV3) DeepCopy() *UserMembershipV3

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserMembershipV3.

func (*UserMembershipV3) DeepCopyInto added in v0.3.0

func (in *UserMembershipV3) DeepCopyInto(out *UserMembershipV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*UserMembershipV3) DeepCopyObject added in v0.3.0

func (in *UserMembershipV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*UserMembershipV3) GetCondition added in v0.3.0

func (mg *UserMembershipV3) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this UserMembershipV3.

func (*UserMembershipV3) GetConnectionDetailsMapping added in v0.3.0

func (tr *UserMembershipV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this UserMembershipV3

func (*UserMembershipV3) GetDeletionPolicy added in v0.3.0

func (mg *UserMembershipV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this UserMembershipV3.

func (*UserMembershipV3) GetID added in v0.3.0

func (tr *UserMembershipV3) GetID() string

GetID returns ID of underlying Terraform resource of this UserMembershipV3

func (*UserMembershipV3) GetInitParameters added in v0.3.0

func (tr *UserMembershipV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this UserMembershipV3

func (*UserMembershipV3) GetManagementPolicies added in v0.3.0

func (mg *UserMembershipV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this UserMembershipV3.

func (*UserMembershipV3) GetMergedParameters added in v0.3.0

func (tr *UserMembershipV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this UserMembershipV3

func (*UserMembershipV3) GetObservation added in v0.3.0

func (tr *UserMembershipV3) GetObservation() (map[string]any, error)

GetObservation of this UserMembershipV3

func (*UserMembershipV3) GetParameters added in v0.3.0

func (tr *UserMembershipV3) GetParameters() (map[string]any, error)

GetParameters of this UserMembershipV3

func (*UserMembershipV3) GetProviderConfigReference added in v0.3.0

func (mg *UserMembershipV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this UserMembershipV3.

func (*UserMembershipV3) GetPublishConnectionDetailsTo added in v0.3.0

func (mg *UserMembershipV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this UserMembershipV3.

func (*UserMembershipV3) GetTerraformResourceType added in v0.3.0

func (mg *UserMembershipV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this UserMembershipV3

func (*UserMembershipV3) GetTerraformSchemaVersion added in v0.3.0

func (tr *UserMembershipV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*UserMembershipV3) GetWriteConnectionSecretToReference added in v0.3.0

func (mg *UserMembershipV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this UserMembershipV3.

func (*UserMembershipV3) LateInitialize added in v0.3.0

func (tr *UserMembershipV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this UserMembershipV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*UserMembershipV3) SetConditions added in v0.3.0

func (mg *UserMembershipV3) SetConditions(c ...xpv1.Condition)

SetConditions of this UserMembershipV3.

func (*UserMembershipV3) SetDeletionPolicy added in v0.3.0

func (mg *UserMembershipV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this UserMembershipV3.

func (*UserMembershipV3) SetManagementPolicies added in v0.3.0

func (mg *UserMembershipV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this UserMembershipV3.

func (*UserMembershipV3) SetObservation added in v0.3.0

func (tr *UserMembershipV3) SetObservation(obs map[string]any) error

SetObservation for this UserMembershipV3

func (*UserMembershipV3) SetParameters added in v0.3.0

func (tr *UserMembershipV3) SetParameters(params map[string]any) error

SetParameters for this UserMembershipV3

func (*UserMembershipV3) SetProviderConfigReference added in v0.3.0

func (mg *UserMembershipV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this UserMembershipV3.

func (*UserMembershipV3) SetPublishConnectionDetailsTo added in v0.3.0

func (mg *UserMembershipV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this UserMembershipV3.

func (*UserMembershipV3) SetWriteConnectionSecretToReference added in v0.3.0

func (mg *UserMembershipV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this UserMembershipV3.

type UserMembershipV3InitParameters added in v0.3.0

type UserMembershipV3InitParameters struct {

	// The UUID of group to which the user will be added.
	// Changing this creates a new user membership.
	GroupID *string `json:"groupId,omitempty" tf:"group_id,omitempty"`

	// The region in which to obtain the V3 Identity client.
	// If omitted, the region argument of the provider is used.
	// Changing this creates a new user membership.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The UUID of user to use. Changing this creates a new user membership.
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*UserMembershipV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserMembershipV3InitParameters.

func (*UserMembershipV3InitParameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserMembershipV3List added in v0.3.0

type UserMembershipV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []UserMembershipV3 `json:"items"`
}

UserMembershipV3List contains a list of UserMembershipV3s

func (*UserMembershipV3List) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserMembershipV3List.

func (*UserMembershipV3List) DeepCopyInto added in v0.3.0

func (in *UserMembershipV3List) DeepCopyInto(out *UserMembershipV3List)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*UserMembershipV3List) DeepCopyObject added in v0.3.0

func (in *UserMembershipV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*UserMembershipV3List) GetItems added in v0.3.0

func (l *UserMembershipV3List) GetItems() []resource.Managed

GetItems of this UserMembershipV3List.

type UserMembershipV3Observation added in v0.3.0

type UserMembershipV3Observation struct {

	// The UUID of group to which the user will be added.
	// Changing this creates a new user membership.
	GroupID *string `json:"groupId,omitempty" tf:"group_id,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// The region in which to obtain the V3 Identity client.
	// If omitted, the region argument of the provider is used.
	// Changing this creates a new user membership.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The UUID of user to use. Changing this creates a new user membership.
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*UserMembershipV3Observation) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserMembershipV3Observation.

func (*UserMembershipV3Observation) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserMembershipV3Parameters added in v0.3.0

type UserMembershipV3Parameters struct {

	// The UUID of group to which the user will be added.
	// Changing this creates a new user membership.
	// +kubebuilder:validation:Optional
	GroupID *string `json:"groupId,omitempty" tf:"group_id,omitempty"`

	// The region in which to obtain the V3 Identity client.
	// If omitted, the region argument of the provider is used.
	// Changing this creates a new user membership.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`

	// The UUID of user to use. Changing this creates a new user membership.
	// +kubebuilder:validation:Optional
	UserID *string `json:"userId,omitempty" tf:"user_id,omitempty"`
}

func (*UserMembershipV3Parameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserMembershipV3Parameters.

func (*UserMembershipV3Parameters) DeepCopyInto added in v0.3.0

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserMembershipV3Spec added in v0.3.0

type UserMembershipV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     UserMembershipV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider UserMembershipV3InitParameters `json:"initProvider,omitempty"`
}

UserMembershipV3Spec defines the desired state of UserMembershipV3

func (*UserMembershipV3Spec) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserMembershipV3Spec.

func (*UserMembershipV3Spec) DeepCopyInto added in v0.3.0

func (in *UserMembershipV3Spec) DeepCopyInto(out *UserMembershipV3Spec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserMembershipV3Status added in v0.3.0

type UserMembershipV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        UserMembershipV3Observation `json:"atProvider,omitempty"`
}

UserMembershipV3Status defines the observed state of UserMembershipV3.

func (*UserMembershipV3Status) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserMembershipV3Status.

func (*UserMembershipV3Status) DeepCopyInto added in v0.3.0

func (in *UserMembershipV3Status) DeepCopyInto(out *UserMembershipV3Status)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserV3 added in v0.1.9

type UserV3 struct {
	metav1.TypeMeta   `json:",inline"`
	metav1.ObjectMeta `json:"metadata,omitempty"`
	Spec              UserV3Spec   `json:"spec"`
	Status            UserV3Status `json:"status,omitempty"`
}

UserV3 is the Schema for the UserV3s API. Manages a V3 User resource within OpenStack Keystone. +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,openstack}

func (*UserV3) DeepCopy added in v0.1.9

func (in *UserV3) DeepCopy() *UserV3

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserV3.

func (*UserV3) DeepCopyInto added in v0.1.9

func (in *UserV3) DeepCopyInto(out *UserV3)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*UserV3) DeepCopyObject added in v0.1.9

func (in *UserV3) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*UserV3) GetCondition added in v0.1.9

func (mg *UserV3) GetCondition(ct xpv1.ConditionType) xpv1.Condition

GetCondition of this UserV3.

func (*UserV3) GetConnectionDetailsMapping added in v0.1.9

func (tr *UserV3) GetConnectionDetailsMapping() map[string]string

GetConnectionDetailsMapping for this UserV3

func (*UserV3) GetDeletionPolicy added in v0.1.9

func (mg *UserV3) GetDeletionPolicy() xpv1.DeletionPolicy

GetDeletionPolicy of this UserV3.

func (*UserV3) GetID added in v0.1.9

func (tr *UserV3) GetID() string

GetID returns ID of underlying Terraform resource of this UserV3

func (*UserV3) GetInitParameters added in v0.3.0

func (tr *UserV3) GetInitParameters() (map[string]any, error)

GetInitParameters of this UserV3

func (*UserV3) GetManagementPolicies added in v0.3.0

func (mg *UserV3) GetManagementPolicies() xpv1.ManagementPolicies

GetManagementPolicies of this UserV3.

func (*UserV3) GetMergedParameters added in v0.3.0

func (tr *UserV3) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)

GetInitParameters of this UserV3

func (*UserV3) GetObservation added in v0.1.9

func (tr *UserV3) GetObservation() (map[string]any, error)

GetObservation of this UserV3

func (*UserV3) GetParameters added in v0.1.9

func (tr *UserV3) GetParameters() (map[string]any, error)

GetParameters of this UserV3

func (*UserV3) GetProviderConfigReference added in v0.1.9

func (mg *UserV3) GetProviderConfigReference() *xpv1.Reference

GetProviderConfigReference of this UserV3.

func (*UserV3) GetPublishConnectionDetailsTo added in v0.1.9

func (mg *UserV3) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo

GetPublishConnectionDetailsTo of this UserV3.

func (*UserV3) GetTerraformResourceType added in v0.1.9

func (mg *UserV3) GetTerraformResourceType() string

GetTerraformResourceType returns Terraform resource type for this UserV3

func (*UserV3) GetTerraformSchemaVersion added in v0.1.9

func (tr *UserV3) GetTerraformSchemaVersion() int

GetTerraformSchemaVersion returns the associated Terraform schema version

func (*UserV3) GetWriteConnectionSecretToReference added in v0.1.9

func (mg *UserV3) GetWriteConnectionSecretToReference() *xpv1.SecretReference

GetWriteConnectionSecretToReference of this UserV3.

func (*UserV3) LateInitialize added in v0.1.9

func (tr *UserV3) LateInitialize(attrs []byte) (bool, error)

LateInitialize this UserV3 using its observed tfState. returns True if there are any spec changes for the resource.

func (*UserV3) SetConditions added in v0.1.9

func (mg *UserV3) SetConditions(c ...xpv1.Condition)

SetConditions of this UserV3.

func (*UserV3) SetDeletionPolicy added in v0.1.9

func (mg *UserV3) SetDeletionPolicy(r xpv1.DeletionPolicy)

SetDeletionPolicy of this UserV3.

func (*UserV3) SetManagementPolicies added in v0.3.0

func (mg *UserV3) SetManagementPolicies(r xpv1.ManagementPolicies)

SetManagementPolicies of this UserV3.

func (*UserV3) SetObservation added in v0.1.9

func (tr *UserV3) SetObservation(obs map[string]any) error

SetObservation for this UserV3

func (*UserV3) SetParameters added in v0.1.9

func (tr *UserV3) SetParameters(params map[string]any) error

SetParameters for this UserV3

func (*UserV3) SetProviderConfigReference added in v0.1.9

func (mg *UserV3) SetProviderConfigReference(r *xpv1.Reference)

SetProviderConfigReference of this UserV3.

func (*UserV3) SetPublishConnectionDetailsTo added in v0.1.9

func (mg *UserV3) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)

SetPublishConnectionDetailsTo of this UserV3.

func (*UserV3) SetWriteConnectionSecretToReference added in v0.1.9

func (mg *UserV3) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)

SetWriteConnectionSecretToReference of this UserV3.

type UserV3InitParameters added in v0.3.0

type UserV3InitParameters struct {

	// The default project this user belongs to.
	DefaultProjectID *string `json:"defaultProjectId,omitempty" tf:"default_project_id,omitempty"`

	// A description of the user.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The domain this user belongs to.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// Whether the user is enabled or disabled. Valid
	// values are true and false.
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Free-form key/value pairs of extra information.
	Extra map[string]*string `json:"extra,omitempty" tf:"extra,omitempty"`

	// User will not have to
	// change their password upon first use. Valid values are true and false.
	IgnoreChangePasswordUponFirstUse *bool `json:"ignoreChangePasswordUponFirstUse,omitempty" tf:"ignore_change_password_upon_first_use,omitempty"`

	// User will not have a failure
	// lockout placed on their account. Valid values are true and false.
	IgnoreLockoutFailureAttempts *bool `json:"ignoreLockoutFailureAttempts,omitempty" tf:"ignore_lockout_failure_attempts,omitempty"`

	// User's password will not expire.
	// Valid values are true and false.
	IgnorePasswordExpiry *bool `json:"ignorePasswordExpiry,omitempty" tf:"ignore_password_expiry,omitempty"`

	// Whether to enable multi-factor
	// authentication. Valid values are true and false.
	MultiFactorAuthEnabled *bool `json:"multiFactorAuthEnabled,omitempty" tf:"multi_factor_auth_enabled,omitempty"`

	// A multi-factor authentication rule.
	// The structure is documented below. Please see the
	// Ocata release notes
	// for more information on how to use mulit-factor rules.
	MultiFactorAuthRule []MultiFactorAuthRuleInitParameters `json:"multiFactorAuthRule,omitempty" tf:"multi_factor_auth_rule,omitempty"`

	// The name of the user.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new User.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`
}

func (*UserV3InitParameters) DeepCopy added in v0.3.0

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserV3InitParameters.

func (*UserV3InitParameters) DeepCopyInto added in v0.3.0

func (in *UserV3InitParameters) DeepCopyInto(out *UserV3InitParameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserV3List added in v0.1.9

type UserV3List struct {
	metav1.TypeMeta `json:",inline"`
	metav1.ListMeta `json:"metadata,omitempty"`
	Items           []UserV3 `json:"items"`
}

UserV3List contains a list of UserV3s

func (*UserV3List) DeepCopy added in v0.1.9

func (in *UserV3List) DeepCopy() *UserV3List

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserV3List.

func (*UserV3List) DeepCopyInto added in v0.1.9

func (in *UserV3List) DeepCopyInto(out *UserV3List)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

func (*UserV3List) DeepCopyObject added in v0.1.9

func (in *UserV3List) DeepCopyObject() runtime.Object

DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.

func (*UserV3List) GetItems added in v0.1.9

func (l *UserV3List) GetItems() []resource.Managed

GetItems of this UserV3List.

type UserV3Observation added in v0.1.9

type UserV3Observation struct {

	// The default project this user belongs to.
	DefaultProjectID *string `json:"defaultProjectId,omitempty" tf:"default_project_id,omitempty"`

	// A description of the user.
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The domain this user belongs to.
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// Whether the user is enabled or disabled. Valid
	// values are true and false.
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Free-form key/value pairs of extra information.
	Extra map[string]*string `json:"extra,omitempty" tf:"extra,omitempty"`

	ID *string `json:"id,omitempty" tf:"id,omitempty"`

	// User will not have to
	// change their password upon first use. Valid values are true and false.
	IgnoreChangePasswordUponFirstUse *bool `json:"ignoreChangePasswordUponFirstUse,omitempty" tf:"ignore_change_password_upon_first_use,omitempty"`

	// User will not have a failure
	// lockout placed on their account. Valid values are true and false.
	IgnoreLockoutFailureAttempts *bool `json:"ignoreLockoutFailureAttempts,omitempty" tf:"ignore_lockout_failure_attempts,omitempty"`

	// User's password will not expire.
	// Valid values are true and false.
	IgnorePasswordExpiry *bool `json:"ignorePasswordExpiry,omitempty" tf:"ignore_password_expiry,omitempty"`

	// Whether to enable multi-factor
	// authentication. Valid values are true and false.
	MultiFactorAuthEnabled *bool `json:"multiFactorAuthEnabled,omitempty" tf:"multi_factor_auth_enabled,omitempty"`

	// A multi-factor authentication rule.
	// The structure is documented below. Please see the
	// Ocata release notes
	// for more information on how to use mulit-factor rules.
	MultiFactorAuthRule []MultiFactorAuthRuleObservation `json:"multiFactorAuthRule,omitempty" tf:"multi_factor_auth_rule,omitempty"`

	// The name of the user.
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new User.
	Region *string `json:"region,omitempty" tf:"region,omitempty"`
}

func (*UserV3Observation) DeepCopy added in v0.1.9

func (in *UserV3Observation) DeepCopy() *UserV3Observation

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserV3Observation.

func (*UserV3Observation) DeepCopyInto added in v0.1.9

func (in *UserV3Observation) DeepCopyInto(out *UserV3Observation)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserV3Parameters added in v0.1.9

type UserV3Parameters struct {

	// The default project this user belongs to.
	// +kubebuilder:validation:Optional
	DefaultProjectID *string `json:"defaultProjectId,omitempty" tf:"default_project_id,omitempty"`

	// A description of the user.
	// +kubebuilder:validation:Optional
	Description *string `json:"description,omitempty" tf:"description,omitempty"`

	// The domain this user belongs to.
	// +kubebuilder:validation:Optional
	DomainID *string `json:"domainId,omitempty" tf:"domain_id,omitempty"`

	// Whether the user is enabled or disabled. Valid
	// values are true and false.
	// +kubebuilder:validation:Optional
	Enabled *bool `json:"enabled,omitempty" tf:"enabled,omitempty"`

	// Free-form key/value pairs of extra information.
	// +kubebuilder:validation:Optional
	Extra map[string]*string `json:"extra,omitempty" tf:"extra,omitempty"`

	// User will not have to
	// change their password upon first use. Valid values are true and false.
	// +kubebuilder:validation:Optional
	IgnoreChangePasswordUponFirstUse *bool `json:"ignoreChangePasswordUponFirstUse,omitempty" tf:"ignore_change_password_upon_first_use,omitempty"`

	// User will not have a failure
	// lockout placed on their account. Valid values are true and false.
	// +kubebuilder:validation:Optional
	IgnoreLockoutFailureAttempts *bool `json:"ignoreLockoutFailureAttempts,omitempty" tf:"ignore_lockout_failure_attempts,omitempty"`

	// User's password will not expire.
	// Valid values are true and false.
	// +kubebuilder:validation:Optional
	IgnorePasswordExpiry *bool `json:"ignorePasswordExpiry,omitempty" tf:"ignore_password_expiry,omitempty"`

	// Whether to enable multi-factor
	// authentication. Valid values are true and false.
	// +kubebuilder:validation:Optional
	MultiFactorAuthEnabled *bool `json:"multiFactorAuthEnabled,omitempty" tf:"multi_factor_auth_enabled,omitempty"`

	// A multi-factor authentication rule.
	// The structure is documented below. Please see the
	// Ocata release notes
	// for more information on how to use mulit-factor rules.
	// +kubebuilder:validation:Optional
	MultiFactorAuthRule []MultiFactorAuthRuleParameters `json:"multiFactorAuthRule,omitempty" tf:"multi_factor_auth_rule,omitempty"`

	// The name of the user.
	// +kubebuilder:validation:Optional
	Name *string `json:"name,omitempty" tf:"name,omitempty"`

	// The password for the user.
	// +kubebuilder:validation:Optional
	PasswordSecretRef *v1.SecretKeySelector `json:"passwordSecretRef,omitempty" tf:"-"`

	// The region in which to obtain the V3 Keystone client.
	// If omitted, the region argument of the provider is used. Changing this
	// creates a new User.
	// +kubebuilder:validation:Optional
	Region *string `json:"region,omitempty" tf:"region,omitempty"`
}

func (*UserV3Parameters) DeepCopy added in v0.1.9

func (in *UserV3Parameters) DeepCopy() *UserV3Parameters

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserV3Parameters.

func (*UserV3Parameters) DeepCopyInto added in v0.1.9

func (in *UserV3Parameters) DeepCopyInto(out *UserV3Parameters)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserV3Spec added in v0.1.9

type UserV3Spec struct {
	v1.ResourceSpec `json:",inline"`
	ForProvider     UserV3Parameters `json:"forProvider"`
	// THIS IS A BETA FIELD. It will be honored
	// unless the Management Policies feature flag is disabled.
	// InitProvider holds the same fields as ForProvider, with the exception
	// of Identifier and other resource reference fields. The fields that are
	// in InitProvider are merged into ForProvider when the resource is created.
	// The same fields are also added to the terraform ignore_changes hook, to
	// avoid updating them after creation. This is useful for fields that are
	// required on creation, but we do not desire to update them after creation,
	// for example because of an external controller is managing them, like an
	// autoscaler.
	InitProvider UserV3InitParameters `json:"initProvider,omitempty"`
}

UserV3Spec defines the desired state of UserV3

func (*UserV3Spec) DeepCopy added in v0.1.9

func (in *UserV3Spec) DeepCopy() *UserV3Spec

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserV3Spec.

func (*UserV3Spec) DeepCopyInto added in v0.1.9

func (in *UserV3Spec) DeepCopyInto(out *UserV3Spec)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

type UserV3Status added in v0.1.9

type UserV3Status struct {
	v1.ResourceStatus `json:",inline"`
	AtProvider        UserV3Observation `json:"atProvider,omitempty"`
}

UserV3Status defines the observed state of UserV3.

func (*UserV3Status) DeepCopy added in v0.1.9

func (in *UserV3Status) DeepCopy() *UserV3Status

DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new UserV3Status.

func (*UserV3Status) DeepCopyInto added in v0.1.9

func (in *UserV3Status) DeepCopyInto(out *UserV3Status)

DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.

Jump to

Keyboard shortcuts

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