Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=loadtesting.yandex-cloud.upjet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type Agent
- func (in *Agent) DeepCopy() *Agent
- func (in *Agent) DeepCopyInto(out *Agent)
- func (in *Agent) DeepCopyObject() runtime.Object
- func (mg *Agent) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Agent) GetConnectionDetailsMapping() map[string]string
- func (mg *Agent) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Agent) GetID() string
- func (tr *Agent) GetInitParameters() (map[string]any, error)
- func (mg *Agent) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *Agent) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *Agent) GetObservation() (map[string]any, error)
- func (tr *Agent) GetParameters() (map[string]any, error)
- func (mg *Agent) GetProviderConfigReference() *xpv1.Reference
- func (mg *Agent) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Agent) GetTerraformResourceType() string
- func (tr *Agent) GetTerraformSchemaVersion() int
- func (mg *Agent) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Agent) Hub()
- func (tr *Agent) LateInitialize(attrs []byte) (bool, error)
- func (mg *Agent) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *Agent) SetConditions(c ...xpv1.Condition)
- func (mg *Agent) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *Agent) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *Agent) SetObservation(obs map[string]any) error
- func (tr *Agent) SetParameters(params map[string]any) error
- func (mg *Agent) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Agent) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Agent) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type AgentInitParameters
- type AgentList
- type AgentObservation
- type AgentParameters
- type AgentSpec
- type AgentStatus
- type BootDiskInitParameters
- type BootDiskObservation
- type BootDiskParameters
- type ComputeInstanceInitParameters
- type ComputeInstanceObservation
- type ComputeInstanceParameters
- type InitializeParamsInitParameters
- type InitializeParamsObservation
- type InitializeParamsParameters
- type NetworkInterfaceInitParameters
- type NetworkInterfaceObservation
- type NetworkInterfaceParameters
- type ResourcesInitParameters
- type ResourcesObservation
- type ResourcesParameters
Constants ¶
const ( CRDGroup = "loadtesting.yandex-cloud.upjet.crossplane.io" CRDVersion = "v1alpha1" )
Package type metadata.
Variables ¶
var ( Agent_Kind = "Agent" Agent_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Agent_Kind}.String() Agent_KindAPIVersion = Agent_Kind + "." + CRDGroupVersion.String() Agent_GroupVersionKind = CRDGroupVersion.WithKind(Agent_Kind) )
Repository type metadata.
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 )
Functions ¶
This section is empty.
Types ¶
type Agent ¶
type Agent 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.computeInstance) || (has(self.initProvider) && has(self.initProvider.computeInstance))",message="spec.forProvider.computeInstance is a required parameter" // +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 AgentSpec `json:"spec"` Status AgentStatus `json:"status,omitempty"` }
Agent is the Schema for the Agents API. Manages an Yandex Cloud Load Testing Agent resource. +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:resource:scope=Cluster,categories={crossplane,managed,yandex-cloud}
func (*Agent) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Agent.
func (*Agent) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Agent) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Agent) GetCondition ¶
func (mg *Agent) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Agent.
func (*Agent) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Agent
func (*Agent) GetDeletionPolicy ¶
func (mg *Agent) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Agent.
func (*Agent) GetInitParameters ¶
GetInitParameters of this Agent
func (*Agent) GetManagementPolicies ¶
func (mg *Agent) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this Agent.
func (*Agent) GetMergedParameters ¶ added in v0.1.3
GetInitParameters of this Agent
func (*Agent) GetObservation ¶
GetObservation of this Agent
func (*Agent) GetParameters ¶
GetParameters of this Agent
func (*Agent) GetProviderConfigReference ¶
GetProviderConfigReference of this Agent.
func (*Agent) GetPublishConnectionDetailsTo ¶
func (mg *Agent) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Agent.
func (*Agent) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Agent
func (*Agent) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Agent) GetWriteConnectionSecretToReference ¶
func (mg *Agent) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Agent.
func (*Agent) LateInitialize ¶
LateInitialize this Agent using its observed tfState. returns True if there are any spec changes for the resource.
func (*Agent) ResolveReferences ¶
ResolveReferences of this Agent.
func (*Agent) SetConditions ¶
SetConditions of this Agent.
func (*Agent) SetDeletionPolicy ¶
func (mg *Agent) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Agent.
func (*Agent) SetManagementPolicies ¶
func (mg *Agent) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this Agent.
func (*Agent) SetObservation ¶
SetObservation for this Agent
func (*Agent) SetParameters ¶
SetParameters for this Agent
func (*Agent) SetProviderConfigReference ¶
SetProviderConfigReference of this Agent.
func (*Agent) SetPublishConnectionDetailsTo ¶
func (mg *Agent) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Agent.
func (*Agent) SetWriteConnectionSecretToReference ¶
func (mg *Agent) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Agent.
type AgentInitParameters ¶
type AgentInitParameters struct { // The template for creating new compute instance running load testing agent. The structure is documented below. ComputeInstance []ComputeInstanceInitParameters `json:"computeInstance,omitempty" tf:"compute_instance,omitempty"` // A description of the load testing agent. Description *string `json:"description,omitempty" tf:"description,omitempty"` // The ID of the folder that the resources belong to. // +crossplane:generate:reference:type=github.com/tagesjump/provider-upjet-yc/apis/resourcemanager/v1alpha1.Folder FolderID *string `json:"folderId,omitempty" tf:"folder_id,omitempty"` // Reference to a Folder in resourcemanager to populate folderId. // +kubebuilder:validation:Optional FolderIDRef *v1.Reference `json:"folderIdRef,omitempty" tf:"-"` // Selector for a Folder in resourcemanager to populate folderId. // +kubebuilder:validation:Optional FolderIDSelector *v1.Selector `json:"folderIdSelector,omitempty" tf:"-"` // The name of the load testing agent. Must be unique within folder. Name *string `json:"name,omitempty" tf:"name,omitempty"` }
func (*AgentInitParameters) DeepCopy ¶
func (in *AgentInitParameters) DeepCopy() *AgentInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentInitParameters.
func (*AgentInitParameters) DeepCopyInto ¶
func (in *AgentInitParameters) DeepCopyInto(out *AgentInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AgentList ¶
type AgentList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Agent `json:"items"` }
AgentList contains a list of Agents
func (*AgentList) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentList.
func (*AgentList) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*AgentList) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
type AgentObservation ¶
type AgentObservation struct { // The template for creating new compute instance running load testing agent. The structure is documented below. ComputeInstance []ComputeInstanceObservation `json:"computeInstance,omitempty" tf:"compute_instance,omitempty"` ComputeInstanceID *string `json:"computeInstanceId,omitempty" tf:"compute_instance_id,omitempty"` // A description of the load testing agent. Description *string `json:"description,omitempty" tf:"description,omitempty"` // The ID of the folder that the resources belong to. FolderID *string `json:"folderId,omitempty" tf:"folder_id,omitempty"` ID *string `json:"id,omitempty" tf:"id,omitempty"` // The name of the load testing agent. Must be unique within folder. Name *string `json:"name,omitempty" tf:"name,omitempty"` }
func (*AgentObservation) DeepCopy ¶
func (in *AgentObservation) DeepCopy() *AgentObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentObservation.
func (*AgentObservation) DeepCopyInto ¶
func (in *AgentObservation) DeepCopyInto(out *AgentObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AgentParameters ¶
type AgentParameters struct { // The template for creating new compute instance running load testing agent. The structure is documented below. // +kubebuilder:validation:Optional ComputeInstance []ComputeInstanceParameters `json:"computeInstance,omitempty" tf:"compute_instance,omitempty"` // A description of the load testing agent. // +kubebuilder:validation:Optional Description *string `json:"description,omitempty" tf:"description,omitempty"` // The ID of the folder that the resources belong to. // +crossplane:generate:reference:type=github.com/tagesjump/provider-upjet-yc/apis/resourcemanager/v1alpha1.Folder // +kubebuilder:validation:Optional FolderID *string `json:"folderId,omitempty" tf:"folder_id,omitempty"` // Reference to a Folder in resourcemanager to populate folderId. // +kubebuilder:validation:Optional FolderIDRef *v1.Reference `json:"folderIdRef,omitempty" tf:"-"` // Selector for a Folder in resourcemanager to populate folderId. // +kubebuilder:validation:Optional FolderIDSelector *v1.Selector `json:"folderIdSelector,omitempty" tf:"-"` // The name of the load testing agent. Must be unique within folder. // +kubebuilder:validation:Optional Name *string `json:"name,omitempty" tf:"name,omitempty"` }
func (*AgentParameters) DeepCopy ¶
func (in *AgentParameters) DeepCopy() *AgentParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentParameters.
func (*AgentParameters) DeepCopyInto ¶
func (in *AgentParameters) DeepCopyInto(out *AgentParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AgentSpec ¶
type AgentSpec struct { v1.ResourceSpec `json:",inline"` ForProvider AgentParameters `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 AgentInitParameters `json:"initProvider,omitempty"` }
AgentSpec defines the desired state of Agent
func (*AgentSpec) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentSpec.
func (*AgentSpec) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AgentStatus ¶
type AgentStatus struct { v1.ResourceStatus `json:",inline"` AtProvider AgentObservation `json:"atProvider,omitempty"` }
AgentStatus defines the observed state of Agent.
func (*AgentStatus) DeepCopy ¶
func (in *AgentStatus) DeepCopy() *AgentStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentStatus.
func (*AgentStatus) DeepCopyInto ¶
func (in *AgentStatus) DeepCopyInto(out *AgentStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BootDiskInitParameters ¶
type BootDiskInitParameters struct { // Whether the disk is auto-deleted when the instance is deleted. The default value is true. AutoDelete *bool `json:"autoDelete,omitempty" tf:"auto_delete,omitempty"` // This value can be used to reference the device under /dev/disk/by-id/. DeviceName *string `json:"deviceName,omitempty" tf:"device_name,omitempty"` // Parameters for creating a disk alongside the instance. The structure is documented below. InitializeParams []InitializeParamsInitParameters `json:"initializeParams,omitempty" tf:"initialize_params,omitempty"` }
func (*BootDiskInitParameters) DeepCopy ¶
func (in *BootDiskInitParameters) DeepCopy() *BootDiskInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BootDiskInitParameters.
func (*BootDiskInitParameters) DeepCopyInto ¶
func (in *BootDiskInitParameters) DeepCopyInto(out *BootDiskInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BootDiskObservation ¶
type BootDiskObservation struct { // Whether the disk is auto-deleted when the instance is deleted. The default value is true. AutoDelete *bool `json:"autoDelete,omitempty" tf:"auto_delete,omitempty"` // This value can be used to reference the device under /dev/disk/by-id/. DeviceName *string `json:"deviceName,omitempty" tf:"device_name,omitempty"` // (Computed) The ID of created disk. DiskID *string `json:"diskId,omitempty" tf:"disk_id,omitempty"` // Parameters for creating a disk alongside the instance. The structure is documented below. InitializeParams []InitializeParamsObservation `json:"initializeParams,omitempty" tf:"initialize_params,omitempty"` }
func (*BootDiskObservation) DeepCopy ¶
func (in *BootDiskObservation) DeepCopy() *BootDiskObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BootDiskObservation.
func (*BootDiskObservation) DeepCopyInto ¶
func (in *BootDiskObservation) DeepCopyInto(out *BootDiskObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type BootDiskParameters ¶
type BootDiskParameters struct { // Whether the disk is auto-deleted when the instance is deleted. The default value is true. // +kubebuilder:validation:Optional AutoDelete *bool `json:"autoDelete,omitempty" tf:"auto_delete,omitempty"` // This value can be used to reference the device under /dev/disk/by-id/. // +kubebuilder:validation:Optional DeviceName *string `json:"deviceName,omitempty" tf:"device_name,omitempty"` // Parameters for creating a disk alongside the instance. The structure is documented below. // +kubebuilder:validation:Optional InitializeParams []InitializeParamsParameters `json:"initializeParams" tf:"initialize_params,omitempty"` }
func (*BootDiskParameters) DeepCopy ¶
func (in *BootDiskParameters) DeepCopy() *BootDiskParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new BootDiskParameters.
func (*BootDiskParameters) DeepCopyInto ¶
func (in *BootDiskParameters) DeepCopyInto(out *BootDiskParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ComputeInstanceInitParameters ¶
type ComputeInstanceInitParameters struct { // Boot disk specifications for the instance. The structure is documented below. BootDisk []BootDiskInitParameters `json:"bootDisk,omitempty" tf:"boot_disk,omitempty"` // A set of key/value label pairs to assign to the instance. // +mapType=granular Labels map[string]*string `json:"labels,omitempty" tf:"labels,omitempty"` // A set of metadata key/value pairs to make available from within the instance. // +mapType=granular Metadata map[string]*string `json:"metadata,omitempty" tf:"metadata,omitempty"` // Network specifications for the instance. This can be used multiple times for adding multiple interfaces. The structure is documented below. NetworkInterface []NetworkInterfaceInitParameters `json:"networkInterface,omitempty" tf:"network_interface,omitempty"` // Compute resource specifications for the instance. The structure is documented below. Resources []ResourcesInitParameters `json:"resources,omitempty" tf:"resources,omitempty"` // The ID of the service account authorized for this load testing agent. Service account should have loadtesting.generatorClient or loadtesting.externalAgent role in the folder. // +crossplane:generate:reference:type=github.com/tagesjump/provider-upjet-yc/apis/vpc/v1alpha1.SecurityGroup ServiceAccountID *string `json:"serviceAccountId,omitempty" tf:"service_account_id,omitempty"` // Reference to a SecurityGroup in vpc to populate serviceAccountId. // +kubebuilder:validation:Optional ServiceAccountIDRef *v1.Reference `json:"serviceAccountIdRef,omitempty" tf:"-"` // Selector for a SecurityGroup in vpc to populate serviceAccountId. // +kubebuilder:validation:Optional ServiceAccountIDSelector *v1.Selector `json:"serviceAccountIdSelector,omitempty" tf:"-"` // The availability zone where the virtual machine will be created. If it is not provided, // the default provider folder is used. ZoneID *string `json:"zoneId,omitempty" tf:"zone_id,omitempty"` }
func (*ComputeInstanceInitParameters) DeepCopy ¶
func (in *ComputeInstanceInitParameters) DeepCopy() *ComputeInstanceInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComputeInstanceInitParameters.
func (*ComputeInstanceInitParameters) DeepCopyInto ¶
func (in *ComputeInstanceInitParameters) DeepCopyInto(out *ComputeInstanceInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ComputeInstanceObservation ¶
type ComputeInstanceObservation struct { // Boot disk specifications for the instance. The structure is documented below. BootDisk []BootDiskObservation `json:"bootDisk,omitempty" tf:"boot_disk,omitempty"` // (Computed) The set of metadata key:value pairs assigned to this instance. This includes user custom metadata, and predefined items created by Yandex Cloud Load Testing. // +mapType=granular ComputedMetadata map[string]*string `json:"computedMetadata,omitempty" tf:"computed_metadata,omitempty"` // A set of key/value label pairs to assign to the instance. // +mapType=granular Labels map[string]*string `json:"labels,omitempty" tf:"labels,omitempty"` // A set of metadata key/value pairs to make available from within the instance. // +mapType=granular Metadata map[string]*string `json:"metadata,omitempty" tf:"metadata,omitempty"` // Network specifications for the instance. This can be used multiple times for adding multiple interfaces. The structure is documented below. NetworkInterface []NetworkInterfaceObservation `json:"networkInterface,omitempty" tf:"network_interface,omitempty"` // Compute resource specifications for the instance. The structure is documented below. Resources []ResourcesObservation `json:"resources,omitempty" tf:"resources,omitempty"` // The ID of the service account authorized for this load testing agent. Service account should have loadtesting.generatorClient or loadtesting.externalAgent role in the folder. ServiceAccountID *string `json:"serviceAccountId,omitempty" tf:"service_account_id,omitempty"` // The availability zone where the virtual machine will be created. If it is not provided, // the default provider folder is used. ZoneID *string `json:"zoneId,omitempty" tf:"zone_id,omitempty"` }
func (*ComputeInstanceObservation) DeepCopy ¶
func (in *ComputeInstanceObservation) DeepCopy() *ComputeInstanceObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComputeInstanceObservation.
func (*ComputeInstanceObservation) DeepCopyInto ¶
func (in *ComputeInstanceObservation) DeepCopyInto(out *ComputeInstanceObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ComputeInstanceParameters ¶
type ComputeInstanceParameters struct { // Boot disk specifications for the instance. The structure is documented below. // +kubebuilder:validation:Optional BootDisk []BootDiskParameters `json:"bootDisk" tf:"boot_disk,omitempty"` // A set of key/value label pairs to assign to the instance. // +kubebuilder:validation:Optional // +mapType=granular Labels map[string]*string `json:"labels,omitempty" tf:"labels,omitempty"` // A set of metadata key/value pairs to make available from within the instance. // +kubebuilder:validation:Optional // +mapType=granular Metadata map[string]*string `json:"metadata,omitempty" tf:"metadata,omitempty"` // Network specifications for the instance. This can be used multiple times for adding multiple interfaces. The structure is documented below. // +kubebuilder:validation:Optional NetworkInterface []NetworkInterfaceParameters `json:"networkInterface" tf:"network_interface,omitempty"` // Compute resource specifications for the instance. The structure is documented below. // +kubebuilder:validation:Optional Resources []ResourcesParameters `json:"resources" tf:"resources,omitempty"` // The ID of the service account authorized for this load testing agent. Service account should have loadtesting.generatorClient or loadtesting.externalAgent role in the folder. // +crossplane:generate:reference:type=github.com/tagesjump/provider-upjet-yc/apis/vpc/v1alpha1.SecurityGroup // +kubebuilder:validation:Optional ServiceAccountID *string `json:"serviceAccountId,omitempty" tf:"service_account_id,omitempty"` // Reference to a SecurityGroup in vpc to populate serviceAccountId. // +kubebuilder:validation:Optional ServiceAccountIDRef *v1.Reference `json:"serviceAccountIdRef,omitempty" tf:"-"` // Selector for a SecurityGroup in vpc to populate serviceAccountId. // +kubebuilder:validation:Optional ServiceAccountIDSelector *v1.Selector `json:"serviceAccountIdSelector,omitempty" tf:"-"` // The availability zone where the virtual machine will be created. If it is not provided, // the default provider folder is used. // +kubebuilder:validation:Optional ZoneID *string `json:"zoneId,omitempty" tf:"zone_id,omitempty"` }
func (*ComputeInstanceParameters) DeepCopy ¶
func (in *ComputeInstanceParameters) DeepCopy() *ComputeInstanceParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ComputeInstanceParameters.
func (*ComputeInstanceParameters) DeepCopyInto ¶
func (in *ComputeInstanceParameters) DeepCopyInto(out *ComputeInstanceParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type InitializeParamsInitParameters ¶
type InitializeParamsInitParameters struct { // Block size of the disk, specified in bytes. BlockSize *float64 `json:"blockSize,omitempty" tf:"block_size,omitempty"` // A description of the boot disk. Description *string `json:"description,omitempty" tf:"description,omitempty"` // The name of the load testing agent. Must be unique within folder. Name *string `json:"name,omitempty" tf:"name,omitempty"` // The size of the disk in GB. Defaults to 15 GB. Size *float64 `json:"size,omitempty" tf:"size,omitempty"` // The disk type. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*InitializeParamsInitParameters) DeepCopy ¶
func (in *InitializeParamsInitParameters) DeepCopy() *InitializeParamsInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InitializeParamsInitParameters.
func (*InitializeParamsInitParameters) DeepCopyInto ¶
func (in *InitializeParamsInitParameters) DeepCopyInto(out *InitializeParamsInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type InitializeParamsObservation ¶
type InitializeParamsObservation struct { // Block size of the disk, specified in bytes. BlockSize *float64 `json:"blockSize,omitempty" tf:"block_size,omitempty"` // A description of the boot disk. Description *string `json:"description,omitempty" tf:"description,omitempty"` // The name of the load testing agent. Must be unique within folder. Name *string `json:"name,omitempty" tf:"name,omitempty"` // The size of the disk in GB. Defaults to 15 GB. Size *float64 `json:"size,omitempty" tf:"size,omitempty"` // The disk type. Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*InitializeParamsObservation) DeepCopy ¶
func (in *InitializeParamsObservation) DeepCopy() *InitializeParamsObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InitializeParamsObservation.
func (*InitializeParamsObservation) DeepCopyInto ¶
func (in *InitializeParamsObservation) DeepCopyInto(out *InitializeParamsObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type InitializeParamsParameters ¶
type InitializeParamsParameters struct { // Block size of the disk, specified in bytes. // +kubebuilder:validation:Optional BlockSize *float64 `json:"blockSize,omitempty" tf:"block_size,omitempty"` // A description of the boot disk. // +kubebuilder:validation:Optional Description *string `json:"description,omitempty" tf:"description,omitempty"` // The name of the load testing agent. Must be unique within folder. // +kubebuilder:validation:Optional Name *string `json:"name,omitempty" tf:"name,omitempty"` // The size of the disk in GB. Defaults to 15 GB. // +kubebuilder:validation:Optional Size *float64 `json:"size,omitempty" tf:"size,omitempty"` // The disk type. // +kubebuilder:validation:Optional Type *string `json:"type,omitempty" tf:"type,omitempty"` }
func (*InitializeParamsParameters) DeepCopy ¶
func (in *InitializeParamsParameters) DeepCopy() *InitializeParamsParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new InitializeParamsParameters.
func (*InitializeParamsParameters) DeepCopyInto ¶
func (in *InitializeParamsParameters) DeepCopyInto(out *InitializeParamsParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkInterfaceInitParameters ¶
type NetworkInterfaceInitParameters struct { // Manual set static IP address. IPAddress *string `json:"ipAddress,omitempty" tf:"ip_address,omitempty"` // Flag for allocating IPv4 address for the network interface. IPv4 *bool `json:"ipv4,omitempty" tf:"ipv4,omitempty"` // Flag for allocating IPv6 address for the network interface. IPv6 *bool `json:"ipv6,omitempty" tf:"ipv6,omitempty"` // Manual set static IPv6 address. IPv6Address *string `json:"ipv6Address,omitempty" tf:"ipv6_address,omitempty"` // Flag for using NAT. NAT *bool `json:"nat,omitempty" tf:"nat,omitempty"` // A public address that can be used to access the internet over NAT. NATIPAddress *string `json:"natIpAddress,omitempty" tf:"nat_ip_address,omitempty"` // Security group ids for network interface. // +listType=set SecurityGroupIds []*string `json:"securityGroupIds,omitempty" tf:"security_group_ids,omitempty"` // The ID of the subnet to attach this interface to. The subnet must reside in the same zone where this instance was created. // +crossplane:generate:reference:type=github.com/tagesjump/provider-upjet-yc/apis/vpc/v1alpha1.Subnet SubnetID *string `json:"subnetId,omitempty" tf:"subnet_id,omitempty"` // Reference to a Subnet in vpc to populate subnetId. // +kubebuilder:validation:Optional SubnetIDRef *v1.Reference `json:"subnetIdRef,omitempty" tf:"-"` // Selector for a Subnet in vpc to populate subnetId. // +kubebuilder:validation:Optional SubnetIDSelector *v1.Selector `json:"subnetIdSelector,omitempty" tf:"-"` }
func (*NetworkInterfaceInitParameters) DeepCopy ¶
func (in *NetworkInterfaceInitParameters) DeepCopy() *NetworkInterfaceInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkInterfaceInitParameters.
func (*NetworkInterfaceInitParameters) DeepCopyInto ¶
func (in *NetworkInterfaceInitParameters) DeepCopyInto(out *NetworkInterfaceInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkInterfaceObservation ¶
type NetworkInterfaceObservation struct { // Manual set static IP address. IPAddress *string `json:"ipAddress,omitempty" tf:"ip_address,omitempty"` // Flag for allocating IPv4 address for the network interface. IPv4 *bool `json:"ipv4,omitempty" tf:"ipv4,omitempty"` // Flag for allocating IPv6 address for the network interface. IPv6 *bool `json:"ipv6,omitempty" tf:"ipv6,omitempty"` // Manual set static IPv6 address. IPv6Address *string `json:"ipv6Address,omitempty" tf:"ipv6_address,omitempty"` Index *float64 `json:"index,omitempty" tf:"index,omitempty"` MacAddress *string `json:"macAddress,omitempty" tf:"mac_address,omitempty"` // Flag for using NAT. NAT *bool `json:"nat,omitempty" tf:"nat,omitempty"` // A public address that can be used to access the internet over NAT. NATIPAddress *string `json:"natIpAddress,omitempty" tf:"nat_ip_address,omitempty"` NATIPVersion *string `json:"natIpVersion,omitempty" tf:"nat_ip_version,omitempty"` // Security group ids for network interface. // +listType=set SecurityGroupIds []*string `json:"securityGroupIds,omitempty" tf:"security_group_ids,omitempty"` // The ID of the subnet to attach this interface to. The subnet must reside in the same zone where this instance was created. SubnetID *string `json:"subnetId,omitempty" tf:"subnet_id,omitempty"` }
func (*NetworkInterfaceObservation) DeepCopy ¶
func (in *NetworkInterfaceObservation) DeepCopy() *NetworkInterfaceObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkInterfaceObservation.
func (*NetworkInterfaceObservation) DeepCopyInto ¶
func (in *NetworkInterfaceObservation) DeepCopyInto(out *NetworkInterfaceObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type NetworkInterfaceParameters ¶
type NetworkInterfaceParameters struct { // Manual set static IP address. // +kubebuilder:validation:Optional IPAddress *string `json:"ipAddress,omitempty" tf:"ip_address,omitempty"` // Flag for allocating IPv4 address for the network interface. // +kubebuilder:validation:Optional IPv4 *bool `json:"ipv4,omitempty" tf:"ipv4,omitempty"` // Flag for allocating IPv6 address for the network interface. // +kubebuilder:validation:Optional IPv6 *bool `json:"ipv6,omitempty" tf:"ipv6,omitempty"` // Manual set static IPv6 address. // +kubebuilder:validation:Optional IPv6Address *string `json:"ipv6Address,omitempty" tf:"ipv6_address,omitempty"` // Flag for using NAT. // +kubebuilder:validation:Optional NAT *bool `json:"nat,omitempty" tf:"nat,omitempty"` // A public address that can be used to access the internet over NAT. // +kubebuilder:validation:Optional NATIPAddress *string `json:"natIpAddress,omitempty" tf:"nat_ip_address,omitempty"` // Security group ids for network interface. // +kubebuilder:validation:Optional // +listType=set SecurityGroupIds []*string `json:"securityGroupIds,omitempty" tf:"security_group_ids,omitempty"` // The ID of the subnet to attach this interface to. The subnet must reside in the same zone where this instance was created. // +crossplane:generate:reference:type=github.com/tagesjump/provider-upjet-yc/apis/vpc/v1alpha1.Subnet // +kubebuilder:validation:Optional SubnetID *string `json:"subnetId,omitempty" tf:"subnet_id,omitempty"` // Reference to a Subnet in vpc to populate subnetId. // +kubebuilder:validation:Optional SubnetIDRef *v1.Reference `json:"subnetIdRef,omitempty" tf:"-"` // Selector for a Subnet in vpc to populate subnetId. // +kubebuilder:validation:Optional SubnetIDSelector *v1.Selector `json:"subnetIdSelector,omitempty" tf:"-"` }
func (*NetworkInterfaceParameters) DeepCopy ¶
func (in *NetworkInterfaceParameters) DeepCopy() *NetworkInterfaceParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new NetworkInterfaceParameters.
func (*NetworkInterfaceParameters) DeepCopyInto ¶
func (in *NetworkInterfaceParameters) DeepCopyInto(out *NetworkInterfaceParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourcesInitParameters ¶
type ResourcesInitParameters struct { // If provided, specifies baseline core performance as a percent. CoreFraction *float64 `json:"coreFraction,omitempty" tf:"core_fraction,omitempty"` // The number of CPU cores for the instance. Defaults to 2 cores. Cores *float64 `json:"cores,omitempty" tf:"cores,omitempty"` // The memory size in GB. Defaults to 2 GB. Memory *float64 `json:"memory,omitempty" tf:"memory,omitempty"` }
func (*ResourcesInitParameters) DeepCopy ¶
func (in *ResourcesInitParameters) DeepCopy() *ResourcesInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourcesInitParameters.
func (*ResourcesInitParameters) DeepCopyInto ¶
func (in *ResourcesInitParameters) DeepCopyInto(out *ResourcesInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourcesObservation ¶
type ResourcesObservation struct { // If provided, specifies baseline core performance as a percent. CoreFraction *float64 `json:"coreFraction,omitempty" tf:"core_fraction,omitempty"` // The number of CPU cores for the instance. Defaults to 2 cores. Cores *float64 `json:"cores,omitempty" tf:"cores,omitempty"` // The memory size in GB. Defaults to 2 GB. Memory *float64 `json:"memory,omitempty" tf:"memory,omitempty"` }
func (*ResourcesObservation) DeepCopy ¶
func (in *ResourcesObservation) DeepCopy() *ResourcesObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourcesObservation.
func (*ResourcesObservation) DeepCopyInto ¶
func (in *ResourcesObservation) DeepCopyInto(out *ResourcesObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ResourcesParameters ¶
type ResourcesParameters struct { // If provided, specifies baseline core performance as a percent. // +kubebuilder:validation:Optional CoreFraction *float64 `json:"coreFraction,omitempty" tf:"core_fraction,omitempty"` // The number of CPU cores for the instance. Defaults to 2 cores. // +kubebuilder:validation:Optional Cores *float64 `json:"cores,omitempty" tf:"cores,omitempty"` // The memory size in GB. Defaults to 2 GB. // +kubebuilder:validation:Optional Memory *float64 `json:"memory,omitempty" tf:"memory,omitempty"` }
func (*ResourcesParameters) DeepCopy ¶
func (in *ResourcesParameters) DeepCopy() *ResourcesParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourcesParameters.
func (*ResourcesParameters) DeepCopyInto ¶
func (in *ResourcesParameters) DeepCopyInto(out *ResourcesParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.