crd

package
v0.0.0-...-a2a49da Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 2, 2023 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AcraccesstokensGeneratorsCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "acraccesstokens.generators.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "generators.external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"acraccesstoken"},
			Kind:       "ACRAccessToken",
			ListKind:   "ACRAccessTokenList",
			Plural:     "acraccesstokens",
			ShortNames: []string{"acraccesstoken"},
			Singular:   "acraccesstoken",
		},
		Scope: apiextensionsv1.ResourceScope("Namespaced"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				Name: "v1alpha1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "ACRAccessToken returns a Azure Container Registry token that can be used for pushing/pulling images. Note: by default it will return an ACR Refresh Token with full access (depending on the identity). This can be scoped down to the repository level using .spec.scope. In case scope is defined it will return an ACR Access Token. \n See docs: https://github.com/Azure/acr/blob/main/docs/AAD-OAuth.md",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "ACRAccessTokenSpec defines how to generate the access token e.g. how to authenticate and which registry to use. see: https://github.com/Azure/acr/blob/main/docs/AAD-OAuth.md#overview",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"auth": {
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"managedIdentity": {
												Description: "ManagedIdentity uses Azure Managed Identity to authenticate with Azure.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"identityId": {
														Description: "If multiple Managed Identity is assigned to the pod, you can select the one to be used",
														Type:        "string",
													},
												},
												Type: "object",
											},
											"servicePrincipal": {
												Description: "ServicePrincipal uses Azure Service Principal credentials to authenticate with Azure.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"secretRef": {
														Description: "Configuration used to authenticate with Azure using static credentials stored in a Kind=Secret.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"clientId": {
																Description: "The Azure clientId of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
															"clientSecret": {
																Description: "The Azure ClientSecret of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"secretRef"},
												Type:     "object",
											},
											"workloadIdentity": {
												Description: "WorkloadIdentity uses Azure Workload Identity to authenticate with Azure.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"serviceAccountRef": {
														Description: "ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"audiences": {
																Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																Type:        "array",
															},
															"name": {
																Description: "The name of the ServiceAccount resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Required: []string{"name"},
														Type:     "object",
													},
												},
												Type: "object",
											},
										},
										Type: "object",
									},
									"environmentType": {
										Default: &apiextensionsv1.JSON{
											Raw: []uint8{
												uint8(0x22),
												uint8(0x50),
												uint8(0x75),
												uint8(0x62),
												uint8(0x6c),
												uint8(0x69),
												uint8(0x63),
												uint8(0x43),
												uint8(0x6c),
												uint8(0x6f),
												uint8(0x75),
												uint8(0x64),
												uint8(0x22),
											},
										},
										Description: "EnvironmentType specifies the Azure cloud environment endpoints to use for connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint. The following endpoints are available, also see here: https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152 PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud",
										Enum: []apiextensionsv1.JSON{
											{
												Raw: []uint8{
													uint8(0x22),
													uint8(0x50),
													uint8(0x75),
													uint8(0x62),
													uint8(0x6c),
													uint8(0x69),
													uint8(0x63),
													uint8(0x43),
													uint8(0x6c),
													uint8(0x6f),
													uint8(0x75),
													uint8(0x64),
													uint8(0x22),
												},
											},
											{
												Raw: []uint8{
													uint8(0x22),
													uint8(0x55),
													uint8(0x53),
													uint8(0x47),
													uint8(0x6f),
													uint8(0x76),
													uint8(0x65),
													uint8(0x72),
													uint8(0x6e),
													uint8(0x6d),
													uint8(0x65),
													uint8(0x6e),
													uint8(0x74),
													uint8(0x43),
													uint8(0x6c),
													uint8(0x6f),
													uint8(0x75),
													uint8(0x64),
													uint8(0x22),
												},
											},
											{
												Raw: []uint8{
													uint8(0x22),
													uint8(0x43),
													uint8(0x68),
													uint8(0x69),
													uint8(0x6e),
													uint8(0x61),
													uint8(0x43),
													uint8(0x6c),
													uint8(0x6f),
													uint8(0x75),
													uint8(0x64),
													uint8(0x22),
												},
											},
											{
												Raw: []uint8{
													uint8(0x22),
													uint8(0x47),
													uint8(0x65),
													uint8(0x72),
													uint8(0x6d),
													uint8(0x61),
													uint8(0x6e),
													uint8(0x43),
													uint8(0x6c),
													uint8(0x6f),
													uint8(0x75),
													uint8(0x64),
													uint8(0x22),
												},
											},
										},
										Type: "string",
									},
									"registry": {
										Description: "the domain name of the ACR registry e.g. foobarexample.azurecr.io",
										Type:        "string",
									},
									"scope": {
										Description: "Define the scope for the access token, e.g. pull/push access for a repository. if not provided it will return a refresh token that has full scope. Note: you need to pin it down to the repository level, there is no wildcard available. \n examples: repository:my-repository:pull,push repository:my-repository:pull \n see docs for details: https://docs.docker.com/registry/spec/auth/scope/",
										Type:        "string",
									},
									"tenantId": {
										Description: "TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.",
										Type:        "string",
									},
								},
								Required: []string{"auth", "registry"},
								Type:     "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}
View Source
var ClusterexternalsecretsCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "clusterexternalsecrets.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"externalsecrets"},
			Kind:       "ClusterExternalSecret",
			ListKind:   "ClusterExternalSecretList",
			Plural:     "clusterexternalsecrets",
			ShortNames: []string{"ces"},
			Singular:   "clusterexternalsecret",
		},
		Scope: apiextensionsv1.ResourceScope("Cluster"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				AdditionalPrinterColumns: []apiextensionsv1.CustomResourceColumnDefinition{
					{
						JSONPath: ".spec.secretStoreRef.name",
						Name:     "Store",
						Type:     "string",
					}, {
						JSONPath: ".spec.refreshInterval",
						Name:     "Refresh Interval",
						Type:     "string",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].reason",
						Name:     "Status",
						Type:     "string",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].status",
						Name:     "Ready",
						Type:     "string",
					},
				},
				Name: "v1beta1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "ClusterExternalSecret is the Schema for the clusterexternalsecrets API.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "ClusterExternalSecretSpec defines the desired state of ClusterExternalSecret.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"externalSecretName": {
										Description: "The name of the external secrets to be created defaults to the name of the ClusterExternalSecret",
										Type:        "string",
									},
									"externalSecretSpec": {
										Description: "The spec for the ExternalSecrets to be created",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"data": {
												Description: "Data defines the connection between the Kubernetes Secret keys and the Provider data",
												Items: &apiextensionsv1.JSONSchemaPropsOrArray{
													Schema: &apiextensionsv1.JSONSchemaProps{
														Description: "ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"remoteRef": {
																Description: "RemoteRef points to the remote secret and defines which secret (version/property/..) to fetch.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"conversionStrategy": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x44),
																				uint8(0x65),
																				uint8(0x66),
																				uint8(0x61),
																				uint8(0x75),
																				uint8(0x6c),
																				uint8(0x74),
																				uint8(0x22),
																			},
																		},
																		Description: "Used to define a conversion Strategy",
																		Type:        "string",
																	},
																	"decodingStrategy": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x4e),
																				uint8(0x6f),
																				uint8(0x6e),
																				uint8(0x65),
																				uint8(0x22),
																			},
																		},
																		Description: "Used to define a decoding Strategy",
																		Type:        "string",
																	},
																	"key": {
																		Description: "Key is the key used in the Provider, mandatory",
																		Type:        "string",
																	},
																	"metadataPolicy": {
																		Description: "Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None",
																		Type:        "string",
																	},
																	"property": {
																		Description: "Used to select a specific property of the Provider value (if a map), if supported",
																		Type:        "string",
																	},
																	"version": {
																		Description: "Used to select a specific version of the Provider value, if supported",
																		Type:        "string",
																	},
																},
																Required: []string{"key"},
																Type:     "object",
															},
															"secretKey": {
																Description: "SecretKey defines the key in which the controller stores the value. This is the key in the Kind=Secret",
																Type:        "string",
															},
															"sourceRef": {
																Description:   "SourceRef allows you to override the source from which the value will pulled from.",
																MaxProperties: P(int64(1)),
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"generatorRef": {
																		Description: "GeneratorRef points to a generator custom resource in",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"apiVersion": {
																				Default: &apiextensionsv1.JSON{
																					Raw: []uint8{
																						uint8(0x22),
																						uint8(0x67),
																						uint8(0x65),
																						uint8(0x6e),
																						uint8(0x65),
																						uint8(0x72),
																						uint8(0x61),
																						uint8(0x74),
																						uint8(0x6f),
																						uint8(0x72),
																						uint8(0x73),
																						uint8(0x2e),
																						uint8(0x65),
																						uint8(0x78),
																						uint8(0x74),
																						uint8(0x65),
																						uint8(0x72),
																						uint8(0x6e),
																						uint8(0x61),
																						uint8(0x6c),
																						uint8(0x2d),
																						uint8(0x73),
																						uint8(0x65),
																						uint8(0x63),
																						uint8(0x72),
																						uint8(0x65),
																						uint8(0x74),
																						uint8(0x73),
																						uint8(0x2e),
																						uint8(0x69),
																						uint8(0x6f),
																						uint8(0x2f),
																						uint8(0x76),
																						uint8(0x31),
																						uint8(0x61),
																						uint8(0x6c),
																						uint8(0x70),
																						uint8(0x68),
																						uint8(0x61),
																						uint8(0x31),
																						uint8(0x22),
																					},
																				},
																				Description: "Specify the apiVersion of the generator resource",
																				Type:        "string",
																			},
																			"kind": {
																				Description: "Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "Specify the name of the generator resource",
																				Type:        "string",
																			},
																		},
																		Required: []string{
																			"kind",
																			"name",
																		},
																		Type: "object",
																	},
																	"storeRef": {
																		Description: "SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"kind": {
																				Description: "Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`",
																				Type:        "string",
																			},
																			"name": {
																				Description: "Name of the SecretStore resource",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Type: "object",
															},
														},
														Required: []string{
															"remoteRef",
															"secretKey",
														},
														Type: "object",
													},
												},
												Type: "array",
											},
											"dataFrom": {
												Description: "DataFrom is used to fetch all properties from a specific Provider data If multiple entries are specified, the Secret keys are merged in the specified order",
												Items: &apiextensionsv1.JSONSchemaPropsOrArray{
													Schema: &apiextensionsv1.JSONSchemaProps{
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"extract": {
																Description: "Used to extract multiple key/value pairs from one secret Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"conversionStrategy": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x44),
																				uint8(0x65),
																				uint8(0x66),
																				uint8(0x61),
																				uint8(0x75),
																				uint8(0x6c),
																				uint8(0x74),
																				uint8(0x22),
																			},
																		},
																		Description: "Used to define a conversion Strategy",
																		Type:        "string",
																	},
																	"decodingStrategy": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x4e),
																				uint8(0x6f),
																				uint8(0x6e),
																				uint8(0x65),
																				uint8(0x22),
																			},
																		},
																		Description: "Used to define a decoding Strategy",
																		Type:        "string",
																	},
																	"key": {
																		Description: "Key is the key used in the Provider, mandatory",
																		Type:        "string",
																	},
																	"metadataPolicy": {
																		Description: "Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None",
																		Type:        "string",
																	},
																	"property": {
																		Description: "Used to select a specific property of the Provider value (if a map), if supported",
																		Type:        "string",
																	},
																	"version": {
																		Description: "Used to select a specific version of the Provider value, if supported",
																		Type:        "string",
																	},
																},
																Required: []string{"key"},
																Type:     "object",
															},
															"find": {
																Description: "Used to find secrets based on tags or regular expressions Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"conversionStrategy": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x44),
																				uint8(0x65),
																				uint8(0x66),
																				uint8(0x61),
																				uint8(0x75),
																				uint8(0x6c),
																				uint8(0x74),
																				uint8(0x22),
																			},
																		},
																		Description: "Used to define a conversion Strategy",
																		Type:        "string",
																	},
																	"decodingStrategy": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x4e),
																				uint8(0x6f),
																				uint8(0x6e),
																				uint8(0x65),
																				uint8(0x22),
																			},
																		},
																		Description: "Used to define a decoding Strategy",
																		Type:        "string",
																	},
																	"name": {
																		Description: "Finds secrets based on the name.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"regexp": {
																				Description: "Finds secrets base",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"path": {
																		Description: "A root path to start the find operations.",
																		Type:        "string",
																	},
																	"tags": {
																		AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																			Allows: true,
																			Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																		},
																		Description: "Find secrets based on tags.",
																		Type:        "object",
																	},
																},
																Type: "object",
															},
															"rewrite": {
																Description: "Used to rewrite secret Keys after getting them from the secret Provider Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)",
																Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																	Schema: &apiextensionsv1.JSONSchemaProps{
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"regexp": {
																				Description: "Used to rewrite with regular expressions. The resulting key will be the output of a regexp.ReplaceAll operation.",
																				Properties: map[string]apiextensionsv1.JSONSchemaProps{
																					"source": {
																						Description: "Used to define the regular expression of a re.Compiler.",
																						Type:        "string",
																					},
																					"target": {
																						Description: "Used to define the target pattern of a ReplaceAll operation.",
																						Type:        "string",
																					},
																				},
																				Required: []string{
																					"source",
																					"target",
																				},
																				Type: "object",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "array",
															},
															"sourceRef": {
																Description:   "SourceRef points to a store or generator which contains secret values ready to use. Use this in combination with Extract or Find pull values out of a specific SecretStore. When sourceRef points to a generator Extract or Find is not supported. The generator returns a static map of values",
																MaxProperties: P(int64(1)),
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"generatorRef": {
																		Description: "GeneratorRef points to a generator custom resource in",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"apiVersion": {
																				Default: &apiextensionsv1.JSON{
																					Raw: []uint8{
																						uint8(0x22),
																						uint8(0x67),
																						uint8(0x65),
																						uint8(0x6e),
																						uint8(0x65),
																						uint8(0x72),
																						uint8(0x61),
																						uint8(0x74),
																						uint8(0x6f),
																						uint8(0x72),
																						uint8(0x73),
																						uint8(0x2e),
																						uint8(0x65),
																						uint8(0x78),
																						uint8(0x74),
																						uint8(0x65),
																						uint8(0x72),
																						uint8(0x6e),
																						uint8(0x61),
																						uint8(0x6c),
																						uint8(0x2d),
																						uint8(0x73),
																						uint8(0x65),
																						uint8(0x63),
																						uint8(0x72),
																						uint8(0x65),
																						uint8(0x74),
																						uint8(0x73),
																						uint8(0x2e),
																						uint8(0x69),
																						uint8(0x6f),
																						uint8(0x2f),
																						uint8(0x76),
																						uint8(0x31),
																						uint8(0x61),
																						uint8(0x6c),
																						uint8(0x70),
																						uint8(0x68),
																						uint8(0x61),
																						uint8(0x31),
																						uint8(0x22),
																					},
																				},
																				Description: "Specify the apiVersion of the generator resource",
																				Type:        "string",
																			},
																			"kind": {
																				Description: "Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "Specify the name of the generator resource",
																				Type:        "string",
																			},
																		},
																		Required: []string{
																			"kind",
																			"name",
																		},
																		Type: "object",
																	},
																	"storeRef": {
																		Description: "SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"kind": {
																				Description: "Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`",
																				Type:        "string",
																			},
																			"name": {
																				Description: "Name of the SecretStore resource",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Type: "array",
											},
											"refreshInterval": {
												Default: &apiextensionsv1.JSON{
													Raw: []uint8{
														uint8(0x22),
														uint8(0x31),
														uint8(0x68),
														uint8(0x22),
													},
												},
												Description: "RefreshInterval is the amount of time before the values are read again from the SecretStore provider Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\" May be set to zero to fetch and create it once. Defaults to 1h.",
												Type:        "string",
											},
											"secretStoreRef": {
												Description: "SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"kind": {
														Description: "Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`",
														Type:        "string",
													},
													"name": {
														Description: "Name of the SecretStore resource",
														Type:        "string",
													},
												},
												Required: []string{"name"},
												Type:     "object",
											},
											"target": {
												Default: &apiextensionsv1.JSON{
													Raw: []uint8{
														uint8(0x7b),
														uint8(0x22),
														uint8(0x63),
														uint8(0x72),
														uint8(0x65),
														uint8(0x61),
														uint8(0x74),
														uint8(0x69),
														uint8(0x6f),
														uint8(0x6e),
														uint8(0x50),
														uint8(0x6f),
														uint8(0x6c),
														uint8(0x69),
														uint8(0x63),
														uint8(0x79),
														uint8(0x22),
														uint8(0x3a),
														uint8(0x22),
														uint8(0x4f),
														uint8(0x77),
														uint8(0x6e),
														uint8(0x65),
														uint8(0x72),
														uint8(0x22),
														uint8(0x2c),
														uint8(0x22),
														uint8(0x64),
														uint8(0x65),
														uint8(0x6c),
														uint8(0x65),
														uint8(0x74),
														uint8(0x69),
														uint8(0x6f),
														uint8(0x6e),
														uint8(0x50),
														uint8(0x6f),
														uint8(0x6c),
														uint8(0x69),
														uint8(0x63),
														uint8(0x79),
														uint8(0x22),
														uint8(0x3a),
														uint8(0x22),
														uint8(0x52),
														uint8(0x65),
														uint8(0x74),
														uint8(0x61),
														uint8(0x69),
														uint8(0x6e),
														uint8(0x22),
														uint8(0x7d),
													},
												},
												Description: "ExternalSecretTarget defines the Kubernetes Secret to be created There can be only one target per ExternalSecret.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"creationPolicy": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x4f),
																uint8(0x77),
																uint8(0x6e),
																uint8(0x65),
																uint8(0x72),
																uint8(0x22),
															},
														},
														Description: "CreationPolicy defines rules on how to create the resulting Secret Defaults to 'Owner'",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x4f),
																	uint8(0x77),
																	uint8(0x6e),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x4f),
																	uint8(0x72),
																	uint8(0x70),
																	uint8(0x68),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x4d),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x4e),
																	uint8(0x6f),
																	uint8(0x6e),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"deletionPolicy": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x52),
																uint8(0x65),
																uint8(0x74),
																uint8(0x61),
																uint8(0x69),
																uint8(0x6e),
																uint8(0x22),
															},
														},
														Description: "DeletionPolicy defines rules on how to delete the resulting Secret Defaults to 'Retain'",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x44),
																	uint8(0x65),
																	uint8(0x6c),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x4d),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x52),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x61),
																	uint8(0x69),
																	uint8(0x6e),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"immutable": {
														Description: "Immutable defines if the final secret will be immutable",
														Type:        "boolean",
													},
													"name": {
														Description: "Name defines the name of the Secret resource to be managed This field is immutable Defaults to the .metadata.name of the ExternalSecret resource",
														Type:        "string",
													},
													"template": {
														Description: "Template defines a blueprint for the created Secret resource.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"data": {
																AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																	Allows: true,
																	Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																},
																Type: "object",
															},
															"engineVersion": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x76),
																		uint8(0x32),
																		uint8(0x22),
																	},
																},
																Type: "string",
															},
															"metadata": {
																Description: "ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"annotations": {
																		AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																			Allows: true,
																			Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																		},
																		Type: "object",
																	},
																	"labels": {
																		AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																			Allows: true,
																			Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"templateFrom": {
																Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																	Schema: &apiextensionsv1.JSONSchemaProps{
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"configMap": {
																				Properties: map[string]apiextensionsv1.JSONSchemaProps{
																					"items": {
																						Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																							Schema: &apiextensionsv1.JSONSchemaProps{
																								Properties: map[string]apiextensionsv1.JSONSchemaProps{
																									"key": {Type: "string"},
																									"templateAs": {
																										Default: &apiextensionsv1.JSON{
																											Raw: []uint8{
																												uint8(0x22),
																												uint8(0x56),
																												uint8(0x61),
																												uint8(0x6c),
																												uint8(0x75),
																												uint8(0x65),
																												uint8(0x73),
																												uint8(0x22),
																											},
																										},
																										Type: "string",
																									},
																								},
																								Required: []string{"key"},
																								Type:     "object",
																							},
																						},
																						Type: "array",
																					},
																					"name": {Type: "string"},
																				},
																				Required: []string{
																					"items",
																					"name",
																				},
																				Type: "object",
																			},
																			"literal": {Type: "string"},
																			"secret": {
																				Properties: map[string]apiextensionsv1.JSONSchemaProps{
																					"items": {
																						Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																							Schema: &apiextensionsv1.JSONSchemaProps{
																								Properties: map[string]apiextensionsv1.JSONSchemaProps{
																									"key": {Type: "string"},
																									"templateAs": {
																										Default: &apiextensionsv1.JSON{
																											Raw: []uint8{
																												uint8(0x22),
																												uint8(0x56),
																												uint8(0x61),
																												uint8(0x6c),
																												uint8(0x75),
																												uint8(0x65),
																												uint8(0x73),
																												uint8(0x22),
																											},
																										},
																										Type: "string",
																									},
																								},
																								Required: []string{"key"},
																								Type:     "object",
																							},
																						},
																						Type: "array",
																					},
																					"name": {Type: "string"},
																				},
																				Required: []string{
																					"items",
																					"name",
																				},
																				Type: "object",
																			},
																			"target": {
																				Default: &apiextensionsv1.JSON{
																					Raw: []uint8{
																						uint8(0x22),
																						uint8(0x44),
																						uint8(0x61),
																						uint8(0x74),
																						uint8(0x61),
																						uint8(0x22),
																					},
																				},
																				Type: "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "array",
															},
															"type": {Type: "string"},
														},
														Type: "object",
													},
												},
												Type: "object",
											},
										},
										Type: "object",
									},
									"namespaceSelector": {
										Description: "The labels to select by to find the Namespaces to create the ExternalSecrets in.",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"matchExpressions": {
												Description: "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
												Items: &apiextensionsv1.JSONSchemaPropsOrArray{
													Schema: &apiextensionsv1.JSONSchemaProps{
														Description: "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "key is the label key that the selector applies to.",
																Type:        "string",
															},
															"operator": {
																Description: "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
																Type:        "string",
															},
															"values": {
																Description: "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
																Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																Type:        "array",
															},
														},
														Required: []string{
															"key",
															"operator",
														},
														Type: "object",
													},
												},
												Type: "array",
											},
											"matchLabels": {
												AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
													Allows: true,
													Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
												},
												Description: "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
												Type:        "object",
											},
										},
										Type:     "object",
										XMapType: P("atomic"),
									},
									"refreshTime": {
										Description: "The time in which the controller should reconcile it's objects and recheck namespaces for labels.",
										Type:        "string",
									},
								},
								Required: []string{
									"externalSecretSpec",
									"namespaceSelector",
								},
								Type: "object",
							},
							"status": {
								Description: "ClusterExternalSecretStatus defines the observed state of ClusterExternalSecret.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"conditions": {
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"message": {Type: "string"},
													"status":  {Type: "string"},
													"type":    {Type: "string"},
												},
												Required: []string{
													"status",
													"type",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"failedNamespaces": {
										Description: "Failed namespaces are the namespaces that failed to apply an ExternalSecret",
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Description: "ClusterExternalSecretNamespaceFailure represents a failed namespace deployment and it's reason.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"namespace": {
														Description: "Namespace is the namespace that failed when trying to apply an ExternalSecret",
														Type:        "string",
													},
													"reason": {
														Description: "Reason is why the ExternalSecret failed to apply to the namespace",
														Type:        "string",
													},
												},
												Required: []string{"namespace"},
												Type:     "object",
											},
										},
										Type: "array",
									},
									"provisionedNamespaces": {
										Description: "ProvisionedNamespaces are the namespaces where the ClusterExternalSecret has secrets",
										Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
										Type:        "array",
									},
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}
View Source
var ClustersecretstoresCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "clustersecretstores.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"externalsecrets"},
			Kind:       "ClusterSecretStore",
			ListKind:   "ClusterSecretStoreList",
			Plural:     "clustersecretstores",
			ShortNames: []string{"css"},
			Singular:   "clustersecretstore",
		},
		Scope: apiextensionsv1.ResourceScope("Cluster"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				AdditionalPrinterColumns: []apiextensionsv1.CustomResourceColumnDefinition{
					{
						JSONPath: ".metadata.creationTimestamp",
						Name:     "AGE",
						Type:     "date",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].reason",
						Name:     "Status",
						Type:     "string",
					},
				},
				Deprecated: true,
				Name:       "v1alpha1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "SecretStoreSpec defines the desired state of SecretStore.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"controller": {
										Description: "Used to select the correct KES controller (think: ingress.ingressClassName) The KES controller is instantiated with a specific controller name and filters ES based on this property",
										Type:        "string",
									},
									"provider": {
										Description:   "Used to configure the provider. Only one provider may be set",
										MaxProperties: P(int64(1)),
										MinProperties: P(int64(1)),
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"akeyless": {
												Description: "Akeyless configures this store to sync secrets using Akeyless Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"akeylessGWApiURL": {
														Description: "Akeyless GW API Url from which the secrets to be fetched from.",
														Type:        "string",
													},
													"authSecretRef": {
														Description: "Auth configures how the operator authenticates with Akeyless.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"kubernetesAuth": {
																Description: "Kubernetes authenticates with Akeyless by passing the ServiceAccount token stored in the named Secret resource.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessID": {
																		Description: "the Akeyless Kubernetes auth-method access-id",
																		Type:        "string",
																	},
																	"k8sConfName": {
																		Description: "Kubernetes-auth configuration name in Akeyless-Gateway",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Akeyless. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"serviceAccountRef": {
																		Description: "Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Akeyless. If the service account selector is not supplied, the secretRef will be used instead.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"accessID",
																	"k8sConfName",
																},
																Type: "object",
															},
															"secretRef": {
																Description: "Reference to a Secret that contains the details to authenticate with Akeyless.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessID": {
																		Description: "The SecretAccessID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessType": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessTypeParam": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{
													"akeylessGWApiURL",
													"authSecretRef",
												},
												Type: "object",
											},
											"alibaba": {
												Description: "Alibaba configures this store to sync secrets using Alibaba Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "AlibabaAuth contains a secretRef for credentials.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "AlibabaAuthSecretRef holds secret references for Alibaba credentials.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessKeyIDSecretRef": {
																		Description: "The AccessKeyID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessKeySecretSecretRef": {
																		Description: "The AccessKeySecret is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"accessKeyIDSecretRef",
																	"accessKeySecretSecretRef",
																},
																Type: "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"endpoint": {Type: "string"},
													"regionID": {
														Description: "Alibaba Region to be used for the provider",
														Type:        "string",
													},
												},
												Required: []string{
													"auth",
													"regionID",
												},
												Type: "object",
											},
											"aws": {
												Description: "AWS configures this store to sync secrets using AWS Secret Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines the information necessary to authenticate against AWS if not set aws sdk will infer credentials from your environment see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"jwt": {
																Description: "Authenticate against AWS using service account tokens.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"serviceAccountRef": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Type: "object",
															},
															"secretRef": {
																Description: "AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessKeyIDSecretRef": {
																		Description: "The AccessKeyID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"secretAccessKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"region": {
														Description: "AWS Region to be used for the provider",
														Type:        "string",
													},
													"role": {
														Description: "Role is a Role ARN which the SecretManager provider will assume",
														Type:        "string",
													},
													"service": {
														Description: "Service defines which service should be used to fetch the secrets",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x53),
																	uint8(0x65),
																	uint8(0x63),
																	uint8(0x72),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x73),
																	uint8(0x4d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x50),
																	uint8(0x61),
																	uint8(0x72),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x53),
																	uint8(0x74),
																	uint8(0x6f),
																	uint8(0x72),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
												},
												Required: []string{
													"region",
													"service",
												},
												Type: "object",
											},
											"azurekv": {
												Description: "AzureKV configures this store to sync secrets using Azure Key Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"authSecretRef": {
														Description: "Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"clientId": {
																Description: "The Azure clientId of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
															"clientSecret": {
																Description: "The Azure ClientSecret of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"authType": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x53),
																uint8(0x65),
																uint8(0x72),
																uint8(0x76),
																uint8(0x69),
																uint8(0x63),
																uint8(0x65),
																uint8(0x50),
																uint8(0x72),
																uint8(0x69),
																uint8(0x6e),
																uint8(0x63),
																uint8(0x69),
																uint8(0x70),
																uint8(0x61),
																uint8(0x6c),
																uint8(0x22),
															},
														},
														Description: "Auth type defines how to authenticate to the keyvault service. Valid values are: - \"ServicePrincipal\" (default): Using a service principal (tenantId, clientId, clientSecret) - \"ManagedIdentity\": Using Managed Identity assigned to the pod (see aad-pod-identity)",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x53),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x76),
																	uint8(0x69),
																	uint8(0x63),
																	uint8(0x65),
																	uint8(0x50),
																	uint8(0x72),
																	uint8(0x69),
																	uint8(0x6e),
																	uint8(0x63),
																	uint8(0x69),
																	uint8(0x70),
																	uint8(0x61),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x4d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x64),
																	uint8(0x49),
																	uint8(0x64),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x69),
																	uint8(0x74),
																	uint8(0x79),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x57),
																	uint8(0x6f),
																	uint8(0x72),
																	uint8(0x6b),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x61),
																	uint8(0x64),
																	uint8(0x49),
																	uint8(0x64),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x69),
																	uint8(0x74),
																	uint8(0x79),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"identityId": {
														Description: "If multiple Managed Identity is assigned to the pod, you can select the one to be used",
														Type:        "string",
													},
													"serviceAccountRef": {
														Description: "ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"audiences": {
																Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																Type:        "array",
															},
															"name": {
																Description: "The name of the ServiceAccount resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Required: []string{"name"},
														Type:     "object",
													},
													"tenantId": {
														Description: "TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.",
														Type:        "string",
													},
													"vaultUrl": {
														Description: "Vault Url from which the secrets to be fetched from.",
														Type:        "string",
													},
												},
												Required: []string{"vaultUrl"},
												Type:     "object",
											},
											"fake": {
												Description: "Fake configures a store with static key/value pairs",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"data": {
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key":   {Type: "string"},
																	"value": {Type: "string"},
																	"valueMap": {
																		AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																			Allows: true,
																			Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																		},
																		Type: "object",
																	},
																	"version": {Type: "string"},
																},
																Required: []string{"key"},
																Type:     "object",
															},
														},
														Type: "array",
													},
												},
												Required: []string{"data"},
												Type:     "object",
											},
											"gcpsm": {
												Description: "GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines the information necessary to authenticate against GCP",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"secretAccessKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"workloadIdentity": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clusterLocation":  {Type: "string"},
																	"clusterName":      {Type: "string"},
																	"clusterProjectID": {Type: "string"},
																	"serviceAccountRef": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"clusterLocation",
																	"clusterName",
																	"serviceAccountRef",
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"projectID": {
														Description: "ProjectID project where secret is located",
														Type:        "string",
													},
												},
												Type: "object",
											},
											"gitlab": {
												Description: "Gitlab configures this store to sync secrets using Gitlab Variables provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with a GitLab instance.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"SecretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessToken": {
																		Description: "AccessToken is used for authentication.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Required: []string{"SecretRef"},
														Type:     "object",
													},
													"projectID": {
														Description: "ProjectID specifies a project where secrets are located.",
														Type:        "string",
													},
													"url": {
														Description: "URL configures the GitLab instance URL. Defaults to https://gitlab.com/.",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"ibm": {
												Description: "IBM configures this store to sync secrets using IBM Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the IBM secrets manager.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"secretApiKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"serviceUrl": {
														Description: "ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"kubernetes": {
												Description: "Kubernetes configures this store to sync secrets using a Kubernetes cluster provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description:   "Auth configures how secret-manager authenticates with a Kubernetes instance.",
														MaxProperties: P(int64(1)),
														MinProperties: P(int64(1)),
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"cert": {
																Description: "has both clientCert and clientKey as secretKeySelector",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clientCert": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"clientKey": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"serviceAccount": {
																Description: "points to a service account that should be used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"serviceAccount": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Type: "object",
															},
															"token": {
																Description: "use static token to authenticate with",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"bearerToken": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"remoteNamespace": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x64),
																uint8(0x65),
																uint8(0x66),
																uint8(0x61),
																uint8(0x75),
																uint8(0x6c),
																uint8(0x74),
																uint8(0x22),
															},
														},
														Description: "Remote namespace to fetch the secrets from",
														Type:        "string",
													},
													"server": {
														Description: "configures the Kubernetes server Address.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"caBundle": {
																Description: "CABundle is a base64-encoded CA certificate",
																Format:      "byte",
																Type:        "string",
															},
															"caProvider": {
																Description: "see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key the value inside of the provider type to use, only used with \"Secret\" type",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the object located at the provider type.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "The namespace the Provider type is in.",
																		Type:        "string",
																	},
																	"type": {
																		Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																		Enum: []apiextensionsv1.JSON{
																			{
																				Raw: []uint8{
																					uint8(0x22),
																					uint8(0x53),
																					uint8(0x65),
																					uint8(0x63),
																					uint8(0x72),
																					uint8(0x65),
																					uint8(0x74),
																					uint8(0x22),
																				},
																			},
																			{
																				Raw: []uint8{
																					uint8(0x22),
																					uint8(0x43),
																					uint8(0x6f),
																					uint8(0x6e),
																					uint8(0x66),
																					uint8(0x69),
																					uint8(0x67),
																					uint8(0x4d),
																					uint8(0x61),
																					uint8(0x70),
																					uint8(0x22),
																				},
																			},
																		},
																		Type: "string",
																	},
																},
																Required: []string{
																	"name",
																	"type",
																},
																Type: "object",
															},
															"url": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x6b),
																		uint8(0x75),
																		uint8(0x62),
																		uint8(0x65),
																		uint8(0x72),
																		uint8(0x6e),
																		uint8(0x65),
																		uint8(0x74),
																		uint8(0x65),
																		uint8(0x73),
																		uint8(0x2e),
																		uint8(0x64),
																		uint8(0x65),
																		uint8(0x66),
																		uint8(0x61),
																		uint8(0x75),
																		uint8(0x6c),
																		uint8(0x74),
																		uint8(0x22),
																	},
																},
																Description: "configures the Kubernetes server Address.",
																Type:        "string",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"oracle": {
												Description: "Oracle configures this store to sync secrets using Oracle Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "SecretRef to pass through sensitive information.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"fingerprint": {
																		Description: "Fingerprint is the fingerprint of the API private key.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"privatekey": {
																		Description: "PrivateKey is the user's API Signing Key in PEM format, used for authentication.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"fingerprint",
																	"privatekey",
																},
																Type: "object",
															},
															"tenancy": {
																Description: "Tenancy is the tenancy OCID where user is located.",
																Type:        "string",
															},
															"user": {
																Description: "User is an access OCID specific to the account.",
																Type:        "string",
															},
														},
														Required: []string{
															"secretRef",
															"tenancy",
															"user",
														},
														Type: "object",
													},
													"region": {
														Description: "Region is the region where vault is located.",
														Type:        "string",
													},
													"vault": {
														Description: "Vault is the vault's OCID of the specific vault where secret is located.",
														Type:        "string",
													},
												},
												Required: []string{
													"region",
													"vault",
												},
												Type: "object",
											},
											"vault": {
												Description: "Vault configures this store to sync secrets using Hashi provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the Vault server.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"appRole": {
																Description: "AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x61),
																				uint8(0x70),
																				uint8(0x70),
																				uint8(0x72),
																				uint8(0x6f),
																				uint8(0x6c),
																				uint8(0x65),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the App Role authentication backend is mounted in Vault, e.g: \"approle\"",
																		Type:        "string",
																	},
																	"roleId": {
																		Description: "RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"path",
																	"roleId",
																	"secretRef",
																},
																Type: "object",
															},
															"cert": {
																Description: "Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clientCert": {
																		Description: "ClientCert is a certificate to authenticate using the Cert Vault authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"secretRef": {
																		Description: "SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"jwt": {
																Description: "Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"kubernetesServiceAccountToken": {
																		Description: "Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Optional audiences field that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to a single audience `vault` it not specified.",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"expirationSeconds": {
																				Description: "Optional expiration time in seconds that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to 10 minutes.",
																				Format:      "int64",
																				Type:        "integer",
																			},
																			"serviceAccountRef": {
																				Description: "Service account field containing the name of a kubernetes ServiceAccount.",
																				Properties: map[string]apiextensionsv1.JSONSchemaProps{
																					"audiences": {
																						Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																						Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																						Type:        "array",
																					},
																					"name": {
																						Description: "The name of the ServiceAccount resource being referred to.",
																						Type:        "string",
																					},
																					"namespace": {
																						Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																						Type:        "string",
																					},
																				},
																				Required: []string{"name"},
																				Type:     "object",
																			},
																		},
																		Required: []string{"serviceAccountRef"},
																		Type:     "object",
																	},
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6a),
																				uint8(0x77),
																				uint8(0x74),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the JWT authentication backend is mounted in Vault, e.g: \"jwt\"",
																		Type:        "string",
																	},
																	"role": {
																		Description: "Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional SecretRef that refers to a key in a Secret resource containing JWT token to authenticate with Vault using the JWT/OIDC authentication method.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{"path"},
																Type:     "object",
															},
															"kubernetes": {
																Description: "Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"mountPath": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6b),
																				uint8(0x75),
																				uint8(0x62),
																				uint8(0x65),
																				uint8(0x72),
																				uint8(0x6e),
																				uint8(0x65),
																				uint8(0x74),
																				uint8(0x65),
																				uint8(0x73),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the Kubernetes authentication backend is mounted in Vault, e.g: \"kubernetes\"",
																		Type:        "string",
																	},
																	"role": {
																		Description: "A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"serviceAccountRef": {
																		Description: "Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Vault. If the service account selector is not supplied, the secretRef will be used instead.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"mountPath",
																	"role",
																},
																Type: "object",
															},
															"ldap": {
																Description: "Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6c),
																				uint8(0x64),
																				uint8(0x61),
																				uint8(0x70),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the LDAP authentication backend is mounted in Vault, e.g: \"ldap\"",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "SecretRef to a key in a Secret resource containing password for the LDAP user used to authenticate with Vault using the LDAP authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"username": {
																		Description: "Username is a LDAP user name used to authenticate using the LDAP Vault authentication method",
																		Type:        "string",
																	},
																},
																Required: []string{
																	"path",
																	"username",
																},
																Type: "object",
															},
															"tokenSecretRef": {
																Description: "TokenSecretRef authenticates with Vault by presenting a token.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caBundle": {
														Description: "PEM encoded CA bundle used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.",
														Format:      "byte",
														Type:        "string",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Vault server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key the value inside of the provider type to use, only used with \"Secret\" type",
																Type:        "string",
															},
															"name": {
																Description: "The name of the object located at the provider type.",
																Type:        "string",
															},
															"namespace": {
																Description: "The namespace the Provider type is in.",
																Type:        "string",
															},
															"type": {
																Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																Enum: []apiextensionsv1.JSON{
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x53),
																			uint8(0x65),
																			uint8(0x63),
																			uint8(0x72),
																			uint8(0x65),
																			uint8(0x74),
																			uint8(0x22),
																		},
																	},
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x43),
																			uint8(0x6f),
																			uint8(0x6e),
																			uint8(0x66),
																			uint8(0x69),
																			uint8(0x67),
																			uint8(0x4d),
																			uint8(0x61),
																			uint8(0x70),
																			uint8(0x22),
																		},
																	},
																},
																Type: "string",
															},
														},
														Required: []string{
															"name",
															"type",
														},
														Type: "object",
													},
													"forwardInconsistent": {
														Description: "ForwardInconsistent tells Vault to forward read-after-write requests to the Vault leader instead of simply retrying within a loop. This can increase performance if the option is enabled serverside. https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header",
														Type:        "boolean",
													},
													"namespace": {
														Description: "Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: \"ns1\". More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces",
														Type:        "string",
													},
													"path": {
														Description: "Path is the mount path of the Vault KV backend endpoint, e.g: \"secret\". The v2 KV secret engine version specific \"/data\" path suffix for fetching secrets from Vault is optional and will be appended if not present in specified path.",
														Type:        "string",
													},
													"readYourWrites": {
														Description: "ReadYourWrites ensures isolated read-after-write semantics by providing discovered cluster replication states in each request. More information about eventual consistency in Vault can be found here https://www.vaultproject.io/docs/enterprise/consistency",
														Type:        "boolean",
													},
													"server": {
														Description: "Server is the connection address for the Vault server, e.g: \"https://vault.example.com:8200\".",
														Type:        "string",
													},
													"version": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x76),
																uint8(0x32),
																uint8(0x22),
															},
														},
														Description: "Version is the Vault KV secret engine version. This can be either \"v1\" or \"v2\". Version defaults to \"v2\".",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x76),
																	uint8(0x31),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x76),
																	uint8(0x32),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
												},
												Required: []string{
													"auth",
													"server",
												},
												Type: "object",
											},
											"webhook": {
												Description: "Webhook configures this store to sync secrets using a generic templated webhook",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"body": {
														Description: "Body",
														Type:        "string",
													},
													"caBundle": {
														Description: "PEM encoded CA bundle used to validate webhook server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.",
														Format:      "byte",
														Type:        "string",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate webhook server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key the value inside of the provider type to use, only used with \"Secret\" type",
																Type:        "string",
															},
															"name": {
																Description: "The name of the object located at the provider type.",
																Type:        "string",
															},
															"namespace": {
																Description: "The namespace the Provider type is in.",
																Type:        "string",
															},
															"type": {
																Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																Enum: []apiextensionsv1.JSON{
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x53),
																			uint8(0x65),
																			uint8(0x63),
																			uint8(0x72),
																			uint8(0x65),
																			uint8(0x74),
																			uint8(0x22),
																		},
																	},
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x43),
																			uint8(0x6f),
																			uint8(0x6e),
																			uint8(0x66),
																			uint8(0x69),
																			uint8(0x67),
																			uint8(0x4d),
																			uint8(0x61),
																			uint8(0x70),
																			uint8(0x22),
																		},
																	},
																},
																Type: "string",
															},
														},
														Required: []string{
															"name",
															"type",
														},
														Type: "object",
													},
													"headers": {
														AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
															Allows: true,
															Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
														},
														Description: "Headers",
														Type:        "object",
													},
													"method": {
														Description: "Webhook Method",
														Type:        "string",
													},
													"result": {
														Description: "Result formatting",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"jsonPath": {
																Description: "Json path of return value",
																Type:        "string",
															},
														},
														Type: "object",
													},
													"secrets": {
														Description: "Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name",
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"name": {
																		Description: "Name of this secret in templates",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Secret ref to fill in credentials",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"name",
																	"secretRef",
																},
																Type: "object",
															},
														},
														Type: "array",
													},
													"timeout": {
														Description: "Timeout",
														Type:        "string",
													},
													"url": {
														Description: "Webhook url to call",
														Type:        "string",
													},
												},
												Required: []string{
													"result",
													"url",
												},
												Type: "object",
											},
											"yandexlockbox": {
												Description: "YandexLockbox configures this store to sync secrets using Yandex Lockbox provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"apiEndpoint": {
														Description: "Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')",
														Type:        "string",
													},
													"auth": {
														Description: "Auth defines the information necessary to authenticate against Yandex Lockbox",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"authorizedKeySecretRef": {
																Description: "The authorized key used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Yandex.Cloud server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"certSecretRef": {
																Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
										},
										Type: "object",
									},
									"retrySettings": {
										Description: "Used to configure http retries if failed",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"maxRetries": {
												Format: "int32",
												Type:   "integer",
											},
											"retryInterval": {Type: "string"},
										},
										Type: "object",
									},
								},
								Required: []string{"provider"},
								Type:     "object",
							},
							"status": {
								Description: "SecretStoreStatus defines the observed state of the SecretStore.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"conditions": {
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"lastTransitionTime": {
														Format: "date-time",
														Type:   "string",
													},
													"message": {Type: "string"},
													"reason":  {Type: "string"},
													"status":  {Type: "string"},
													"type":    {Type: "string"},
												},
												Required: []string{
													"status",
													"type",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			}, {
				AdditionalPrinterColumns: []apiextensionsv1.CustomResourceColumnDefinition{
					{
						JSONPath: ".metadata.creationTimestamp",
						Name:     "AGE",
						Type:     "date",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].reason",
						Name:     "Status",
						Type:     "string",
					}, {
						JSONPath: ".status.capabilities",
						Name:     "Capabilities",
						Type:     "string",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].status",
						Name:     "Ready",
						Type:     "string",
					},
				},
				Name: "v1beta1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "ClusterSecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "SecretStoreSpec defines the desired state of SecretStore.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"conditions": {
										Description: "Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore",
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Description: "ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in for a ClusterSecretStore instance.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"namespaceSelector": {
														Description: "Choose namespace using a labelSelector",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"matchExpressions": {
																Description: "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
																Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																	Schema: &apiextensionsv1.JSONSchemaProps{
																		Description: "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "key is the label key that the selector applies to.",
																				Type:        "string",
																			},
																			"operator": {
																				Description: "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
																				Type:        "string",
																			},
																			"values": {
																				Description: "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																		},
																		Required: []string{
																			"key",
																			"operator",
																		},
																		Type: "object",
																	},
																},
																Type: "array",
															},
															"matchLabels": {
																AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																	Allows: true,
																	Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																},
																Description: "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
																Type:        "object",
															},
														},
														Type:     "object",
														XMapType: P("atomic"),
													},
													"namespaces": {
														Description: "Choose namespaces by name",
														Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
														Type:        "array",
													},
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"controller": {
										Description: "Used to select the correct KES controller (think: ingress.ingressClassName) The KES controller is instantiated with a specific controller name and filters ES based on this property",
										Type:        "string",
									},
									"provider": {
										Description:   "Used to configure the provider. Only one provider may be set",
										MaxProperties: P(int64(1)),
										MinProperties: P(int64(1)),
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"akeyless": {
												Description: "Akeyless configures this store to sync secrets using Akeyless Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"akeylessGWApiURL": {
														Description: "Akeyless GW API Url from which the secrets to be fetched from.",
														Type:        "string",
													},
													"authSecretRef": {
														Description: "Auth configures how the operator authenticates with Akeyless.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"kubernetesAuth": {
																Description: "Kubernetes authenticates with Akeyless by passing the ServiceAccount token stored in the named Secret resource.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessID": {
																		Description: "the Akeyless Kubernetes auth-method access-id",
																		Type:        "string",
																	},
																	"k8sConfName": {
																		Description: "Kubernetes-auth configuration name in Akeyless-Gateway",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Akeyless. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"serviceAccountRef": {
																		Description: "Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Akeyless. If the service account selector is not supplied, the secretRef will be used instead.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"accessID",
																	"k8sConfName",
																},
																Type: "object",
															},
															"secretRef": {
																Description: "Reference to a Secret that contains the details to authenticate with Akeyless.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessID": {
																		Description: "The SecretAccessID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessType": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessTypeParam": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{
													"akeylessGWApiURL",
													"authSecretRef",
												},
												Type: "object",
											},
											"alibaba": {
												Description: "Alibaba configures this store to sync secrets using Alibaba Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "AlibabaAuth contains a secretRef for credentials.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "AlibabaAuthSecretRef holds secret references for Alibaba credentials.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessKeyIDSecretRef": {
																		Description: "The AccessKeyID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessKeySecretSecretRef": {
																		Description: "The AccessKeySecret is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"accessKeyIDSecretRef",
																	"accessKeySecretSecretRef",
																},
																Type: "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"endpoint": {Type: "string"},
													"regionID": {
														Description: "Alibaba Region to be used for the provider",
														Type:        "string",
													},
												},
												Required: []string{
													"auth",
													"regionID",
												},
												Type: "object",
											},
											"aws": {
												Description: "AWS configures this store to sync secrets using AWS Secret Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"additionalRoles": {
														Description: "AdditionalRoles is a chained list of Role ARNs which the SecretManager provider will sequentially assume before assuming Role",
														Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
														Type:        "array",
													},
													"auth": {
														Description: "Auth defines the information necessary to authenticate against AWS if not set aws sdk will infer credentials from your environment see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"jwt": {
																Description: "Authenticate against AWS using service account tokens.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"serviceAccountRef": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Type: "object",
															},
															"secretRef": {
																Description: "AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessKeyIDSecretRef": {
																		Description: "The AccessKeyID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"secretAccessKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"sessionTokenSecretRef": {
																		Description: "The SessionToken used for authentication This must be defined if AccessKeyID and SecretAccessKey are temporary credentials see: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"region": {
														Description: "AWS Region to be used for the provider",
														Type:        "string",
													},
													"role": {
														Description: "Role is a Role ARN which the SecretManager provider will assume",
														Type:        "string",
													},
													"service": {
														Description: "Service defines which service should be used to fetch the secrets",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x53),
																	uint8(0x65),
																	uint8(0x63),
																	uint8(0x72),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x73),
																	uint8(0x4d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x50),
																	uint8(0x61),
																	uint8(0x72),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x53),
																	uint8(0x74),
																	uint8(0x6f),
																	uint8(0x72),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
												},
												Required: []string{
													"region",
													"service",
												},
												Type: "object",
											},
											"azurekv": {
												Description: "AzureKV configures this store to sync secrets using Azure Key Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"authSecretRef": {
														Description: "Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"clientId": {
																Description: "The Azure clientId of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
															"clientSecret": {
																Description: "The Azure ClientSecret of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"authType": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x53),
																uint8(0x65),
																uint8(0x72),
																uint8(0x76),
																uint8(0x69),
																uint8(0x63),
																uint8(0x65),
																uint8(0x50),
																uint8(0x72),
																uint8(0x69),
																uint8(0x6e),
																uint8(0x63),
																uint8(0x69),
																uint8(0x70),
																uint8(0x61),
																uint8(0x6c),
																uint8(0x22),
															},
														},
														Description: "Auth type defines how to authenticate to the keyvault service. Valid values are: - \"ServicePrincipal\" (default): Using a service principal (tenantId, clientId, clientSecret) - \"ManagedIdentity\": Using Managed Identity assigned to the pod (see aad-pod-identity)",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x53),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x76),
																	uint8(0x69),
																	uint8(0x63),
																	uint8(0x65),
																	uint8(0x50),
																	uint8(0x72),
																	uint8(0x69),
																	uint8(0x6e),
																	uint8(0x63),
																	uint8(0x69),
																	uint8(0x70),
																	uint8(0x61),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x4d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x64),
																	uint8(0x49),
																	uint8(0x64),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x69),
																	uint8(0x74),
																	uint8(0x79),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x57),
																	uint8(0x6f),
																	uint8(0x72),
																	uint8(0x6b),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x61),
																	uint8(0x64),
																	uint8(0x49),
																	uint8(0x64),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x69),
																	uint8(0x74),
																	uint8(0x79),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"environmentType": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x50),
																uint8(0x75),
																uint8(0x62),
																uint8(0x6c),
																uint8(0x69),
																uint8(0x63),
																uint8(0x43),
																uint8(0x6c),
																uint8(0x6f),
																uint8(0x75),
																uint8(0x64),
																uint8(0x22),
															},
														},
														Description: "EnvironmentType specifies the Azure cloud environment endpoints to use for connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint. The following endpoints are available, also see here: https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152 PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x50),
																	uint8(0x75),
																	uint8(0x62),
																	uint8(0x6c),
																	uint8(0x69),
																	uint8(0x63),
																	uint8(0x43),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x75),
																	uint8(0x64),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x55),
																	uint8(0x53),
																	uint8(0x47),
																	uint8(0x6f),
																	uint8(0x76),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x6e),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x43),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x75),
																	uint8(0x64),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x43),
																	uint8(0x68),
																	uint8(0x69),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x43),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x75),
																	uint8(0x64),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x47),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x6d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x43),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x75),
																	uint8(0x64),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"identityId": {
														Description: "If multiple Managed Identity is assigned to the pod, you can select the one to be used",
														Type:        "string",
													},
													"serviceAccountRef": {
														Description: "ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"audiences": {
																Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																Type:        "array",
															},
															"name": {
																Description: "The name of the ServiceAccount resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Required: []string{"name"},
														Type:     "object",
													},
													"tenantId": {
														Description: "TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.",
														Type:        "string",
													},
													"vaultUrl": {
														Description: "Vault Url from which the secrets to be fetched from.",
														Type:        "string",
													},
												},
												Required: []string{"vaultUrl"},
												Type:     "object",
											},
											"doppler": {
												Description: "Doppler configures this store to sync secrets using the Doppler provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how the Operator authenticates with the Doppler API",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"dopplerToken": {
																		Description: "The DopplerToken is used for authentication. See https://docs.doppler.com/reference/api#authentication for auth token types. The Key attribute defaults to dopplerToken if not specified.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{"dopplerToken"},
																Type:     "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"config": {
														Description: "Doppler config (required if not using a Service Token)",
														Type:        "string",
													},
													"format": {
														Description: "Format enables the downloading of secrets as a file (string)",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x6a),
																	uint8(0x73),
																	uint8(0x6f),
																	uint8(0x6e),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x64),
																	uint8(0x6f),
																	uint8(0x74),
																	uint8(0x6e),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x2d),
																	uint8(0x6a),
																	uint8(0x73),
																	uint8(0x6f),
																	uint8(0x6e),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x76),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x79),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x64),
																	uint8(0x6f),
																	uint8(0x63),
																	uint8(0x6b),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"nameTransformer": {
														Description: "Environment variable compatible name transforms that change secret names to a different format",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x75),
																	uint8(0x70),
																	uint8(0x70),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x2d),
																	uint8(0x63),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x63),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x77),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x2d),
																	uint8(0x73),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x6b),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x74),
																	uint8(0x66),
																	uint8(0x2d),
																	uint8(0x76),
																	uint8(0x61),
																	uint8(0x72),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x64),
																	uint8(0x6f),
																	uint8(0x74),
																	uint8(0x6e),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x2d),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x76),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"project": {
														Description: "Doppler project (required if not using a Service Token)",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"fake": {
												Description: "Fake configures a store with static key/value pairs",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"data": {
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key":   {Type: "string"},
																	"value": {Type: "string"},
																	"valueMap": {
																		AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																			Allows: true,
																			Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																		},
																		Type: "object",
																	},
																	"version": {Type: "string"},
																},
																Required: []string{"key"},
																Type:     "object",
															},
														},
														Type: "array",
													},
												},
												Required: []string{"data"},
												Type:     "object",
											},
											"gcpsm": {
												Description: "GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines the information necessary to authenticate against GCP",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"secretAccessKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"workloadIdentity": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clusterLocation":  {Type: "string"},
																	"clusterName":      {Type: "string"},
																	"clusterProjectID": {Type: "string"},
																	"serviceAccountRef": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"clusterLocation",
																	"clusterName",
																	"serviceAccountRef",
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"projectID": {
														Description: "ProjectID project where secret is located",
														Type:        "string",
													},
												},
												Type: "object",
											},
											"gitlab": {
												Description: "Gitlab configures this store to sync secrets using Gitlab Variables provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with a GitLab instance.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"SecretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessToken": {
																		Description: "AccessToken is used for authentication.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Required: []string{"SecretRef"},
														Type:     "object",
													},
													"environment": {
														Description: "Environment environment_scope of gitlab CI/CD variables (Please see https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment on how to create environments)",
														Type:        "string",
													},
													"groupIDs": {
														Description: "GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.",
														Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
														Type:        "array",
													},
													"inheritFromGroups": {
														Description: "InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.",
														Type:        "boolean",
													},
													"projectID": {
														Description: "ProjectID specifies a project where secrets are located.",
														Type:        "string",
													},
													"url": {
														Description: "URL configures the GitLab instance URL. Defaults to https://gitlab.com/.",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"ibm": {
												Description: "IBM configures this store to sync secrets using IBM Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description:   "Auth configures how secret-manager authenticates with the IBM secrets manager.",
														MaxProperties: P(int64(1)),
														MinProperties: P(int64(1)),
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"containerAuth": {
																Description: "IBM Container-based auth with IAM Trusted Profile.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"iamEndpoint": {Type: "string"},
																	"profile": {
																		Description: "the IBM Trusted Profile",
																		Type:        "string",
																	},
																	"tokenLocation": {
																		Description: "Location the token is mounted on the pod",
																		Type:        "string",
																	},
																},
																Required: []string{"profile"},
																Type:     "object",
															},
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"secretApiKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"serviceUrl": {
														Description: "ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"kubernetes": {
												Description: "Kubernetes configures this store to sync secrets using a Kubernetes cluster provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description:   "Auth configures how secret-manager authenticates with a Kubernetes instance.",
														MaxProperties: P(int64(1)),
														MinProperties: P(int64(1)),
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"cert": {
																Description: "has both clientCert and clientKey as secretKeySelector",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clientCert": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"clientKey": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"serviceAccount": {
																Description: "points to a service account that should be used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"audiences": {
																		Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																		Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																		Type:        "array",
																	},
																	"name": {
																		Description: "The name of the ServiceAccount resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Required: []string{"name"},
																Type:     "object",
															},
															"token": {
																Description: "use static token to authenticate with",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"bearerToken": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"remoteNamespace": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x64),
																uint8(0x65),
																uint8(0x66),
																uint8(0x61),
																uint8(0x75),
																uint8(0x6c),
																uint8(0x74),
																uint8(0x22),
															},
														},
														Description: "Remote namespace to fetch the secrets from",
														Type:        "string",
													},
													"server": {
														Description: "configures the Kubernetes server Address.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"caBundle": {
																Description: "CABundle is a base64-encoded CA certificate",
																Format:      "byte",
																Type:        "string",
															},
															"caProvider": {
																Description: "see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key where the CA certificate can be found in the Secret or ConfigMap.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the object located at the provider type.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "The namespace the Provider type is in. Can only be defined when used in a ClusterSecretStore.",
																		Type:        "string",
																	},
																	"type": {
																		Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																		Enum: []apiextensionsv1.JSON{
																			{
																				Raw: []uint8{
																					uint8(0x22),
																					uint8(0x53),
																					uint8(0x65),
																					uint8(0x63),
																					uint8(0x72),
																					uint8(0x65),
																					uint8(0x74),
																					uint8(0x22),
																				},
																			},
																			{
																				Raw: []uint8{
																					uint8(0x22),
																					uint8(0x43),
																					uint8(0x6f),
																					uint8(0x6e),
																					uint8(0x66),
																					uint8(0x69),
																					uint8(0x67),
																					uint8(0x4d),
																					uint8(0x61),
																					uint8(0x70),
																					uint8(0x22),
																				},
																			},
																		},
																		Type: "string",
																	},
																},
																Required: []string{
																	"name",
																	"type",
																},
																Type: "object",
															},
															"url": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x6b),
																		uint8(0x75),
																		uint8(0x62),
																		uint8(0x65),
																		uint8(0x72),
																		uint8(0x6e),
																		uint8(0x65),
																		uint8(0x74),
																		uint8(0x65),
																		uint8(0x73),
																		uint8(0x2e),
																		uint8(0x64),
																		uint8(0x65),
																		uint8(0x66),
																		uint8(0x61),
																		uint8(0x75),
																		uint8(0x6c),
																		uint8(0x74),
																		uint8(0x22),
																	},
																},
																Description: "configures the Kubernetes server Address.",
																Type:        "string",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"onepassword": {
												Description: "OnePassword configures this store to sync secrets using the 1Password Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines the information necessary to authenticate against OnePassword Connect Server",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "OnePasswordAuthSecretRef holds secret references for 1Password credentials.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"connectTokenSecretRef": {
																		Description: "The ConnectToken is used for authentication to a 1Password Connect Server.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{"connectTokenSecretRef"},
																Type:     "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"connectHost": {
														Description: "ConnectHost defines the OnePassword Connect Server to connect to",
														Type:        "string",
													},
													"vaults": {
														AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
															Allows: true,
															Schema: &apiextensionsv1.JSONSchemaProps{Type: "integer"},
														},
														Description: "Vaults defines which OnePassword vaults to search in which order",
														Type:        "object",
													},
												},
												Required: []string{
													"auth",
													"connectHost",
													"vaults",
												},
												Type: "object",
											},
											"oracle": {
												Description: "Oracle configures this store to sync secrets using Oracle Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "SecretRef to pass through sensitive information.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"fingerprint": {
																		Description: "Fingerprint is the fingerprint of the API private key.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"privatekey": {
																		Description: "PrivateKey is the user's API Signing Key in PEM format, used for authentication.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"fingerprint",
																	"privatekey",
																},
																Type: "object",
															},
															"tenancy": {
																Description: "Tenancy is the tenancy OCID where user is located.",
																Type:        "string",
															},
															"user": {
																Description: "User is an access OCID specific to the account.",
																Type:        "string",
															},
														},
														Required: []string{
															"secretRef",
															"tenancy",
															"user",
														},
														Type: "object",
													},
													"region": {
														Description: "Region is the region where vault is located.",
														Type:        "string",
													},
													"vault": {
														Description: "Vault is the vault's OCID of the specific vault where secret is located.",
														Type:        "string",
													},
												},
												Required: []string{
													"region",
													"vault",
												},
												Type: "object",
											},
											"senhasegura": {
												Description: "Senhasegura configures this store to sync secrets using senhasegura provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines parameters to authenticate in senhasegura",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"clientId": {Type: "string"},
															"clientSecretSecretRef": {
																Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Required: []string{
															"clientId",
															"clientSecretSecretRef",
														},
														Type: "object",
													},
													"ignoreSslCertificate": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x66),
																uint8(0x61),
																uint8(0x6c),
																uint8(0x73),
																uint8(0x65),
															},
														},
														Description: "IgnoreSslCertificate defines if SSL certificate must be ignored",
														Type:        "boolean",
													},
													"module": {
														Description: "Module defines which senhasegura module should be used to get secrets",
														Type:        "string",
													},
													"url": {
														Description: "URL of senhasegura",
														Type:        "string",
													},
												},
												Required: []string{
													"auth",
													"module",
													"url",
												},
												Type: "object",
											},
											"vault": {
												Description: "Vault configures this store to sync secrets using Hashi provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the Vault server.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"appRole": {
																Description: "AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x61),
																				uint8(0x70),
																				uint8(0x70),
																				uint8(0x72),
																				uint8(0x6f),
																				uint8(0x6c),
																				uint8(0x65),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the App Role authentication backend is mounted in Vault, e.g: \"approle\"",
																		Type:        "string",
																	},
																	"roleId": {
																		Description: "RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"path",
																	"roleId",
																	"secretRef",
																},
																Type: "object",
															},
															"cert": {
																Description: "Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clientCert": {
																		Description: "ClientCert is a certificate to authenticate using the Cert Vault authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"secretRef": {
																		Description: "SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"jwt": {
																Description: "Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"kubernetesServiceAccountToken": {
																		Description: "Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Optional audiences field that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to a single audience `vault` it not specified. Deprecated: use serviceAccountRef.Audiences instead",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"expirationSeconds": {
																				Description: "Optional expiration time in seconds that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Deprecated: this will be removed in the future. Defaults to 10 minutes.",
																				Format:      "int64",
																				Type:        "integer",
																			},
																			"serviceAccountRef": {
																				Description: "Service account field containing the name of a kubernetes ServiceAccount.",
																				Properties: map[string]apiextensionsv1.JSONSchemaProps{
																					"audiences": {
																						Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																						Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																						Type:        "array",
																					},
																					"name": {
																						Description: "The name of the ServiceAccount resource being referred to.",
																						Type:        "string",
																					},
																					"namespace": {
																						Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																						Type:        "string",
																					},
																				},
																				Required: []string{"name"},
																				Type:     "object",
																			},
																		},
																		Required: []string{"serviceAccountRef"},
																		Type:     "object",
																	},
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6a),
																				uint8(0x77),
																				uint8(0x74),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the JWT authentication backend is mounted in Vault, e.g: \"jwt\"",
																		Type:        "string",
																	},
																	"role": {
																		Description: "Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional SecretRef that refers to a key in a Secret resource containing JWT token to authenticate with Vault using the JWT/OIDC authentication method.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{"path"},
																Type:     "object",
															},
															"kubernetes": {
																Description: "Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"mountPath": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6b),
																				uint8(0x75),
																				uint8(0x62),
																				uint8(0x65),
																				uint8(0x72),
																				uint8(0x6e),
																				uint8(0x65),
																				uint8(0x74),
																				uint8(0x65),
																				uint8(0x73),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the Kubernetes authentication backend is mounted in Vault, e.g: \"kubernetes\"",
																		Type:        "string",
																	},
																	"role": {
																		Description: "A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"serviceAccountRef": {
																		Description: "Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Vault. If the service account selector is not supplied, the secretRef will be used instead.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"mountPath",
																	"role",
																},
																Type: "object",
															},
															"ldap": {
																Description: "Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6c),
																				uint8(0x64),
																				uint8(0x61),
																				uint8(0x70),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the LDAP authentication backend is mounted in Vault, e.g: \"ldap\"",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "SecretRef to a key in a Secret resource containing password for the LDAP user used to authenticate with Vault using the LDAP authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"username": {
																		Description: "Username is a LDAP user name used to authenticate using the LDAP Vault authentication method",
																		Type:        "string",
																	},
																},
																Required: []string{
																	"path",
																	"username",
																},
																Type: "object",
															},
															"tokenSecretRef": {
																Description: "TokenSecretRef authenticates with Vault by presenting a token.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caBundle": {
														Description: "PEM encoded CA bundle used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.",
														Format:      "byte",
														Type:        "string",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Vault server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key where the CA certificate can be found in the Secret or ConfigMap.",
																Type:        "string",
															},
															"name": {
																Description: "The name of the object located at the provider type.",
																Type:        "string",
															},
															"namespace": {
																Description: "The namespace the Provider type is in. Can only be defined when used in a ClusterSecretStore.",
																Type:        "string",
															},
															"type": {
																Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																Enum: []apiextensionsv1.JSON{
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x53),
																			uint8(0x65),
																			uint8(0x63),
																			uint8(0x72),
																			uint8(0x65),
																			uint8(0x74),
																			uint8(0x22),
																		},
																	},
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x43),
																			uint8(0x6f),
																			uint8(0x6e),
																			uint8(0x66),
																			uint8(0x69),
																			uint8(0x67),
																			uint8(0x4d),
																			uint8(0x61),
																			uint8(0x70),
																			uint8(0x22),
																		},
																	},
																},
																Type: "string",
															},
														},
														Required: []string{
															"name",
															"type",
														},
														Type: "object",
													},
													"forwardInconsistent": {
														Description: "ForwardInconsistent tells Vault to forward read-after-write requests to the Vault leader instead of simply retrying within a loop. This can increase performance if the option is enabled serverside. https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header",
														Type:        "boolean",
													},
													"namespace": {
														Description: "Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: \"ns1\". More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces",
														Type:        "string",
													},
													"path": {
														Description: "Path is the mount path of the Vault KV backend endpoint, e.g: \"secret\". The v2 KV secret engine version specific \"/data\" path suffix for fetching secrets from Vault is optional and will be appended if not present in specified path.",
														Type:        "string",
													},
													"readYourWrites": {
														Description: "ReadYourWrites ensures isolated read-after-write semantics by providing discovered cluster replication states in each request. More information about eventual consistency in Vault can be found here https://www.vaultproject.io/docs/enterprise/consistency",
														Type:        "boolean",
													},
													"server": {
														Description: "Server is the connection address for the Vault server, e.g: \"https://vault.example.com:8200\".",
														Type:        "string",
													},
													"version": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x76),
																uint8(0x32),
																uint8(0x22),
															},
														},
														Description: "Version is the Vault KV secret engine version. This can be either \"v1\" or \"v2\". Version defaults to \"v2\".",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x76),
																	uint8(0x31),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x76),
																	uint8(0x32),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
												},
												Required: []string{
													"auth",
													"server",
												},
												Type: "object",
											},
											"webhook": {
												Description: "Webhook configures this store to sync secrets using a generic templated webhook",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"body": {
														Description: "Body",
														Type:        "string",
													},
													"caBundle": {
														Description: "PEM encoded CA bundle used to validate webhook server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.",
														Format:      "byte",
														Type:        "string",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate webhook server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key the value inside of the provider type to use, only used with \"Secret\" type",
																Type:        "string",
															},
															"name": {
																Description: "The name of the object located at the provider type.",
																Type:        "string",
															},
															"namespace": {
																Description: "The namespace the Provider type is in.",
																Type:        "string",
															},
															"type": {
																Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																Enum: []apiextensionsv1.JSON{
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x53),
																			uint8(0x65),
																			uint8(0x63),
																			uint8(0x72),
																			uint8(0x65),
																			uint8(0x74),
																			uint8(0x22),
																		},
																	},
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x43),
																			uint8(0x6f),
																			uint8(0x6e),
																			uint8(0x66),
																			uint8(0x69),
																			uint8(0x67),
																			uint8(0x4d),
																			uint8(0x61),
																			uint8(0x70),
																			uint8(0x22),
																		},
																	},
																},
																Type: "string",
															},
														},
														Required: []string{
															"name",
															"type",
														},
														Type: "object",
													},
													"headers": {
														AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
															Allows: true,
															Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
														},
														Description: "Headers",
														Type:        "object",
													},
													"method": {
														Description: "Webhook Method",
														Type:        "string",
													},
													"result": {
														Description: "Result formatting",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"jsonPath": {
																Description: "Json path of return value",
																Type:        "string",
															},
														},
														Type: "object",
													},
													"secrets": {
														Description: "Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name",
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"name": {
																		Description: "Name of this secret in templates",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Secret ref to fill in credentials",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"name",
																	"secretRef",
																},
																Type: "object",
															},
														},
														Type: "array",
													},
													"timeout": {
														Description: "Timeout",
														Type:        "string",
													},
													"url": {
														Description: "Webhook url to call",
														Type:        "string",
													},
												},
												Required: []string{
													"result",
													"url",
												},
												Type: "object",
											},
											"yandexcertificatemanager": {
												Description: "YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"apiEndpoint": {
														Description: "Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')",
														Type:        "string",
													},
													"auth": {
														Description: "Auth defines the information necessary to authenticate against Yandex Certificate Manager",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"authorizedKeySecretRef": {
																Description: "The authorized key used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Yandex.Cloud server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"certSecretRef": {
																Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"yandexlockbox": {
												Description: "YandexLockbox configures this store to sync secrets using Yandex Lockbox provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"apiEndpoint": {
														Description: "Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')",
														Type:        "string",
													},
													"auth": {
														Description: "Auth defines the information necessary to authenticate against Yandex Lockbox",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"authorizedKeySecretRef": {
																Description: "The authorized key used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Yandex.Cloud server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"certSecretRef": {
																Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
										},
										Type: "object",
									},
									"refreshInterval": {
										Description: "Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.",
										Type:        "integer",
									},
									"retrySettings": {
										Description: "Used to configure http retries if failed",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"maxRetries": {
												Format: "int32",
												Type:   "integer",
											},
											"retryInterval": {Type: "string"},
										},
										Type: "object",
									},
								},
								Required: []string{"provider"},
								Type:     "object",
							},
							"status": {
								Description: "SecretStoreStatus defines the observed state of the SecretStore.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"capabilities": {
										Description: "SecretStoreCapabilities defines the possible operations a SecretStore can do.",
										Type:        "string",
									},
									"conditions": {
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"lastTransitionTime": {
														Format: "date-time",
														Type:   "string",
													},
													"message": {Type: "string"},
													"reason":  {Type: "string"},
													"status":  {Type: "string"},
													"type":    {Type: "string"},
												},
												Required: []string{
													"status",
													"type",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}
View Source
var EcrauthorizationtokensGeneratorsCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "ecrauthorizationtokens.generators.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "generators.external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"ecrauthorizationtoken"},
			Kind:       "ECRAuthorizationToken",
			ListKind:   "ECRAuthorizationTokenList",
			Plural:     "ecrauthorizationtokens",
			ShortNames: []string{"ecrauthorizationtoken"},
			Singular:   "ecrauthorizationtoken",
		},
		Scope: apiextensionsv1.ResourceScope("Namespaced"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				Name: "v1alpha1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "ECRAuthorizationTokenSpec uses the GetAuthorizationToken API to retrieve an authorization token. The authorization token is valid for 12 hours. The authorizationToken returned is a base64 encoded string that can be decoded and used in a docker login command to authenticate to a registry. For more information, see Registry authentication (https://docs.aws.amazon.com/AmazonECR/latest/userguide/Registries.html#registry_auth) in the Amazon Elastic Container Registry User Guide.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"auth": {
										Description: "Auth defines how to authenticate with AWS",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"jwt": {
												Description: "Authenticate against AWS using service account tokens.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"serviceAccountRef": {
														Description: "A reference to a ServiceAccount resource.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"audiences": {
																Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																Type:        "array",
															},
															"name": {
																Description: "The name of the ServiceAccount resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Required: []string{"name"},
														Type:     "object",
													},
												},
												Type: "object",
											},
											"secretRef": {
												Description: "AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"accessKeyIDSecretRef": {
														Description: "The AccessKeyID is used for authentication",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																Type:        "string",
															},
															"name": {
																Description: "The name of the Secret resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Type: "object",
													},
													"secretAccessKeySecretRef": {
														Description: "The SecretAccessKey is used for authentication",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																Type:        "string",
															},
															"name": {
																Description: "The name of the Secret resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Type: "object",
													},
													"sessionTokenSecretRef": {
														Description: "The SessionToken used for authentication This must be defined if AccessKeyID and SecretAccessKey are temporary credentials see: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																Type:        "string",
															},
															"name": {
																Description: "The name of the Secret resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Type: "object",
													},
												},
												Type: "object",
											},
										},
										Type: "object",
									},
									"region": {
										Description: "Region specifies the region to operate in.",
										Type:        "string",
									},
									"role": {
										Description: "You can assume a role before making calls to the desired AWS service.",
										Type:        "string",
									},
								},
								Required: []string{"region"},
								Type:     "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}
View Source
var ExternalsecretsCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "externalsecrets.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"externalsecrets"},
			Kind:       "ExternalSecret",
			ListKind:   "ExternalSecretList",
			Plural:     "externalsecrets",
			ShortNames: []string{"es"},
			Singular:   "externalsecret",
		},
		Scope: apiextensionsv1.ResourceScope("Namespaced"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				AdditionalPrinterColumns: []apiextensionsv1.CustomResourceColumnDefinition{
					{
						JSONPath: ".spec.secretStoreRef.name",
						Name:     "Store",
						Type:     "string",
					}, {
						JSONPath: ".spec.refreshInterval",
						Name:     "Refresh Interval",
						Type:     "string",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].reason",
						Name:     "Status",
						Type:     "string",
					},
				},
				Deprecated: true,
				Name:       "v1alpha1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "ExternalSecret is the Schema for the external-secrets API.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "ExternalSecretSpec defines the desired state of ExternalSecret.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"data": {
										Description: "Data defines the connection between the Kubernetes Secret keys and the Provider data",
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Description: "ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"remoteRef": {
														Description: "ExternalSecretDataRemoteRef defines Provider data location.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"conversionStrategy": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x44),
																		uint8(0x65),
																		uint8(0x66),
																		uint8(0x61),
																		uint8(0x75),
																		uint8(0x6c),
																		uint8(0x74),
																		uint8(0x22),
																	},
																},
																Description: "Used to define a conversion Strategy",
																Type:        "string",
															},
															"key": {
																Description: "Key is the key used in the Provider, mandatory",
																Type:        "string",
															},
															"property": {
																Description: "Used to select a specific property of the Provider value (if a map), if supported",
																Type:        "string",
															},
															"version": {
																Description: "Used to select a specific version of the Provider value, if supported",
																Type:        "string",
															},
														},
														Required: []string{"key"},
														Type:     "object",
													},
													"secretKey": {Type: "string"},
												},
												Required: []string{
													"remoteRef",
													"secretKey",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"dataFrom": {
										Description: "DataFrom is used to fetch all properties from a specific Provider data If multiple entries are specified, the Secret keys are merged in the specified order",
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Description: "ExternalSecretDataRemoteRef defines Provider data location.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"conversionStrategy": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x44),
																uint8(0x65),
																uint8(0x66),
																uint8(0x61),
																uint8(0x75),
																uint8(0x6c),
																uint8(0x74),
																uint8(0x22),
															},
														},
														Description: "Used to define a conversion Strategy",
														Type:        "string",
													},
													"key": {
														Description: "Key is the key used in the Provider, mandatory",
														Type:        "string",
													},
													"property": {
														Description: "Used to select a specific property of the Provider value (if a map), if supported",
														Type:        "string",
													},
													"version": {
														Description: "Used to select a specific version of the Provider value, if supported",
														Type:        "string",
													},
												},
												Required: []string{"key"},
												Type:     "object",
											},
										},
										Type: "array",
									},
									"refreshInterval": {
										Default: &apiextensionsv1.JSON{
											Raw: []uint8{
												uint8(0x22),
												uint8(0x31),
												uint8(0x68),
												uint8(0x22),
											},
										},
										Description: "RefreshInterval is the amount of time before the values are read again from the SecretStore provider Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\" May be set to zero to fetch and create it once. Defaults to 1h.",
										Type:        "string",
									},
									"secretStoreRef": {
										Description: "SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"kind": {
												Description: "Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`",
												Type:        "string",
											},
											"name": {
												Description: "Name of the SecretStore resource",
												Type:        "string",
											},
										},
										Required: []string{"name"},
										Type:     "object",
									},
									"target": {
										Description: "ExternalSecretTarget defines the Kubernetes Secret to be created There can be only one target per ExternalSecret.",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"creationPolicy": {
												Default: &apiextensionsv1.JSON{
													Raw: []uint8{
														uint8(0x22),
														uint8(0x4f),
														uint8(0x77),
														uint8(0x6e),
														uint8(0x65),
														uint8(0x72),
														uint8(0x22),
													},
												},
												Description: "CreationPolicy defines rules on how to create the resulting Secret Defaults to 'Owner'",
												Type:        "string",
											},
											"immutable": {
												Description: "Immutable defines if the final secret will be immutable",
												Type:        "boolean",
											},
											"name": {
												Description: "Name defines the name of the Secret resource to be managed This field is immutable Defaults to the .metadata.name of the ExternalSecret resource",
												Type:        "string",
											},
											"template": {
												Description: "Template defines a blueprint for the created Secret resource.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"data": {
														AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
															Allows: true,
															Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
														},
														Type: "object",
													},
													"engineVersion": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x76),
																uint8(0x31),
																uint8(0x22),
															},
														},
														Description: "EngineVersion specifies the template engine version that should be used to compile/execute the template specified in .data and .templateFrom[].",
														Type:        "string",
													},
													"metadata": {
														Description: "ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"annotations": {
																AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																	Allows: true,
																	Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																},
																Type: "object",
															},
															"labels": {
																AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																	Allows: true,
																	Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"templateFrom": {
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																MaxProperties: P(int64(1)),
																MinProperties: P(int64(1)),
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"configMap": {
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"items": {
																				Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																					Schema: &apiextensionsv1.JSONSchemaProps{
																						Properties: map[string]apiextensionsv1.JSONSchemaProps{"key": {Type: "string"}},
																						Required:   []string{"key"},
																						Type:       "object",
																					},
																				},
																				Type: "array",
																			},
																			"name": {Type: "string"},
																		},
																		Required: []string{
																			"items",
																			"name",
																		},
																		Type: "object",
																	},
																	"secret": {
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"items": {
																				Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																					Schema: &apiextensionsv1.JSONSchemaProps{
																						Properties: map[string]apiextensionsv1.JSONSchemaProps{"key": {Type: "string"}},
																						Required:   []string{"key"},
																						Type:       "object",
																					},
																				},
																				Type: "array",
																			},
																			"name": {Type: "string"},
																		},
																		Required: []string{
																			"items",
																			"name",
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "array",
													},
													"type": {Type: "string"},
												},
												Type: "object",
											},
										},
										Type: "object",
									},
								},
								Required: []string{"secretStoreRef", "target"},
								Type:     "object",
							},
							"status": {
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"conditions": {
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"lastTransitionTime": {
														Format: "date-time",
														Type:   "string",
													},
													"message": {Type: "string"},
													"reason":  {Type: "string"},
													"status":  {Type: "string"},
													"type":    {Type: "string"},
												},
												Required: []string{
													"status",
													"type",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"refreshTime": {
										Description: "refreshTime is the time and date the external secret was fetched and the target secret updated",
										Format:      "date-time",
										Nullable:    true,
										Type:        "string",
									},
									"syncedResourceVersion": {
										Description: "SyncedResourceVersion keeps track of the last synced version",
										Type:        "string",
									},
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			}, {
				AdditionalPrinterColumns: []apiextensionsv1.CustomResourceColumnDefinition{
					{
						JSONPath: ".spec.secretStoreRef.name",
						Name:     "Store",
						Type:     "string",
					}, {
						JSONPath: ".spec.refreshInterval",
						Name:     "Refresh Interval",
						Type:     "string",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].reason",
						Name:     "Status",
						Type:     "string",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].status",
						Name:     "Ready",
						Type:     "string",
					},
				},
				Name: "v1beta1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "ExternalSecret is the Schema for the external-secrets API.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "ExternalSecretSpec defines the desired state of ExternalSecret.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"data": {
										Description: "Data defines the connection between the Kubernetes Secret keys and the Provider data",
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Description: "ExternalSecretData defines the connection between the Kubernetes Secret key (spec.data.<key>) and the Provider data.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"remoteRef": {
														Description: "RemoteRef points to the remote secret and defines which secret (version/property/..) to fetch.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"conversionStrategy": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x44),
																		uint8(0x65),
																		uint8(0x66),
																		uint8(0x61),
																		uint8(0x75),
																		uint8(0x6c),
																		uint8(0x74),
																		uint8(0x22),
																	},
																},
																Description: "Used to define a conversion Strategy",
																Type:        "string",
															},
															"decodingStrategy": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x4e),
																		uint8(0x6f),
																		uint8(0x6e),
																		uint8(0x65),
																		uint8(0x22),
																	},
																},
																Description: "Used to define a decoding Strategy",
																Type:        "string",
															},
															"key": {
																Description: "Key is the key used in the Provider, mandatory",
																Type:        "string",
															},
															"metadataPolicy": {
																Description: "Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None",
																Type:        "string",
															},
															"property": {
																Description: "Used to select a specific property of the Provider value (if a map), if supported",
																Type:        "string",
															},
															"version": {
																Description: "Used to select a specific version of the Provider value, if supported",
																Type:        "string",
															},
														},
														Required: []string{"key"},
														Type:     "object",
													},
													"secretKey": {
														Description: "SecretKey defines the key in which the controller stores the value. This is the key in the Kind=Secret",
														Type:        "string",
													},
													"sourceRef": {
														Description:   "SourceRef allows you to override the source from which the value will pulled from.",
														MaxProperties: P(int64(1)),
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"generatorRef": {
																Description: "GeneratorRef points to a generator custom resource in",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"apiVersion": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x67),
																				uint8(0x65),
																				uint8(0x6e),
																				uint8(0x65),
																				uint8(0x72),
																				uint8(0x61),
																				uint8(0x74),
																				uint8(0x6f),
																				uint8(0x72),
																				uint8(0x73),
																				uint8(0x2e),
																				uint8(0x65),
																				uint8(0x78),
																				uint8(0x74),
																				uint8(0x65),
																				uint8(0x72),
																				uint8(0x6e),
																				uint8(0x61),
																				uint8(0x6c),
																				uint8(0x2d),
																				uint8(0x73),
																				uint8(0x65),
																				uint8(0x63),
																				uint8(0x72),
																				uint8(0x65),
																				uint8(0x74),
																				uint8(0x73),
																				uint8(0x2e),
																				uint8(0x69),
																				uint8(0x6f),
																				uint8(0x2f),
																				uint8(0x76),
																				uint8(0x31),
																				uint8(0x61),
																				uint8(0x6c),
																				uint8(0x70),
																				uint8(0x68),
																				uint8(0x61),
																				uint8(0x31),
																				uint8(0x22),
																			},
																		},
																		Description: "Specify the apiVersion of the generator resource",
																		Type:        "string",
																	},
																	"kind": {
																		Description: "Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "Specify the name of the generator resource",
																		Type:        "string",
																	},
																},
																Required: []string{
																	"kind",
																	"name",
																},
																Type: "object",
															},
															"storeRef": {
																Description: "SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"kind": {
																		Description: "Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`",
																		Type:        "string",
																	},
																	"name": {
																		Description: "Name of the SecretStore resource",
																		Type:        "string",
																	},
																},
																Required: []string{"name"},
																Type:     "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{
													"remoteRef",
													"secretKey",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"dataFrom": {
										Description: "DataFrom is used to fetch all properties from a specific Provider data If multiple entries are specified, the Secret keys are merged in the specified order",
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"extract": {
														Description: "Used to extract multiple key/value pairs from one secret Note: Extract does not support sourceRef.Generator or sourceRef.GeneratorRef.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"conversionStrategy": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x44),
																		uint8(0x65),
																		uint8(0x66),
																		uint8(0x61),
																		uint8(0x75),
																		uint8(0x6c),
																		uint8(0x74),
																		uint8(0x22),
																	},
																},
																Description: "Used to define a conversion Strategy",
																Type:        "string",
															},
															"decodingStrategy": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x4e),
																		uint8(0x6f),
																		uint8(0x6e),
																		uint8(0x65),
																		uint8(0x22),
																	},
																},
																Description: "Used to define a decoding Strategy",
																Type:        "string",
															},
															"key": {
																Description: "Key is the key used in the Provider, mandatory",
																Type:        "string",
															},
															"metadataPolicy": {
																Description: "Policy for fetching tags/labels from provider secrets, possible options are Fetch, None. Defaults to None",
																Type:        "string",
															},
															"property": {
																Description: "Used to select a specific property of the Provider value (if a map), if supported",
																Type:        "string",
															},
															"version": {
																Description: "Used to select a specific version of the Provider value, if supported",
																Type:        "string",
															},
														},
														Required: []string{"key"},
														Type:     "object",
													},
													"find": {
														Description: "Used to find secrets based on tags or regular expressions Note: Find does not support sourceRef.Generator or sourceRef.GeneratorRef.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"conversionStrategy": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x44),
																		uint8(0x65),
																		uint8(0x66),
																		uint8(0x61),
																		uint8(0x75),
																		uint8(0x6c),
																		uint8(0x74),
																		uint8(0x22),
																	},
																},
																Description: "Used to define a conversion Strategy",
																Type:        "string",
															},
															"decodingStrategy": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x4e),
																		uint8(0x6f),
																		uint8(0x6e),
																		uint8(0x65),
																		uint8(0x22),
																	},
																},
																Description: "Used to define a decoding Strategy",
																Type:        "string",
															},
															"name": {
																Description: "Finds secrets based on the name.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"regexp": {
																		Description: "Finds secrets base",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
															"path": {
																Description: "A root path to start the find operations.",
																Type:        "string",
															},
															"tags": {
																AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																	Allows: true,
																	Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																},
																Description: "Find secrets based on tags.",
																Type:        "object",
															},
														},
														Type: "object",
													},
													"rewrite": {
														Description: "Used to rewrite secret Keys after getting them from the secret Provider Multiple Rewrite operations can be provided. They are applied in a layered order (first to last)",
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"regexp": {
																		Description: "Used to rewrite with regular expressions. The resulting key will be the output of a regexp.ReplaceAll operation.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"source": {
																				Description: "Used to define the regular expression of a re.Compiler.",
																				Type:        "string",
																			},
																			"target": {
																				Description: "Used to define the target pattern of a ReplaceAll operation.",
																				Type:        "string",
																			},
																		},
																		Required: []string{
																			"source",
																			"target",
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "array",
													},
													"sourceRef": {
														Description:   "SourceRef points to a store or generator which contains secret values ready to use. Use this in combination with Extract or Find pull values out of a specific SecretStore. When sourceRef points to a generator Extract or Find is not supported. The generator returns a static map of values",
														MaxProperties: P(int64(1)),
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"generatorRef": {
																Description: "GeneratorRef points to a generator custom resource in",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"apiVersion": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x67),
																				uint8(0x65),
																				uint8(0x6e),
																				uint8(0x65),
																				uint8(0x72),
																				uint8(0x61),
																				uint8(0x74),
																				uint8(0x6f),
																				uint8(0x72),
																				uint8(0x73),
																				uint8(0x2e),
																				uint8(0x65),
																				uint8(0x78),
																				uint8(0x74),
																				uint8(0x65),
																				uint8(0x72),
																				uint8(0x6e),
																				uint8(0x61),
																				uint8(0x6c),
																				uint8(0x2d),
																				uint8(0x73),
																				uint8(0x65),
																				uint8(0x63),
																				uint8(0x72),
																				uint8(0x65),
																				uint8(0x74),
																				uint8(0x73),
																				uint8(0x2e),
																				uint8(0x69),
																				uint8(0x6f),
																				uint8(0x2f),
																				uint8(0x76),
																				uint8(0x31),
																				uint8(0x61),
																				uint8(0x6c),
																				uint8(0x70),
																				uint8(0x68),
																				uint8(0x61),
																				uint8(0x31),
																				uint8(0x22),
																			},
																		},
																		Description: "Specify the apiVersion of the generator resource",
																		Type:        "string",
																	},
																	"kind": {
																		Description: "Specify the Kind of the resource, e.g. Password, ACRAccessToken etc.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "Specify the name of the generator resource",
																		Type:        "string",
																	},
																},
																Required: []string{
																	"kind",
																	"name",
																},
																Type: "object",
															},
															"storeRef": {
																Description: "SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"kind": {
																		Description: "Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`",
																		Type:        "string",
																	},
																	"name": {
																		Description: "Name of the SecretStore resource",
																		Type:        "string",
																	},
																},
																Required: []string{"name"},
																Type:     "object",
															},
														},
														Type: "object",
													},
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"refreshInterval": {
										Default: &apiextensionsv1.JSON{
											Raw: []uint8{
												uint8(0x22),
												uint8(0x31),
												uint8(0x68),
												uint8(0x22),
											},
										},
										Description: "RefreshInterval is the amount of time before the values are read again from the SecretStore provider Valid time units are \"ns\", \"us\" (or \"µs\"), \"ms\", \"s\", \"m\", \"h\" May be set to zero to fetch and create it once. Defaults to 1h.",
										Type:        "string",
									},
									"secretStoreRef": {
										Description: "SecretStoreRef defines which SecretStore to fetch the ExternalSecret data.",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"kind": {
												Description: "Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`",
												Type:        "string",
											},
											"name": {
												Description: "Name of the SecretStore resource",
												Type:        "string",
											},
										},
										Required: []string{"name"},
										Type:     "object",
									},
									"target": {
										Default: &apiextensionsv1.JSON{
											Raw: []uint8{
												uint8(0x7b),
												uint8(0x22),
												uint8(0x63),
												uint8(0x72),
												uint8(0x65),
												uint8(0x61),
												uint8(0x74),
												uint8(0x69),
												uint8(0x6f),
												uint8(0x6e),
												uint8(0x50),
												uint8(0x6f),
												uint8(0x6c),
												uint8(0x69),
												uint8(0x63),
												uint8(0x79),
												uint8(0x22),
												uint8(0x3a),
												uint8(0x22),
												uint8(0x4f),
												uint8(0x77),
												uint8(0x6e),
												uint8(0x65),
												uint8(0x72),
												uint8(0x22),
												uint8(0x2c),
												uint8(0x22),
												uint8(0x64),
												uint8(0x65),
												uint8(0x6c),
												uint8(0x65),
												uint8(0x74),
												uint8(0x69),
												uint8(0x6f),
												uint8(0x6e),
												uint8(0x50),
												uint8(0x6f),
												uint8(0x6c),
												uint8(0x69),
												uint8(0x63),
												uint8(0x79),
												uint8(0x22),
												uint8(0x3a),
												uint8(0x22),
												uint8(0x52),
												uint8(0x65),
												uint8(0x74),
												uint8(0x61),
												uint8(0x69),
												uint8(0x6e),
												uint8(0x22),
												uint8(0x7d),
											},
										},
										Description: "ExternalSecretTarget defines the Kubernetes Secret to be created There can be only one target per ExternalSecret.",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"creationPolicy": {
												Default: &apiextensionsv1.JSON{
													Raw: []uint8{
														uint8(0x22),
														uint8(0x4f),
														uint8(0x77),
														uint8(0x6e),
														uint8(0x65),
														uint8(0x72),
														uint8(0x22),
													},
												},
												Description: "CreationPolicy defines rules on how to create the resulting Secret Defaults to 'Owner'",
												Enum: []apiextensionsv1.JSON{
													{
														Raw: []uint8{
															uint8(0x22),
															uint8(0x4f),
															uint8(0x77),
															uint8(0x6e),
															uint8(0x65),
															uint8(0x72),
															uint8(0x22),
														},
													},
													{
														Raw: []uint8{
															uint8(0x22),
															uint8(0x4f),
															uint8(0x72),
															uint8(0x70),
															uint8(0x68),
															uint8(0x61),
															uint8(0x6e),
															uint8(0x22),
														},
													},
													{
														Raw: []uint8{
															uint8(0x22),
															uint8(0x4d),
															uint8(0x65),
															uint8(0x72),
															uint8(0x67),
															uint8(0x65),
															uint8(0x22),
														},
													},
													{
														Raw: []uint8{
															uint8(0x22),
															uint8(0x4e),
															uint8(0x6f),
															uint8(0x6e),
															uint8(0x65),
															uint8(0x22),
														},
													},
												},
												Type: "string",
											},
											"deletionPolicy": {
												Default: &apiextensionsv1.JSON{
													Raw: []uint8{
														uint8(0x22),
														uint8(0x52),
														uint8(0x65),
														uint8(0x74),
														uint8(0x61),
														uint8(0x69),
														uint8(0x6e),
														uint8(0x22),
													},
												},
												Description: "DeletionPolicy defines rules on how to delete the resulting Secret Defaults to 'Retain'",
												Enum: []apiextensionsv1.JSON{
													{
														Raw: []uint8{
															uint8(0x22),
															uint8(0x44),
															uint8(0x65),
															uint8(0x6c),
															uint8(0x65),
															uint8(0x74),
															uint8(0x65),
															uint8(0x22),
														},
													},
													{
														Raw: []uint8{
															uint8(0x22),
															uint8(0x4d),
															uint8(0x65),
															uint8(0x72),
															uint8(0x67),
															uint8(0x65),
															uint8(0x22),
														},
													},
													{
														Raw: []uint8{
															uint8(0x22),
															uint8(0x52),
															uint8(0x65),
															uint8(0x74),
															uint8(0x61),
															uint8(0x69),
															uint8(0x6e),
															uint8(0x22),
														},
													},
												},
												Type: "string",
											},
											"immutable": {
												Description: "Immutable defines if the final secret will be immutable",
												Type:        "boolean",
											},
											"name": {
												Description: "Name defines the name of the Secret resource to be managed This field is immutable Defaults to the .metadata.name of the ExternalSecret resource",
												Type:        "string",
											},
											"template": {
												Description: "Template defines a blueprint for the created Secret resource.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"data": {
														AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
															Allows: true,
															Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
														},
														Type: "object",
													},
													"engineVersion": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x76),
																uint8(0x32),
																uint8(0x22),
															},
														},
														Type: "string",
													},
													"metadata": {
														Description: "ExternalSecretTemplateMetadata defines metadata fields for the Secret blueprint.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"annotations": {
																AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																	Allows: true,
																	Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																},
																Type: "object",
															},
															"labels": {
																AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																	Allows: true,
																	Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"templateFrom": {
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"configMap": {
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"items": {
																				Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																					Schema: &apiextensionsv1.JSONSchemaProps{
																						Properties: map[string]apiextensionsv1.JSONSchemaProps{
																							"key": {Type: "string"},
																							"templateAs": {
																								Default: &apiextensionsv1.JSON{
																									Raw: []uint8{
																										uint8(0x22),
																										uint8(0x56),
																										uint8(0x61),
																										uint8(0x6c),
																										uint8(0x75),
																										uint8(0x65),
																										uint8(0x73),
																										uint8(0x22),
																									},
																								},
																								Type: "string",
																							},
																						},
																						Required: []string{"key"},
																						Type:     "object",
																					},
																				},
																				Type: "array",
																			},
																			"name": {Type: "string"},
																		},
																		Required: []string{
																			"items",
																			"name",
																		},
																		Type: "object",
																	},
																	"literal": {Type: "string"},
																	"secret": {
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"items": {
																				Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																					Schema: &apiextensionsv1.JSONSchemaProps{
																						Properties: map[string]apiextensionsv1.JSONSchemaProps{
																							"key": {Type: "string"},
																							"templateAs": {
																								Default: &apiextensionsv1.JSON{
																									Raw: []uint8{
																										uint8(0x22),
																										uint8(0x56),
																										uint8(0x61),
																										uint8(0x6c),
																										uint8(0x75),
																										uint8(0x65),
																										uint8(0x73),
																										uint8(0x22),
																									},
																								},
																								Type: "string",
																							},
																						},
																						Required: []string{"key"},
																						Type:     "object",
																					},
																				},
																				Type: "array",
																			},
																			"name": {Type: "string"},
																		},
																		Required: []string{
																			"items",
																			"name",
																		},
																		Type: "object",
																	},
																	"target": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x44),
																				uint8(0x61),
																				uint8(0x74),
																				uint8(0x61),
																				uint8(0x22),
																			},
																		},
																		Type: "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "array",
													},
													"type": {Type: "string"},
												},
												Type: "object",
											},
										},
										Type: "object",
									},
								},
								Type: "object",
							},
							"status": {
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"conditions": {
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"lastTransitionTime": {
														Format: "date-time",
														Type:   "string",
													},
													"message": {Type: "string"},
													"reason":  {Type: "string"},
													"status":  {Type: "string"},
													"type":    {Type: "string"},
												},
												Required: []string{
													"status",
													"type",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"refreshTime": {
										Description: "refreshTime is the time and date the external secret was fetched and the target secret updated",
										Format:      "date-time",
										Nullable:    true,
										Type:        "string",
									},
									"syncedResourceVersion": {
										Description: "SyncedResourceVersion keeps track of the last synced version",
										Type:        "string",
									},
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}
View Source
var FakesGeneratorsCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "fakes.generators.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "generators.external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"fake"},
			Kind:       "Fake",
			ListKind:   "FakeList",
			Plural:     "fakes",
			ShortNames: []string{"fake"},
			Singular:   "fake",
		},
		Scope: apiextensionsv1.ResourceScope("Namespaced"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				Name: "v1alpha1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "Fake generator is used for testing. It lets you define a static set of credentials that is always returned.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "FakeSpec contains the static data.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"data": {
										AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
											Allows: true,
											Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
										},
										Description: "Data defines the static data returned by this generator.",
										Type:        "object",
									},
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}
View Source
var GcraccesstokensGeneratorsCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "gcraccesstokens.generators.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "generators.external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"gcraccesstoken"},
			Kind:       "GCRAccessToken",
			ListKind:   "GCRAccessTokenList",
			Plural:     "gcraccesstokens",
			ShortNames: []string{"gcraccesstoken"},
			Singular:   "gcraccesstoken",
		},
		Scope: apiextensionsv1.ResourceScope("Namespaced"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				Name: "v1alpha1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "GCRAccessToken generates an GCP access token that can be used to authenticate with GCR.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"auth": {
										Description: "Auth defines the means for authenticating with GCP",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"secretRef": {
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"secretAccessKeySecretRef": {
														Description: "The SecretAccessKey is used for authentication",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																Type:        "string",
															},
															"name": {
																Description: "The name of the Secret resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Type: "object",
													},
												},
												Type: "object",
											},
											"workloadIdentity": {
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"clusterLocation":  {Type: "string"},
													"clusterName":      {Type: "string"},
													"clusterProjectID": {Type: "string"},
													"serviceAccountRef": {
														Description: "A reference to a ServiceAccount resource.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"audiences": {
																Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																Type:        "array",
															},
															"name": {
																Description: "The name of the ServiceAccount resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Required: []string{"name"},
														Type:     "object",
													},
												},
												Required: []string{
													"clusterLocation",
													"clusterName",
													"serviceAccountRef",
												},
												Type: "object",
											},
										},
										Type: "object",
									},
									"projectID": {
										Description: "ProjectID defines which project to use to authenticate with",
										Type:        "string",
									},
								},
								Required: []string{"auth", "projectID"},
								Type:     "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}
View Source
var PasswordsGeneratorsCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "passwords.generators.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "generators.external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"password"},
			Kind:       "Password",
			ListKind:   "PasswordList",
			Plural:     "passwords",
			ShortNames: []string{"password"},
			Singular:   "password",
		},
		Scope: apiextensionsv1.ResourceScope("Namespaced"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				Name: "v1alpha1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "Password generates a random password based on the configuration parameters in spec. You can specify the length, characterset and other attributes.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "PasswordSpec controls the behavior of the password generator.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"allowRepeat": {
										Default: &apiextensionsv1.JSON{
											Raw: []uint8{
												uint8(0x66),
												uint8(0x61),
												uint8(0x6c),
												uint8(0x73),
												uint8(0x65),
											},
										},
										Description: "set AllowRepeat to true to allow repeating characters.",
										Type:        "boolean",
									},
									"digits": {
										Description: "Digits specifies the number of digits in the generated password. If omitted it defaults to 25% of the length of the password",
										Type:        "integer",
									},
									"length": {
										Default: &apiextensionsv1.JSON{
											Raw: []uint8{
												uint8(0x32),
												uint8(0x34),
											},
										},
										Description: "Length of the password to be generated. Defaults to 24",
										Type:        "integer",
									},
									"noUpper": {
										Default: &apiextensionsv1.JSON{
											Raw: []uint8{
												uint8(0x66),
												uint8(0x61),
												uint8(0x6c),
												uint8(0x73),
												uint8(0x65),
											},
										},
										Description: "Set NoUpper to disable uppercase characters",
										Type:        "boolean",
									},
									"symbolCharacters": {
										Description: "SymbolCharacters specifies the special characters that should be used in the generated password.",
										Type:        "string",
									},
									"symbols": {
										Description: "Symbols specifies the number of symbol characters in the generated password. If omitted it defaults to 25% of the length of the password",
										Type:        "integer",
									},
								},
								Required: []string{
									"allowRepeat",
									"length",
									"noUpper",
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}
View Source
var PushsecretsCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "pushsecrets.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"pushsecrets"},
			Kind:       "PushSecret",
			ListKind:   "PushSecretList",
			Plural:     "pushsecrets",
			Singular:   "pushsecret",
		},
		Scope: apiextensionsv1.ResourceScope("Namespaced"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				AdditionalPrinterColumns: []apiextensionsv1.CustomResourceColumnDefinition{
					{
						JSONPath: ".metadata.creationTimestamp",
						Name:     "AGE",
						Type:     "date",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].reason",
						Name:     "Status",
						Type:     "string",
					},
				},
				Name: "v1alpha1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "PushSecretSpec configures the behavior of the PushSecret.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"data": {
										Description: "Secret Data that should be pushed to providers",
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"match": {
														Description: "Match a given Secret Key to be pushed to the provider.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"remoteRef": {
																Description: "Remote Refs to push to providers.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"remoteKey": {
																		Description: "Name of the resulting provider secret.",
																		Type:        "string",
																	},
																},
																Required: []string{"remoteKey"},
																Type:     "object",
															},
															"secretKey": {
																Description: "Secret Key to be pushed",
																Type:        "string",
															},
														},
														Required: []string{
															"remoteRef",
															"secretKey",
														},
														Type: "object",
													},
												},
												Required: []string{"match"},
												Type:     "object",
											},
										},
										Type: "array",
									},
									"deletionPolicy": {
										Default: &apiextensionsv1.JSON{
											Raw: []uint8{
												uint8(0x22),
												uint8(0x4e),
												uint8(0x6f),
												uint8(0x6e),
												uint8(0x65),
												uint8(0x22),
											},
										},
										Description: "Deletion Policy to handle Secrets in the provider. Possible Values: \"Delete/None\". Defaults to \"None\".",
										Type:        "string",
									},
									"refreshInterval": {
										Description: "The Interval to which External Secrets will try to push a secret definition",
										Type:        "string",
									},
									"secretStoreRefs": {
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"kind": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x53),
																uint8(0x65),
																uint8(0x63),
																uint8(0x72),
																uint8(0x65),
																uint8(0x74),
																uint8(0x53),
																uint8(0x74),
																uint8(0x6f),
																uint8(0x72),
																uint8(0x65),
																uint8(0x22),
															},
														},
														Description: "Kind of the SecretStore resource (SecretStore or ClusterSecretStore) Defaults to `SecretStore`",
														Type:        "string",
													},
													"labelSelector": {
														Description: "Optionally, sync to secret stores with label selector",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"matchExpressions": {
																Description: "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
																Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																	Schema: &apiextensionsv1.JSONSchemaProps{
																		Description: "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "key is the label key that the selector applies to.",
																				Type:        "string",
																			},
																			"operator": {
																				Description: "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
																				Type:        "string",
																			},
																			"values": {
																				Description: "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																		},
																		Required: []string{
																			"key",
																			"operator",
																		},
																		Type: "object",
																	},
																},
																Type: "array",
															},
															"matchLabels": {
																AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																	Allows: true,
																	Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																},
																Description: "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
																Type:        "object",
															},
														},
														Type:     "object",
														XMapType: P("atomic"),
													},
													"name": {
														Description: "Optionally, sync to the SecretStore of the given name",
														Type:        "string",
													},
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"selector": {
										Description: "The Secret Selector (k8s source) for the Push Secret",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"secret": {
												Description: "Select a Secret to Push.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"name": {
														Description: "Name of the Secret. The Secret must exist in the same namespace as the PushSecret manifest.",
														Type:        "string",
													},
												},
												Required: []string{"name"},
												Type:     "object",
											},
										},
										Required: []string{"secret"},
										Type:     "object",
									},
								},
								Required: []string{
									"secretStoreRefs",
									"selector",
								},
								Type: "object",
							},
							"status": {
								Description: "PushSecretStatus indicates the history of the status of PushSecret.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"conditions": {
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Description: "PushSecretStatusCondition indicates the status of the PushSecret.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"lastTransitionTime": {
														Format: "date-time",
														Type:   "string",
													},
													"message": {Type: "string"},
													"reason":  {Type: "string"},
													"status":  {Type: "string"},
													"type": {
														Description: "PushSecretConditionType indicates the condition of the PushSecret.",
														Type:        "string",
													},
												},
												Required: []string{
													"status",
													"type",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"refreshTime": {
										Description: "refreshTime is the time and date the external secret was fetched and the target secret updated",
										Format:      "date-time",
										Nullable:    true,
										Type:        "string",
									},
									"syncedPushSecrets": {
										AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
											Allows: true,
											Schema: &apiextensionsv1.JSONSchemaProps{
												AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
													Allows: true,
													Schema: &apiextensionsv1.JSONSchemaProps{
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"match": {
																Description: "Match a given Secret Key to be pushed to the provider.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"remoteRef": {
																		Description: "Remote Refs to push to providers.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"remoteKey": {
																				Description: "Name of the resulting provider secret.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"remoteKey"},
																		Type:     "object",
																	},
																	"secretKey": {
																		Description: "Secret Key to be pushed",
																		Type:        "string",
																	},
																},
																Required: []string{
																	"remoteRef",
																	"secretKey",
																},
																Type: "object",
															},
														},
														Required: []string{"match"},
														Type:     "object",
													},
												},
												Type: "object",
											},
										},
										Description: "Synced Push Secrets for later deletion. Matches Secret Stores to PushSecretData that was stored to that secretStore.",
										Type:        "object",
									},
									"syncedResourceVersion": {
										Description: "SyncedResourceVersion keeps track of the last synced version.",
										Type:        "string",
									},
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}
View Source
var SecretstoresCrd = &apiextensionsv1.CustomResourceDefinition{
	ObjectMeta: metav1.ObjectMeta{
		Annotations: map[string]string{"controller-gen.kubebuilder.io/version": "v0.11.1"},
		Name:        "secretstores.external-secrets.io",
	},
	Spec: apiextensionsv1.CustomResourceDefinitionSpec{
		Conversion: &apiextensionsv1.CustomResourceConversion{
			Strategy: apiextensionsv1.ConversionStrategyType("Webhook"),
			Webhook: &apiextensionsv1.WebhookConversion{
				ClientConfig: &apiextensionsv1.WebhookClientConfig{
					Service: &apiextensionsv1.ServiceReference{
						Name:      "external-secrets-webhook",
						Namespace: "external-secrets",
						Path:      P("/convert"),
					},
				},
				ConversionReviewVersions: []string{"v1"},
			},
		},
		Group: "external-secrets.io",
		Names: apiextensionsv1.CustomResourceDefinitionNames{
			Categories: []string{"externalsecrets"},
			Kind:       "SecretStore",
			ListKind:   "SecretStoreList",
			Plural:     "secretstores",
			ShortNames: []string{"ss"},
			Singular:   "secretstore",
		},
		Scope: apiextensionsv1.ResourceScope("Namespaced"),
		Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
			{
				AdditionalPrinterColumns: []apiextensionsv1.CustomResourceColumnDefinition{
					{
						JSONPath: ".metadata.creationTimestamp",
						Name:     "AGE",
						Type:     "date",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].reason",
						Name:     "Status",
						Type:     "string",
					},
				},
				Deprecated: true,
				Name:       "v1alpha1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "SecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "SecretStoreSpec defines the desired state of SecretStore.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"controller": {
										Description: "Used to select the correct KES controller (think: ingress.ingressClassName) The KES controller is instantiated with a specific controller name and filters ES based on this property",
										Type:        "string",
									},
									"provider": {
										Description:   "Used to configure the provider. Only one provider may be set",
										MaxProperties: P(int64(1)),
										MinProperties: P(int64(1)),
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"akeyless": {
												Description: "Akeyless configures this store to sync secrets using Akeyless Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"akeylessGWApiURL": {
														Description: "Akeyless GW API Url from which the secrets to be fetched from.",
														Type:        "string",
													},
													"authSecretRef": {
														Description: "Auth configures how the operator authenticates with Akeyless.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"kubernetesAuth": {
																Description: "Kubernetes authenticates with Akeyless by passing the ServiceAccount token stored in the named Secret resource.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessID": {
																		Description: "the Akeyless Kubernetes auth-method access-id",
																		Type:        "string",
																	},
																	"k8sConfName": {
																		Description: "Kubernetes-auth configuration name in Akeyless-Gateway",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Akeyless. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"serviceAccountRef": {
																		Description: "Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Akeyless. If the service account selector is not supplied, the secretRef will be used instead.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"accessID",
																	"k8sConfName",
																},
																Type: "object",
															},
															"secretRef": {
																Description: "Reference to a Secret that contains the details to authenticate with Akeyless.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessID": {
																		Description: "The SecretAccessID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessType": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessTypeParam": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{
													"akeylessGWApiURL",
													"authSecretRef",
												},
												Type: "object",
											},
											"alibaba": {
												Description: "Alibaba configures this store to sync secrets using Alibaba Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "AlibabaAuth contains a secretRef for credentials.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "AlibabaAuthSecretRef holds secret references for Alibaba credentials.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessKeyIDSecretRef": {
																		Description: "The AccessKeyID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessKeySecretSecretRef": {
																		Description: "The AccessKeySecret is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"accessKeyIDSecretRef",
																	"accessKeySecretSecretRef",
																},
																Type: "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"endpoint": {Type: "string"},
													"regionID": {
														Description: "Alibaba Region to be used for the provider",
														Type:        "string",
													},
												},
												Required: []string{
													"auth",
													"regionID",
												},
												Type: "object",
											},
											"aws": {
												Description: "AWS configures this store to sync secrets using AWS Secret Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines the information necessary to authenticate against AWS if not set aws sdk will infer credentials from your environment see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"jwt": {
																Description: "Authenticate against AWS using service account tokens.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"serviceAccountRef": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Type: "object",
															},
															"secretRef": {
																Description: "AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessKeyIDSecretRef": {
																		Description: "The AccessKeyID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"secretAccessKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"region": {
														Description: "AWS Region to be used for the provider",
														Type:        "string",
													},
													"role": {
														Description: "Role is a Role ARN which the SecretManager provider will assume",
														Type:        "string",
													},
													"service": {
														Description: "Service defines which service should be used to fetch the secrets",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x53),
																	uint8(0x65),
																	uint8(0x63),
																	uint8(0x72),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x73),
																	uint8(0x4d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x50),
																	uint8(0x61),
																	uint8(0x72),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x53),
																	uint8(0x74),
																	uint8(0x6f),
																	uint8(0x72),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
												},
												Required: []string{
													"region",
													"service",
												},
												Type: "object",
											},
											"azurekv": {
												Description: "AzureKV configures this store to sync secrets using Azure Key Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"authSecretRef": {
														Description: "Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"clientId": {
																Description: "The Azure clientId of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
															"clientSecret": {
																Description: "The Azure ClientSecret of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"authType": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x53),
																uint8(0x65),
																uint8(0x72),
																uint8(0x76),
																uint8(0x69),
																uint8(0x63),
																uint8(0x65),
																uint8(0x50),
																uint8(0x72),
																uint8(0x69),
																uint8(0x6e),
																uint8(0x63),
																uint8(0x69),
																uint8(0x70),
																uint8(0x61),
																uint8(0x6c),
																uint8(0x22),
															},
														},
														Description: "Auth type defines how to authenticate to the keyvault service. Valid values are: - \"ServicePrincipal\" (default): Using a service principal (tenantId, clientId, clientSecret) - \"ManagedIdentity\": Using Managed Identity assigned to the pod (see aad-pod-identity)",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x53),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x76),
																	uint8(0x69),
																	uint8(0x63),
																	uint8(0x65),
																	uint8(0x50),
																	uint8(0x72),
																	uint8(0x69),
																	uint8(0x6e),
																	uint8(0x63),
																	uint8(0x69),
																	uint8(0x70),
																	uint8(0x61),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x4d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x64),
																	uint8(0x49),
																	uint8(0x64),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x69),
																	uint8(0x74),
																	uint8(0x79),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x57),
																	uint8(0x6f),
																	uint8(0x72),
																	uint8(0x6b),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x61),
																	uint8(0x64),
																	uint8(0x49),
																	uint8(0x64),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x69),
																	uint8(0x74),
																	uint8(0x79),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"identityId": {
														Description: "If multiple Managed Identity is assigned to the pod, you can select the one to be used",
														Type:        "string",
													},
													"serviceAccountRef": {
														Description: "ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"audiences": {
																Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																Type:        "array",
															},
															"name": {
																Description: "The name of the ServiceAccount resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Required: []string{"name"},
														Type:     "object",
													},
													"tenantId": {
														Description: "TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.",
														Type:        "string",
													},
													"vaultUrl": {
														Description: "Vault Url from which the secrets to be fetched from.",
														Type:        "string",
													},
												},
												Required: []string{"vaultUrl"},
												Type:     "object",
											},
											"fake": {
												Description: "Fake configures a store with static key/value pairs",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"data": {
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key":   {Type: "string"},
																	"value": {Type: "string"},
																	"valueMap": {
																		AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																			Allows: true,
																			Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																		},
																		Type: "object",
																	},
																	"version": {Type: "string"},
																},
																Required: []string{"key"},
																Type:     "object",
															},
														},
														Type: "array",
													},
												},
												Required: []string{"data"},
												Type:     "object",
											},
											"gcpsm": {
												Description: "GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines the information necessary to authenticate against GCP",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"secretAccessKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"workloadIdentity": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clusterLocation":  {Type: "string"},
																	"clusterName":      {Type: "string"},
																	"clusterProjectID": {Type: "string"},
																	"serviceAccountRef": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"clusterLocation",
																	"clusterName",
																	"serviceAccountRef",
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"projectID": {
														Description: "ProjectID project where secret is located",
														Type:        "string",
													},
												},
												Type: "object",
											},
											"gitlab": {
												Description: "Gitlab configures this store to sync secrets using Gitlab Variables provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with a GitLab instance.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"SecretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessToken": {
																		Description: "AccessToken is used for authentication.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Required: []string{"SecretRef"},
														Type:     "object",
													},
													"projectID": {
														Description: "ProjectID specifies a project where secrets are located.",
														Type:        "string",
													},
													"url": {
														Description: "URL configures the GitLab instance URL. Defaults to https://gitlab.com/.",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"ibm": {
												Description: "IBM configures this store to sync secrets using IBM Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the IBM secrets manager.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"secretApiKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"serviceUrl": {
														Description: "ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"kubernetes": {
												Description: "Kubernetes configures this store to sync secrets using a Kubernetes cluster provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description:   "Auth configures how secret-manager authenticates with a Kubernetes instance.",
														MaxProperties: P(int64(1)),
														MinProperties: P(int64(1)),
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"cert": {
																Description: "has both clientCert and clientKey as secretKeySelector",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clientCert": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"clientKey": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"serviceAccount": {
																Description: "points to a service account that should be used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"serviceAccount": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Type: "object",
															},
															"token": {
																Description: "use static token to authenticate with",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"bearerToken": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"remoteNamespace": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x64),
																uint8(0x65),
																uint8(0x66),
																uint8(0x61),
																uint8(0x75),
																uint8(0x6c),
																uint8(0x74),
																uint8(0x22),
															},
														},
														Description: "Remote namespace to fetch the secrets from",
														Type:        "string",
													},
													"server": {
														Description: "configures the Kubernetes server Address.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"caBundle": {
																Description: "CABundle is a base64-encoded CA certificate",
																Format:      "byte",
																Type:        "string",
															},
															"caProvider": {
																Description: "see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key the value inside of the provider type to use, only used with \"Secret\" type",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the object located at the provider type.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "The namespace the Provider type is in.",
																		Type:        "string",
																	},
																	"type": {
																		Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																		Enum: []apiextensionsv1.JSON{
																			{
																				Raw: []uint8{
																					uint8(0x22),
																					uint8(0x53),
																					uint8(0x65),
																					uint8(0x63),
																					uint8(0x72),
																					uint8(0x65),
																					uint8(0x74),
																					uint8(0x22),
																				},
																			},
																			{
																				Raw: []uint8{
																					uint8(0x22),
																					uint8(0x43),
																					uint8(0x6f),
																					uint8(0x6e),
																					uint8(0x66),
																					uint8(0x69),
																					uint8(0x67),
																					uint8(0x4d),
																					uint8(0x61),
																					uint8(0x70),
																					uint8(0x22),
																				},
																			},
																		},
																		Type: "string",
																	},
																},
																Required: []string{
																	"name",
																	"type",
																},
																Type: "object",
															},
															"url": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x6b),
																		uint8(0x75),
																		uint8(0x62),
																		uint8(0x65),
																		uint8(0x72),
																		uint8(0x6e),
																		uint8(0x65),
																		uint8(0x74),
																		uint8(0x65),
																		uint8(0x73),
																		uint8(0x2e),
																		uint8(0x64),
																		uint8(0x65),
																		uint8(0x66),
																		uint8(0x61),
																		uint8(0x75),
																		uint8(0x6c),
																		uint8(0x74),
																		uint8(0x22),
																	},
																},
																Description: "configures the Kubernetes server Address.",
																Type:        "string",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"oracle": {
												Description: "Oracle configures this store to sync secrets using Oracle Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "SecretRef to pass through sensitive information.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"fingerprint": {
																		Description: "Fingerprint is the fingerprint of the API private key.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"privatekey": {
																		Description: "PrivateKey is the user's API Signing Key in PEM format, used for authentication.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"fingerprint",
																	"privatekey",
																},
																Type: "object",
															},
															"tenancy": {
																Description: "Tenancy is the tenancy OCID where user is located.",
																Type:        "string",
															},
															"user": {
																Description: "User is an access OCID specific to the account.",
																Type:        "string",
															},
														},
														Required: []string{
															"secretRef",
															"tenancy",
															"user",
														},
														Type: "object",
													},
													"region": {
														Description: "Region is the region where vault is located.",
														Type:        "string",
													},
													"vault": {
														Description: "Vault is the vault's OCID of the specific vault where secret is located.",
														Type:        "string",
													},
												},
												Required: []string{
													"region",
													"vault",
												},
												Type: "object",
											},
											"vault": {
												Description: "Vault configures this store to sync secrets using Hashi provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the Vault server.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"appRole": {
																Description: "AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x61),
																				uint8(0x70),
																				uint8(0x70),
																				uint8(0x72),
																				uint8(0x6f),
																				uint8(0x6c),
																				uint8(0x65),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the App Role authentication backend is mounted in Vault, e.g: \"approle\"",
																		Type:        "string",
																	},
																	"roleId": {
																		Description: "RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"path",
																	"roleId",
																	"secretRef",
																},
																Type: "object",
															},
															"cert": {
																Description: "Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clientCert": {
																		Description: "ClientCert is a certificate to authenticate using the Cert Vault authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"secretRef": {
																		Description: "SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"jwt": {
																Description: "Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"kubernetesServiceAccountToken": {
																		Description: "Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Optional audiences field that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to a single audience `vault` it not specified.",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"expirationSeconds": {
																				Description: "Optional expiration time in seconds that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to 10 minutes.",
																				Format:      "int64",
																				Type:        "integer",
																			},
																			"serviceAccountRef": {
																				Description: "Service account field containing the name of a kubernetes ServiceAccount.",
																				Properties: map[string]apiextensionsv1.JSONSchemaProps{
																					"audiences": {
																						Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																						Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																						Type:        "array",
																					},
																					"name": {
																						Description: "The name of the ServiceAccount resource being referred to.",
																						Type:        "string",
																					},
																					"namespace": {
																						Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																						Type:        "string",
																					},
																				},
																				Required: []string{"name"},
																				Type:     "object",
																			},
																		},
																		Required: []string{"serviceAccountRef"},
																		Type:     "object",
																	},
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6a),
																				uint8(0x77),
																				uint8(0x74),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the JWT authentication backend is mounted in Vault, e.g: \"jwt\"",
																		Type:        "string",
																	},
																	"role": {
																		Description: "Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional SecretRef that refers to a key in a Secret resource containing JWT token to authenticate with Vault using the JWT/OIDC authentication method.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{"path"},
																Type:     "object",
															},
															"kubernetes": {
																Description: "Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"mountPath": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6b),
																				uint8(0x75),
																				uint8(0x62),
																				uint8(0x65),
																				uint8(0x72),
																				uint8(0x6e),
																				uint8(0x65),
																				uint8(0x74),
																				uint8(0x65),
																				uint8(0x73),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the Kubernetes authentication backend is mounted in Vault, e.g: \"kubernetes\"",
																		Type:        "string",
																	},
																	"role": {
																		Description: "A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"serviceAccountRef": {
																		Description: "Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Vault. If the service account selector is not supplied, the secretRef will be used instead.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"mountPath",
																	"role",
																},
																Type: "object",
															},
															"ldap": {
																Description: "Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6c),
																				uint8(0x64),
																				uint8(0x61),
																				uint8(0x70),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the LDAP authentication backend is mounted in Vault, e.g: \"ldap\"",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "SecretRef to a key in a Secret resource containing password for the LDAP user used to authenticate with Vault using the LDAP authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"username": {
																		Description: "Username is a LDAP user name used to authenticate using the LDAP Vault authentication method",
																		Type:        "string",
																	},
																},
																Required: []string{
																	"path",
																	"username",
																},
																Type: "object",
															},
															"tokenSecretRef": {
																Description: "TokenSecretRef authenticates with Vault by presenting a token.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caBundle": {
														Description: "PEM encoded CA bundle used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.",
														Format:      "byte",
														Type:        "string",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Vault server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key the value inside of the provider type to use, only used with \"Secret\" type",
																Type:        "string",
															},
															"name": {
																Description: "The name of the object located at the provider type.",
																Type:        "string",
															},
															"namespace": {
																Description: "The namespace the Provider type is in.",
																Type:        "string",
															},
															"type": {
																Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																Enum: []apiextensionsv1.JSON{
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x53),
																			uint8(0x65),
																			uint8(0x63),
																			uint8(0x72),
																			uint8(0x65),
																			uint8(0x74),
																			uint8(0x22),
																		},
																	},
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x43),
																			uint8(0x6f),
																			uint8(0x6e),
																			uint8(0x66),
																			uint8(0x69),
																			uint8(0x67),
																			uint8(0x4d),
																			uint8(0x61),
																			uint8(0x70),
																			uint8(0x22),
																		},
																	},
																},
																Type: "string",
															},
														},
														Required: []string{
															"name",
															"type",
														},
														Type: "object",
													},
													"forwardInconsistent": {
														Description: "ForwardInconsistent tells Vault to forward read-after-write requests to the Vault leader instead of simply retrying within a loop. This can increase performance if the option is enabled serverside. https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header",
														Type:        "boolean",
													},
													"namespace": {
														Description: "Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: \"ns1\". More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces",
														Type:        "string",
													},
													"path": {
														Description: "Path is the mount path of the Vault KV backend endpoint, e.g: \"secret\". The v2 KV secret engine version specific \"/data\" path suffix for fetching secrets from Vault is optional and will be appended if not present in specified path.",
														Type:        "string",
													},
													"readYourWrites": {
														Description: "ReadYourWrites ensures isolated read-after-write semantics by providing discovered cluster replication states in each request. More information about eventual consistency in Vault can be found here https://www.vaultproject.io/docs/enterprise/consistency",
														Type:        "boolean",
													},
													"server": {
														Description: "Server is the connection address for the Vault server, e.g: \"https://vault.example.com:8200\".",
														Type:        "string",
													},
													"version": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x76),
																uint8(0x32),
																uint8(0x22),
															},
														},
														Description: "Version is the Vault KV secret engine version. This can be either \"v1\" or \"v2\". Version defaults to \"v2\".",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x76),
																	uint8(0x31),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x76),
																	uint8(0x32),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
												},
												Required: []string{
													"auth",
													"server",
												},
												Type: "object",
											},
											"webhook": {
												Description: "Webhook configures this store to sync secrets using a generic templated webhook",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"body": {
														Description: "Body",
														Type:        "string",
													},
													"caBundle": {
														Description: "PEM encoded CA bundle used to validate webhook server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.",
														Format:      "byte",
														Type:        "string",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate webhook server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key the value inside of the provider type to use, only used with \"Secret\" type",
																Type:        "string",
															},
															"name": {
																Description: "The name of the object located at the provider type.",
																Type:        "string",
															},
															"namespace": {
																Description: "The namespace the Provider type is in.",
																Type:        "string",
															},
															"type": {
																Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																Enum: []apiextensionsv1.JSON{
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x53),
																			uint8(0x65),
																			uint8(0x63),
																			uint8(0x72),
																			uint8(0x65),
																			uint8(0x74),
																			uint8(0x22),
																		},
																	},
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x43),
																			uint8(0x6f),
																			uint8(0x6e),
																			uint8(0x66),
																			uint8(0x69),
																			uint8(0x67),
																			uint8(0x4d),
																			uint8(0x61),
																			uint8(0x70),
																			uint8(0x22),
																		},
																	},
																},
																Type: "string",
															},
														},
														Required: []string{
															"name",
															"type",
														},
														Type: "object",
													},
													"headers": {
														AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
															Allows: true,
															Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
														},
														Description: "Headers",
														Type:        "object",
													},
													"method": {
														Description: "Webhook Method",
														Type:        "string",
													},
													"result": {
														Description: "Result formatting",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"jsonPath": {
																Description: "Json path of return value",
																Type:        "string",
															},
														},
														Type: "object",
													},
													"secrets": {
														Description: "Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name",
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"name": {
																		Description: "Name of this secret in templates",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Secret ref to fill in credentials",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"name",
																	"secretRef",
																},
																Type: "object",
															},
														},
														Type: "array",
													},
													"timeout": {
														Description: "Timeout",
														Type:        "string",
													},
													"url": {
														Description: "Webhook url to call",
														Type:        "string",
													},
												},
												Required: []string{
													"result",
													"url",
												},
												Type: "object",
											},
											"yandexlockbox": {
												Description: "YandexLockbox configures this store to sync secrets using Yandex Lockbox provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"apiEndpoint": {
														Description: "Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')",
														Type:        "string",
													},
													"auth": {
														Description: "Auth defines the information necessary to authenticate against Yandex Lockbox",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"authorizedKeySecretRef": {
																Description: "The authorized key used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Yandex.Cloud server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"certSecretRef": {
																Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
										},
										Type: "object",
									},
									"retrySettings": {
										Description: "Used to configure http retries if failed",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"maxRetries": {
												Format: "int32",
												Type:   "integer",
											},
											"retryInterval": {Type: "string"},
										},
										Type: "object",
									},
								},
								Required: []string{"provider"},
								Type:     "object",
							},
							"status": {
								Description: "SecretStoreStatus defines the observed state of the SecretStore.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"conditions": {
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"lastTransitionTime": {
														Format: "date-time",
														Type:   "string",
													},
													"message": {Type: "string"},
													"reason":  {Type: "string"},
													"status":  {Type: "string"},
													"type":    {Type: "string"},
												},
												Required: []string{
													"status",
													"type",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			}, {
				AdditionalPrinterColumns: []apiextensionsv1.CustomResourceColumnDefinition{
					{
						JSONPath: ".metadata.creationTimestamp",
						Name:     "AGE",
						Type:     "date",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].reason",
						Name:     "Status",
						Type:     "string",
					}, {
						JSONPath: ".status.capabilities",
						Name:     "Capabilities",
						Type:     "string",
					}, {
						JSONPath: ".status.conditions[?(@.type==\"Ready\")].status",
						Name:     "Ready",
						Type:     "string",
					},
				},
				Name: "v1beta1",
				Schema: &apiextensionsv1.CustomResourceValidation{
					OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
						Description: "SecretStore represents a secure external location for storing secrets, which can be referenced as part of `storeRef` fields.",
						Properties: map[string]apiextensionsv1.JSONSchemaProps{
							"apiVersion": {
								Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
								Type:        "string",
							},
							"kind": {
								Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
								Type:        "string",
							},
							"metadata": {Type: "object"},
							"spec": {
								Description: "SecretStoreSpec defines the desired state of SecretStore.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"conditions": {
										Description: "Used to constraint a ClusterSecretStore to specific namespaces. Relevant only to ClusterSecretStore",
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Description: "ClusterSecretStoreCondition describes a condition by which to choose namespaces to process ExternalSecrets in for a ClusterSecretStore instance.",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"namespaceSelector": {
														Description: "Choose namespace using a labelSelector",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"matchExpressions": {
																Description: "matchExpressions is a list of label selector requirements. The requirements are ANDed.",
																Items: &apiextensionsv1.JSONSchemaPropsOrArray{
																	Schema: &apiextensionsv1.JSONSchemaProps{
																		Description: "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "key is the label key that the selector applies to.",
																				Type:        "string",
																			},
																			"operator": {
																				Description: "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.",
																				Type:        "string",
																			},
																			"values": {
																				Description: "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																		},
																		Required: []string{
																			"key",
																			"operator",
																		},
																		Type: "object",
																	},
																},
																Type: "array",
															},
															"matchLabels": {
																AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																	Allows: true,
																	Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																},
																Description: "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.",
																Type:        "object",
															},
														},
														Type:     "object",
														XMapType: P("atomic"),
													},
													"namespaces": {
														Description: "Choose namespaces by name",
														Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
														Type:        "array",
													},
												},
												Type: "object",
											},
										},
										Type: "array",
									},
									"controller": {
										Description: "Used to select the correct KES controller (think: ingress.ingressClassName) The KES controller is instantiated with a specific controller name and filters ES based on this property",
										Type:        "string",
									},
									"provider": {
										Description:   "Used to configure the provider. Only one provider may be set",
										MaxProperties: P(int64(1)),
										MinProperties: P(int64(1)),
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"akeyless": {
												Description: "Akeyless configures this store to sync secrets using Akeyless Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"akeylessGWApiURL": {
														Description: "Akeyless GW API Url from which the secrets to be fetched from.",
														Type:        "string",
													},
													"authSecretRef": {
														Description: "Auth configures how the operator authenticates with Akeyless.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"kubernetesAuth": {
																Description: "Kubernetes authenticates with Akeyless by passing the ServiceAccount token stored in the named Secret resource.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessID": {
																		Description: "the Akeyless Kubernetes auth-method access-id",
																		Type:        "string",
																	},
																	"k8sConfName": {
																		Description: "Kubernetes-auth configuration name in Akeyless-Gateway",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Akeyless. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"serviceAccountRef": {
																		Description: "Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Akeyless. If the service account selector is not supplied, the secretRef will be used instead.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"accessID",
																	"k8sConfName",
																},
																Type: "object",
															},
															"secretRef": {
																Description: "Reference to a Secret that contains the details to authenticate with Akeyless.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessID": {
																		Description: "The SecretAccessID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessType": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessTypeParam": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{
													"akeylessGWApiURL",
													"authSecretRef",
												},
												Type: "object",
											},
											"alibaba": {
												Description: "Alibaba configures this store to sync secrets using Alibaba Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "AlibabaAuth contains a secretRef for credentials.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "AlibabaAuthSecretRef holds secret references for Alibaba credentials.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessKeyIDSecretRef": {
																		Description: "The AccessKeyID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"accessKeySecretSecretRef": {
																		Description: "The AccessKeySecret is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"accessKeyIDSecretRef",
																	"accessKeySecretSecretRef",
																},
																Type: "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"endpoint": {Type: "string"},
													"regionID": {
														Description: "Alibaba Region to be used for the provider",
														Type:        "string",
													},
												},
												Required: []string{
													"auth",
													"regionID",
												},
												Type: "object",
											},
											"aws": {
												Description: "AWS configures this store to sync secrets using AWS Secret Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"additionalRoles": {
														Description: "AdditionalRoles is a chained list of Role ARNs which the SecretManager provider will sequentially assume before assuming Role",
														Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
														Type:        "array",
													},
													"auth": {
														Description: "Auth defines the information necessary to authenticate against AWS if not set aws sdk will infer credentials from your environment see: https://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html#specifying-credentials",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"jwt": {
																Description: "Authenticate against AWS using service account tokens.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"serviceAccountRef": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Type: "object",
															},
															"secretRef": {
																Description: "AWSAuthSecretRef holds secret references for AWS credentials both AccessKeyID and SecretAccessKey must be defined in order to properly authenticate.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessKeyIDSecretRef": {
																		Description: "The AccessKeyID is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"secretAccessKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"sessionTokenSecretRef": {
																		Description: "The SessionToken used for authentication This must be defined if AccessKeyID and SecretAccessKey are temporary credentials see: https://docs.aws.amazon.com/IAM/latest/UserGuide/id_credentials_temp_use-resources.html",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"region": {
														Description: "AWS Region to be used for the provider",
														Type:        "string",
													},
													"role": {
														Description: "Role is a Role ARN which the SecretManager provider will assume",
														Type:        "string",
													},
													"service": {
														Description: "Service defines which service should be used to fetch the secrets",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x53),
																	uint8(0x65),
																	uint8(0x63),
																	uint8(0x72),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x73),
																	uint8(0x4d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x50),
																	uint8(0x61),
																	uint8(0x72),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x53),
																	uint8(0x74),
																	uint8(0x6f),
																	uint8(0x72),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
												},
												Required: []string{
													"region",
													"service",
												},
												Type: "object",
											},
											"azurekv": {
												Description: "AzureKV configures this store to sync secrets using Azure Key Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"authSecretRef": {
														Description: "Auth configures how the operator authenticates with Azure. Required for ServicePrincipal auth type.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"clientId": {
																Description: "The Azure clientId of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
															"clientSecret": {
																Description: "The Azure ClientSecret of the service principle used for authentication.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"authType": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x53),
																uint8(0x65),
																uint8(0x72),
																uint8(0x76),
																uint8(0x69),
																uint8(0x63),
																uint8(0x65),
																uint8(0x50),
																uint8(0x72),
																uint8(0x69),
																uint8(0x6e),
																uint8(0x63),
																uint8(0x69),
																uint8(0x70),
																uint8(0x61),
																uint8(0x6c),
																uint8(0x22),
															},
														},
														Description: "Auth type defines how to authenticate to the keyvault service. Valid values are: - \"ServicePrincipal\" (default): Using a service principal (tenantId, clientId, clientSecret) - \"ManagedIdentity\": Using Managed Identity assigned to the pod (see aad-pod-identity)",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x53),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x76),
																	uint8(0x69),
																	uint8(0x63),
																	uint8(0x65),
																	uint8(0x50),
																	uint8(0x72),
																	uint8(0x69),
																	uint8(0x6e),
																	uint8(0x63),
																	uint8(0x69),
																	uint8(0x70),
																	uint8(0x61),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x4d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x67),
																	uint8(0x65),
																	uint8(0x64),
																	uint8(0x49),
																	uint8(0x64),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x69),
																	uint8(0x74),
																	uint8(0x79),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x57),
																	uint8(0x6f),
																	uint8(0x72),
																	uint8(0x6b),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x61),
																	uint8(0x64),
																	uint8(0x49),
																	uint8(0x64),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x69),
																	uint8(0x74),
																	uint8(0x79),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"environmentType": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x50),
																uint8(0x75),
																uint8(0x62),
																uint8(0x6c),
																uint8(0x69),
																uint8(0x63),
																uint8(0x43),
																uint8(0x6c),
																uint8(0x6f),
																uint8(0x75),
																uint8(0x64),
																uint8(0x22),
															},
														},
														Description: "EnvironmentType specifies the Azure cloud environment endpoints to use for connecting and authenticating with Azure. By default it points to the public cloud AAD endpoint. The following endpoints are available, also see here: https://github.com/Azure/go-autorest/blob/main/autorest/azure/environments.go#L152 PublicCloud, USGovernmentCloud, ChinaCloud, GermanCloud",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x50),
																	uint8(0x75),
																	uint8(0x62),
																	uint8(0x6c),
																	uint8(0x69),
																	uint8(0x63),
																	uint8(0x43),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x75),
																	uint8(0x64),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x55),
																	uint8(0x53),
																	uint8(0x47),
																	uint8(0x6f),
																	uint8(0x76),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x6e),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x74),
																	uint8(0x43),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x75),
																	uint8(0x64),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x43),
																	uint8(0x68),
																	uint8(0x69),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x43),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x75),
																	uint8(0x64),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x47),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x6d),
																	uint8(0x61),
																	uint8(0x6e),
																	uint8(0x43),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x75),
																	uint8(0x64),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"identityId": {
														Description: "If multiple Managed Identity is assigned to the pod, you can select the one to be used",
														Type:        "string",
													},
													"serviceAccountRef": {
														Description: "ServiceAccountRef specified the service account that should be used when authenticating with WorkloadIdentity.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"audiences": {
																Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																Type:        "array",
															},
															"name": {
																Description: "The name of the ServiceAccount resource being referred to.",
																Type:        "string",
															},
															"namespace": {
																Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																Type:        "string",
															},
														},
														Required: []string{"name"},
														Type:     "object",
													},
													"tenantId": {
														Description: "TenantID configures the Azure Tenant to send requests to. Required for ServicePrincipal auth type.",
														Type:        "string",
													},
													"vaultUrl": {
														Description: "Vault Url from which the secrets to be fetched from.",
														Type:        "string",
													},
												},
												Required: []string{"vaultUrl"},
												Type:     "object",
											},
											"doppler": {
												Description: "Doppler configures this store to sync secrets using the Doppler provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how the Operator authenticates with the Doppler API",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"dopplerToken": {
																		Description: "The DopplerToken is used for authentication. See https://docs.doppler.com/reference/api#authentication for auth token types. The Key attribute defaults to dopplerToken if not specified.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{"dopplerToken"},
																Type:     "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"config": {
														Description: "Doppler config (required if not using a Service Token)",
														Type:        "string",
													},
													"format": {
														Description: "Format enables the downloading of secrets as a file (string)",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x6a),
																	uint8(0x73),
																	uint8(0x6f),
																	uint8(0x6e),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x64),
																	uint8(0x6f),
																	uint8(0x74),
																	uint8(0x6e),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x2d),
																	uint8(0x6a),
																	uint8(0x73),
																	uint8(0x6f),
																	uint8(0x6e),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x76),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x79),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x64),
																	uint8(0x6f),
																	uint8(0x63),
																	uint8(0x6b),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"nameTransformer": {
														Description: "Environment variable compatible name transforms that change secret names to a different format",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x75),
																	uint8(0x70),
																	uint8(0x70),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x2d),
																	uint8(0x63),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x63),
																	uint8(0x61),
																	uint8(0x6d),
																	uint8(0x65),
																	uint8(0x6c),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x6c),
																	uint8(0x6f),
																	uint8(0x77),
																	uint8(0x65),
																	uint8(0x72),
																	uint8(0x2d),
																	uint8(0x73),
																	uint8(0x6e),
																	uint8(0x61),
																	uint8(0x6b),
																	uint8(0x65),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x74),
																	uint8(0x66),
																	uint8(0x2d),
																	uint8(0x76),
																	uint8(0x61),
																	uint8(0x72),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x64),
																	uint8(0x6f),
																	uint8(0x74),
																	uint8(0x6e),
																	uint8(0x65),
																	uint8(0x74),
																	uint8(0x2d),
																	uint8(0x65),
																	uint8(0x6e),
																	uint8(0x76),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
													"project": {
														Description: "Doppler project (required if not using a Service Token)",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"fake": {
												Description: "Fake configures a store with static key/value pairs",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"data": {
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key":   {Type: "string"},
																	"value": {Type: "string"},
																	"valueMap": {
																		AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
																			Allows: true,
																			Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
																		},
																		Type: "object",
																	},
																	"version": {Type: "string"},
																},
																Required: []string{"key"},
																Type:     "object",
															},
														},
														Type: "array",
													},
												},
												Required: []string{"data"},
												Type:     "object",
											},
											"gcpsm": {
												Description: "GCPSM configures this store to sync secrets using Google Cloud Platform Secret Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines the information necessary to authenticate against GCP",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"secretAccessKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"workloadIdentity": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clusterLocation":  {Type: "string"},
																	"clusterName":      {Type: "string"},
																	"clusterProjectID": {Type: "string"},
																	"serviceAccountRef": {
																		Description: "A reference to a ServiceAccount resource.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"clusterLocation",
																	"clusterName",
																	"serviceAccountRef",
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"projectID": {
														Description: "ProjectID project where secret is located",
														Type:        "string",
													},
												},
												Type: "object",
											},
											"gitlab": {
												Description: "Gitlab configures this store to sync secrets using Gitlab Variables provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with a GitLab instance.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"SecretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"accessToken": {
																		Description: "AccessToken is used for authentication.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Required: []string{"SecretRef"},
														Type:     "object",
													},
													"environment": {
														Description: "Environment environment_scope of gitlab CI/CD variables (Please see https://docs.gitlab.com/ee/ci/environments/#create-a-static-environment on how to create environments)",
														Type:        "string",
													},
													"groupIDs": {
														Description: "GroupIDs specify, which gitlab groups to pull secrets from. Group secrets are read from left to right followed by the project variables.",
														Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
														Type:        "array",
													},
													"inheritFromGroups": {
														Description: "InheritFromGroups specifies whether parent groups should be discovered and checked for secrets.",
														Type:        "boolean",
													},
													"projectID": {
														Description: "ProjectID specifies a project where secrets are located.",
														Type:        "string",
													},
													"url": {
														Description: "URL configures the GitLab instance URL. Defaults to https://gitlab.com/.",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"ibm": {
												Description: "IBM configures this store to sync secrets using IBM Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description:   "Auth configures how secret-manager authenticates with the IBM secrets manager.",
														MaxProperties: P(int64(1)),
														MinProperties: P(int64(1)),
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"containerAuth": {
																Description: "IBM Container-based auth with IAM Trusted Profile.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"iamEndpoint": {Type: "string"},
																	"profile": {
																		Description: "the IBM Trusted Profile",
																		Type:        "string",
																	},
																	"tokenLocation": {
																		Description: "Location the token is mounted on the pod",
																		Type:        "string",
																	},
																},
																Required: []string{"profile"},
																Type:     "object",
															},
															"secretRef": {
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"secretApiKeySecretRef": {
																		Description: "The SecretAccessKey is used for authentication",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"serviceUrl": {
														Description: "ServiceURL is the Endpoint URL that is specific to the Secrets Manager service instance",
														Type:        "string",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"kubernetes": {
												Description: "Kubernetes configures this store to sync secrets using a Kubernetes cluster provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description:   "Auth configures how secret-manager authenticates with a Kubernetes instance.",
														MaxProperties: P(int64(1)),
														MinProperties: P(int64(1)),
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"cert": {
																Description: "has both clientCert and clientKey as secretKeySelector",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clientCert": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"clientKey": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"serviceAccount": {
																Description: "points to a service account that should be used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"audiences": {
																		Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																		Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																		Type:        "array",
																	},
																	"name": {
																		Description: "The name of the ServiceAccount resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Required: []string{"name"},
																Type:     "object",
															},
															"token": {
																Description: "use static token to authenticate with",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"bearerToken": {
																		Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"remoteNamespace": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x64),
																uint8(0x65),
																uint8(0x66),
																uint8(0x61),
																uint8(0x75),
																uint8(0x6c),
																uint8(0x74),
																uint8(0x22),
															},
														},
														Description: "Remote namespace to fetch the secrets from",
														Type:        "string",
													},
													"server": {
														Description: "configures the Kubernetes server Address.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"caBundle": {
																Description: "CABundle is a base64-encoded CA certificate",
																Format:      "byte",
																Type:        "string",
															},
															"caProvider": {
																Description: "see: https://external-secrets.io/v0.4.1/spec/#external-secrets.io/v1alpha1.CAProvider",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key where the CA certificate can be found in the Secret or ConfigMap.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the object located at the provider type.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "The namespace the Provider type is in. Can only be defined when used in a ClusterSecretStore.",
																		Type:        "string",
																	},
																	"type": {
																		Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																		Enum: []apiextensionsv1.JSON{
																			{
																				Raw: []uint8{
																					uint8(0x22),
																					uint8(0x53),
																					uint8(0x65),
																					uint8(0x63),
																					uint8(0x72),
																					uint8(0x65),
																					uint8(0x74),
																					uint8(0x22),
																				},
																			},
																			{
																				Raw: []uint8{
																					uint8(0x22),
																					uint8(0x43),
																					uint8(0x6f),
																					uint8(0x6e),
																					uint8(0x66),
																					uint8(0x69),
																					uint8(0x67),
																					uint8(0x4d),
																					uint8(0x61),
																					uint8(0x70),
																					uint8(0x22),
																				},
																			},
																		},
																		Type: "string",
																	},
																},
																Required: []string{
																	"name",
																	"type",
																},
																Type: "object",
															},
															"url": {
																Default: &apiextensionsv1.JSON{
																	Raw: []uint8{
																		uint8(0x22),
																		uint8(0x6b),
																		uint8(0x75),
																		uint8(0x62),
																		uint8(0x65),
																		uint8(0x72),
																		uint8(0x6e),
																		uint8(0x65),
																		uint8(0x74),
																		uint8(0x65),
																		uint8(0x73),
																		uint8(0x2e),
																		uint8(0x64),
																		uint8(0x65),
																		uint8(0x66),
																		uint8(0x61),
																		uint8(0x75),
																		uint8(0x6c),
																		uint8(0x74),
																		uint8(0x22),
																	},
																},
																Description: "configures the Kubernetes server Address.",
																Type:        "string",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"onepassword": {
												Description: "OnePassword configures this store to sync secrets using the 1Password Cloud provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines the information necessary to authenticate against OnePassword Connect Server",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "OnePasswordAuthSecretRef holds secret references for 1Password credentials.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"connectTokenSecretRef": {
																		Description: "The ConnectToken is used for authentication to a 1Password Connect Server.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{"connectTokenSecretRef"},
																Type:     "object",
															},
														},
														Required: []string{"secretRef"},
														Type:     "object",
													},
													"connectHost": {
														Description: "ConnectHost defines the OnePassword Connect Server to connect to",
														Type:        "string",
													},
													"vaults": {
														AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
															Allows: true,
															Schema: &apiextensionsv1.JSONSchemaProps{Type: "integer"},
														},
														Description: "Vaults defines which OnePassword vaults to search in which order",
														Type:        "object",
													},
												},
												Required: []string{
													"auth",
													"connectHost",
													"vaults",
												},
												Type: "object",
											},
											"oracle": {
												Description: "Oracle configures this store to sync secrets using Oracle Vault provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the Oracle Vault. If empty, use the instance principal, otherwise the user credentials specified in Auth.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"secretRef": {
																Description: "SecretRef to pass through sensitive information.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"fingerprint": {
																		Description: "Fingerprint is the fingerprint of the API private key.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"privatekey": {
																		Description: "PrivateKey is the user's API Signing Key in PEM format, used for authentication.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"fingerprint",
																	"privatekey",
																},
																Type: "object",
															},
															"tenancy": {
																Description: "Tenancy is the tenancy OCID where user is located.",
																Type:        "string",
															},
															"user": {
																Description: "User is an access OCID specific to the account.",
																Type:        "string",
															},
														},
														Required: []string{
															"secretRef",
															"tenancy",
															"user",
														},
														Type: "object",
													},
													"region": {
														Description: "Region is the region where vault is located.",
														Type:        "string",
													},
													"vault": {
														Description: "Vault is the vault's OCID of the specific vault where secret is located.",
														Type:        "string",
													},
												},
												Required: []string{
													"region",
													"vault",
												},
												Type: "object",
											},
											"senhasegura": {
												Description: "Senhasegura configures this store to sync secrets using senhasegura provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth defines parameters to authenticate in senhasegura",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"clientId": {Type: "string"},
															"clientSecretSecretRef": {
																Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Required: []string{
															"clientId",
															"clientSecretSecretRef",
														},
														Type: "object",
													},
													"ignoreSslCertificate": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x66),
																uint8(0x61),
																uint8(0x6c),
																uint8(0x73),
																uint8(0x65),
															},
														},
														Description: "IgnoreSslCertificate defines if SSL certificate must be ignored",
														Type:        "boolean",
													},
													"module": {
														Description: "Module defines which senhasegura module should be used to get secrets",
														Type:        "string",
													},
													"url": {
														Description: "URL of senhasegura",
														Type:        "string",
													},
												},
												Required: []string{
													"auth",
													"module",
													"url",
												},
												Type: "object",
											},
											"vault": {
												Description: "Vault configures this store to sync secrets using Hashi provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"auth": {
														Description: "Auth configures how secret-manager authenticates with the Vault server.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"appRole": {
																Description: "AppRole authenticates with Vault using the App Role auth mechanism, with the role and secret stored in a Kubernetes Secret resource.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x61),
																				uint8(0x70),
																				uint8(0x70),
																				uint8(0x72),
																				uint8(0x6f),
																				uint8(0x6c),
																				uint8(0x65),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the App Role authentication backend is mounted in Vault, e.g: \"approle\"",
																		Type:        "string",
																	},
																	"roleId": {
																		Description: "RoleID configured in the App Role authentication backend when setting up the authentication backend in Vault.",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Reference to a key in a Secret that contains the App Role secret used to authenticate with Vault. The `key` field must be specified and denotes which entry within the Secret resource is used as the app role secret.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"path",
																	"roleId",
																	"secretRef",
																},
																Type: "object",
															},
															"cert": {
																Description: "Cert authenticates with TLS Certificates by passing client certificate, private key and ca certificate Cert authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"clientCert": {
																		Description: "ClientCert is a certificate to authenticate using the Cert Vault authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"secretRef": {
																		Description: "SecretRef to a key in a Secret resource containing client private key to authenticate with Vault using the Cert authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Type: "object",
															},
															"jwt": {
																Description: "Jwt authenticates with Vault by passing role and JWT token using the JWT/OIDC authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"kubernetesServiceAccountToken": {
																		Description: "Optional ServiceAccountToken specifies the Kubernetes service account for which to request a token for with the `TokenRequest` API.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Optional audiences field that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Defaults to a single audience `vault` it not specified. Deprecated: use serviceAccountRef.Audiences instead",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"expirationSeconds": {
																				Description: "Optional expiration time in seconds that will be used to request a temporary Kubernetes service account token for the service account referenced by `serviceAccountRef`. Deprecated: this will be removed in the future. Defaults to 10 minutes.",
																				Format:      "int64",
																				Type:        "integer",
																			},
																			"serviceAccountRef": {
																				Description: "Service account field containing the name of a kubernetes ServiceAccount.",
																				Properties: map[string]apiextensionsv1.JSONSchemaProps{
																					"audiences": {
																						Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																						Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																						Type:        "array",
																					},
																					"name": {
																						Description: "The name of the ServiceAccount resource being referred to.",
																						Type:        "string",
																					},
																					"namespace": {
																						Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																						Type:        "string",
																					},
																				},
																				Required: []string{"name"},
																				Type:     "object",
																			},
																		},
																		Required: []string{"serviceAccountRef"},
																		Type:     "object",
																	},
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6a),
																				uint8(0x77),
																				uint8(0x74),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the JWT authentication backend is mounted in Vault, e.g: \"jwt\"",
																		Type:        "string",
																	},
																	"role": {
																		Description: "Role is a JWT role to authenticate using the JWT/OIDC Vault authentication method",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional SecretRef that refers to a key in a Secret resource containing JWT token to authenticate with Vault using the JWT/OIDC authentication method.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{"path"},
																Type:     "object",
															},
															"kubernetes": {
																Description: "Kubernetes authenticates with Vault by passing the ServiceAccount token stored in the named Secret resource to the Vault server.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"mountPath": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6b),
																				uint8(0x75),
																				uint8(0x62),
																				uint8(0x65),
																				uint8(0x72),
																				uint8(0x6e),
																				uint8(0x65),
																				uint8(0x74),
																				uint8(0x65),
																				uint8(0x73),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the Kubernetes authentication backend is mounted in Vault, e.g: \"kubernetes\"",
																		Type:        "string",
																	},
																	"role": {
																		Description: "A required field containing the Vault Role to assume. A Role binds a Kubernetes ServiceAccount with a set of Vault policies.",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Optional secret field containing a Kubernetes ServiceAccount JWT used for authenticating with Vault. If a name is specified without a key, `token` is the default. If one is not specified, the one bound to the controller will be used.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"serviceAccountRef": {
																		Description: "Optional service account field containing the name of a kubernetes ServiceAccount. If the service account is specified, the service account secret token JWT will be used for authenticating with Vault. If the service account selector is not supplied, the secretRef will be used instead.",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"audiences": {
																				Description: "Audience specifies the `aud` claim for the service account token If the service account uses a well-known annotation for e.g. IRSA or GCP Workload Identity then this audiences will be appended to the list",
																				Items:       &apiextensionsv1.JSONSchemaPropsOrArray{Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"}},
																				Type:        "array",
																			},
																			"name": {
																				Description: "The name of the ServiceAccount resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Required: []string{"name"},
																		Type:     "object",
																	},
																},
																Required: []string{
																	"mountPath",
																	"role",
																},
																Type: "object",
															},
															"ldap": {
																Description: "Ldap authenticates with Vault by passing username/password pair using the LDAP authentication method",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"path": {
																		Default: &apiextensionsv1.JSON{
																			Raw: []uint8{
																				uint8(0x22),
																				uint8(0x6c),
																				uint8(0x64),
																				uint8(0x61),
																				uint8(0x70),
																				uint8(0x22),
																			},
																		},
																		Description: "Path where the LDAP authentication backend is mounted in Vault, e.g: \"ldap\"",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "SecretRef to a key in a Secret resource containing password for the LDAP user used to authenticate with Vault using the LDAP authentication method",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																	"username": {
																		Description: "Username is a LDAP user name used to authenticate using the LDAP Vault authentication method",
																		Type:        "string",
																	},
																},
																Required: []string{
																	"path",
																	"username",
																},
																Type: "object",
															},
															"tokenSecretRef": {
																Description: "TokenSecretRef authenticates with Vault by presenting a token.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caBundle": {
														Description: "PEM encoded CA bundle used to validate Vault server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.",
														Format:      "byte",
														Type:        "string",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Vault server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key where the CA certificate can be found in the Secret or ConfigMap.",
																Type:        "string",
															},
															"name": {
																Description: "The name of the object located at the provider type.",
																Type:        "string",
															},
															"namespace": {
																Description: "The namespace the Provider type is in. Can only be defined when used in a ClusterSecretStore.",
																Type:        "string",
															},
															"type": {
																Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																Enum: []apiextensionsv1.JSON{
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x53),
																			uint8(0x65),
																			uint8(0x63),
																			uint8(0x72),
																			uint8(0x65),
																			uint8(0x74),
																			uint8(0x22),
																		},
																	},
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x43),
																			uint8(0x6f),
																			uint8(0x6e),
																			uint8(0x66),
																			uint8(0x69),
																			uint8(0x67),
																			uint8(0x4d),
																			uint8(0x61),
																			uint8(0x70),
																			uint8(0x22),
																		},
																	},
																},
																Type: "string",
															},
														},
														Required: []string{
															"name",
															"type",
														},
														Type: "object",
													},
													"forwardInconsistent": {
														Description: "ForwardInconsistent tells Vault to forward read-after-write requests to the Vault leader instead of simply retrying within a loop. This can increase performance if the option is enabled serverside. https://www.vaultproject.io/docs/configuration/replication#allow_forwarding_via_header",
														Type:        "boolean",
													},
													"namespace": {
														Description: "Name of the vault namespace. Namespaces is a set of features within Vault Enterprise that allows Vault environments to support Secure Multi-tenancy. e.g: \"ns1\". More about namespaces can be found here https://www.vaultproject.io/docs/enterprise/namespaces",
														Type:        "string",
													},
													"path": {
														Description: "Path is the mount path of the Vault KV backend endpoint, e.g: \"secret\". The v2 KV secret engine version specific \"/data\" path suffix for fetching secrets from Vault is optional and will be appended if not present in specified path.",
														Type:        "string",
													},
													"readYourWrites": {
														Description: "ReadYourWrites ensures isolated read-after-write semantics by providing discovered cluster replication states in each request. More information about eventual consistency in Vault can be found here https://www.vaultproject.io/docs/enterprise/consistency",
														Type:        "boolean",
													},
													"server": {
														Description: "Server is the connection address for the Vault server, e.g: \"https://vault.example.com:8200\".",
														Type:        "string",
													},
													"version": {
														Default: &apiextensionsv1.JSON{
															Raw: []uint8{
																uint8(0x22),
																uint8(0x76),
																uint8(0x32),
																uint8(0x22),
															},
														},
														Description: "Version is the Vault KV secret engine version. This can be either \"v1\" or \"v2\". Version defaults to \"v2\".",
														Enum: []apiextensionsv1.JSON{
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x76),
																	uint8(0x31),
																	uint8(0x22),
																},
															},
															{
																Raw: []uint8{
																	uint8(0x22),
																	uint8(0x76),
																	uint8(0x32),
																	uint8(0x22),
																},
															},
														},
														Type: "string",
													},
												},
												Required: []string{
													"auth",
													"server",
												},
												Type: "object",
											},
											"webhook": {
												Description: "Webhook configures this store to sync secrets using a generic templated webhook",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"body": {
														Description: "Body",
														Type:        "string",
													},
													"caBundle": {
														Description: "PEM encoded CA bundle used to validate webhook server certificate. Only used if the Server URL is using HTTPS protocol. This parameter is ignored for plain HTTP protocol connection. If not set the system root certificates are used to validate the TLS connection.",
														Format:      "byte",
														Type:        "string",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate webhook server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"key": {
																Description: "The key the value inside of the provider type to use, only used with \"Secret\" type",
																Type:        "string",
															},
															"name": {
																Description: "The name of the object located at the provider type.",
																Type:        "string",
															},
															"namespace": {
																Description: "The namespace the Provider type is in.",
																Type:        "string",
															},
															"type": {
																Description: "The type of provider to use such as \"Secret\", or \"ConfigMap\".",
																Enum: []apiextensionsv1.JSON{
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x53),
																			uint8(0x65),
																			uint8(0x63),
																			uint8(0x72),
																			uint8(0x65),
																			uint8(0x74),
																			uint8(0x22),
																		},
																	},
																	{
																		Raw: []uint8{
																			uint8(0x22),
																			uint8(0x43),
																			uint8(0x6f),
																			uint8(0x6e),
																			uint8(0x66),
																			uint8(0x69),
																			uint8(0x67),
																			uint8(0x4d),
																			uint8(0x61),
																			uint8(0x70),
																			uint8(0x22),
																		},
																	},
																},
																Type: "string",
															},
														},
														Required: []string{
															"name",
															"type",
														},
														Type: "object",
													},
													"headers": {
														AdditionalProperties: &apiextensionsv1.JSONSchemaPropsOrBool{
															Allows: true,
															Schema: &apiextensionsv1.JSONSchemaProps{Type: "string"},
														},
														Description: "Headers",
														Type:        "object",
													},
													"method": {
														Description: "Webhook Method",
														Type:        "string",
													},
													"result": {
														Description: "Result formatting",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"jsonPath": {
																Description: "Json path of return value",
																Type:        "string",
															},
														},
														Type: "object",
													},
													"secrets": {
														Description: "Secrets to fill in templates These secrets will be passed to the templating function as key value pairs under the given name",
														Items: &apiextensionsv1.JSONSchemaPropsOrArray{
															Schema: &apiextensionsv1.JSONSchemaProps{
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"name": {
																		Description: "Name of this secret in templates",
																		Type:        "string",
																	},
																	"secretRef": {
																		Description: "Secret ref to fill in credentials",
																		Properties: map[string]apiextensionsv1.JSONSchemaProps{
																			"key": {
																				Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																				Type:        "string",
																			},
																			"name": {
																				Description: "The name of the Secret resource being referred to.",
																				Type:        "string",
																			},
																			"namespace": {
																				Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																				Type:        "string",
																			},
																		},
																		Type: "object",
																	},
																},
																Required: []string{
																	"name",
																	"secretRef",
																},
																Type: "object",
															},
														},
														Type: "array",
													},
													"timeout": {
														Description: "Timeout",
														Type:        "string",
													},
													"url": {
														Description: "Webhook url to call",
														Type:        "string",
													},
												},
												Required: []string{
													"result",
													"url",
												},
												Type: "object",
											},
											"yandexcertificatemanager": {
												Description: "YandexCertificateManager configures this store to sync secrets using Yandex Certificate Manager provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"apiEndpoint": {
														Description: "Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')",
														Type:        "string",
													},
													"auth": {
														Description: "Auth defines the information necessary to authenticate against Yandex Certificate Manager",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"authorizedKeySecretRef": {
																Description: "The authorized key used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Yandex.Cloud server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"certSecretRef": {
																Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
											"yandexlockbox": {
												Description: "YandexLockbox configures this store to sync secrets using Yandex Lockbox provider",
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"apiEndpoint": {
														Description: "Yandex.Cloud API endpoint (e.g. 'api.cloud.yandex.net:443')",
														Type:        "string",
													},
													"auth": {
														Description: "Auth defines the information necessary to authenticate against Yandex Lockbox",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"authorizedKeySecretRef": {
																Description: "The authorized key used for authentication",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
													"caProvider": {
														Description: "The provider for the CA bundle to use to validate Yandex.Cloud server certificate.",
														Properties: map[string]apiextensionsv1.JSONSchemaProps{
															"certSecretRef": {
																Description: "A reference to a specific 'key' within a Secret resource, In some instances, `key` is a required field.",
																Properties: map[string]apiextensionsv1.JSONSchemaProps{
																	"key": {
																		Description: "The key of the entry in the Secret resource's `data` field to be used. Some instances of this field may be defaulted, in others it may be required.",
																		Type:        "string",
																	},
																	"name": {
																		Description: "The name of the Secret resource being referred to.",
																		Type:        "string",
																	},
																	"namespace": {
																		Description: "Namespace of the resource being referred to. Ignored if referent is not cluster-scoped. cluster-scoped defaults to the namespace of the referent.",
																		Type:        "string",
																	},
																},
																Type: "object",
															},
														},
														Type: "object",
													},
												},
												Required: []string{"auth"},
												Type:     "object",
											},
										},
										Type: "object",
									},
									"refreshInterval": {
										Description: "Used to configure store refresh interval in seconds. Empty or 0 will default to the controller config.",
										Type:        "integer",
									},
									"retrySettings": {
										Description: "Used to configure http retries if failed",
										Properties: map[string]apiextensionsv1.JSONSchemaProps{
											"maxRetries": {
												Format: "int32",
												Type:   "integer",
											},
											"retryInterval": {Type: "string"},
										},
										Type: "object",
									},
								},
								Required: []string{"provider"},
								Type:     "object",
							},
							"status": {
								Description: "SecretStoreStatus defines the observed state of the SecretStore.",
								Properties: map[string]apiextensionsv1.JSONSchemaProps{
									"capabilities": {
										Description: "SecretStoreCapabilities defines the possible operations a SecretStore can do.",
										Type:        "string",
									},
									"conditions": {
										Items: &apiextensionsv1.JSONSchemaPropsOrArray{
											Schema: &apiextensionsv1.JSONSchemaProps{
												Properties: map[string]apiextensionsv1.JSONSchemaProps{
													"lastTransitionTime": {
														Format: "date-time",
														Type:   "string",
													},
													"message": {Type: "string"},
													"reason":  {Type: "string"},
													"status":  {Type: "string"},
													"type":    {Type: "string"},
												},
												Required: []string{
													"status",
													"type",
												},
												Type: "object",
											},
										},
										Type: "array",
									},
								},
								Type: "object",
							},
						},
						Type: "object",
					},
				},
				Served:       true,
				Storage:      true,
				Subresources: &apiextensionsv1.CustomResourceSubresources{},
			},
		},
	},
	TypeMeta: metav1.TypeMeta{
		APIVersion: "apiextensions.k8s.io/v1",
		Kind:       "CustomResourceDefinition",
	},
}

Functions

func P

func P[T any](t T) *T

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL