Documentation ¶
Overview ¶
+kubebuilder:object:generate=true +groupName=healthcareapis.azure.jet.crossplane.io +versionName=v1alpha1
Index ¶
- Constants
- Variables
- type AuthenticationConfigurationObservation
- type AuthenticationConfigurationParameters
- type CorsConfigurationObservation
- type CorsConfigurationParameters
- type HealthcareService
- func (in *HealthcareService) DeepCopy() *HealthcareService
- func (in *HealthcareService) DeepCopyInto(out *HealthcareService)
- func (in *HealthcareService) DeepCopyObject() runtime.Object
- func (mg *HealthcareService) GetCondition(ct xpv1.ConditionType) xpv1.Condition
- func (tr *HealthcareService) GetConnectionDetailsMapping() map[string]string
- func (mg *HealthcareService) GetDeletionPolicy() xpv1.DeletionPolicy
- func (tr *HealthcareService) GetID() string
- func (tr *HealthcareService) GetObservation() (map[string]interface{}, error)
- func (tr *HealthcareService) GetParameters() (map[string]interface{}, error)
- func (mg *HealthcareService) GetProviderConfigReference() *xpv1.Reference
- func (mg *HealthcareService) GetProviderReference() *xpv1.Reference
- func (mg *HealthcareService) GetTerraformResourceType() string
- func (tr *HealthcareService) GetTerraformSchemaVersion() int
- func (mg *HealthcareService) GetWriteConnectionSecretToReference() *xpv1.SecretReference
- func (tr *HealthcareService) LateInitialize(attrs []byte) (bool, error)
- func (mg *HealthcareService) ResolveReferences(ctx context.Context, c client.Reader) error
- func (mg *HealthcareService) SetConditions(c ...xpv1.Condition)
- func (mg *HealthcareService) SetDeletionPolicy(r xpv1.DeletionPolicy)
- func (tr *HealthcareService) SetObservation(obs map[string]interface{}) error
- func (tr *HealthcareService) SetParameters(params map[string]interface{}) error
- func (mg *HealthcareService) SetProviderConfigReference(r *xpv1.Reference)
- func (mg *HealthcareService) SetProviderReference(r *xpv1.Reference)
- func (mg *HealthcareService) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
- type HealthcareServiceList
- type HealthcareServiceObservation
- type HealthcareServiceParameters
- type HealthcareServiceSpec
- type HealthcareServiceStatus
Constants ¶
const ( CRDGroup = "healthcareapis.azure.jet.crossplane.io" 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 ( HealthcareService_Kind = "HealthcareService" HealthcareService_GroupKind = schema.GroupKind{Group: CRDGroup, Kind: HealthcareService_Kind}.String() HealthcareService_KindAPIVersion = HealthcareService_Kind + "." + CRDGroupVersion.String() HealthcareService_GroupVersionKind = CRDGroupVersion.WithKind(HealthcareService_Kind) )
Repository type metadata.
Functions ¶
This section is empty.
Types ¶
type AuthenticationConfigurationObservation ¶
type AuthenticationConfigurationObservation struct { }
func (*AuthenticationConfigurationObservation) DeepCopy ¶
func (in *AuthenticationConfigurationObservation) DeepCopy() *AuthenticationConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthenticationConfigurationObservation.
func (*AuthenticationConfigurationObservation) DeepCopyInto ¶
func (in *AuthenticationConfigurationObservation) DeepCopyInto(out *AuthenticationConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type AuthenticationConfigurationParameters ¶
type AuthenticationConfigurationParameters struct { // +kubebuilder:validation:Optional Audience *string `json:"audience,omitempty" tf:"audience,omitempty"` // +kubebuilder:validation:Optional Authority *string `json:"authority,omitempty" tf:"authority,omitempty"` // +kubebuilder:validation:Optional SmartProxyEnabled *bool `json:"smartProxyEnabled,omitempty" tf:"smart_proxy_enabled,omitempty"` }
func (*AuthenticationConfigurationParameters) DeepCopy ¶
func (in *AuthenticationConfigurationParameters) DeepCopy() *AuthenticationConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new AuthenticationConfigurationParameters.
func (*AuthenticationConfigurationParameters) DeepCopyInto ¶
func (in *AuthenticationConfigurationParameters) DeepCopyInto(out *AuthenticationConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CorsConfigurationObservation ¶
type CorsConfigurationObservation struct { }
func (*CorsConfigurationObservation) DeepCopy ¶
func (in *CorsConfigurationObservation) DeepCopy() *CorsConfigurationObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CorsConfigurationObservation.
func (*CorsConfigurationObservation) DeepCopyInto ¶
func (in *CorsConfigurationObservation) DeepCopyInto(out *CorsConfigurationObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type CorsConfigurationParameters ¶
type CorsConfigurationParameters struct { // +kubebuilder:validation:Optional AllowCredentials *bool `json:"allowCredentials,omitempty" tf:"allow_credentials,omitempty"` // +kubebuilder:validation:Optional AllowedHeaders []*string `json:"allowedHeaders,omitempty" tf:"allowed_headers,omitempty"` // +kubebuilder:validation:Optional AllowedMethods []*string `json:"allowedMethods,omitempty" tf:"allowed_methods,omitempty"` // +kubebuilder:validation:Optional AllowedOrigins []*string `json:"allowedOrigins,omitempty" tf:"allowed_origins,omitempty"` // +kubebuilder:validation:Optional MaxAgeInSeconds *int64 `json:"maxAgeInSeconds,omitempty" tf:"max_age_in_seconds,omitempty"` }
func (*CorsConfigurationParameters) DeepCopy ¶
func (in *CorsConfigurationParameters) DeepCopy() *CorsConfigurationParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new CorsConfigurationParameters.
func (*CorsConfigurationParameters) DeepCopyInto ¶
func (in *CorsConfigurationParameters) DeepCopyInto(out *CorsConfigurationParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HealthcareService ¶
type HealthcareService struct { metav1.TypeMeta `json:",inline"` metav1.ObjectMeta `json:"metadata,omitempty"` Spec HealthcareServiceSpec `json:"spec"` Status HealthcareServiceStatus `json:"status,omitempty"` }
HealthcareService is the Schema for the HealthcareServices API +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,azurejet}
func (*HealthcareService) DeepCopy ¶
func (in *HealthcareService) DeepCopy() *HealthcareService
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthcareService.
func (*HealthcareService) DeepCopyInto ¶
func (in *HealthcareService) DeepCopyInto(out *HealthcareService)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*HealthcareService) DeepCopyObject ¶
func (in *HealthcareService) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*HealthcareService) GetCondition ¶
func (mg *HealthcareService) GetCondition(ct xpv1.ConditionType) xpv1.Condition
GetCondition of this HealthcareService.
func (*HealthcareService) GetConnectionDetailsMapping ¶
func (tr *HealthcareService) GetConnectionDetailsMapping() map[string]string
GetConnectionDetailsMapping for this HealthcareService
func (*HealthcareService) GetDeletionPolicy ¶
func (mg *HealthcareService) GetDeletionPolicy() xpv1.DeletionPolicy
GetDeletionPolicy of this HealthcareService.
func (*HealthcareService) GetID ¶
func (tr *HealthcareService) GetID() string
GetID returns ID of underlying Terraform resource of this HealthcareService
func (*HealthcareService) GetObservation ¶
func (tr *HealthcareService) GetObservation() (map[string]interface{}, error)
GetObservation of this HealthcareService
func (*HealthcareService) GetParameters ¶
func (tr *HealthcareService) GetParameters() (map[string]interface{}, error)
GetParameters of this HealthcareService
func (*HealthcareService) GetProviderConfigReference ¶
func (mg *HealthcareService) GetProviderConfigReference() *xpv1.Reference
GetProviderConfigReference of this HealthcareService.
func (*HealthcareService) GetProviderReference ¶
func (mg *HealthcareService) GetProviderReference() *xpv1.Reference
GetProviderReference of this HealthcareService. Deprecated: Use GetProviderConfigReference.
func (*HealthcareService) GetTerraformResourceType ¶
func (mg *HealthcareService) GetTerraformResourceType() string
GetTerraformResourceType returns Terraform resource type for this HealthcareService
func (*HealthcareService) GetTerraformSchemaVersion ¶
func (tr *HealthcareService) GetTerraformSchemaVersion() int
GetTerraformSchemaVersion returns the associated Terraform schema version
func (*HealthcareService) GetWriteConnectionSecretToReference ¶
func (mg *HealthcareService) GetWriteConnectionSecretToReference() *xpv1.SecretReference
GetWriteConnectionSecretToReference of this HealthcareService.
func (*HealthcareService) LateInitialize ¶
func (tr *HealthcareService) LateInitialize(attrs []byte) (bool, error)
LateInitialize this HealthcareService using its observed tfState. returns True if there are any spec changes for the resource.
func (*HealthcareService) ResolveReferences ¶
ResolveReferences of this HealthcareService.
func (*HealthcareService) SetConditions ¶
func (mg *HealthcareService) SetConditions(c ...xpv1.Condition)
SetConditions of this HealthcareService.
func (*HealthcareService) SetDeletionPolicy ¶
func (mg *HealthcareService) SetDeletionPolicy(r xpv1.DeletionPolicy)
SetDeletionPolicy of this HealthcareService.
func (*HealthcareService) SetObservation ¶
func (tr *HealthcareService) SetObservation(obs map[string]interface{}) error
SetObservation for this HealthcareService
func (*HealthcareService) SetParameters ¶
func (tr *HealthcareService) SetParameters(params map[string]interface{}) error
SetParameters for this HealthcareService
func (*HealthcareService) SetProviderConfigReference ¶
func (mg *HealthcareService) SetProviderConfigReference(r *xpv1.Reference)
SetProviderConfigReference of this HealthcareService.
func (*HealthcareService) SetProviderReference ¶
func (mg *HealthcareService) SetProviderReference(r *xpv1.Reference)
SetProviderReference of this HealthcareService. Deprecated: Use SetProviderConfigReference.
func (*HealthcareService) SetWriteConnectionSecretToReference ¶
func (mg *HealthcareService) SetWriteConnectionSecretToReference(r *xpv1.SecretReference)
SetWriteConnectionSecretToReference of this HealthcareService.
type HealthcareServiceList ¶
type HealthcareServiceList struct { metav1.TypeMeta `json:",inline"` metav1.ListMeta `json:"metadata,omitempty"` Items []HealthcareService `json:"items"` }
HealthcareServiceList contains a list of HealthcareServices
func (*HealthcareServiceList) DeepCopy ¶
func (in *HealthcareServiceList) DeepCopy() *HealthcareServiceList
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthcareServiceList.
func (*HealthcareServiceList) DeepCopyInto ¶
func (in *HealthcareServiceList) DeepCopyInto(out *HealthcareServiceList)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
func (*HealthcareServiceList) DeepCopyObject ¶
func (in *HealthcareServiceList) DeepCopyObject() runtime.Object
DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
func (*HealthcareServiceList) GetItems ¶
func (l *HealthcareServiceList) GetItems() []resource.Managed
GetItems of this HealthcareServiceList.
type HealthcareServiceObservation ¶
type HealthcareServiceObservation struct {
ID *string `json:"id,omitempty" tf:"id,omitempty"`
}
func (*HealthcareServiceObservation) DeepCopy ¶
func (in *HealthcareServiceObservation) DeepCopy() *HealthcareServiceObservation
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthcareServiceObservation.
func (*HealthcareServiceObservation) DeepCopyInto ¶
func (in *HealthcareServiceObservation) DeepCopyInto(out *HealthcareServiceObservation)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HealthcareServiceParameters ¶
type HealthcareServiceParameters struct { // +kubebuilder:validation:Optional AccessPolicyObjectIds []*string `json:"accessPolicyObjectIds,omitempty" tf:"access_policy_object_ids,omitempty"` // +kubebuilder:validation:Optional AuthenticationConfiguration []AuthenticationConfigurationParameters `json:"authenticationConfiguration,omitempty" tf:"authentication_configuration,omitempty"` // +kubebuilder:validation:Optional CorsConfiguration []CorsConfigurationParameters `json:"corsConfiguration,omitempty" tf:"cors_configuration,omitempty"` // +kubebuilder:validation:Optional CosmosDBKeyVaultKeyVersionlessID *string `json:"cosmosdbKeyVaultKeyVersionlessId,omitempty" tf:"cosmosdb_key_vault_key_versionless_id,omitempty"` // +kubebuilder:validation:Optional CosmosDBThroughput *int64 `json:"cosmosdbThroughput,omitempty" tf:"cosmosdb_throughput,omitempty"` // +kubebuilder:validation:Optional Kind *string `json:"kind,omitempty" tf:"kind,omitempty"` // +kubebuilder:validation:Required Location *string `json:"location" tf:"location,omitempty"` // +kubebuilder:validation:Required Name *string `json:"name" tf:"name,omitempty"` // +kubebuilder:validation:Optional PublicNetworkAccessEnabled *bool `json:"publicNetworkAccessEnabled,omitempty" tf:"public_network_access_enabled,omitempty"` // +crossplane:generate:reference:type=github.com/crossplane-contrib/provider-jet-azure/apis/azure/v1alpha2.ResourceGroup // +kubebuilder:validation:Optional ResourceGroupName *string `json:"resourceGroupName,omitempty" tf:"resource_group_name,omitempty"` // +kubebuilder:validation:Optional ResourceGroupNameRef *v1.Reference `json:"resourceGroupNameRef,omitempty" tf:"-"` // +kubebuilder:validation:Optional ResourceGroupNameSelector *v1.Selector `json:"resourceGroupNameSelector,omitempty" tf:"-"` // +kubebuilder:validation:Optional Tags map[string]*string `json:"tags,omitempty" tf:"tags,omitempty"` }
func (*HealthcareServiceParameters) DeepCopy ¶
func (in *HealthcareServiceParameters) DeepCopy() *HealthcareServiceParameters
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthcareServiceParameters.
func (*HealthcareServiceParameters) DeepCopyInto ¶
func (in *HealthcareServiceParameters) DeepCopyInto(out *HealthcareServiceParameters)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HealthcareServiceSpec ¶
type HealthcareServiceSpec struct { v1.ResourceSpec `json:",inline"` ForProvider HealthcareServiceParameters `json:"forProvider"` }
HealthcareServiceSpec defines the desired state of HealthcareService
func (*HealthcareServiceSpec) DeepCopy ¶
func (in *HealthcareServiceSpec) DeepCopy() *HealthcareServiceSpec
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthcareServiceSpec.
func (*HealthcareServiceSpec) DeepCopyInto ¶
func (in *HealthcareServiceSpec) DeepCopyInto(out *HealthcareServiceSpec)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
type HealthcareServiceStatus ¶
type HealthcareServiceStatus struct { v1.ResourceStatus `json:",inline"` AtProvider HealthcareServiceObservation `json:"atProvider,omitempty"` }
HealthcareServiceStatus defines the observed state of HealthcareService.
func (*HealthcareServiceStatus) DeepCopy ¶
func (in *HealthcareServiceStatus) DeepCopy() *HealthcareServiceStatus
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new HealthcareServiceStatus.
func (*HealthcareServiceStatus) DeepCopyInto ¶
func (in *HealthcareServiceStatus) DeepCopyInto(out *HealthcareServiceStatus)
DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.