Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=codeguruprofiler.aws.upbound.io +versionName=v1beta1
Index ¶
- Constants
- Variables
- type AgentOrchestrationConfigInitParameters
- type AgentOrchestrationConfigObservation
- type AgentOrchestrationConfigParameters
- type ProfilingGroup
- func (in *ProfilingGroup) DeepCopy() *ProfilingGroup
- func (in *ProfilingGroup) DeepCopyInto(out *ProfilingGroup)
- func (in *ProfilingGroup) DeepCopyObject() runtime.Object
- func (mg *ProfilingGroup) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *ProfilingGroup) GetConnectionDetailsMapping() map[string]string
- func (mg *ProfilingGroup) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *ProfilingGroup) GetID() string
- func (tr *ProfilingGroup) GetInitParameters() (map[string]any, error)
- func (mg *ProfilingGroup) GetManagementPolicies() xpv1.ManagementPolicies
- func (tr *ProfilingGroup) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
- func (tr *ProfilingGroup) GetObservation() (map[string]any, error)
- func (tr *ProfilingGroup) GetParameters() (map[string]any, error)
- func (mg *ProfilingGroup) GetProviderConfigReference() *xpv1.Reference
- func (mg *ProfilingGroup) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *ProfilingGroup) GetTerraformResourceType() string
- func (tr *ProfilingGroup) GetTerraformSchemaVersion() int
- func (mg *ProfilingGroup) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *ProfilingGroup) Hub()
- func (tr *ProfilingGroup) LateInitialize(attrs []byte) (bool, error)
- func (mg *ProfilingGroup) SetConditions(c ...xpv1.Condition)
- func (mg *ProfilingGroup) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (mg *ProfilingGroup) SetManagementPolicies(r xpv1.ManagementPolicies)
- func (tr *ProfilingGroup) SetObservation(obs map[string]any) error
- func (tr *ProfilingGroup) SetParameters(params map[string]any) error
- func (mg *ProfilingGroup) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *ProfilingGroup) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *ProfilingGroup) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ProfilingGroupInitParameters
- type ProfilingGroupList
- type ProfilingGroupObservation
- type ProfilingGroupParameters
- type ProfilingGroupSpec
- type ProfilingGroupStatus
Constants ¶
const ( CRDGroup = "codeguruprofiler.aws.upbound.io" CRDVersion = "v1beta1" )
Package type metadata.
Variables ¶
var ( // CRDGroupVersion is the API Group Version used to register the objects CRDGroupVersion = schema.GroupVersion{Group: CRDGroup, Version: CRDVersion} // SchemeBuilder is used to add go types to the GroupVersionKind scheme SchemeBuilder = &scheme.Builder{GroupVersion: CRDGroupVersion} // AddToScheme adds the types in this group-version to the given scheme. AddToScheme = SchemeBuilder.AddToScheme )
var ( ProfilingGroup_Kind = "ProfilingGroup" ProfilingGroup_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: ProfilingGroup_Kind}.String() ProfilingGroup_KindAPIVersion = ProfilingGroup_Kind + "." + CRDGroupVersion.String() ProfilingGroup_GroupVersionKind = CRDGroupVersion.WithKind(ProfilingGroup_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type AgentOrchestrationConfigInitParameters ¶
type AgentOrchestrationConfigInitParameters struct { // Boolean that specifies whether the profiling agent collects profiling data or ProfilingEnabled *bool `json:"profilingEnabled,omitempty" tf:"profiling_enabled,omitempty"` }
func (*AgentOrchestrationConfigInitParameters) DeepCopy ¶
func (in *AgentOrchestrationConfigInitParameters) DeepCopy() *AgentOrchestrationConfigInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentOrchestrationConfigInitParameters.
func (*AgentOrchestrationConfigInitParameters) DeepCopyInto ¶
func (in *AgentOrchestrationConfigInitParameters) DeepCopyInto(out *AgentOrchestrationConfigInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AgentOrchestrationConfigObservation ¶
type AgentOrchestrationConfigObservation struct { // Boolean that specifies whether the profiling agent collects profiling data or ProfilingEnabled *bool `json:"profilingEnabled,omitempty" tf:"profiling_enabled,omitempty"` }
func (*AgentOrchestrationConfigObservation) DeepCopy ¶
func (in *AgentOrchestrationConfigObservation) DeepCopy() *AgentOrchestrationConfigObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentOrchestrationConfigObservation.
func (*AgentOrchestrationConfigObservation) DeepCopyInto ¶
func (in *AgentOrchestrationConfigObservation) DeepCopyInto(out *AgentOrchestrationConfigObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AgentOrchestrationConfigParameters ¶
type AgentOrchestrationConfigParameters struct { // Boolean that specifies whether the profiling agent collects profiling data or // +kubebuilder:validation:Optional ProfilingEnabled *bool `json:"profilingEnabled" tf:"profiling_enabled,omitempty"` }
func (*AgentOrchestrationConfigParameters) DeepCopy ¶
func (in *AgentOrchestrationConfigParameters) DeepCopy() *AgentOrchestrationConfigParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AgentOrchestrationConfigParameters.
func (*AgentOrchestrationConfigParameters) DeepCopyInto ¶
func (in *AgentOrchestrationConfigParameters) DeepCopyInto(out *AgentOrchestrationConfigParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProfilingGroup ¶
type ProfilingGroup struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ProfilingGroupSpec `json:"spec"` Status ProfilingGroupStatus `json:"status,omitempty"` }
ProfilingGroup is the Schema for the ProfilingGroups API. +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,aws}
func (*ProfilingGroup) DeepCopy ¶
func (in *ProfilingGroup) DeepCopy() *ProfilingGroup
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfilingGroup.
func (*ProfilingGroup) DeepCopyInto ¶
func (in *ProfilingGroup) DeepCopyInto(out *ProfilingGroup)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ProfilingGroup) DeepCopyObject ¶
func (in *ProfilingGroup) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ProfilingGroup) GetCondition ¶
func (mg *ProfilingGroup) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this ProfilingGroup.
func (*ProfilingGroup) GetConnectionDetailsMapping ¶
func (tr *ProfilingGroup) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this ProfilingGroup
func (*ProfilingGroup) GetDeletionPolicy ¶
func (mg *ProfilingGroup) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this ProfilingGroup.
func (*ProfilingGroup) GetID ¶
func (tr *ProfilingGroup) GetID() string
GetID returns ID of underlying Terraform resource of this ProfilingGroup
func (*ProfilingGroup) GetInitParameters ¶
func (tr *ProfilingGroup) GetInitParameters() (map[string]any, error)
GetInitParameters of this ProfilingGroup
func (*ProfilingGroup) GetManagementPolicies ¶
func (mg *ProfilingGroup) GetManagementPolicies() xpv1.ManagementPolicies
GetManagementPolicies of this ProfilingGroup.
func (*ProfilingGroup) GetMergedParameters ¶
func (tr *ProfilingGroup) GetMergedParameters(shouldMergeInitProvider bool) (map[string]any, error)
GetInitParameters of this ProfilingGroup
func (*ProfilingGroup) GetObservation ¶
func (tr *ProfilingGroup) GetObservation() (map[string]any, error)
GetObservation of this ProfilingGroup
func (*ProfilingGroup) GetParameters ¶
func (tr *ProfilingGroup) GetParameters() (map[string]any, error)
GetParameters of this ProfilingGroup
func (*ProfilingGroup) GetProviderConfigReference ¶
func (mg *ProfilingGroup) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this ProfilingGroup.
func (*ProfilingGroup) GetPublishConnectionDetailsTo ¶
func (mg *ProfilingGroup) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this ProfilingGroup.
func (*ProfilingGroup) GetTerraformResourceType ¶
func (mg *ProfilingGroup) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this ProfilingGroup
func (*ProfilingGroup) GetTerraformSchemaVersion ¶
func (tr *ProfilingGroup) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*ProfilingGroup) GetWriteConnectionSecretToReference ¶
func (mg *ProfilingGroup) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this ProfilingGroup.
func (*ProfilingGroup) Hub ¶
func (tr *ProfilingGroup) Hub()
Hub marks this type as a conversion hub.
func (*ProfilingGroup) LateInitialize ¶
func (tr *ProfilingGroup) LateInitialize(attrs []byte) (bool, error)
LateInitialize this ProfilingGroup using its observed tfState. returns True if there are any spec changes for the resource.
func (*ProfilingGroup) SetConditions ¶
func (mg *ProfilingGroup) SetConditions(c ...xpv1.Condition)
SetConditions of this ProfilingGroup.
func (*ProfilingGroup) SetDeletionPolicy ¶
func (mg *ProfilingGroup) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this ProfilingGroup.
func (*ProfilingGroup) SetManagementPolicies ¶
func (mg *ProfilingGroup) SetManagementPolicies(r xpv1.ManagementPolicies)
SetManagementPolicies of this ProfilingGroup.
func (*ProfilingGroup) SetObservation ¶
func (tr *ProfilingGroup) SetObservation(obs map[string]any) error
SetObservation for this ProfilingGroup
func (*ProfilingGroup) SetParameters ¶
func (tr *ProfilingGroup) SetParameters(params map[string]any) error
SetParameters for this ProfilingGroup
func (*ProfilingGroup) SetProviderConfigReference ¶
func (mg *ProfilingGroup) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this ProfilingGroup.
func (*ProfilingGroup) SetPublishConnectionDetailsTo ¶
func (mg *ProfilingGroup) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this ProfilingGroup.
func (*ProfilingGroup) SetWriteConnectionSecretToReference ¶
func (mg *ProfilingGroup) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this ProfilingGroup.
type ProfilingGroupInitParameters ¶
type ProfilingGroupInitParameters struct { // Specifies whether profiling is enabled or disabled for the created profiling. See Agent Orchestration Config for more details. AgentOrchestrationConfig []AgentOrchestrationConfigInitParameters `json:"agentOrchestrationConfig,omitempty" tf:"agent_orchestration_config,omitempty"` // Compute platform of the profiling group. ComputePlatform *string `json:"computePlatform,omitempty" tf:"compute_platform,omitempty"` // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ProfilingGroupInitParameters) DeepCopy ¶
func (in *ProfilingGroupInitParameters) DeepCopy() *ProfilingGroupInitParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfilingGroupInitParameters.
func (*ProfilingGroupInitParameters) DeepCopyInto ¶
func (in *ProfilingGroupInitParameters) DeepCopyInto(out *ProfilingGroupInitParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProfilingGroupList ¶
type ProfilingGroupList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ProfilingGroup `json:"items"` }
ProfilingGroupList contains a list of ProfilingGroups
func (*ProfilingGroupList) DeepCopy ¶
func (in *ProfilingGroupList) DeepCopy() *ProfilingGroupList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfilingGroupList.
func (*ProfilingGroupList) DeepCopyInto ¶
func (in *ProfilingGroupList) DeepCopyInto(out *ProfilingGroupList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ProfilingGroupList) DeepCopyObject ¶
func (in *ProfilingGroupList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ProfilingGroupList) GetItems ¶
func (l *ProfilingGroupList) GetItems() []resource.Managed
GetItems of this ProfilingGroupList.
type ProfilingGroupObservation ¶
type ProfilingGroupObservation struct { // Specifies whether profiling is enabled or disabled for the created profiling. See Agent Orchestration Config for more details. AgentOrchestrationConfig []AgentOrchestrationConfigObservation `json:"agentOrchestrationConfig,omitempty" tf:"agent_orchestration_config,omitempty"` // ARN of the profiling group. Arn *string `json:"arn,omitempty" tf:"arn,omitempty"` // Compute platform of the profiling group. ComputePlatform *string `json:"computePlatform,omitempty" tf:"compute_platform,omitempty"` // Name of the profiling group. ID *string `json:"id,omitempty" tf:"id,omitempty"` // Key-value map of resource tags. // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` // A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block. // +mapType=granular TagsAll map[string]*string `json:"tagsAll,omitempty" tf:"tags_all,omitempty"` }
func (*ProfilingGroupObservation) DeepCopy ¶
func (in *ProfilingGroupObservation) DeepCopy() *ProfilingGroupObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfilingGroupObservation.
func (*ProfilingGroupObservation) DeepCopyInto ¶
func (in *ProfilingGroupObservation) DeepCopyInto(out *ProfilingGroupObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProfilingGroupParameters ¶
type ProfilingGroupParameters struct { // Specifies whether profiling is enabled or disabled for the created profiling. See Agent Orchestration Config for more details. // +kubebuilder:validation:Optional AgentOrchestrationConfig []AgentOrchestrationConfigParameters `json:"agentOrchestrationConfig,omitempty" tf:"agent_orchestration_config,omitempty"` // Compute platform of the profiling group. // +kubebuilder:validation:Optional ComputePlatform *string `json:"computePlatform,omitempty" tf:"compute_platform,omitempty"` // Region is the region you'd like your resource to be created in. // +upjet:crd:field:TFTag=- // +kubebuilder:validation:Required Region *string `json:"region" tf:"-"` // Key-value map of resource tags. // +kubebuilder:validation:Optional // +mapType=granular Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*ProfilingGroupParameters) DeepCopy ¶
func (in *ProfilingGroupParameters) DeepCopy() *ProfilingGroupParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfilingGroupParameters.
func (*ProfilingGroupParameters) DeepCopyInto ¶
func (in *ProfilingGroupParameters) DeepCopyInto(out *ProfilingGroupParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProfilingGroupSpec ¶
type ProfilingGroupSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ProfilingGroupParameters `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 ProfilingGroupInitParameters `json:"initProvider,omitempty"` }
ProfilingGroupSpec defines the desired state of ProfilingGroup
func (*ProfilingGroupSpec) DeepCopy ¶
func (in *ProfilingGroupSpec) DeepCopy() *ProfilingGroupSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfilingGroupSpec.
func (*ProfilingGroupSpec) DeepCopyInto ¶
func (in *ProfilingGroupSpec) DeepCopyInto(out *ProfilingGroupSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ProfilingGroupStatus ¶
type ProfilingGroupStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ProfilingGroupObservation `json:"atProvider,omitempty"` }
ProfilingGroupStatus defines the observed state of ProfilingGroup.
func (*ProfilingGroupStatus) DeepCopy ¶
func (in *ProfilingGroupStatus) DeepCopy() *ProfilingGroupStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ProfilingGroupStatus.
func (*ProfilingGroupStatus) DeepCopyInto ¶
func (in *ProfilingGroupStatus) DeepCopyInto(out *ProfilingGroupStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.