Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=project.vmware.vra +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type AdministratorRolesInitParameters
- type AdministratorRolesObservation
- type AdministratorRolesParameters
- type ConstraintsInitParameters
- type ConstraintsObservation
- type ConstraintsParameters
- type ExtensibilityInitParameters
- type ExtensibilityObservation
- type ExtensibilityParameters
- type MemberRolesInitParameters
- type MemberRolesObservation
- type MemberRolesParameters
- type NetworkInitParameters
- type NetworkObservation
- type NetworkParameters
- type Project
- func (in *Project) DeepCopy() *Project
- func (in *Project) DeepCopyInto(out *Project)
- func (in *Project) DeepCopyObject() runtime.Object
- func (mg *Project) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Project) GetConnectionDetailsMapping() map[string]string
- func (mg *Project) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Project) GetID() string
- func (tr *Project) GetInitParameters() (map[string]any, error)
- func (mg *Project) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *Project) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *Project) GetObservation() (map[string]any, error)
- func (tr *Project) GetParameters() (map[string]any, error)
- func (mg *Project) GetProviderConfigReference() *xpv1.Reference
- func (mg *Project) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Project) GetTerraformResourceType() string
- func (tr *Project) GetTerraformSchemaVersion() int
- func (mg *Project) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Project) Hub()
- func (tr *Project) LateInitialize(attrs []byte) (bool, error)
- func (mg *Project) SetConditions(c ...xpv1.Condition)
- func (mg *Project) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Project) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *Project) SetObservation(obs map[string]any) error
- func (tr *Project) SetParameters(params map[string]any) error
- func (mg *Project) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Project) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Project) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ProjectInitParameters
- type ProjectList
- type ProjectObservation
- type ProjectParameters
- type ProjectSpec
- type ProjectStatus
- type StorageInitParameters
- type StorageObservation
- type StorageParameters
- type SupervisorRolesInitParameters
- type SupervisorRolesObservation
- type SupervisorRolesParameters
- type ViewerRolesInitParameters
- type ViewerRolesObservation
- type ViewerRolesParameters
- type ZoneAssignmentsInitParameters
- type ZoneAssignmentsObservation
- type ZoneAssignmentsParameters
Constants ¶
const ( CRDGroup = "project.vmware.vra" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( Project_Kind = "Project" Project_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Project_Kind}.String() Project_KindAPIVersion = Project_Kind + "." + CRDGroupVersion.String() Project_GroupVersionKind = CRDGroupVersion.WithKind(Project_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type AdministratorRolesInitParameters ¶
type AdministratorRolesInitParameters struct { // The email of the user or name of the group. Email *string `json:"email,omitempty" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*AdministratorRolesInitParameters) DeepCopy ¶
func (in *AdministratorRolesInitParameters) DeepCopy() *AdministratorRolesInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdministratorRolesInitParameters.
func (*AdministratorRolesInitParameters) DeepCopyInto ¶
func (in *AdministratorRolesInitParameters) DeepCopyInto(out *AdministratorRolesInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AdministratorRolesObservation ¶
type AdministratorRolesObservation struct { // The email of the user or name of the group. Email *string `json:"email,omitempty" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*AdministratorRolesObservation) DeepCopy ¶
func (in *AdministratorRolesObservation) DeepCopy() *AdministratorRolesObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdministratorRolesObservation.
func (*AdministratorRolesObservation) DeepCopyInto ¶
func (in *AdministratorRolesObservation) DeepCopyInto(out *AdministratorRolesObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AdministratorRolesParameters ¶
type AdministratorRolesParameters struct { // The email of the user or name of the group. // +kubebuilder:validation:Optional Email *string `json:"email" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*AdministratorRolesParameters) DeepCopy ¶
func (in *AdministratorRolesParameters) DeepCopy() *AdministratorRolesParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AdministratorRolesParameters.
func (*AdministratorRolesParameters) DeepCopyInto ¶
func (in *AdministratorRolesParameters) DeepCopyInto(out *AdministratorRolesParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConstraintsInitParameters ¶
type ConstraintsInitParameters struct { // Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets. Extensibility []ExtensibilityInitParameters `json:"extensibility,omitempty" tf:"extensibility,omitempty"` // Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets. Network []NetworkInitParameters `json:"network,omitempty" tf:"network,omitempty"` // Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets. Storage []StorageInitParameters `json:"storage,omitempty" tf:"storage,omitempty"` }
func (*ConstraintsInitParameters) DeepCopy ¶
func (in *ConstraintsInitParameters) DeepCopy() *ConstraintsInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConstraintsInitParameters.
func (*ConstraintsInitParameters) DeepCopyInto ¶
func (in *ConstraintsInitParameters) DeepCopyInto(out *ConstraintsInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConstraintsObservation ¶
type ConstraintsObservation struct { // Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets. Extensibility []ExtensibilityObservation `json:"extensibility,omitempty" tf:"extensibility,omitempty"` // Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets. Network []NetworkObservation `json:"network,omitempty" tf:"network,omitempty"` // Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets. Storage []StorageObservation `json:"storage,omitempty" tf:"storage,omitempty"` }
func (*ConstraintsObservation) DeepCopy ¶
func (in *ConstraintsObservation) DeepCopy() *ConstraintsObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConstraintsObservation.
func (*ConstraintsObservation) DeepCopyInto ¶
func (in *ConstraintsObservation) DeepCopyInto(out *ConstraintsObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConstraintsParameters ¶
type ConstraintsParameters struct { // Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets. // +kubebuilder:validation:Optional Extensibility []ExtensibilityParameters `json:"extensibility,omitempty" tf:"extensibility,omitempty"` // Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets. // +kubebuilder:validation:Optional Network []NetworkParameters `json:"network,omitempty" tf:"network,omitempty"` // Constraints that are used to drive placement policies for entities such as image, network, storage, etc. Constraint expressions are matched against tags on existing placement targets. // +kubebuilder:validation:Optional Storage []StorageParameters `json:"storage,omitempty" tf:"storage,omitempty"` }
func (*ConstraintsParameters) DeepCopy ¶
func (in *ConstraintsParameters) DeepCopy() *ConstraintsParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConstraintsParameters.
func (*ConstraintsParameters) DeepCopyInto ¶
func (in *ConstraintsParameters) DeepCopyInto(out *ConstraintsParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExtensibilityInitParameters ¶
type ExtensibilityInitParameters struct { // An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags. Expression *string `json:"expression,omitempty" tf:"expression,omitempty"` // Indicates whether this constraint should be strictly enforced or not. Mandatory *bool `json:"mandatory,omitempty" tf:"mandatory,omitempty"` }
func (*ExtensibilityInitParameters) DeepCopy ¶
func (in *ExtensibilityInitParameters) DeepCopy() *ExtensibilityInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtensibilityInitParameters.
func (*ExtensibilityInitParameters) DeepCopyInto ¶
func (in *ExtensibilityInitParameters) DeepCopyInto(out *ExtensibilityInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExtensibilityObservation ¶
type ExtensibilityObservation struct { // An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags. Expression *string `json:"expression,omitempty" tf:"expression,omitempty"` // Indicates whether this constraint should be strictly enforced or not. Mandatory *bool `json:"mandatory,omitempty" tf:"mandatory,omitempty"` }
func (*ExtensibilityObservation) DeepCopy ¶
func (in *ExtensibilityObservation) DeepCopy() *ExtensibilityObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtensibilityObservation.
func (*ExtensibilityObservation) DeepCopyInto ¶
func (in *ExtensibilityObservation) DeepCopyInto(out *ExtensibilityObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ExtensibilityParameters ¶
type ExtensibilityParameters struct { // An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags. // +kubebuilder:validation:Optional Expression *string `json:"expression" tf:"expression,omitempty"` // Indicates whether this constraint should be strictly enforced or not. // +kubebuilder:validation:Optional Mandatory *bool `json:"mandatory" tf:"mandatory,omitempty"` }
func (*ExtensibilityParameters) DeepCopy ¶
func (in *ExtensibilityParameters) DeepCopy() *ExtensibilityParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExtensibilityParameters.
func (*ExtensibilityParameters) DeepCopyInto ¶
func (in *ExtensibilityParameters) DeepCopyInto(out *ExtensibilityParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MemberRolesInitParameters ¶
type MemberRolesInitParameters struct { // The email of the user or name of the group. Email *string `json:"email,omitempty" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*MemberRolesInitParameters) DeepCopy ¶
func (in *MemberRolesInitParameters) DeepCopy() *MemberRolesInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemberRolesInitParameters.
func (*MemberRolesInitParameters) DeepCopyInto ¶
func (in *MemberRolesInitParameters) DeepCopyInto(out *MemberRolesInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MemberRolesObservation ¶
type MemberRolesObservation struct { // The email of the user or name of the group. Email *string `json:"email,omitempty" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*MemberRolesObservation) DeepCopy ¶
func (in *MemberRolesObservation) DeepCopy() *MemberRolesObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemberRolesObservation.
func (*MemberRolesObservation) DeepCopyInto ¶
func (in *MemberRolesObservation) DeepCopyInto(out *MemberRolesObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type MemberRolesParameters ¶
type MemberRolesParameters struct { // The email of the user or name of the group. // +kubebuilder:validation:Optional Email *string `json:"email" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*MemberRolesParameters) DeepCopy ¶
func (in *MemberRolesParameters) DeepCopy() *MemberRolesParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new MemberRolesParameters.
func (*MemberRolesParameters) DeepCopyInto ¶
func (in *MemberRolesParameters) DeepCopyInto(out *MemberRolesParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkInitParameters ¶
type NetworkInitParameters struct { // An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags. Expression *string `json:"expression,omitempty" tf:"expression,omitempty"` // Indicates whether this constraint should be strictly enforced or not. Mandatory *bool `json:"mandatory,omitempty" tf:"mandatory,omitempty"` }
func (*NetworkInitParameters) DeepCopy ¶
func (in *NetworkInitParameters) DeepCopy() *NetworkInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkInitParameters.
func (*NetworkInitParameters) DeepCopyInto ¶
func (in *NetworkInitParameters) DeepCopyInto(out *NetworkInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkObservation ¶
type NetworkObservation struct { // An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags. Expression *string `json:"expression,omitempty" tf:"expression,omitempty"` // Indicates whether this constraint should be strictly enforced or not. Mandatory *bool `json:"mandatory,omitempty" tf:"mandatory,omitempty"` }
func (*NetworkObservation) DeepCopy ¶
func (in *NetworkObservation) DeepCopy() *NetworkObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkObservation.
func (*NetworkObservation) DeepCopyInto ¶
func (in *NetworkObservation) DeepCopyInto(out *NetworkObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkParameters ¶
type NetworkParameters struct { // An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags. // +kubebuilder:validation:Optional Expression *string `json:"expression" tf:"expression,omitempty"` // Indicates whether this constraint should be strictly enforced or not. // +kubebuilder:validation:Optional Mandatory *bool `json:"mandatory" tf:"mandatory,omitempty"` }
func (*NetworkParameters) DeepCopy ¶
func (in *NetworkParameters) DeepCopy() *NetworkParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkParameters.
func (*NetworkParameters) DeepCopyInto ¶
func (in *NetworkParameters) DeepCopyInto(out *NetworkParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Project ¶
type Project 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 ProjectSpec `json:"spec"` Status ProjectStatus `json:"status,omitempty"` }
Project is the Schema for the Projects API. <no value> +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].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:resource:scope=Cluster,categories={crossplane,managed,vra8}
func (*Project) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Project.
func (*Project) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Project) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Project) GetCondition ¶
func (mg *Project) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Project.
func (*Project) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Project
func (*Project) GetDeletionPolicy ¶
func (mg *Project) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Project.
func (*Project) GetInitParameters ¶
GetInitParameters of this Project
func (*Project) GetManagementPolicies ¶
func (mg *Project) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this Project.
func (*Project) GetMergedParameters ¶
GetInitParameters of this Project
func (*Project) GetObservation ¶
GetObservation of this Project
func (*Project) GetParameters ¶
GetParameters of this Project
func (*Project) GetProviderConfigReference ¶
GetProviderConfigReference of this Project.
func (*Project) GetPublishConnectionDetailsTo ¶
func (mg *Project) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Project.
func (*Project) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Project
func (*Project) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Project) GetWriteConnectionSecretToReference ¶
func (mg *Project) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Project.
func (*Project) LateInitialize ¶
LateInitialize this Project using its observed tfState. returns True if there are any spec changes for the resource.
func (*Project) SetConditions ¶
SetConditions of this Project.
func (*Project) SetDeletionPolicy ¶
func (mg *Project) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Project.
func (*Project) SetManagementPolicies ¶
func (mg *Project) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this Project.
func (*Project) SetObservation ¶
SetObservation for this Project
func (*Project) SetParameters ¶
SetParameters for this Project
func (*Project) SetProviderConfigReference ¶
SetProviderConfigReference of this Project.
func (*Project) SetPublishConnectionDetailsTo ¶
func (mg *Project) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Project.
func (*Project) SetWriteConnectionSecretToReference ¶
func (mg *Project) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Project.
type ProjectInitParameters ¶
type ProjectInitParameters struct { // List of administrator roles associated with the project. Only administrators can manage project's configuration. AdministratorRoles []AdministratorRolesInitParameters `json:"administratorRoles,omitempty" tf:"administrator_roles,omitempty"` // List of administrator users associated with the project. Only administrators can manage project's configuration. // +listType=set Administrators []*string `json:"administrators,omitempty" tf:"administrators,omitempty"` // List of storage, network and extensibility constraints to be applied when provisioning through this project. Constraints []ConstraintsInitParameters `json:"constraints,omitempty" tf:"constraints,omitempty"` // The project custom properties which are added to all requests in this project // +mapType=granular CustomProperties map[string]*string `json:"customProperties,omitempty" tf:"custom_properties,omitempty"` // A human-friendly description. Description *string `json:"description,omitempty" tf:"description,omitempty"` // The naming template to be used for resources provisioned in this project. MachineNamingTemplate *string `json:"machineNamingTemplate,omitempty" tf:"machine_naming_template,omitempty"` // List of member roles associated with the project. MemberRoles []MemberRolesInitParameters `json:"memberRoles,omitempty" tf:"member_roles,omitempty"` // List of member users associated with the project. // +listType=set Members []*string `json:"members,omitempty" tf:"members,omitempty"` // A human-friendly name used as an identifier in APIs that support this option. Name *string `json:"name,omitempty" tf:"name,omitempty"` // The timeout that should be used for Blueprint operations and Provisioning tasks. The timeout is in seconds. OperationTimeout *float64 `json:"operationTimeout,omitempty" tf:"operation_timeout,omitempty"` // The placement policy that will be applied when selecting a cloud zone for provisioning. PlacementPolicy *string `json:"placementPolicy,omitempty" tf:"placement_policy,omitempty"` SharedResources *bool `json:"sharedResources,omitempty" tf:"shared_resources,omitempty"` // List of supervisor roles associated with the project. SupervisorRoles []SupervisorRolesInitParameters `json:"supervisorRoles,omitempty" tf:"supervisor_roles,omitempty"` // List of viewer roles associated with the project. ViewerRoles []ViewerRolesInitParameters `json:"viewerRoles,omitempty" tf:"viewer_roles,omitempty"` // List of viewer users associated with the project. // +listType=set Viewers []*string `json:"viewers,omitempty" tf:"viewers,omitempty"` // List of configurations for zone assignment to a project. ZoneAssignments []ZoneAssignmentsInitParameters `json:"zoneAssignments,omitempty" tf:"zone_assignments,omitempty"` }
func (*ProjectInitParameters) DeepCopy ¶
func (in *ProjectInitParameters) DeepCopy() *ProjectInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectInitParameters.
func (*ProjectInitParameters) DeepCopyInto ¶
func (in *ProjectInitParameters) DeepCopyInto(out *ProjectInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProjectList ¶
type ProjectList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Project `json:"items"` }
ProjectList contains a list of Projects
func (*ProjectList) DeepCopy ¶
func (in *ProjectList) DeepCopy() *ProjectList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectList.
func (*ProjectList) DeepCopyInto ¶
func (in *ProjectList) DeepCopyInto(out *ProjectList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ProjectList) DeepCopyObject ¶
func (in *ProjectList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ProjectList) GetItems ¶
func (l *ProjectList) GetItems() []resource.Managed
GetItems of this ProjectList.
type ProjectObservation ¶
type ProjectObservation struct { // List of administrator roles associated with the project. Only administrators can manage project's configuration. AdministratorRoles []AdministratorRolesObservation `json:"administratorRoles,omitempty" tf:"administrator_roles,omitempty"` // List of administrator users associated with the project. Only administrators can manage project's configuration. // +listType=set Administrators []*string `json:"administrators,omitempty" tf:"administrators,omitempty"` // List of storage, network and extensibility constraints to be applied when provisioning through this project. Constraints []ConstraintsObservation `json:"constraints,omitempty" tf:"constraints,omitempty"` // The project custom properties which are added to all requests in this project // +mapType=granular CustomProperties map[string]*string `json:"customProperties,omitempty" tf:"custom_properties,omitempty"` // A human-friendly description. Description *string `json:"description,omitempty" tf:"description,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` // The naming template to be used for resources provisioned in this project. MachineNamingTemplate *string `json:"machineNamingTemplate,omitempty" tf:"machine_naming_template,omitempty"` // List of member roles associated with the project. MemberRoles []MemberRolesObservation `json:"memberRoles,omitempty" tf:"member_roles,omitempty"` // List of member users associated with the project. // +listType=set Members []*string `json:"members,omitempty" tf:"members,omitempty"` // A human-friendly name used as an identifier in APIs that support this option. Name *string `json:"name,omitempty" tf:"name,omitempty"` // The timeout that should be used for Blueprint operations and Provisioning tasks. The timeout is in seconds. OperationTimeout *float64 `json:"operationTimeout,omitempty" tf:"operation_timeout,omitempty"` // The placement policy that will be applied when selecting a cloud zone for provisioning. PlacementPolicy *string `json:"placementPolicy,omitempty" tf:"placement_policy,omitempty"` SharedResources *bool `json:"sharedResources,omitempty" tf:"shared_resources,omitempty"` // List of supervisor roles associated with the project. SupervisorRoles []SupervisorRolesObservation `json:"supervisorRoles,omitempty" tf:"supervisor_roles,omitempty"` // List of viewer roles associated with the project. ViewerRoles []ViewerRolesObservation `json:"viewerRoles,omitempty" tf:"viewer_roles,omitempty"` // List of viewer users associated with the project. // +listType=set Viewers []*string `json:"viewers,omitempty" tf:"viewers,omitempty"` // List of configurations for zone assignment to a project. ZoneAssignments []ZoneAssignmentsObservation `json:"zoneAssignments,omitempty" tf:"zone_assignments,omitempty"` }
func (*ProjectObservation) DeepCopy ¶
func (in *ProjectObservation) DeepCopy() *ProjectObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectObservation.
func (*ProjectObservation) DeepCopyInto ¶
func (in *ProjectObservation) DeepCopyInto(out *ProjectObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProjectParameters ¶
type ProjectParameters struct { // List of administrator roles associated with the project. Only administrators can manage project's configuration. // +kubebuilder:validation:Optional AdministratorRoles []AdministratorRolesParameters `json:"administratorRoles,omitempty" tf:"administrator_roles,omitempty"` // List of administrator users associated with the project. Only administrators can manage project's configuration. // +kubebuilder:validation:Optional // +listType=set Administrators []*string `json:"administrators,omitempty" tf:"administrators,omitempty"` // List of storage, network and extensibility constraints to be applied when provisioning through this project. // +kubebuilder:validation:Optional Constraints []ConstraintsParameters `json:"constraints,omitempty" tf:"constraints,omitempty"` // The project custom properties which are added to all requests in this project // +kubebuilder:validation:Optional // +mapType=granular CustomProperties map[string]*string `json:"customProperties,omitempty" tf:"custom_properties,omitempty"` // A human-friendly description. // +kubebuilder:validation:Optional Description *string `json:"description,omitempty" tf:"description,omitempty"` // The naming template to be used for resources provisioned in this project. // +kubebuilder:validation:Optional MachineNamingTemplate *string `json:"machineNamingTemplate,omitempty" tf:"machine_naming_template,omitempty"` // List of member roles associated with the project. // +kubebuilder:validation:Optional MemberRoles []MemberRolesParameters `json:"memberRoles,omitempty" tf:"member_roles,omitempty"` // List of member users associated with the project. // +kubebuilder:validation:Optional // +listType=set Members []*string `json:"members,omitempty" tf:"members,omitempty"` // A human-friendly name used as an identifier in APIs that support this option. // +kubebuilder:validation:Optional Name *string `json:"name,omitempty" tf:"name,omitempty"` // The timeout that should be used for Blueprint operations and Provisioning tasks. The timeout is in seconds. // +kubebuilder:validation:Optional OperationTimeout *float64 `json:"operationTimeout,omitempty" tf:"operation_timeout,omitempty"` // The placement policy that will be applied when selecting a cloud zone for provisioning. // +kubebuilder:validation:Optional PlacementPolicy *string `json:"placementPolicy,omitempty" tf:"placement_policy,omitempty"` // +kubebuilder:validation:Optional SharedResources *bool `json:"sharedResources,omitempty" tf:"shared_resources,omitempty"` // List of supervisor roles associated with the project. // +kubebuilder:validation:Optional SupervisorRoles []SupervisorRolesParameters `json:"supervisorRoles,omitempty" tf:"supervisor_roles,omitempty"` // List of viewer roles associated with the project. // +kubebuilder:validation:Optional ViewerRoles []ViewerRolesParameters `json:"viewerRoles,omitempty" tf:"viewer_roles,omitempty"` // List of viewer users associated with the project. // +kubebuilder:validation:Optional // +listType=set Viewers []*string `json:"viewers,omitempty" tf:"viewers,omitempty"` // List of configurations for zone assignment to a project. // +kubebuilder:validation:Optional ZoneAssignments []ZoneAssignmentsParameters `json:"zoneAssignments,omitempty" tf:"zone_assignments,omitempty"` }
func (*ProjectParameters) DeepCopy ¶
func (in *ProjectParameters) DeepCopy() *ProjectParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectParameters.
func (*ProjectParameters) DeepCopyInto ¶
func (in *ProjectParameters) DeepCopyInto(out *ProjectParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProjectSpec ¶
type ProjectSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ProjectParameters `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 ProjectInitParameters `json:"initProvider,omitempty"` }
ProjectSpec defines the desired state of Project
func (*ProjectSpec) DeepCopy ¶
func (in *ProjectSpec) DeepCopy() *ProjectSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectSpec.
func (*ProjectSpec) DeepCopyInto ¶
func (in *ProjectSpec) DeepCopyInto(out *ProjectSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProjectStatus ¶
type ProjectStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ProjectObservation `json:"atProvider,omitempty"` }
ProjectStatus defines the observed state of Project.
func (*ProjectStatus) DeepCopy ¶
func (in *ProjectStatus) DeepCopy() *ProjectStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProjectStatus.
func (*ProjectStatus) DeepCopyInto ¶
func (in *ProjectStatus) DeepCopyInto(out *ProjectStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StorageInitParameters ¶
type StorageInitParameters struct { // An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags. Expression *string `json:"expression,omitempty" tf:"expression,omitempty"` // Indicates whether this constraint should be strictly enforced or not. Mandatory *bool `json:"mandatory,omitempty" tf:"mandatory,omitempty"` }
func (*StorageInitParameters) DeepCopy ¶
func (in *StorageInitParameters) DeepCopy() *StorageInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageInitParameters.
func (*StorageInitParameters) DeepCopyInto ¶
func (in *StorageInitParameters) DeepCopyInto(out *StorageInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StorageObservation ¶
type StorageObservation struct { // An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags. Expression *string `json:"expression,omitempty" tf:"expression,omitempty"` // Indicates whether this constraint should be strictly enforced or not. Mandatory *bool `json:"mandatory,omitempty" tf:"mandatory,omitempty"` }
func (*StorageObservation) DeepCopy ¶
func (in *StorageObservation) DeepCopy() *StorageObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageObservation.
func (*StorageObservation) DeepCopyInto ¶
func (in *StorageObservation) DeepCopyInto(out *StorageObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type StorageParameters ¶
type StorageParameters struct { // An expression of the form "[!]tag-key[:[tag-value]]", used to indicate a constraint match on keys and values of tags. // +kubebuilder:validation:Optional Expression *string `json:"expression" tf:"expression,omitempty"` // Indicates whether this constraint should be strictly enforced or not. // +kubebuilder:validation:Optional Mandatory *bool `json:"mandatory" tf:"mandatory,omitempty"` }
func (*StorageParameters) DeepCopy ¶
func (in *StorageParameters) DeepCopy() *StorageParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new StorageParameters.
func (*StorageParameters) DeepCopyInto ¶
func (in *StorageParameters) DeepCopyInto(out *StorageParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SupervisorRolesInitParameters ¶
type SupervisorRolesInitParameters struct { // The email of the user or name of the group. Email *string `json:"email,omitempty" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*SupervisorRolesInitParameters) DeepCopy ¶
func (in *SupervisorRolesInitParameters) DeepCopy() *SupervisorRolesInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SupervisorRolesInitParameters.
func (*SupervisorRolesInitParameters) DeepCopyInto ¶
func (in *SupervisorRolesInitParameters) DeepCopyInto(out *SupervisorRolesInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SupervisorRolesObservation ¶
type SupervisorRolesObservation struct { // The email of the user or name of the group. Email *string `json:"email,omitempty" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*SupervisorRolesObservation) DeepCopy ¶
func (in *SupervisorRolesObservation) DeepCopy() *SupervisorRolesObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SupervisorRolesObservation.
func (*SupervisorRolesObservation) DeepCopyInto ¶
func (in *SupervisorRolesObservation) DeepCopyInto(out *SupervisorRolesObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type SupervisorRolesParameters ¶
type SupervisorRolesParameters struct { // The email of the user or name of the group. // +kubebuilder:validation:Optional Email *string `json:"email" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*SupervisorRolesParameters) DeepCopy ¶
func (in *SupervisorRolesParameters) DeepCopy() *SupervisorRolesParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new SupervisorRolesParameters.
func (*SupervisorRolesParameters) DeepCopyInto ¶
func (in *SupervisorRolesParameters) DeepCopyInto(out *SupervisorRolesParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ViewerRolesInitParameters ¶
type ViewerRolesInitParameters struct { // The email of the user or name of the group. Email *string `json:"email,omitempty" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*ViewerRolesInitParameters) DeepCopy ¶
func (in *ViewerRolesInitParameters) DeepCopy() *ViewerRolesInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ViewerRolesInitParameters.
func (*ViewerRolesInitParameters) DeepCopyInto ¶
func (in *ViewerRolesInitParameters) DeepCopyInto(out *ViewerRolesInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ViewerRolesObservation ¶
type ViewerRolesObservation struct { // The email of the user or name of the group. Email *string `json:"email,omitempty" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*ViewerRolesObservation) DeepCopy ¶
func (in *ViewerRolesObservation) DeepCopy() *ViewerRolesObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ViewerRolesObservation.
func (*ViewerRolesObservation) DeepCopyInto ¶
func (in *ViewerRolesObservation) DeepCopyInto(out *ViewerRolesObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ViewerRolesParameters ¶
type ViewerRolesParameters struct { // The email of the user or name of the group. // +kubebuilder:validation:Optional Email *string `json:"email" tf:"email,omitempty"` // Type of the principal. Currently supported ‘user’ (default) and 'group’. // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*ViewerRolesParameters) DeepCopy ¶
func (in *ViewerRolesParameters) DeepCopy() *ViewerRolesParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ViewerRolesParameters.
func (*ViewerRolesParameters) DeepCopyInto ¶
func (in *ViewerRolesParameters) DeepCopyInto(out *ViewerRolesParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ZoneAssignmentsInitParameters ¶
type ZoneAssignmentsInitParameters struct { // The maximum amount of cpus that can be used by this cloud zone. Default is 0 (unlimited cpu). CPULimit *float64 `json:"cpuLimit,omitempty" tf:"cpu_limit,omitempty"` // The maximum number of instances that can be provisioned in this cloud zone. Default is 0 (unlimited instances) MaxInstances *float64 `json:"maxInstances,omitempty" tf:"max_instances,omitempty"` // The maximum amount of memory that can be used by this cloud zone. Default is 0 (unlimited memory). MemoryLimitMb *float64 `json:"memoryLimitMb,omitempty" tf:"memory_limit_mb,omitempty"` // The priority of this zone in the current project. Lower numbers mean higher priority. Default is 0 (highest) Priority *float64 `json:"priority,omitempty" tf:"priority,omitempty"` // Upper limit on storage that can be requested from a cloud zone which is part of this project. Default is 0 (unlimited storage). Supported only for vSphere cloud zones. StorageLimitGb *float64 `json:"storageLimitGb,omitempty" tf:"storage_limit_gb,omitempty"` // The Cloud Zone Id ZoneID *string `json:"zoneId,omitempty" tf:"zone_id,omitempty"` }
func (*ZoneAssignmentsInitParameters) DeepCopy ¶
func (in *ZoneAssignmentsInitParameters) DeepCopy() *ZoneAssignmentsInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ZoneAssignmentsInitParameters.
func (*ZoneAssignmentsInitParameters) DeepCopyInto ¶
func (in *ZoneAssignmentsInitParameters) DeepCopyInto(out *ZoneAssignmentsInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ZoneAssignmentsObservation ¶
type ZoneAssignmentsObservation struct { // The maximum amount of cpus that can be used by this cloud zone. Default is 0 (unlimited cpu). CPULimit *float64 `json:"cpuLimit,omitempty" tf:"cpu_limit,omitempty"` // The maximum number of instances that can be provisioned in this cloud zone. Default is 0 (unlimited instances) MaxInstances *float64 `json:"maxInstances,omitempty" tf:"max_instances,omitempty"` // The maximum amount of memory that can be used by this cloud zone. Default is 0 (unlimited memory). MemoryLimitMb *float64 `json:"memoryLimitMb,omitempty" tf:"memory_limit_mb,omitempty"` // The priority of this zone in the current project. Lower numbers mean higher priority. Default is 0 (highest) Priority *float64 `json:"priority,omitempty" tf:"priority,omitempty"` // Upper limit on storage that can be requested from a cloud zone which is part of this project. Default is 0 (unlimited storage). Supported only for vSphere cloud zones. StorageLimitGb *float64 `json:"storageLimitGb,omitempty" tf:"storage_limit_gb,omitempty"` // The Cloud Zone Id ZoneID *string `json:"zoneId,omitempty" tf:"zone_id,omitempty"` }
func (*ZoneAssignmentsObservation) DeepCopy ¶
func (in *ZoneAssignmentsObservation) DeepCopy() *ZoneAssignmentsObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ZoneAssignmentsObservation.
func (*ZoneAssignmentsObservation) DeepCopyInto ¶
func (in *ZoneAssignmentsObservation) DeepCopyInto(out *ZoneAssignmentsObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ZoneAssignmentsParameters ¶
type ZoneAssignmentsParameters struct { // The maximum amount of cpus that can be used by this cloud zone. Default is 0 (unlimited cpu). // +kubebuilder:validation:Optional CPULimit *float64 `json:"cpuLimit,omitempty" tf:"cpu_limit,omitempty"` // The maximum number of instances that can be provisioned in this cloud zone. Default is 0 (unlimited instances) // +kubebuilder:validation:Optional MaxInstances *float64 `json:"maxInstances,omitempty" tf:"max_instances,omitempty"` // The maximum amount of memory that can be used by this cloud zone. Default is 0 (unlimited memory). // +kubebuilder:validation:Optional MemoryLimitMb *float64 `json:"memoryLimitMb,omitempty" tf:"memory_limit_mb,omitempty"` // The priority of this zone in the current project. Lower numbers mean higher priority. Default is 0 (highest) // +kubebuilder:validation:Optional Priority *float64 `json:"priority,omitempty" tf:"priority,omitempty"` // Upper limit on storage that can be requested from a cloud zone which is part of this project. Default is 0 (unlimited storage). Supported only for vSphere cloud zones. // +kubebuilder:validation:Optional StorageLimitGb *float64 `json:"storageLimitGb,omitempty" tf:"storage_limit_gb,omitempty"` // The Cloud Zone Id // +kubebuilder:validation:Optional ZoneID *string `json:"zoneId" tf:"zone_id,omitempty"` }
func (*ZoneAssignmentsParameters) DeepCopy ¶
func (in *ZoneAssignmentsParameters) DeepCopy() *ZoneAssignmentsParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ZoneAssignmentsParameters.
func (*ZoneAssignmentsParameters) DeepCopyInto ¶
func (in *ZoneAssignmentsParameters) DeepCopyInto(out *ZoneAssignmentsParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.