Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=healthcare.gcp.upbound.io +versionName=v1beta1
Index ¶
- Constants
- Variables
- type ConsentStore
- func (in *ConsentStore) DeepCopy() *ConsentStore
- func (in *ConsentStore) DeepCopyInto(out *ConsentStore)
- func (in *ConsentStore) DeepCopyObject() runtime.Object
- func (mg *ConsentStore) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *ConsentStore) GetConnectionDetailsMapping() map[string]string
- func (mg *ConsentStore) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *ConsentStore) GetID() string
- func (tr *ConsentStore) GetObservation() (map[string]any, error)
- func (tr *ConsentStore) GetParameters() (map[string]any, error)
- func (mg *ConsentStore) GetProviderConfigReference() *xpv1.Reference
- func (mg *ConsentStore) GetProviderReference() *xpv1.Reference
- func (mg *ConsentStore) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *ConsentStore) GetTerraformResourceType() string
- func (tr *ConsentStore) GetTerraformSchemaVersion() int
- func (mg *ConsentStore) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *ConsentStore) LateInitialize(attrs []byte) (bool, error)
- func (mg *ConsentStore) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *ConsentStore) SetConditions(c ...xpv1.Condition)
- func (mg *ConsentStore) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *ConsentStore) SetObservation(obs map[string]any) error
- func (tr *ConsentStore) SetParameters(params map[string]any) error
- func (mg *ConsentStore) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *ConsentStore) SetProviderReference(r *xpv1.Reference)
- func (mg *ConsentStore) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *ConsentStore) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type ConsentStoreList
- type ConsentStoreObservation
- type ConsentStoreParameters
- type ConsentStoreSpec
- type ConsentStoreStatus
- type Dataset
- func (in *Dataset) DeepCopy() *Dataset
- func (in *Dataset) DeepCopyInto(out *Dataset)
- func (in *Dataset) DeepCopyObject() runtime.Object
- func (mg *Dataset) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *Dataset) GetConnectionDetailsMapping() map[string]string
- func (mg *Dataset) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *Dataset) GetID() string
- func (tr *Dataset) GetObservation() (map[string]any, error)
- func (tr *Dataset) GetParameters() (map[string]any, error)
- func (mg *Dataset) GetProviderConfigReference() *xpv1.Reference
- func (mg *Dataset) GetProviderReference() *xpv1.Reference
- func (mg *Dataset) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
- func (mg *Dataset) GetTerraformResourceType() string
- func (tr *Dataset) GetTerraformSchemaVersion() int
- func (mg *Dataset) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *Dataset) LateInitialize(attrs []byte) (bool, error)
- func (mg *Dataset) SetConditions(c ...xpv1.Condition)
- func (mg *Dataset) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *Dataset) SetObservation(obs map[string]any) error
- func (tr *Dataset) SetParameters(params map[string]any) error
- func (mg *Dataset) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *Dataset) SetProviderReference(r *xpv1.Reference)
- func (mg *Dataset) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
- func (mg *Dataset) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type DatasetList
- type DatasetObservation
- type DatasetParameters
- type DatasetSpec
- type DatasetStatus
Constants ¶
const ( CRDGroup = "healthcare.gcp.upbound.io" CRDVersion = "v1beta1" )
Package type metadata.
Variables ¶
var ( ConsentStore_Kind = "ConsentStore" ConsentStore_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: ConsentStore_Kind}.String() ConsentStore_KindAPIVersion = ConsentStore_Kind + "." + CRDGroupVersion.String() ConsentStore_GroupVersionKind = CRDGroupVersion.WithKind(ConsentStore_Kind) )
Repository type metadata.
var ( Dataset_Kind = "Dataset" Dataset_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: Dataset_Kind}.String() Dataset_KindAPIVersion = Dataset_Kind + "." + CRDGroupVersion.String() Dataset_GroupVersionKind = CRDGroupVersion.WithKind(Dataset_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 ConsentStore ¶
type ConsentStore struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec ConsentStoreSpec `json:"spec"` Status ConsentStoreStatus `json:"status,omitempty"` }
ConsentStore is the Schema for the ConsentStores API. The Consent Management API is a tool for tracking user consents and the documentation associated with the consents. +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,gcp}
func (*ConsentStore) DeepCopy ¶
func (in *ConsentStore) DeepCopy() *ConsentStore
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsentStore.
func (*ConsentStore) DeepCopyInto ¶
func (in *ConsentStore) DeepCopyInto(out *ConsentStore)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ConsentStore) DeepCopyObject ¶
func (in *ConsentStore) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ConsentStore) GetCondition ¶
func (mg *ConsentStore) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this ConsentStore.
func (*ConsentStore) GetConnectionDetailsMapping ¶
func (tr *ConsentStore) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this ConsentStore
func (*ConsentStore) GetDeletionPolicy ¶
func (mg *ConsentStore) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this ConsentStore.
func (*ConsentStore) GetID ¶
func (tr *ConsentStore) GetID() string
GetID returns ID of underlying Terraform resource of this ConsentStore
func (*ConsentStore) GetObservation ¶
func (tr *ConsentStore) GetObservation() (map[string]any, error)
GetObservation of this ConsentStore
func (*ConsentStore) GetParameters ¶
func (tr *ConsentStore) GetParameters() (map[string]any, error)
GetParameters of this ConsentStore
func (*ConsentStore) GetProviderConfigReference ¶
func (mg *ConsentStore) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this ConsentStore.
func (*ConsentStore) GetProviderReference ¶
func (mg *ConsentStore) GetProviderReference() *xpv1.Reference
GetProviderReference of this ConsentStore. Deprecated: Use GetProviderConfigReference.
func (*ConsentStore) GetPublishConnectionDetailsTo ¶
func (mg *ConsentStore) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this ConsentStore.
func (*ConsentStore) GetTerraformResourceType ¶
func (mg *ConsentStore) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this ConsentStore
func (*ConsentStore) GetTerraformSchemaVersion ¶
func (tr *ConsentStore) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*ConsentStore) GetWriteConnectionSecretToReference ¶
func (mg *ConsentStore) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this ConsentStore.
func (*ConsentStore) LateInitialize ¶
func (tr *ConsentStore) LateInitialize(attrs []byte) (bool, error)
LateInitialize this ConsentStore using its observed tfState. returns True if there are any spec changes for the resource.
func (*ConsentStore) ResolveReferences ¶
ResolveReferences of this ConsentStore.
func (*ConsentStore) SetConditions ¶
func (mg *ConsentStore) SetConditions(c ...xpv1.Condition)
SetConditions of this ConsentStore.
func (*ConsentStore) SetDeletionPolicy ¶
func (mg *ConsentStore) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this ConsentStore.
func (*ConsentStore) SetObservation ¶
func (tr *ConsentStore) SetObservation(obs map[string]any) error
SetObservation for this ConsentStore
func (*ConsentStore) SetParameters ¶
func (tr *ConsentStore) SetParameters(params map[string]any) error
SetParameters for this ConsentStore
func (*ConsentStore) SetProviderConfigReference ¶
func (mg *ConsentStore) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this ConsentStore.
func (*ConsentStore) SetProviderReference ¶
func (mg *ConsentStore) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this ConsentStore. Deprecated: Use SetProviderConfigReference.
func (*ConsentStore) SetPublishConnectionDetailsTo ¶
func (mg *ConsentStore) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this ConsentStore.
func (*ConsentStore) SetWriteConnectionSecretToReference ¶
func (mg *ConsentStore) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this ConsentStore.
type ConsentStoreList ¶
type ConsentStoreList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []ConsentStore `json:"items"` }
ConsentStoreList contains a list of ConsentStores
func (*ConsentStoreList) DeepCopy ¶
func (in *ConsentStoreList) DeepCopy() *ConsentStoreList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsentStoreList.
func (*ConsentStoreList) DeepCopyInto ¶
func (in *ConsentStoreList) DeepCopyInto(out *ConsentStoreList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*ConsentStoreList) DeepCopyObject ¶
func (in *ConsentStoreList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*ConsentStoreList) GetItems ¶
func (l *ConsentStoreList) GetItems() []resource.Managed
GetItems of this ConsentStoreList.
type ConsentStoreObservation ¶
type ConsentStoreObservation struct { // an identifier for the resource with format {{dataset}}/consentStores/{{name}} ID *string `json:"id,omitempty" tf:"id,omitempty"` }
func (*ConsentStoreObservation) DeepCopy ¶
func (in *ConsentStoreObservation) DeepCopy() *ConsentStoreObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsentStoreObservation.
func (*ConsentStoreObservation) DeepCopyInto ¶
func (in *ConsentStoreObservation) DeepCopyInto(out *ConsentStoreObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConsentStoreParameters ¶
type ConsentStoreParameters struct { // Identifies the dataset addressed by this request. Must be in the format // 'projects/{project}/locations/{location}/datasets/{dataset}' // +crossplane:generate:reference:type=github.com/upbound/provider-gcp/apis/healthcare/v1beta1.Dataset // +crossplane:generate:reference:extractor=github.com/upbound/upjet/pkg/resource.ExtractResourceID() // +kubebuilder:validation:Optional Dataset *string `json:"dataset,omitempty" tf:"dataset,omitempty"` // Reference to a Dataset in healthcare to populate dataset. // +kubebuilder:validation:Optional DatasetRef *v1.Reference `json:"datasetRef,omitempty" tf:"-"` // Selector for a Dataset in healthcare to populate dataset. // +kubebuilder:validation:Optional DatasetSelector *v1.Selector `json:"datasetSelector,omitempty" tf:"-"` // Default time to live for consents in this store. Must be at least 24 hours. Updating this field will not affect the expiration time of existing consents. // A duration in seconds with up to nine fractional digits, terminated by 's'. Example: "3.5s". // +kubebuilder:validation:Optional DefaultConsentTTL *string `json:"defaultConsentTtl,omitempty" tf:"default_consent_ttl,omitempty"` // If true, [consents.patch] [google.cloud.healthcare.v1.consent.UpdateConsent] creates the consent if it does not already exist. // +kubebuilder:validation:Optional EnableConsentCreateOnUpdate *bool `json:"enableConsentCreateOnUpdate,omitempty" tf:"enable_consent_create_on_update,omitempty"` // User-supplied key-value pairs used to organize Consent stores. // Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must // conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}_-]{0,62} // Label values are optional, must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 // bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}_-]{0,63} // No more than 64 labels can be associated with a given store. // An object containing a list of "key": value pairs. // Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }. // +kubebuilder:validation:Optional Labels map[string]*string `json:"labels,omitempty" tf:"labels,omitempty"` // The name of this ConsentStore, for example: // "consent1" // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` }
func (*ConsentStoreParameters) DeepCopy ¶
func (in *ConsentStoreParameters) DeepCopy() *ConsentStoreParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsentStoreParameters.
func (*ConsentStoreParameters) DeepCopyInto ¶
func (in *ConsentStoreParameters) DeepCopyInto(out *ConsentStoreParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConsentStoreSpec ¶
type ConsentStoreSpec struct { v1.ResourceSpec `json:",inline"` ForProvider ConsentStoreParameters `json:"forProvider"` }
ConsentStoreSpec defines the desired state of ConsentStore
func (*ConsentStoreSpec) DeepCopy ¶
func (in *ConsentStoreSpec) DeepCopy() *ConsentStoreSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsentStoreSpec.
func (*ConsentStoreSpec) DeepCopyInto ¶
func (in *ConsentStoreSpec) DeepCopyInto(out *ConsentStoreSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type ConsentStoreStatus ¶
type ConsentStoreStatus struct { v1.ResourceStatus `json:",inline"` AtProvider ConsentStoreObservation `json:"atProvider,omitempty"` }
ConsentStoreStatus defines the observed state of ConsentStore.
func (*ConsentStoreStatus) DeepCopy ¶
func (in *ConsentStoreStatus) DeepCopy() *ConsentStoreStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ConsentStoreStatus.
func (*ConsentStoreStatus) DeepCopyInto ¶
func (in *ConsentStoreStatus) DeepCopyInto(out *ConsentStoreStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type Dataset ¶
type Dataset struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec DatasetSpec `json:"spec"` Status DatasetStatus `json:"status,omitempty"` }
Dataset is the Schema for the Datasets API. A Healthcare +kubebuilder:printcolumn:name="READY",type="string",JSONPath=".status.conditions[?(@.type=='Ready')].status" +kubebuilder:printcolumn:name="SYNCED",type="string",JSONPath=".status.conditions[?(@.type=='Synced')].status" +kubebuilder:printcolumn:name="EXTERNAL-NAME",type="string",JSONPath=".metadata.annotations.crossplane\\.io/external-name" +kubebuilder:printcolumn:name="AGE",type="date",JSONPath=".metadata.creationTimestamp" +kubebuilder:subresource:status +kubebuilder:resource:scope=Cluster,categories={crossplane,managed,gcp}
func (*Dataset) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Dataset.
func (*Dataset) DeepCopyInto ¶
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*Dataset) DeepCopyObject ¶
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*Dataset) GetCondition ¶
func (mg *Dataset) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this Dataset.
func (*Dataset) GetConnectionDetailsMapping ¶
GetConnectionDetailsMapping for this Dataset
func (*Dataset) GetDeletionPolicy ¶
func (mg *Dataset) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this Dataset.
func (*Dataset) GetObservation ¶
GetObservation of this Dataset
func (*Dataset) GetParameters ¶
GetParameters of this Dataset
func (*Dataset) GetProviderConfigReference ¶
GetProviderConfigReference of this Dataset.
func (*Dataset) GetProviderReference ¶
GetProviderReference of this Dataset. Deprecated: Use GetProviderConfigReference.
func (*Dataset) GetPublishConnectionDetailsTo ¶
func (mg *Dataset) GetPublishConnectionDetailsTo() *xpv1.PublishConnectionDetailsTo
GetPublishConnectionDetailsTo of this Dataset.
func (*Dataset) GetTerraformResourceType ¶
GetTerraformResourceType returns Terraform resource type for this Dataset
func (*Dataset) GetTerraformSchemaVersion ¶
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*Dataset) GetWriteConnectionSecretToReference ¶
func (mg *Dataset) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this Dataset.
func (*Dataset) LateInitialize ¶
LateInitialize this Dataset using its observed tfState. returns True if there are any spec changes for the resource.
func (*Dataset) SetConditions ¶
SetConditions of this Dataset.
func (*Dataset) SetDeletionPolicy ¶
func (mg *Dataset) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this Dataset.
func (*Dataset) SetObservation ¶
SetObservation for this Dataset
func (*Dataset) SetParameters ¶
SetParameters for this Dataset
func (*Dataset) SetProviderConfigReference ¶
SetProviderConfigReference of this Dataset.
func (*Dataset) SetProviderReference ¶
SetProviderReference of this Dataset. Deprecated: Use SetProviderConfigReference.
func (*Dataset) SetPublishConnectionDetailsTo ¶
func (mg *Dataset) SetPublishConnectionDetailsTo(r *xpv1.PublishConnectionDetailsTo)
SetPublishConnectionDetailsTo of this Dataset.
func (*Dataset) SetWriteConnectionSecretToReference ¶
func (mg *Dataset) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this Dataset.
type DatasetList ¶
type DatasetList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []Dataset `json:"items"` }
DatasetList contains a list of Datasets
func (*DatasetList) DeepCopy ¶
func (in *DatasetList) DeepCopy() *DatasetList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatasetList.
func (*DatasetList) DeepCopyInto ¶
func (in *DatasetList) DeepCopyInto(out *DatasetList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*DatasetList) DeepCopyObject ¶
func (in *DatasetList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*DatasetList) GetItems ¶
func (l *DatasetList) GetItems() []resource.Managed
GetItems of this DatasetList.
type DatasetObservation ¶
type DatasetObservation struct { // an identifier for the resource with format projects/{{project}}/locations/{{location}}/datasets/{{name}} ID *string `json:"id,omitempty" tf:"id,omitempty"` // The fully qualified name of this dataset SelfLink *string `json:"selfLink,omitempty" tf:"self_link,omitempty"` }
func (*DatasetObservation) DeepCopy ¶
func (in *DatasetObservation) DeepCopy() *DatasetObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatasetObservation.
func (*DatasetObservation) DeepCopyInto ¶
func (in *DatasetObservation) DeepCopyInto(out *DatasetObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DatasetParameters ¶
type DatasetParameters struct { // The location for the Dataset. // +kubebuilder:validation:Required Location *string `json:"location" tf:"location,omitempty"` // The resource name for the Dataset. // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // The ID of the project in which the resource belongs. // If it is not provided, the provider project is used. // +kubebuilder:validation:Optional Project *string `json:"project,omitempty" tf:"project,omitempty"` // The default timezone used by this dataset. Must be a either a valid IANA time zone name such as // "America/New_York" or empty, which defaults to UTC. This is used for parsing times in resources // (e.g., HL7 messages) where no explicit timezone is specified. // +kubebuilder:validation:Optional TimeZone *string `json:"timeZone,omitempty" tf:"time_zone,omitempty"` }
func (*DatasetParameters) DeepCopy ¶
func (in *DatasetParameters) DeepCopy() *DatasetParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatasetParameters.
func (*DatasetParameters) DeepCopyInto ¶
func (in *DatasetParameters) DeepCopyInto(out *DatasetParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DatasetSpec ¶
type DatasetSpec struct { v1.ResourceSpec `json:",inline"` ForProvider DatasetParameters `json:"forProvider"` }
DatasetSpec defines the desired state of Dataset
func (*DatasetSpec) DeepCopy ¶
func (in *DatasetSpec) DeepCopy() *DatasetSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatasetSpec.
func (*DatasetSpec) DeepCopyInto ¶
func (in *DatasetSpec) DeepCopyInto(out *DatasetSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type DatasetStatus ¶
type DatasetStatus struct { v1.ResourceStatus `json:",inline"` AtProvider DatasetObservation `json:"atProvider,omitempty"` }
DatasetStatus defines the observed state of Dataset.
func (*DatasetStatus) DeepCopy ¶
func (in *DatasetStatus) DeepCopy() *DatasetStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new DatasetStatus.
func (*DatasetStatus) DeepCopyInto ¶
func (in *DatasetStatus) DeepCopyInto(out *DatasetStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.