diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.backups.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.backups.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..b019595 --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.backups.postgresql.cnpg.io.g.cs @@ -0,0 +1,652 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// A Backup resource is a request for a PostgreSQL backup by the user. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1BackupList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "BackupList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "backups"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "BackupList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1Backup objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// The cluster to backup +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupSpecCluster +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// The backup method to be used, possible options are `barmanObjectStore`, +/// `volumeSnapshot` or `plugin`. Defaults to: `barmanObjectStore`. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1BackupSpecMethodEnum +{ + [EnumMember(Value = "barmanObjectStore"), JsonStringEnumMemberName("barmanObjectStore")] + BarmanObjectStore, + [EnumMember(Value = "volumeSnapshot"), JsonStringEnumMemberName("volumeSnapshot")] + VolumeSnapshot, + [EnumMember(Value = "plugin"), JsonStringEnumMemberName("plugin")] + Plugin +} + +/// +/// Configuration parameters to control the online/hot backup with volume snapshots +/// Overrides the default settings specified in the cluster '.backup.volumeSnapshot.onlineConfiguration' stanza +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupSpecOnlineConfiguration +{ + /// + /// Control whether the I/O workload for the backup initial checkpoint will + /// be limited, according to the `checkpoint_completion_target` setting on + /// the PostgreSQL server. If set to true, an immediate checkpoint will be + /// used, meaning PostgreSQL will complete the checkpoint as soon as + /// possible. `false` by default. + /// + [JsonPropertyName("immediateCheckpoint")] + public bool? ImmediateCheckpoint { get; set; } + + /// + /// If false, the function will return immediately after the backup is completed, + /// without waiting for WAL to be archived. + /// This behavior is only useful with backup software that independently monitors WAL archiving. + /// Otherwise, WAL required to make the backup consistent might be missing and make the backup useless. + /// By default, or when this parameter is true, pg_backup_stop will wait for WAL to be archived when archiving is + /// enabled. + /// On a standby, this means that it will wait only when archive_mode = always. + /// If write activity on the primary is low, it may be useful to run pg_switch_wal on the primary in order to trigger + /// an immediate segment switch. + /// + [JsonPropertyName("waitForArchive")] + public bool? WaitForArchive { get; set; } +} + +/// Configuration parameters passed to the plugin managing this backup +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupSpecPluginConfiguration +{ + /// Name is the name of the plugin managing this backup + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Parameters are the configuration parameters passed to the backup + /// plugin for this backup + /// + [JsonPropertyName("parameters")] + public IDictionary? Parameters { get; set; } +} + +/// +/// The policy to decide which instance should perform this backup. If empty, +/// it defaults to `cluster.spec.backup.target`. +/// Available options are empty string, `primary` and `prefer-standby`. +/// `primary` to have backups run always on primary instances, +/// `prefer-standby` to have backups run preferably on the most updated +/// standby, if available. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1BackupSpecTargetEnum +{ + [EnumMember(Value = "primary"), JsonStringEnumMemberName("primary")] + Primary, + [EnumMember(Value = "prefer-standby"), JsonStringEnumMemberName("prefer-standby")] + PreferStandby +} + +/// +/// Specification of the desired behavior of the backup. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupSpec +{ + /// The cluster to backup + [JsonPropertyName("cluster")] + public required V1BackupSpecCluster Cluster { get; set; } + + /// + /// The backup method to be used, possible options are `barmanObjectStore`, + /// `volumeSnapshot` or `plugin`. Defaults to: `barmanObjectStore`. + /// + [JsonPropertyName("method")] + public V1BackupSpecMethodEnum? Method { get; set; } + + /// + /// Whether the default type of backup with volume snapshots is + /// online/hot (`true`, default) or offline/cold (`false`) + /// Overrides the default setting specified in the cluster field '.spec.backup.volumeSnapshot.online' + /// + [JsonPropertyName("online")] + public bool? Online { get; set; } + + /// + /// Configuration parameters to control the online/hot backup with volume snapshots + /// Overrides the default settings specified in the cluster '.backup.volumeSnapshot.onlineConfiguration' stanza + /// + [JsonPropertyName("onlineConfiguration")] + public V1BackupSpecOnlineConfiguration? OnlineConfiguration { get; set; } + + /// Configuration parameters passed to the plugin managing this backup + [JsonPropertyName("pluginConfiguration")] + public V1BackupSpecPluginConfiguration? PluginConfiguration { get; set; } + + /// + /// The policy to decide which instance should perform this backup. If empty, + /// it defaults to `cluster.spec.backup.target`. + /// Available options are empty string, `primary` and `prefer-standby`. + /// `primary` to have backups run always on primary instances, + /// `prefer-standby` to have backups run preferably on the most updated + /// standby, if available. + /// + [JsonPropertyName("target")] + public V1BackupSpecTargetEnum? Target { get; set; } +} + +/// The connection string to be used +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusAzureCredentialsConnectionString +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The storage account where to upload data +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusAzureCredentialsStorageAccount +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// The storage account key to be used in conjunction +/// with the storage account name +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusAzureCredentialsStorageKey +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// A shared-access-signature to be used in conjunction with +/// the storage account name +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusAzureCredentialsStorageSasToken +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The credentials to use to upload data to Azure Blob Storage +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusAzureCredentials +{ + /// The connection string to be used + [JsonPropertyName("connectionString")] + public V1BackupStatusAzureCredentialsConnectionString? ConnectionString { get; set; } + + /// Use the Azure AD based authentication without providing explicitly the keys. + [JsonPropertyName("inheritFromAzureAD")] + public bool? InheritFromAzureAD { get; set; } + + /// The storage account where to upload data + [JsonPropertyName("storageAccount")] + public V1BackupStatusAzureCredentialsStorageAccount? StorageAccount { get; set; } + + /// + /// The storage account key to be used in conjunction + /// with the storage account name + /// + [JsonPropertyName("storageKey")] + public V1BackupStatusAzureCredentialsStorageKey? StorageKey { get; set; } + + /// + /// A shared-access-signature to be used in conjunction with + /// the storage account name + /// + [JsonPropertyName("storageSasToken")] + public V1BackupStatusAzureCredentialsStorageSasToken? StorageSasToken { get; set; } + + /// + /// Use the default Azure authentication flow, which includes DefaultAzureCredential. + /// This allows authentication using environment variables and managed identities. + /// + [JsonPropertyName("useDefaultAzureCredentials")] + public bool? UseDefaultAzureCredentials { get; set; } +} + +/// +/// EndpointCA store the CA bundle of the barman endpoint. +/// Useful when using self-signed certificates to avoid +/// errors with certificate issuer and barman-cloud-wal-archive. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusEndpointCA +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The secret containing the Google Cloud Storage JSON file with the credentials +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusGoogleCredentialsApplicationCredentials +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The credentials to use to upload data to Google Cloud Storage +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusGoogleCredentials +{ + /// The secret containing the Google Cloud Storage JSON file with the credentials + [JsonPropertyName("applicationCredentials")] + public V1BackupStatusGoogleCredentialsApplicationCredentials? ApplicationCredentials { get; set; } + + /// + /// If set to true, will presume that it's running inside a GKE environment, + /// default to false. + /// + [JsonPropertyName("gkeEnvironment")] + public bool? GkeEnvironment { get; set; } +} + +/// Information to identify the instance where the backup has been taken from +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusInstanceID +{ + /// The container ID + [JsonPropertyName("ContainerID")] + public string? ContainerID { get; set; } + + /// The pod name + [JsonPropertyName("podName")] + public string? PodName { get; set; } + + /// + /// The instance manager session ID. This is a unique identifier generated at instance manager + /// startup and changes on every restart (including container reboots). Used to detect if + /// the instance manager was restarted during long-running operations like backups, which + /// would terminate any running backup process. + /// + [JsonPropertyName("sessionID")] + public string? SessionID { get; set; } +} + +/// The reference to the access key id +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusS3CredentialsAccessKeyId +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The reference to the secret containing the region name +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusS3CredentialsRegion +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The reference to the secret access key +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusS3CredentialsSecretAccessKey +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The references to the session key +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusS3CredentialsSessionToken +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The credentials to use to upload data to S3 +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusS3Credentials +{ + /// The reference to the access key id + [JsonPropertyName("accessKeyId")] + public V1BackupStatusS3CredentialsAccessKeyId? AccessKeyId { get; set; } + + /// Use the role based authentication without providing explicitly the keys. + [JsonPropertyName("inheritFromIAMRole")] + public bool? InheritFromIAMRole { get; set; } + + /// The reference to the secret containing the region name + [JsonPropertyName("region")] + public V1BackupStatusS3CredentialsRegion? Region { get; set; } + + /// The reference to the secret access key + [JsonPropertyName("secretAccessKey")] + public V1BackupStatusS3CredentialsSecretAccessKey? SecretAccessKey { get; set; } + + /// The references to the session key + [JsonPropertyName("sessionToken")] + public V1BackupStatusS3CredentialsSessionToken? SessionToken { get; set; } +} + +/// BackupSnapshotElementStatus is a volume snapshot that is part of a volume snapshot method backup +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusSnapshotBackupStatusElements +{ + /// Name is the snapshot resource name + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// TablespaceName is the name of the snapshotted tablespace. Only set + /// when type is PG_TABLESPACE + /// + [JsonPropertyName("tablespaceName")] + public string? TablespaceName { get; set; } + + /// Type is tho role of the snapshot in the cluster, such as PG_DATA, PG_WAL and PG_TABLESPACE + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// Status of the volumeSnapshot backup +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatusSnapshotBackupStatus +{ + /// The elements list, populated with the gathered volume snapshots + [JsonPropertyName("elements")] + public IList? Elements { get; set; } +} + +/// +/// Most recently observed status of the backup. This data may not be up to +/// date. Populated by the system. Read-only. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1BackupStatus +{ + /// The credentials to use to upload data to Azure Blob Storage + [JsonPropertyName("azureCredentials")] + public V1BackupStatusAzureCredentials? AzureCredentials { get; set; } + + /// The ID of the Barman backup + [JsonPropertyName("backupId")] + public string? BackupId { get; set; } + + /// Backup label file content as returned by Postgres in case of online (hot) backups + [JsonPropertyName("backupLabelFile")] + public byte[]? BackupLabelFile { get; set; } + + /// The Name of the Barman backup + [JsonPropertyName("backupName")] + public string? BackupName { get; set; } + + /// The starting xlog + [JsonPropertyName("beginLSN")] + public string? BeginLSN { get; set; } + + /// The starting WAL + [JsonPropertyName("beginWal")] + public string? BeginWal { get; set; } + + /// The backup command output in case of error + [JsonPropertyName("commandError")] + public string? CommandError { get; set; } + + /// Unused. Retained for compatibility with old versions. + [JsonPropertyName("commandOutput")] + public string? CommandOutput { get; set; } + + /// + /// The path where to store the backup (i.e. s3://bucket/path/to/folder) + /// this path, with different destination folders, will be used for WALs + /// and for data. This may not be populated in case of errors. + /// + [JsonPropertyName("destinationPath")] + public string? DestinationPath { get; set; } + + /// Encryption method required to S3 API + [JsonPropertyName("encryption")] + public string? Encryption { get; set; } + + /// The ending xlog + [JsonPropertyName("endLSN")] + public string? EndLSN { get; set; } + + /// The ending WAL + [JsonPropertyName("endWal")] + public string? EndWal { get; set; } + + /// + /// EndpointCA store the CA bundle of the barman endpoint. + /// Useful when using self-signed certificates to avoid + /// errors with certificate issuer and barman-cloud-wal-archive. + /// + [JsonPropertyName("endpointCA")] + public V1BackupStatusEndpointCA? EndpointCA { get; set; } + + /// + /// Endpoint to be used to upload data to the cloud, + /// overriding the automatic endpoint discovery + /// + [JsonPropertyName("endpointURL")] + public string? EndpointURL { get; set; } + + /// The detected error + [JsonPropertyName("error")] + public string? Error { get; set; } + + /// The credentials to use to upload data to Google Cloud Storage + [JsonPropertyName("googleCredentials")] + public V1BackupStatusGoogleCredentials? GoogleCredentials { get; set; } + + /// Information to identify the instance where the backup has been taken from + [JsonPropertyName("instanceID")] + public V1BackupStatusInstanceID? InstanceID { get; set; } + + /// + /// The PostgreSQL major version that was running when the + /// backup was taken. + /// + [JsonPropertyName("majorVersion")] + public int? MajorVersion { get; set; } + + /// The backup method being used + [JsonPropertyName("method")] + public string? Method { get; set; } + + /// Whether the backup was online/hot (`true`) or offline/cold (`false`) + [JsonPropertyName("online")] + public bool? Online { get; set; } + + /// The last backup status + [JsonPropertyName("phase")] + public string? Phase { get; set; } + + /// A map containing the plugin metadata + [JsonPropertyName("pluginMetadata")] + public IDictionary? PluginMetadata { get; set; } + + /// When the backup process was started by the operator + [JsonPropertyName("reconciliationStartedAt")] + public DateTime? ReconciliationStartedAt { get; set; } + + /// When the reconciliation was terminated by the operator (either successfully or not) + [JsonPropertyName("reconciliationTerminatedAt")] + public DateTime? ReconciliationTerminatedAt { get; set; } + + /// The credentials to use to upload data to S3 + [JsonPropertyName("s3Credentials")] + public V1BackupStatusS3Credentials? S3Credentials { get; set; } + + /// + /// The server name on S3, the cluster name is used if this + /// parameter is omitted + /// + [JsonPropertyName("serverName")] + public string? ServerName { get; set; } + + /// Status of the volumeSnapshot backup + [JsonPropertyName("snapshotBackupStatus")] + public V1BackupStatusSnapshotBackupStatus? SnapshotBackupStatus { get; set; } + + /// When the backup execution was started by the backup tool + [JsonPropertyName("startedAt")] + public DateTime? StartedAt { get; set; } + + /// When the backup execution was terminated by the backup tool + [JsonPropertyName("stoppedAt")] + public DateTime? StoppedAt { get; set; } + + /// Tablespace map file content as returned by Postgres in case of online (hot) backups + [JsonPropertyName("tablespaceMapFile")] + public byte[]? TablespaceMapFile { get; set; } +} + +/// A Backup resource is a request for a PostgreSQL backup by the user. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1Backup : IKubernetesObject, ISpec, IStatus +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "Backup"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "backups"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "Backup"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// + /// Specification of the desired behavior of the backup. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public required V1BackupSpec Spec { get; set; } + + /// + /// Most recently observed status of the backup. This data may not be up to + /// date. Populated by the system. Read-only. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("status")] + public V1BackupStatus? Status { get; set; } +} \ No newline at end of file diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.clusterimagecatalogs.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.clusterimagecatalogs.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..7ca3353 --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.clusterimagecatalogs.postgresql.cnpg.io.g.cs @@ -0,0 +1,206 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// ClusterImageCatalog is the Schema for the clusterimagecatalogs API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1ClusterImageCatalogList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "ClusterImageCatalogList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "clusterimagecatalogs"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "ClusterImageCatalogList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1ClusterImageCatalog objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// +/// ExtensionEnvVar defines an environment variable for a specific extension +/// image volume. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterImageCatalogSpecImagesExtensionsEnv +{ + /// + /// Name of the environment variable to be injected into the + /// PostgreSQL process. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Value of the environment variable. CloudNativePG performs a direct + /// replacement of this value, with support for placeholder expansion. + /// The ${`image_root`} placeholder resolves to the absolute mount path + /// of the extension's volume (e.g., `/extensions/my-extension`). This + /// is particularly useful for allowing applications or libraries to + /// locate specific directories within the mounted image. + /// Unrecognized placeholders are rejected. To include a literal ${...} + /// in the value, escape it as $${...}. + /// + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// The image containing the extension. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterImageCatalogSpecImagesExtensionsImage +{ + /// + /// Policy for pulling OCI objects. Possible values are: + /// Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. + /// Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. + /// IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. + /// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + /// + [JsonPropertyName("pullPolicy")] + public string? PullPolicy { get; set; } + + /// + /// Required: Image or artifact reference to be used. + /// Behaves in the same way as pod.spec.containers[*].image. + /// Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets. + /// More info: https://kubernetes.io/docs/concepts/containers/images + /// This field is optional to allow higher level config management to default or override + /// container images in workload controllers like Deployments and StatefulSets. + /// + [JsonPropertyName("reference")] + public string? Reference { get; set; } +} + +/// +/// ExtensionConfiguration is the configuration used to add +/// PostgreSQL extensions to the Cluster. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterImageCatalogSpecImagesExtensions +{ + /// + /// A list of directories within the image to be appended to the + /// PostgreSQL process's `PATH` environment variable. + /// + [JsonPropertyName("bin_path")] + public IList? BinPath { get; set; } + + /// + /// The list of directories inside the image which should be added to dynamic_library_path. + /// If not defined, defaults to "/lib". + /// + [JsonPropertyName("dynamic_library_path")] + public IList? DynamicLibraryPath { get; set; } + + /// + /// Env is a list of custom environment variables to be set in the + /// PostgreSQL process for this extension. It is the responsibility of the + /// cluster administrator to ensure the variables are correct for the + /// specific extension. Note that changes to these variables require + /// a manual cluster restart to take effect. + /// + [JsonPropertyName("env")] + public IList? Env { get; set; } + + /// + /// The list of directories inside the image which should be added to extension_control_path. + /// If not defined, defaults to "/share". + /// + [JsonPropertyName("extension_control_path")] + public IList? ExtensionControlPath { get; set; } + + /// The image containing the extension. + [JsonPropertyName("image")] + public V1ClusterImageCatalogSpecImagesExtensionsImage? Image { get; set; } + + /// The list of directories inside the image which should be added to ld_library_path. + [JsonPropertyName("ld_library_path")] + public IList? LdLibraryPath { get; set; } + + /// The name of the extension, required + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// CatalogImage defines the image and major version +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterImageCatalogSpecImages +{ + /// The configuration of the extensions to be added + [JsonPropertyName("extensions")] + public IList? Extensions { get; set; } + + /// The image reference + [JsonPropertyName("image")] + public required string Image { get; set; } + + /// The PostgreSQL major version of the image. Must be unique within the catalog. + [JsonPropertyName("major")] + public required int Major { get; set; } +} + +/// +/// Specification of the desired behavior of the ClusterImageCatalog. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterImageCatalogSpec +{ + /// List of CatalogImages available in the catalog + [JsonPropertyName("images")] + public required IList Images { get; set; } +} + +/// ClusterImageCatalog is the Schema for the clusterimagecatalogs API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1ClusterImageCatalog : IKubernetesObject, ISpec +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "ClusterImageCatalog"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "clusterimagecatalogs"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "ClusterImageCatalog"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// + /// Specification of the desired behavior of the ClusterImageCatalog. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public required V1ClusterImageCatalogSpec Spec { get; set; } +} \ No newline at end of file diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.clusters.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.clusters.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..51ac3b8 --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.clusters.postgresql.cnpg.io.g.cs @@ -0,0 +1,9683 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// +/// Cluster defines the API schema for a highly available PostgreSQL database cluster +/// managed by CloudNativePG. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1ClusterList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "ClusterList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "clusters"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "ClusterList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1Cluster objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over a set of resources, in this case pods. +/// If it's null, this PodAffinityTerm matches with no Pods. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over the set of namespaces that the term applies to. +/// The term is applied to the union of the namespaces selected by this field +/// and the ones listed in the namespaces field. +/// null selector and null or empty namespaces list means "this pod's namespace". +/// An empty selector ({}) matches all namespaces. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// Required. A pod affinity term, associated with the corresponding weight. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm +{ + /// + /// A label query over a set of resources, in this case pods. + /// If it's null, this PodAffinityTerm matches with no Pods. + /// + [JsonPropertyName("labelSelector")] + public V1ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both matchLabelKeys and labelSelector. + /// Also, matchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MismatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + /// Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("mismatchLabelKeys")] + public IList? MismatchLabelKeys { get; set; } + + /// + /// A label query over the set of namespaces that the term applies to. + /// The term is applied to the union of the namespaces selected by this field + /// and the ones listed in the namespaces field. + /// null selector and null or empty namespaces list means "this pod's namespace". + /// An empty selector ({}) matches all namespaces. + /// + [JsonPropertyName("namespaceSelector")] + public V1ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector? NamespaceSelector { get; set; } + + /// + /// namespaces specifies a static list of namespace names that the term applies to. + /// The term is applied to the union of the namespaces listed in this field + /// and the ones selected by namespaceSelector. + /// null or empty namespaces list and null namespaceSelector means "this pod's namespace". + /// + [JsonPropertyName("namespaces")] + public IList? Namespaces { get; set; } + + /// + /// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + /// the labelSelector in the specified namespaces, where co-located is defined as running on a node + /// whose value of the label with key topologyKey matches that of any node on which any of the + /// selected pods is running. + /// Empty topologyKey is not allowed. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } +} + +/// The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecution +{ + /// Required. A pod affinity term, associated with the corresponding weight. + [JsonPropertyName("podAffinityTerm")] + public required V1ClusterSpecAffinityAdditionalPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm PodAffinityTerm { get; set; } + + /// + /// weight associated with matching the corresponding podAffinityTerm, + /// in the range 1-100. + /// + [JsonPropertyName("weight")] + public required int Weight { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over a set of resources, in this case pods. +/// If it's null, this PodAffinityTerm matches with no Pods. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over the set of namespaces that the term applies to. +/// The term is applied to the union of the namespaces selected by this field +/// and the ones listed in the namespaces field. +/// null selector and null or empty namespaces list means "this pod's namespace". +/// An empty selector ({}) matches all namespaces. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// Defines a set of pods (namely those matching the labelSelector +/// relative to the given namespace(s)) that this pod should be +/// co-located (affinity) or not co-located (anti-affinity) with, +/// where co-located is defined as running on a node whose value of +/// the label with key <topologyKey> matches that of any node on which +/// a pod of the set of pods is running +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinityRequiredDuringSchedulingIgnoredDuringExecution +{ + /// + /// A label query over a set of resources, in this case pods. + /// If it's null, this PodAffinityTerm matches with no Pods. + /// + [JsonPropertyName("labelSelector")] + public V1ClusterSpecAffinityAdditionalPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both matchLabelKeys and labelSelector. + /// Also, matchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MismatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + /// Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("mismatchLabelKeys")] + public IList? MismatchLabelKeys { get; set; } + + /// + /// A label query over the set of namespaces that the term applies to. + /// The term is applied to the union of the namespaces selected by this field + /// and the ones listed in the namespaces field. + /// null selector and null or empty namespaces list means "this pod's namespace". + /// An empty selector ({}) matches all namespaces. + /// + [JsonPropertyName("namespaceSelector")] + public V1ClusterSpecAffinityAdditionalPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector? NamespaceSelector { get; set; } + + /// + /// namespaces specifies a static list of namespace names that the term applies to. + /// The term is applied to the union of the namespaces listed in this field + /// and the ones selected by namespaceSelector. + /// null or empty namespaces list and null namespaceSelector means "this pod's namespace". + /// + [JsonPropertyName("namespaces")] + public IList? Namespaces { get; set; } + + /// + /// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + /// the labelSelector in the specified namespaces, where co-located is defined as running on a node + /// whose value of the label with key topologyKey matches that of any node on which any of the + /// selected pods is running. + /// Empty topologyKey is not allowed. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } +} + +/// AdditionalPodAffinity allows to specify pod affinity terms to be passed to all the cluster's pods. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAffinity +{ + /// + /// The scheduler will prefer to schedule pods to nodes that satisfy + /// the affinity expressions specified by this field, but it may choose + /// a node that violates one or more of the expressions. The node that is + /// most preferred is the one with the greatest sum of weights, i.e. + /// for each node that meets all of the scheduling requirements (resource + /// request, requiredDuringScheduling affinity expressions, etc.), + /// compute a sum by iterating through the elements of this field and adding + /// "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + /// node(s) with the highest sum are the most preferred. + /// + [JsonPropertyName("preferredDuringSchedulingIgnoredDuringExecution")] + public IList? PreferredDuringSchedulingIgnoredDuringExecution { get; set; } + + /// + /// If the affinity requirements specified by this field are not met at + /// scheduling time, the pod will not be scheduled onto the node. + /// If the affinity requirements specified by this field cease to be met + /// at some point during pod execution (e.g. due to a pod label update), the + /// system may or may not try to eventually evict the pod from its node. + /// When there are multiple elements, the lists of nodes corresponding to each + /// podAffinityTerm are intersected, i.e. all terms must be satisfied. + /// + [JsonPropertyName("requiredDuringSchedulingIgnoredDuringExecution")] + public IList? RequiredDuringSchedulingIgnoredDuringExecution { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over a set of resources, in this case pods. +/// If it's null, this PodAffinityTerm matches with no Pods. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over the set of namespaces that the term applies to. +/// The term is applied to the union of the namespaces selected by this field +/// and the ones listed in the namespaces field. +/// null selector and null or empty namespaces list means "this pod's namespace". +/// An empty selector ({}) matches all namespaces. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// Required. A pod affinity term, associated with the corresponding weight. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm +{ + /// + /// A label query over a set of resources, in this case pods. + /// If it's null, this PodAffinityTerm matches with no Pods. + /// + [JsonPropertyName("labelSelector")] + public V1ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both matchLabelKeys and labelSelector. + /// Also, matchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MismatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + /// Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("mismatchLabelKeys")] + public IList? MismatchLabelKeys { get; set; } + + /// + /// A label query over the set of namespaces that the term applies to. + /// The term is applied to the union of the namespaces selected by this field + /// and the ones listed in the namespaces field. + /// null selector and null or empty namespaces list means "this pod's namespace". + /// An empty selector ({}) matches all namespaces. + /// + [JsonPropertyName("namespaceSelector")] + public V1ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector? NamespaceSelector { get; set; } + + /// + /// namespaces specifies a static list of namespace names that the term applies to. + /// The term is applied to the union of the namespaces listed in this field + /// and the ones selected by namespaceSelector. + /// null or empty namespaces list and null namespaceSelector means "this pod's namespace". + /// + [JsonPropertyName("namespaces")] + public IList? Namespaces { get; set; } + + /// + /// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + /// the labelSelector in the specified namespaces, where co-located is defined as running on a node + /// whose value of the label with key topologyKey matches that of any node on which any of the + /// selected pods is running. + /// Empty topologyKey is not allowed. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } +} + +/// The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecution +{ + /// Required. A pod affinity term, associated with the corresponding weight. + [JsonPropertyName("podAffinityTerm")] + public required V1ClusterSpecAffinityAdditionalPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm PodAffinityTerm { get; set; } + + /// + /// weight associated with matching the corresponding podAffinityTerm, + /// in the range 1-100. + /// + [JsonPropertyName("weight")] + public required int Weight { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over a set of resources, in this case pods. +/// If it's null, this PodAffinityTerm matches with no Pods. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over the set of namespaces that the term applies to. +/// The term is applied to the union of the namespaces selected by this field +/// and the ones listed in the namespaces field. +/// null selector and null or empty namespaces list means "this pod's namespace". +/// An empty selector ({}) matches all namespaces. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// Defines a set of pods (namely those matching the labelSelector +/// relative to the given namespace(s)) that this pod should be +/// co-located (affinity) or not co-located (anti-affinity) with, +/// where co-located is defined as running on a node whose value of +/// the label with key <topologyKey> matches that of any node on which +/// a pod of the set of pods is running +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecution +{ + /// + /// A label query over a set of resources, in this case pods. + /// If it's null, this PodAffinityTerm matches with no Pods. + /// + [JsonPropertyName("labelSelector")] + public V1ClusterSpecAffinityAdditionalPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both matchLabelKeys and labelSelector. + /// Also, matchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MismatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + /// Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("mismatchLabelKeys")] + public IList? MismatchLabelKeys { get; set; } + + /// + /// A label query over the set of namespaces that the term applies to. + /// The term is applied to the union of the namespaces selected by this field + /// and the ones listed in the namespaces field. + /// null selector and null or empty namespaces list means "this pod's namespace". + /// An empty selector ({}) matches all namespaces. + /// + [JsonPropertyName("namespaceSelector")] + public V1ClusterSpecAffinityAdditionalPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector? NamespaceSelector { get; set; } + + /// + /// namespaces specifies a static list of namespace names that the term applies to. + /// The term is applied to the union of the namespaces listed in this field + /// and the ones selected by namespaceSelector. + /// null or empty namespaces list and null namespaceSelector means "this pod's namespace". + /// + [JsonPropertyName("namespaces")] + public IList? Namespaces { get; set; } + + /// + /// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + /// the labelSelector in the specified namespaces, where co-located is defined as running on a node + /// whose value of the label with key topologyKey matches that of any node on which any of the + /// selected pods is running. + /// Empty topologyKey is not allowed. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } +} + +/// +/// AdditionalPodAntiAffinity allows to specify pod anti-affinity terms to be added to the ones generated +/// by the operator if EnablePodAntiAffinity is set to true (default) or to be used exclusively if set to false. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityAdditionalPodAntiAffinity +{ + /// + /// The scheduler will prefer to schedule pods to nodes that satisfy + /// the anti-affinity expressions specified by this field, but it may choose + /// a node that violates one or more of the expressions. The node that is + /// most preferred is the one with the greatest sum of weights, i.e. + /// for each node that meets all of the scheduling requirements (resource + /// request, requiredDuringScheduling anti-affinity expressions, etc.), + /// compute a sum by iterating through the elements of this field and subtracting + /// "weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the + /// node(s) with the highest sum are the most preferred. + /// + [JsonPropertyName("preferredDuringSchedulingIgnoredDuringExecution")] + public IList? PreferredDuringSchedulingIgnoredDuringExecution { get; set; } + + /// + /// If the anti-affinity requirements specified by this field are not met at + /// scheduling time, the pod will not be scheduled onto the node. + /// If the anti-affinity requirements specified by this field cease to be met + /// at some point during pod execution (e.g. due to a pod label update), the + /// system may or may not try to eventually evict the pod from its node. + /// When there are multiple elements, the lists of nodes corresponding to each + /// podAffinityTerm are intersected, i.e. all terms must be satisfied. + /// + [JsonPropertyName("requiredDuringSchedulingIgnoredDuringExecution")] + public IList? RequiredDuringSchedulingIgnoredDuringExecution { get; set; } +} + +/// +/// A node selector requirement is a selector that contains values, a key, and an operator +/// that relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionPreferenceMatchExpressions +{ + /// The label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. If the operator is Gt or Lt, the values + /// array must have a single element, which will be interpreted as an integer. + /// This array is replaced during a strategic merge patch. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A node selector requirement is a selector that contains values, a key, and an operator +/// that relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionPreferenceMatchFields +{ + /// The label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. If the operator is Gt or Lt, the values + /// array must have a single element, which will be interpreted as an integer. + /// This array is replaced during a strategic merge patch. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// A node selector term, associated with the corresponding weight. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionPreference +{ + /// A list of node selector requirements by node's labels. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// A list of node selector requirements by node's fields. + [JsonPropertyName("matchFields")] + public IList? MatchFields { get; set; } +} + +/// +/// An empty preferred scheduling term matches all objects with implicit weight 0 +/// (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecution +{ + /// A node selector term, associated with the corresponding weight. + [JsonPropertyName("preference")] + public required V1ClusterSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionPreference Preference { get; set; } + + /// Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + [JsonPropertyName("weight")] + public required int Weight { get; set; } +} + +/// +/// A node selector requirement is a selector that contains values, a key, and an operator +/// that relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecutionNodeSelectorTermsMatchExpressions +{ + /// The label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. If the operator is Gt or Lt, the values + /// array must have a single element, which will be interpreted as an integer. + /// This array is replaced during a strategic merge patch. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A node selector requirement is a selector that contains values, a key, and an operator +/// that relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecutionNodeSelectorTermsMatchFields +{ + /// The label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. If the operator is Gt or Lt, the values + /// array must have a single element, which will be interpreted as an integer. + /// This array is replaced during a strategic merge patch. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A null or empty node selector term matches no objects. The requirements of +/// them are ANDed. +/// The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecutionNodeSelectorTerms +{ + /// A list of node selector requirements by node's labels. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// A list of node selector requirements by node's fields. + [JsonPropertyName("matchFields")] + public IList? MatchFields { get; set; } +} + +/// +/// If the affinity requirements specified by this field are not met at +/// scheduling time, the pod will not be scheduled onto the node. +/// If the affinity requirements specified by this field cease to be met +/// at some point during pod execution (e.g. due to an update), the system +/// may or may not try to eventually evict the pod from its node. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution +{ + /// Required. A list of node selector terms. The terms are ORed. + [JsonPropertyName("nodeSelectorTerms")] + public required IList NodeSelectorTerms { get; set; } +} + +/// +/// NodeAffinity describes node affinity scheduling rules for the pod. +/// More info: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityNodeAffinity +{ + /// + /// The scheduler will prefer to schedule pods to nodes that satisfy + /// the affinity expressions specified by this field, but it may choose + /// a node that violates one or more of the expressions. The node that is + /// most preferred is the one with the greatest sum of weights, i.e. + /// for each node that meets all of the scheduling requirements (resource + /// request, requiredDuringScheduling affinity expressions, etc.), + /// compute a sum by iterating through the elements of this field and adding + /// "weight" to the sum if the node matches the corresponding matchExpressions; the + /// node(s) with the highest sum are the most preferred. + /// + [JsonPropertyName("preferredDuringSchedulingIgnoredDuringExecution")] + public IList? PreferredDuringSchedulingIgnoredDuringExecution { get; set; } + + /// + /// If the affinity requirements specified by this field are not met at + /// scheduling time, the pod will not be scheduled onto the node. + /// If the affinity requirements specified by this field cease to be met + /// at some point during pod execution (e.g. due to an update), the system + /// may or may not try to eventually evict the pod from its node. + /// + [JsonPropertyName("requiredDuringSchedulingIgnoredDuringExecution")] + public V1ClusterSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution? RequiredDuringSchedulingIgnoredDuringExecution { get; set; } +} + +/// +/// The pod this Toleration is attached to tolerates any taint that matches +/// the triple <key,value,effect> using the matching operator <operator>. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinityTolerations +{ + /// + /// Effect indicates the taint effect to match. Empty means match all taint effects. + /// When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + /// + [JsonPropertyName("effect")] + public string? Effect { get; set; } + + /// + /// Key is the taint key that the toleration applies to. Empty means match all taint keys. + /// If the key is empty, operator must be Exists; this combination means to match all values and all keys. + /// + [JsonPropertyName("key")] + public string? Key { get; set; } + + /// + /// Operator represents a key's relationship to the value. + /// Valid operators are Exists, Equal, Lt, and Gt. Defaults to Equal. + /// Exists is equivalent to wildcard for value, so that a pod can + /// tolerate all taints of a particular category. + /// Lt and Gt perform numeric comparisons (requires feature gate TaintTolerationComparisonOperators). + /// + [JsonPropertyName("operator")] + public string? Operator { get; set; } + + /// + /// TolerationSeconds represents the period of time the toleration (which must be + /// of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, + /// it is not set, which means tolerate the taint forever (do not evict). Zero and + /// negative values will be treated as 0 (evict immediately) by the system. + /// + [JsonPropertyName("tolerationSeconds")] + public long? TolerationSeconds { get; set; } + + /// + /// Value is the taint value the toleration matches to. + /// If the operator is Exists, the value should be empty, otherwise just a regular string. + /// + [JsonPropertyName("value")] + public string? Value { get; set; } +} + +/// Affinity/Anti-affinity rules for Pods +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecAffinity +{ + /// AdditionalPodAffinity allows to specify pod affinity terms to be passed to all the cluster's pods. + [JsonPropertyName("additionalPodAffinity")] + public V1ClusterSpecAffinityAdditionalPodAffinity? AdditionalPodAffinity { get; set; } + + /// + /// AdditionalPodAntiAffinity allows to specify pod anti-affinity terms to be added to the ones generated + /// by the operator if EnablePodAntiAffinity is set to true (default) or to be used exclusively if set to false. + /// + [JsonPropertyName("additionalPodAntiAffinity")] + public V1ClusterSpecAffinityAdditionalPodAntiAffinity? AdditionalPodAntiAffinity { get; set; } + + /// + /// Activates anti-affinity for the pods. The operator will define pods + /// anti-affinity unless this field is explicitly set to false + /// + [JsonPropertyName("enablePodAntiAffinity")] + public bool? EnablePodAntiAffinity { get; set; } + + /// + /// NodeAffinity describes node affinity scheduling rules for the pod. + /// More info: https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#node-affinity + /// + [JsonPropertyName("nodeAffinity")] + public V1ClusterSpecAffinityNodeAffinity? NodeAffinity { get; set; } + + /// + /// NodeSelector is map of key-value pairs used to define the nodes on which + /// the pods can run. + /// More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ + /// + [JsonPropertyName("nodeSelector")] + public IDictionary? NodeSelector { get; set; } + + /// + /// PodAntiAffinityType allows the user to decide whether pod anti-affinity between cluster instance has to be + /// considered a strong requirement during scheduling or not. Allowed values are: "preferred" (default if empty) or + /// "required". Setting it to "required", could lead to instances remaining pending until new kubernetes nodes are + /// added if all the existing nodes don't match the required pod anti-affinity rule. + /// More info: + /// https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#inter-pod-affinity-and-anti-affinity + /// + [JsonPropertyName("podAntiAffinityType")] + public string? PodAntiAffinityType { get; set; } + + /// + /// Tolerations is a list of Tolerations that should be set for all the pods, in order to allow them to run + /// on tainted nodes. + /// More info: https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/ + /// + [JsonPropertyName("tolerations")] + public IList? Tolerations { get; set; } + + /// + /// TopologyKey to use for anti-affinity configuration. See k8s documentation + /// for more info on that + /// + [JsonPropertyName("topologyKey")] + public string? TopologyKey { get; set; } +} + +/// The connection string to be used +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreAzureCredentialsConnectionString +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The storage account where to upload data +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreAzureCredentialsStorageAccount +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// The storage account key to be used in conjunction +/// with the storage account name +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreAzureCredentialsStorageKey +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// A shared-access-signature to be used in conjunction with +/// the storage account name +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreAzureCredentialsStorageSasToken +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The credentials to use to upload data to Azure Blob Storage +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreAzureCredentials +{ + /// The connection string to be used + [JsonPropertyName("connectionString")] + public V1ClusterSpecBackupBarmanObjectStoreAzureCredentialsConnectionString? ConnectionString { get; set; } + + /// Use the Azure AD based authentication without providing explicitly the keys. + [JsonPropertyName("inheritFromAzureAD")] + public bool? InheritFromAzureAD { get; set; } + + /// The storage account where to upload data + [JsonPropertyName("storageAccount")] + public V1ClusterSpecBackupBarmanObjectStoreAzureCredentialsStorageAccount? StorageAccount { get; set; } + + /// + /// The storage account key to be used in conjunction + /// with the storage account name + /// + [JsonPropertyName("storageKey")] + public V1ClusterSpecBackupBarmanObjectStoreAzureCredentialsStorageKey? StorageKey { get; set; } + + /// + /// A shared-access-signature to be used in conjunction with + /// the storage account name + /// + [JsonPropertyName("storageSasToken")] + public V1ClusterSpecBackupBarmanObjectStoreAzureCredentialsStorageSasToken? StorageSasToken { get; set; } + + /// + /// Use the default Azure authentication flow, which includes DefaultAzureCredential. + /// This allows authentication using environment variables and managed identities. + /// + [JsonPropertyName("useDefaultAzureCredentials")] + public bool? UseDefaultAzureCredentials { get; set; } +} + +/// +/// Compress a backup file (a tar file per tablespace) while streaming it +/// to the object store. Available options are empty string (no +/// compression, default), `gzip`, `bzip2`, and `snappy`. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecBackupBarmanObjectStoreDataCompressionEnum +{ + [EnumMember(Value = "bzip2"), JsonStringEnumMemberName("bzip2")] + Bzip2, + [EnumMember(Value = "gzip"), JsonStringEnumMemberName("gzip")] + Gzip, + [EnumMember(Value = "snappy"), JsonStringEnumMemberName("snappy")] + Snappy +} + +/// +/// Whenever to force the encryption of files (if the bucket is +/// not already configured for that). +/// Allowed options are empty string (use the bucket policy, default), +/// `AES256` and `aws:kms` +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecBackupBarmanObjectStoreDataEncryptionEnum +{ + [EnumMember(Value = "AES256"), JsonStringEnumMemberName("AES256")] + AES256, + [EnumMember(Value = "aws:kms"), JsonStringEnumMemberName("aws:kms")] + AwsKms +} + +/// +/// The configuration to be used to backup the data files +/// When not defined, base backups files will be stored uncompressed and may +/// be unencrypted in the object store, according to the bucket default +/// policy. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreData +{ + /// + /// AdditionalCommandArgs represents additional arguments that can be appended + /// to the 'barman-cloud-backup' command-line invocation. These arguments + /// provide flexibility to customize the backup process further according to + /// specific requirements or configurations. + /// + /// Example: + /// In a scenario where specialized backup options are required, such as setting + /// a specific timeout or defining custom behavior, users can use this field + /// to specify additional command arguments. + /// + /// Note: + /// It's essential to ensure that the provided arguments are valid and supported + /// by the 'barman-cloud-backup' command, to avoid potential errors or unintended + /// behavior during execution. + /// + [JsonPropertyName("additionalCommandArgs")] + public IList? AdditionalCommandArgs { get; set; } + + /// + /// Compress a backup file (a tar file per tablespace) while streaming it + /// to the object store. Available options are empty string (no + /// compression, default), `gzip`, `bzip2`, and `snappy`. + /// + [JsonPropertyName("compression")] + public V1ClusterSpecBackupBarmanObjectStoreDataCompressionEnum? Compression { get; set; } + + /// + /// Whenever to force the encryption of files (if the bucket is + /// not already configured for that). + /// Allowed options are empty string (use the bucket policy, default), + /// `AES256` and `aws:kms` + /// + [JsonPropertyName("encryption")] + public V1ClusterSpecBackupBarmanObjectStoreDataEncryptionEnum? Encryption { get; set; } + + /// + /// Control whether the I/O workload for the backup initial checkpoint will + /// be limited, according to the `checkpoint_completion_target` setting on + /// the PostgreSQL server. If set to true, an immediate checkpoint will be + /// used, meaning PostgreSQL will complete the checkpoint as soon as + /// possible. `false` by default. + /// + [JsonPropertyName("immediateCheckpoint")] + public bool? ImmediateCheckpoint { get; set; } + + /// + /// The number of parallel jobs to be used to upload the backup, defaults + /// to 2 + /// + [JsonPropertyName("jobs")] + public int? Jobs { get; set; } +} + +/// +/// EndpointCA store the CA bundle of the barman endpoint. +/// Useful when using self-signed certificates to avoid +/// errors with certificate issuer and barman-cloud-wal-archive +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreEndpointCA +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The secret containing the Google Cloud Storage JSON file with the credentials +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreGoogleCredentialsApplicationCredentials +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The credentials to use to upload data to Google Cloud Storage +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreGoogleCredentials +{ + /// The secret containing the Google Cloud Storage JSON file with the credentials + [JsonPropertyName("applicationCredentials")] + public V1ClusterSpecBackupBarmanObjectStoreGoogleCredentialsApplicationCredentials? ApplicationCredentials { get; set; } + + /// + /// If set to true, will presume that it's running inside a GKE environment, + /// default to false. + /// + [JsonPropertyName("gkeEnvironment")] + public bool? GkeEnvironment { get; set; } +} + +/// The reference to the access key id +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreS3CredentialsAccessKeyId +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The reference to the secret containing the region name +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreS3CredentialsRegion +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The reference to the secret access key +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreS3CredentialsSecretAccessKey +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The references to the session key +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreS3CredentialsSessionToken +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The credentials to use to upload data to S3 +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreS3Credentials +{ + /// The reference to the access key id + [JsonPropertyName("accessKeyId")] + public V1ClusterSpecBackupBarmanObjectStoreS3CredentialsAccessKeyId? AccessKeyId { get; set; } + + /// Use the role based authentication without providing explicitly the keys. + [JsonPropertyName("inheritFromIAMRole")] + public bool? InheritFromIAMRole { get; set; } + + /// The reference to the secret containing the region name + [JsonPropertyName("region")] + public V1ClusterSpecBackupBarmanObjectStoreS3CredentialsRegion? Region { get; set; } + + /// The reference to the secret access key + [JsonPropertyName("secretAccessKey")] + public V1ClusterSpecBackupBarmanObjectStoreS3CredentialsSecretAccessKey? SecretAccessKey { get; set; } + + /// The references to the session key + [JsonPropertyName("sessionToken")] + public V1ClusterSpecBackupBarmanObjectStoreS3CredentialsSessionToken? SessionToken { get; set; } +} + +/// +/// Compress a WAL file before sending it to the object store. Available +/// options are empty string (no compression, default), `gzip`, `bzip2`, +/// `lz4`, `snappy`, `xz`, and `zstd`. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecBackupBarmanObjectStoreWalCompressionEnum +{ + [EnumMember(Value = "bzip2"), JsonStringEnumMemberName("bzip2")] + Bzip2, + [EnumMember(Value = "gzip"), JsonStringEnumMemberName("gzip")] + Gzip, + [EnumMember(Value = "lz4"), JsonStringEnumMemberName("lz4")] + Lz4, + [EnumMember(Value = "snappy"), JsonStringEnumMemberName("snappy")] + Snappy, + [EnumMember(Value = "xz"), JsonStringEnumMemberName("xz")] + Xz, + [EnumMember(Value = "zstd"), JsonStringEnumMemberName("zstd")] + Zstd +} + +/// +/// Whenever to force the encryption of files (if the bucket is +/// not already configured for that). +/// Allowed options are empty string (use the bucket policy, default), +/// `AES256` and `aws:kms` +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecBackupBarmanObjectStoreWalEncryptionEnum +{ + [EnumMember(Value = "AES256"), JsonStringEnumMemberName("AES256")] + AES256, + [EnumMember(Value = "aws:kms"), JsonStringEnumMemberName("aws:kms")] + AwsKms +} + +/// +/// The configuration for the backup of the WAL stream. +/// When not defined, WAL files will be stored uncompressed and may be +/// unencrypted in the object store, according to the bucket default policy. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStoreWal +{ + /// + /// Additional arguments that can be appended to the 'barman-cloud-wal-archive' + /// command-line invocation. These arguments provide flexibility to customize + /// the WAL archive process further, according to specific requirements or configurations. + /// + /// Example: + /// In a scenario where specialized backup options are required, such as setting + /// a specific timeout or defining custom behavior, users can use this field + /// to specify additional command arguments. + /// + /// Note: + /// It's essential to ensure that the provided arguments are valid and supported + /// by the 'barman-cloud-wal-archive' command, to avoid potential errors or unintended + /// behavior during execution. + /// + [JsonPropertyName("archiveAdditionalCommandArgs")] + public IList? ArchiveAdditionalCommandArgs { get; set; } + + /// + /// Compress a WAL file before sending it to the object store. Available + /// options are empty string (no compression, default), `gzip`, `bzip2`, + /// `lz4`, `snappy`, `xz`, and `zstd`. + /// + [JsonPropertyName("compression")] + public V1ClusterSpecBackupBarmanObjectStoreWalCompressionEnum? Compression { get; set; } + + /// + /// Whenever to force the encryption of files (if the bucket is + /// not already configured for that). + /// Allowed options are empty string (use the bucket policy, default), + /// `AES256` and `aws:kms` + /// + [JsonPropertyName("encryption")] + public V1ClusterSpecBackupBarmanObjectStoreWalEncryptionEnum? Encryption { get; set; } + + /// + /// Number of WAL files to be either archived in parallel (when the + /// PostgreSQL instance is archiving to a backup object store) or + /// restored in parallel (when a PostgreSQL standby is fetching WAL + /// files from a recovery object store). If not specified, WAL files + /// will be processed one at a time. It accepts a positive integer as a + /// value - with 1 being the minimum accepted value. + /// + [JsonPropertyName("maxParallel")] + public int? MaxParallel { get; set; } + + /// + /// Additional arguments that can be appended to the 'barman-cloud-wal-restore' + /// command-line invocation. These arguments provide flexibility to customize + /// the WAL restore process further, according to specific requirements or configurations. + /// + /// Example: + /// In a scenario where specialized backup options are required, such as setting + /// a specific timeout or defining custom behavior, users can use this field + /// to specify additional command arguments. + /// + /// Note: + /// It's essential to ensure that the provided arguments are valid and supported + /// by the 'barman-cloud-wal-restore' command, to avoid potential errors or unintended + /// behavior during execution. + /// + [JsonPropertyName("restoreAdditionalCommandArgs")] + public IList? RestoreAdditionalCommandArgs { get; set; } +} + +/// The configuration for the barman-cloud tool suite +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupBarmanObjectStore +{ + /// The credentials to use to upload data to Azure Blob Storage + [JsonPropertyName("azureCredentials")] + public V1ClusterSpecBackupBarmanObjectStoreAzureCredentials? AzureCredentials { get; set; } + + /// + /// The configuration to be used to backup the data files + /// When not defined, base backups files will be stored uncompressed and may + /// be unencrypted in the object store, according to the bucket default + /// policy. + /// + [JsonPropertyName("data")] + public V1ClusterSpecBackupBarmanObjectStoreData? Data { get; set; } + + /// + /// The path where to store the backup (i.e. s3://bucket/path/to/folder) + /// this path, with different destination folders, will be used for WALs + /// and for data + /// + [JsonPropertyName("destinationPath")] + public required string DestinationPath { get; set; } + + /// + /// EndpointCA store the CA bundle of the barman endpoint. + /// Useful when using self-signed certificates to avoid + /// errors with certificate issuer and barman-cloud-wal-archive + /// + [JsonPropertyName("endpointCA")] + public V1ClusterSpecBackupBarmanObjectStoreEndpointCA? EndpointCA { get; set; } + + /// + /// Endpoint to be used to upload data to the cloud, + /// overriding the automatic endpoint discovery + /// + [JsonPropertyName("endpointURL")] + public string? EndpointURL { get; set; } + + /// The credentials to use to upload data to Google Cloud Storage + [JsonPropertyName("googleCredentials")] + public V1ClusterSpecBackupBarmanObjectStoreGoogleCredentials? GoogleCredentials { get; set; } + + /// + /// HistoryTags is a list of key value pairs that will be passed to the + /// Barman --history-tags option. + /// + [JsonPropertyName("historyTags")] + public IDictionary? HistoryTags { get; set; } + + /// The credentials to use to upload data to S3 + [JsonPropertyName("s3Credentials")] + public V1ClusterSpecBackupBarmanObjectStoreS3Credentials? S3Credentials { get; set; } + + /// + /// The server name on S3, the cluster name is used if this + /// parameter is omitted + /// + [JsonPropertyName("serverName")] + public string? ServerName { get; set; } + + /// + /// Tags is a list of key value pairs that will be passed to the + /// Barman --tags option. + /// + [JsonPropertyName("tags")] + public IDictionary? Tags { get; set; } + + /// + /// The configuration for the backup of the WAL stream. + /// When not defined, WAL files will be stored uncompressed and may be + /// unencrypted in the object store, according to the bucket default policy. + /// + [JsonPropertyName("wal")] + public V1ClusterSpecBackupBarmanObjectStoreWal? Wal { get; set; } +} + +/// +/// The policy to decide which instance should perform backups. Available +/// options are empty string, which will default to `prefer-standby` policy, +/// `primary` to have backups run always on primary instances, `prefer-standby` +/// to have backups run preferably on the most updated standby, if available. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecBackupTargetEnum +{ + [EnumMember(Value = "primary"), JsonStringEnumMemberName("primary")] + Primary, + [EnumMember(Value = "prefer-standby"), JsonStringEnumMemberName("prefer-standby")] + PreferStandby +} + +/// Configuration parameters to control the online/hot backup with volume snapshots +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupVolumeSnapshotOnlineConfiguration +{ + /// + /// Control whether the I/O workload for the backup initial checkpoint will + /// be limited, according to the `checkpoint_completion_target` setting on + /// the PostgreSQL server. If set to true, an immediate checkpoint will be + /// used, meaning PostgreSQL will complete the checkpoint as soon as + /// possible. `false` by default. + /// + [JsonPropertyName("immediateCheckpoint")] + public bool? ImmediateCheckpoint { get; set; } + + /// + /// If false, the function will return immediately after the backup is completed, + /// without waiting for WAL to be archived. + /// This behavior is only useful with backup software that independently monitors WAL archiving. + /// Otherwise, WAL required to make the backup consistent might be missing and make the backup useless. + /// By default, or when this parameter is true, pg_backup_stop will wait for WAL to be archived when archiving is + /// enabled. + /// On a standby, this means that it will wait only when archive_mode = always. + /// If write activity on the primary is low, it may be useful to run pg_switch_wal on the primary in order to trigger + /// an immediate segment switch. + /// + [JsonPropertyName("waitForArchive")] + public bool? WaitForArchive { get; set; } +} + +/// SnapshotOwnerReference indicates the type of owner reference the snapshot should have +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecBackupVolumeSnapshotSnapshotOwnerReferenceEnum +{ + [EnumMember(Value = "none"), JsonStringEnumMemberName("none")] + None, + [EnumMember(Value = "cluster"), JsonStringEnumMemberName("cluster")] + Cluster, + [EnumMember(Value = "backup"), JsonStringEnumMemberName("backup")] + Backup +} + +/// VolumeSnapshot provides the configuration for the execution of volume snapshot backups. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackupVolumeSnapshot +{ + /// Annotations key-value pairs that will be added to .metadata.annotations snapshot resources. + [JsonPropertyName("annotations")] + public IDictionary? Annotations { get; set; } + + /// + /// ClassName specifies the Snapshot Class to be used for PG_DATA PersistentVolumeClaim. + /// It is the default class for the other types if no specific class is present + /// + [JsonPropertyName("className")] + public string? ClassName { get; set; } + + /// Labels are key-value pairs that will be added to .metadata.labels snapshot resources. + [JsonPropertyName("labels")] + public IDictionary? Labels { get; set; } + + /// + /// Whether the default type of backup with volume snapshots is + /// online/hot (`true`, default) or offline/cold (`false`) + /// + [JsonPropertyName("online")] + public bool? Online { get; set; } + + /// Configuration parameters to control the online/hot backup with volume snapshots + [JsonPropertyName("onlineConfiguration")] + public V1ClusterSpecBackupVolumeSnapshotOnlineConfiguration? OnlineConfiguration { get; set; } + + /// SnapshotOwnerReference indicates the type of owner reference the snapshot should have + [JsonPropertyName("snapshotOwnerReference")] + public V1ClusterSpecBackupVolumeSnapshotSnapshotOwnerReferenceEnum? SnapshotOwnerReference { get; set; } + + /// + /// TablespaceClassName specifies the Snapshot Class to be used for the tablespaces. + /// defaults to the PGDATA Snapshot Class, if set + /// + [JsonPropertyName("tablespaceClassName")] + public IDictionary? TablespaceClassName { get; set; } + + /// WalClassName specifies the Snapshot Class to be used for the PG_WAL PersistentVolumeClaim. + [JsonPropertyName("walClassName")] + public string? WalClassName { get; set; } +} + +/// The configuration to be used for backups +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBackup +{ + /// The configuration for the barman-cloud tool suite + [JsonPropertyName("barmanObjectStore")] + public V1ClusterSpecBackupBarmanObjectStore? BarmanObjectStore { get; set; } + + /// + /// RetentionPolicy is the retention policy to be used for backups + /// and WALs (i.e. '60d'). The retention policy is expressed in the form + /// of `XXu` where `XX` is a positive integer and `u` is in `[dwm]` - + /// days, weeks, months. + /// It's currently only applicable when using the BarmanObjectStore method. + /// + [JsonPropertyName("retentionPolicy")] + public string? RetentionPolicy { get; set; } + + /// + /// The policy to decide which instance should perform backups. Available + /// options are empty string, which will default to `prefer-standby` policy, + /// `primary` to have backups run always on primary instances, `prefer-standby` + /// to have backups run preferably on the most updated standby, if available. + /// + [JsonPropertyName("target")] + public V1ClusterSpecBackupTargetEnum? Target { get; set; } + + /// VolumeSnapshot provides the configuration for the execution of volume snapshot backups. + [JsonPropertyName("volumeSnapshot")] + public V1ClusterSpecBackupVolumeSnapshot? VolumeSnapshot { get; set; } +} + +/// The source of the import +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbImportSource +{ + /// The name of the externalCluster used for import + [JsonPropertyName("externalCluster")] + public required string ExternalCluster { get; set; } +} + +/// The import type. Can be `microservice` or `monolith`. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecBootstrapInitdbImportTypeEnum +{ + [EnumMember(Value = "microservice"), JsonStringEnumMemberName("microservice")] + Microservice, + [EnumMember(Value = "monolith"), JsonStringEnumMemberName("monolith")] + Monolith +} + +/// +/// Bootstraps the new cluster by importing data from an existing PostgreSQL +/// instance using logical backup (`pg_dump` and `pg_restore`) +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbImport +{ + /// The databases to import + [JsonPropertyName("databases")] + public required IList Databases { get; set; } + + /// + /// List of custom options to pass to the `pg_dump` command. + /// + /// IMPORTANT: Use with caution. The operator does not validate these options, + /// and certain flags may interfere with its intended functionality or design. + /// You are responsible for ensuring that the provided options are compatible + /// with your environment and desired behavior. + /// + [JsonPropertyName("pgDumpExtraOptions")] + public IList? PgDumpExtraOptions { get; set; } + + /// + /// Custom options to pass to the `pg_restore` command during the `data` + /// section. This setting overrides the generic `pgRestoreExtraOptions` value. + /// + /// IMPORTANT: Use with caution. The operator does not validate these options, + /// and certain flags may interfere with its intended functionality or design. + /// You are responsible for ensuring that the provided options are compatible + /// with your environment and desired behavior. + /// + [JsonPropertyName("pgRestoreDataOptions")] + public IList? PgRestoreDataOptions { get; set; } + + /// + /// List of custom options to pass to the `pg_restore` command. + /// + /// IMPORTANT: Use with caution. The operator does not validate these options, + /// and certain flags may interfere with its intended functionality or design. + /// You are responsible for ensuring that the provided options are compatible + /// with your environment and desired behavior. + /// + [JsonPropertyName("pgRestoreExtraOptions")] + public IList? PgRestoreExtraOptions { get; set; } + + /// + /// Custom options to pass to the `pg_restore` command during the `post-data` + /// section. This setting overrides the generic `pgRestoreExtraOptions` value. + /// + /// IMPORTANT: Use with caution. The operator does not validate these options, + /// and certain flags may interfere with its intended functionality or design. + /// You are responsible for ensuring that the provided options are compatible + /// with your environment and desired behavior. + /// + [JsonPropertyName("pgRestorePostdataOptions")] + public IList? PgRestorePostdataOptions { get; set; } + + /// + /// Custom options to pass to the `pg_restore` command during the `pre-data` + /// section. This setting overrides the generic `pgRestoreExtraOptions` value. + /// + /// IMPORTANT: Use with caution. The operator does not validate these options, + /// and certain flags may interfere with its intended functionality or design. + /// You are responsible for ensuring that the provided options are compatible + /// with your environment and desired behavior. + /// + [JsonPropertyName("pgRestorePredataOptions")] + public IList? PgRestorePredataOptions { get; set; } + + /// + /// List of SQL queries to be executed as a superuser in the application + /// database right after is imported - to be used with extreme care + /// (by default empty). Only available in microservice type. + /// + [JsonPropertyName("postImportApplicationSQL")] + public IList? PostImportApplicationSQL { get; set; } + + /// The roles to import + [JsonPropertyName("roles")] + public IList? Roles { get; set; } + + /// + /// When set to true, only the `pre-data` and `post-data` sections of + /// `pg_restore` are invoked, avoiding data import. Default: `false`. + /// + [JsonPropertyName("schemaOnly")] + public bool? SchemaOnly { get; set; } + + /// The source of the import + [JsonPropertyName("source")] + public required V1ClusterSpecBootstrapInitdbImportSource Source { get; set; } + + /// The import type. Can be `microservice` or `monolith`. + [JsonPropertyName("type")] + public required V1ClusterSpecBootstrapInitdbImportTypeEnum Type { get; set; } +} + +/// +/// ConfigMapKeySelector contains enough information to let you locate +/// the key of a ConfigMap +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbPostInitApplicationSQLRefsConfigMapRefs +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// SecretKeySelector contains enough information to let you locate +/// the key of a Secret +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbPostInitApplicationSQLRefsSecretRefs +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// List of references to ConfigMaps or Secrets containing SQL files +/// to be executed as a superuser in the application database right after +/// the cluster has been created. The references are processed in a specific order: +/// first, all Secrets are processed, followed by all ConfigMaps. +/// Within each group, the processing order follows the sequence specified +/// in their respective arrays. +/// (by default empty) +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbPostInitApplicationSQLRefs +{ + /// ConfigMapRefs holds a list of references to ConfigMaps + [JsonPropertyName("configMapRefs")] + public IList? ConfigMapRefs { get; set; } + + /// SecretRefs holds a list of references to Secrets + [JsonPropertyName("secretRefs")] + public IList? SecretRefs { get; set; } +} + +/// +/// ConfigMapKeySelector contains enough information to let you locate +/// the key of a ConfigMap +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbPostInitSQLRefsConfigMapRefs +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// SecretKeySelector contains enough information to let you locate +/// the key of a Secret +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbPostInitSQLRefsSecretRefs +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// List of references to ConfigMaps or Secrets containing SQL files +/// to be executed as a superuser in the `postgres` database right after +/// the cluster has been created. The references are processed in a specific order: +/// first, all Secrets are processed, followed by all ConfigMaps. +/// Within each group, the processing order follows the sequence specified +/// in their respective arrays. +/// (by default empty) +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbPostInitSQLRefs +{ + /// ConfigMapRefs holds a list of references to ConfigMaps + [JsonPropertyName("configMapRefs")] + public IList? ConfigMapRefs { get; set; } + + /// SecretRefs holds a list of references to Secrets + [JsonPropertyName("secretRefs")] + public IList? SecretRefs { get; set; } +} + +/// +/// ConfigMapKeySelector contains enough information to let you locate +/// the key of a ConfigMap +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbPostInitTemplateSQLRefsConfigMapRefs +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// SecretKeySelector contains enough information to let you locate +/// the key of a Secret +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbPostInitTemplateSQLRefsSecretRefs +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// List of references to ConfigMaps or Secrets containing SQL files +/// to be executed as a superuser in the `template1` database right after +/// the cluster has been created. The references are processed in a specific order: +/// first, all Secrets are processed, followed by all ConfigMaps. +/// Within each group, the processing order follows the sequence specified +/// in their respective arrays. +/// (by default empty) +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbPostInitTemplateSQLRefs +{ + /// ConfigMapRefs holds a list of references to ConfigMaps + [JsonPropertyName("configMapRefs")] + public IList? ConfigMapRefs { get; set; } + + /// SecretRefs holds a list of references to Secrets + [JsonPropertyName("secretRefs")] + public IList? SecretRefs { get; set; } +} + +/// +/// Name of the secret containing the initial credentials for the +/// owner of the user database. If empty a new secret will be +/// created from scratch +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdbSecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// Bootstrap the cluster via initdb +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapInitdb +{ + /// + /// Specifies the locale name when the builtin provider is used. + /// This option requires `localeProvider` to be set to `builtin`. + /// Available from PostgreSQL 17. + /// + [JsonPropertyName("builtinLocale")] + public string? BuiltinLocale { get; set; } + + /// + /// Whether the `-k` option should be passed to initdb, + /// enabling checksums on data pages (default: `false`) + /// + [JsonPropertyName("dataChecksums")] + public bool? DataChecksums { get; set; } + + /// Name of the database used by the application. Default: `app`. + [JsonPropertyName("database")] + public string? Database { get; set; } + + /// The value to be passed as option `--encoding` for initdb (default:`UTF8`) + [JsonPropertyName("encoding")] + public string? Encoding { get; set; } + + /// + /// Specifies the ICU locale when the ICU provider is used. + /// This option requires `localeProvider` to be set to `icu`. + /// Available from PostgreSQL 15. + /// + [JsonPropertyName("icuLocale")] + public string? IcuLocale { get; set; } + + /// + /// Specifies additional collation rules to customize the behavior of the default collation. + /// This option requires `localeProvider` to be set to `icu`. + /// Available from PostgreSQL 16. + /// + [JsonPropertyName("icuRules")] + public string? IcuRules { get; set; } + + /// + /// Bootstraps the new cluster by importing data from an existing PostgreSQL + /// instance using logical backup (`pg_dump` and `pg_restore`) + /// + [JsonPropertyName("import")] + public V1ClusterSpecBootstrapInitdbImport? Import { get; set; } + + /// Sets the default collation order and character classification in the new database. + [JsonPropertyName("locale")] + public string? Locale { get; set; } + + /// The value to be passed as option `--lc-ctype` for initdb (default:`C`) + [JsonPropertyName("localeCType")] + public string? LocaleCType { get; set; } + + /// The value to be passed as option `--lc-collate` for initdb (default:`C`) + [JsonPropertyName("localeCollate")] + public string? LocaleCollate { get; set; } + + /// + /// This option sets the locale provider for databases created in the new cluster. + /// Available from PostgreSQL 16. + /// + [JsonPropertyName("localeProvider")] + public string? LocaleProvider { get; set; } + + /// + /// The list of options that must be passed to initdb when creating the cluster. + /// + /// Deprecated: This could lead to inconsistent configurations, + /// please use the explicit provided parameters instead. + /// If defined, explicit values will be ignored. + /// + [JsonPropertyName("options")] + public IList? Options { get; set; } + + /// + /// Name of the owner of the database in the instance to be used + /// by applications. Defaults to the value of the `database` key. + /// + [JsonPropertyName("owner")] + public string? Owner { get; set; } + + /// + /// List of SQL queries to be executed as a superuser in the application + /// database right after the cluster has been created - to be used with extreme care + /// (by default empty) + /// + [JsonPropertyName("postInitApplicationSQL")] + public IList? PostInitApplicationSQL { get; set; } + + /// + /// List of references to ConfigMaps or Secrets containing SQL files + /// to be executed as a superuser in the application database right after + /// the cluster has been created. The references are processed in a specific order: + /// first, all Secrets are processed, followed by all ConfigMaps. + /// Within each group, the processing order follows the sequence specified + /// in their respective arrays. + /// (by default empty) + /// + [JsonPropertyName("postInitApplicationSQLRefs")] + public V1ClusterSpecBootstrapInitdbPostInitApplicationSQLRefs? PostInitApplicationSQLRefs { get; set; } + + /// + /// List of SQL queries to be executed as a superuser in the `postgres` + /// database right after the cluster has been created - to be used with extreme care + /// (by default empty) + /// + [JsonPropertyName("postInitSQL")] + public IList? PostInitSQL { get; set; } + + /// + /// List of references to ConfigMaps or Secrets containing SQL files + /// to be executed as a superuser in the `postgres` database right after + /// the cluster has been created. The references are processed in a specific order: + /// first, all Secrets are processed, followed by all ConfigMaps. + /// Within each group, the processing order follows the sequence specified + /// in their respective arrays. + /// (by default empty) + /// + [JsonPropertyName("postInitSQLRefs")] + public V1ClusterSpecBootstrapInitdbPostInitSQLRefs? PostInitSQLRefs { get; set; } + + /// + /// List of SQL queries to be executed as a superuser in the `template1` + /// database right after the cluster has been created - to be used with extreme care + /// (by default empty) + /// + [JsonPropertyName("postInitTemplateSQL")] + public IList? PostInitTemplateSQL { get; set; } + + /// + /// List of references to ConfigMaps or Secrets containing SQL files + /// to be executed as a superuser in the `template1` database right after + /// the cluster has been created. The references are processed in a specific order: + /// first, all Secrets are processed, followed by all ConfigMaps. + /// Within each group, the processing order follows the sequence specified + /// in their respective arrays. + /// (by default empty) + /// + [JsonPropertyName("postInitTemplateSQLRefs")] + public V1ClusterSpecBootstrapInitdbPostInitTemplateSQLRefs? PostInitTemplateSQLRefs { get; set; } + + /// + /// Name of the secret containing the initial credentials for the + /// owner of the user database. If empty a new secret will be + /// created from scratch + /// + [JsonPropertyName("secret")] + public V1ClusterSpecBootstrapInitdbSecret? Secret { get; set; } + + /// + /// The value in megabytes (1 to 1024) to be passed to the `--wal-segsize` + /// option for initdb (default: empty, resulting in PostgreSQL default: 16MB) + /// + [JsonPropertyName("walSegmentSize")] + public int? WalSegmentSize { get; set; } +} + +/// +/// Name of the secret containing the initial credentials for the +/// owner of the user database. If empty a new secret will be +/// created from scratch +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapPgBasebackupSecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// Bootstrap the cluster taking a physical backup of another compatible +/// PostgreSQL instance +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapPgBasebackup +{ + /// Name of the database used by the application. Default: `app`. + [JsonPropertyName("database")] + public string? Database { get; set; } + + /// + /// Name of the owner of the database in the instance to be used + /// by applications. Defaults to the value of the `database` key. + /// + [JsonPropertyName("owner")] + public string? Owner { get; set; } + + /// + /// Name of the secret containing the initial credentials for the + /// owner of the user database. If empty a new secret will be + /// created from scratch + /// + [JsonPropertyName("secret")] + public V1ClusterSpecBootstrapPgBasebackupSecret? Secret { get; set; } + + /// The name of the server of which we need to take a physical backup + [JsonPropertyName("source")] + public required string Source { get; set; } +} + +/// +/// EndpointCA store the CA bundle of the barman endpoint. +/// Useful when using self-signed certificates to avoid +/// errors with certificate issuer and barman-cloud-wal-archive. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapRecoveryBackupEndpointCA +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// The backup object containing the physical base backup from which to +/// initiate the recovery procedure. +/// Mutually exclusive with `source` and `volumeSnapshots`. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapRecoveryBackup +{ + /// + /// EndpointCA store the CA bundle of the barman endpoint. + /// Useful when using self-signed certificates to avoid + /// errors with certificate issuer and barman-cloud-wal-archive. + /// + [JsonPropertyName("endpointCA")] + public V1ClusterSpecBootstrapRecoveryBackupEndpointCA? EndpointCA { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// By default, the recovery process applies all the available +/// WAL files in the archive (full recovery). However, you can also +/// end the recovery as soon as a consistent state is reached or +/// recover to a point-in-time (PITR) by specifying a `RecoveryTarget` object, +/// as expected by PostgreSQL (i.e., timestamp, transaction Id, LSN, ...). +/// More info: https://www.postgresql.org/docs/current/runtime-config-wal.html#RUNTIME-CONFIG-WAL-RECOVERY-TARGET +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapRecoveryRecoveryTarget +{ + /// + /// The ID of the backup from which to start the recovery process. + /// If empty (default) the operator will automatically detect the backup + /// based on targetTime or targetLSN if specified. Otherwise use the + /// latest available backup in chronological order. + /// + [JsonPropertyName("backupID")] + public string? BackupID { get; set; } + + /// + /// Set the target to be exclusive. If omitted, defaults to false, so that + /// in Postgres, `recovery_target_inclusive` will be true + /// + [JsonPropertyName("exclusive")] + public bool? Exclusive { get; set; } + + /// End recovery as soon as a consistent state is reached + [JsonPropertyName("targetImmediate")] + public bool? TargetImmediate { get; set; } + + /// The target LSN (Log Sequence Number) + [JsonPropertyName("targetLSN")] + public string? TargetLSN { get; set; } + + /// + /// The target name (to be previously created + /// with `pg_create_restore_point`) + /// + [JsonPropertyName("targetName")] + public string? TargetName { get; set; } + + /// The target timeline ("latest" or a positive integer) + [JsonPropertyName("targetTLI")] + public string? TargetTLI { get; set; } + + /// + /// The target time as a timestamp in RFC3339 format or PostgreSQL timestamp format. + /// Timestamps without an explicit timezone are interpreted as UTC. + /// + [JsonPropertyName("targetTime")] + public string? TargetTime { get; set; } + + /// The target transaction ID + [JsonPropertyName("targetXID")] + public string? TargetXID { get; set; } +} + +/// +/// Name of the secret containing the initial credentials for the +/// owner of the user database. If empty a new secret will be +/// created from scratch +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapRecoverySecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// Configuration of the storage of the instances +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapRecoveryVolumeSnapshotsStorage +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// TypedLocalObjectReference contains enough information to let you locate the +/// typed referenced object inside the same namespace. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapRecoveryVolumeSnapshotsTablespaceStorage +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// Configuration of the storage for PostgreSQL WAL (Write-Ahead Log) +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapRecoveryVolumeSnapshotsWalStorage +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// The static PVC data source(s) from which to initiate the +/// recovery procedure. Currently supporting `VolumeSnapshot` +/// and `PersistentVolumeClaim` resources that map an existing +/// PVC group, compatible with CloudNativePG, and taken with +/// a cold backup copy on a fenced Postgres instance (limitation +/// which will be removed in the future when online backup +/// will be implemented). +/// Mutually exclusive with `backup`. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapRecoveryVolumeSnapshots +{ + /// Configuration of the storage of the instances + [JsonPropertyName("storage")] + public required V1ClusterSpecBootstrapRecoveryVolumeSnapshotsStorage Storage { get; set; } + + /// Configuration of the storage for PostgreSQL tablespaces + [JsonPropertyName("tablespaceStorage")] + public IDictionary? TablespaceStorage { get; set; } + + /// Configuration of the storage for PostgreSQL WAL (Write-Ahead Log) + [JsonPropertyName("walStorage")] + public V1ClusterSpecBootstrapRecoveryVolumeSnapshotsWalStorage? WalStorage { get; set; } +} + +/// Bootstrap the cluster from a backup +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrapRecovery +{ + /// + /// The backup object containing the physical base backup from which to + /// initiate the recovery procedure. + /// Mutually exclusive with `source` and `volumeSnapshots`. + /// + [JsonPropertyName("backup")] + public V1ClusterSpecBootstrapRecoveryBackup? Backup { get; set; } + + /// Name of the database used by the application. Default: `app`. + [JsonPropertyName("database")] + public string? Database { get; set; } + + /// + /// Name of the owner of the database in the instance to be used + /// by applications. Defaults to the value of the `database` key. + /// + [JsonPropertyName("owner")] + public string? Owner { get; set; } + + /// + /// By default, the recovery process applies all the available + /// WAL files in the archive (full recovery). However, you can also + /// end the recovery as soon as a consistent state is reached or + /// recover to a point-in-time (PITR) by specifying a `RecoveryTarget` object, + /// as expected by PostgreSQL (i.e., timestamp, transaction Id, LSN, ...). + /// More info: https://www.postgresql.org/docs/current/runtime-config-wal.html#RUNTIME-CONFIG-WAL-RECOVERY-TARGET + /// + [JsonPropertyName("recoveryTarget")] + public V1ClusterSpecBootstrapRecoveryRecoveryTarget? RecoveryTarget { get; set; } + + /// + /// Name of the secret containing the initial credentials for the + /// owner of the user database. If empty a new secret will be + /// created from scratch + /// + [JsonPropertyName("secret")] + public V1ClusterSpecBootstrapRecoverySecret? Secret { get; set; } + + /// + /// The external cluster whose backup we will restore. This is also + /// used as the name of the folder under which the backup is stored, + /// so it must be set to the name of the source cluster + /// Mutually exclusive with `backup`. + /// + [JsonPropertyName("source")] + public string? Source { get; set; } + + /// + /// The static PVC data source(s) from which to initiate the + /// recovery procedure. Currently supporting `VolumeSnapshot` + /// and `PersistentVolumeClaim` resources that map an existing + /// PVC group, compatible with CloudNativePG, and taken with + /// a cold backup copy on a fenced Postgres instance (limitation + /// which will be removed in the future when online backup + /// will be implemented). + /// Mutually exclusive with `backup`. + /// + [JsonPropertyName("volumeSnapshots")] + public V1ClusterSpecBootstrapRecoveryVolumeSnapshots? VolumeSnapshots { get; set; } +} + +/// Instructions to bootstrap this cluster +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecBootstrap +{ + /// Bootstrap the cluster via initdb + [JsonPropertyName("initdb")] + public V1ClusterSpecBootstrapInitdb? Initdb { get; set; } + + /// + /// Bootstrap the cluster taking a physical backup of another compatible + /// PostgreSQL instance + /// + [JsonPropertyName("pg_basebackup")] + public V1ClusterSpecBootstrapPgBasebackup? PgBasebackup { get; set; } + + /// Bootstrap the cluster from a backup + [JsonPropertyName("recovery")] + public V1ClusterSpecBootstrapRecovery? Recovery { get; set; } +} + +/// The configuration for the CA and related certificates +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecCertificates +{ + /// + /// The secret containing the Client CA certificate. If not defined, a new secret will be created + /// with a self-signed CA and will be used to generate all the client certificates.<br /> + /// <br /> + /// Contains:<br /> + /// <br /> + /// - `ca.crt`: CA that should be used to validate the client certificates, + /// used as `ssl_ca_file` of all the instances.<br /> + /// - `ca.key`: key used to generate client certificates, if ReplicationTLSSecret is provided, + /// this can be omitted.<br /> + /// + [JsonPropertyName("clientCASecret")] + public string? ClientCASecret { get; set; } + + /// + /// The secret of type kubernetes.io/tls containing the client certificate to authenticate as + /// the `streaming_replica` user. + /// If not defined, ClientCASecret must provide also `ca.key`, and a new secret will be + /// created using the provided CA. + /// + [JsonPropertyName("replicationTLSSecret")] + public string? ReplicationTLSSecret { get; set; } + + /// The list of the server alternative DNS names to be added to the generated server TLS certificates, when required. + [JsonPropertyName("serverAltDNSNames")] + public IList? ServerAltDNSNames { get; set; } + + /// + /// The secret containing the Server CA certificate. If not defined, a new secret will be created + /// with a self-signed CA and will be used to generate the TLS certificate ServerTLSSecret.<br /> + /// <br /> + /// Contains:<br /> + /// <br /> + /// - `ca.crt`: CA that should be used to validate the server certificate, + /// used as `sslrootcert` in client connection strings.<br /> + /// - `ca.key`: key used to generate Server SSL certs, if ServerTLSSecret is provided, + /// this can be omitted.<br /> + /// + [JsonPropertyName("serverCASecret")] + public string? ServerCASecret { get; set; } + + /// + /// The secret of type kubernetes.io/tls containing the server TLS certificate and key that will be set as + /// `ssl_cert_file` and `ssl_key_file` so that clients can connect to postgres securely. + /// If not defined, ServerCASecret must provide also `ca.key` and a new secret will be + /// created using the provided CA. + /// + [JsonPropertyName("serverTLSSecret")] + public string? ServerTLSSecret { get; set; } +} + +/// Selects a key of a ConfigMap. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnvValueFromConfigMapKeyRef +{ + /// The key to select. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the ConfigMap or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// +/// Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels[' <KEY> ']`, `metadata.annotations[' <KEY> ']`, +/// spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnvValueFromFieldRef +{ + /// Version of the schema the FieldPath is written in terms of, defaults to "v1". + [JsonPropertyName("apiVersion")] + public string? ApiVersion { get; set; } + + /// Path of the field to select in the specified API version. + [JsonPropertyName("fieldPath")] + public required string FieldPath { get; set; } +} + +/// +/// FileKeyRef selects a key of the env file. +/// Requires the EnvFiles feature gate to be enabled. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnvValueFromFileKeyRef +{ + /// + /// The key within the env file. An invalid key will prevent the pod from starting. + /// The keys defined within a source may consist of any printable ASCII characters except '='. + /// During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. + /// + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Specify whether the file or its key must be defined. If the file or key + /// does not exist, then the env var is not published. + /// If optional is set to true and the specified key does not exist, + /// the environment variable will not be set in the Pod's containers. + /// + /// If optional is set to false and the specified key does not exist, + /// an error will be returned during Pod creation. + /// + [JsonPropertyName("optional")] + public bool? Optional { get; set; } + + /// + /// The path within the volume from which to select the file. + /// Must be relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// The name of the volume mount containing the env file. + [JsonPropertyName("volumeName")] + public required string VolumeName { get; set; } +} + +/// +/// Selects a resource of the container: only resources limits and requests +/// (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnvValueFromResourceFieldRef +{ + /// Container name: required for volumes, optional for env vars + [JsonPropertyName("containerName")] + public string? ContainerName { get; set; } + + /// Specifies the output format of the exposed resources, defaults to "1" + [JsonPropertyName("divisor")] + public IntOrString? Divisor { get; set; } + + /// Required: resource to select + [JsonPropertyName("resource")] + public required string Resource { get; set; } +} + +/// Selects a key of a secret in the pod's namespace +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnvValueFromSecretKeyRef +{ + /// The key of the secret to select from. Must be a valid secret key. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// Source for the environment variable's value. Cannot be used if value is not empty. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnvValueFrom +{ + /// Selects a key of a ConfigMap. + [JsonPropertyName("configMapKeyRef")] + public V1ClusterSpecEnvValueFromConfigMapKeyRef? ConfigMapKeyRef { get; set; } + + /// + /// Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels[' <KEY> ']`, `metadata.annotations[' <KEY> ']`, + /// spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. + /// + [JsonPropertyName("fieldRef")] + public V1ClusterSpecEnvValueFromFieldRef? FieldRef { get; set; } + + /// + /// FileKeyRef selects a key of the env file. + /// Requires the EnvFiles feature gate to be enabled. + /// + [JsonPropertyName("fileKeyRef")] + public V1ClusterSpecEnvValueFromFileKeyRef? FileKeyRef { get; set; } + + /// + /// Selects a resource of the container: only resources limits and requests + /// (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. + /// + [JsonPropertyName("resourceFieldRef")] + public V1ClusterSpecEnvValueFromResourceFieldRef? ResourceFieldRef { get; set; } + + /// Selects a key of a secret in the pod's namespace + [JsonPropertyName("secretKeyRef")] + public V1ClusterSpecEnvValueFromSecretKeyRef? SecretKeyRef { get; set; } +} + +/// EnvVar represents an environment variable present in a Container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnv +{ + /// + /// Name of the environment variable. + /// May consist of any printable ASCII characters except '='. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Variable references $(VAR_NAME) are expanded + /// using the previously defined environment variables in the container and + /// any service environment variables. If a variable cannot be resolved, + /// the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + /// "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + /// Escaped references will never be expanded, regardless of whether the variable + /// exists or not. + /// Defaults to " ". + /// + [JsonPropertyName("value")] + public string? Value { get; set; } + + /// Source for the environment variable's value. Cannot be used if value is not empty. + [JsonPropertyName("valueFrom")] + public V1ClusterSpecEnvValueFrom? ValueFrom { get; set; } +} + +/// The ConfigMap to select from +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnvFromConfigMapRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the ConfigMap must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// The Secret to select from +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnvFromSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// EnvFromSource represents the source of a set of ConfigMaps or Secrets +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEnvFrom +{ + /// The ConfigMap to select from + [JsonPropertyName("configMapRef")] + public V1ClusterSpecEnvFromConfigMapRef? ConfigMapRef { get; set; } + + /// + /// Optional text to prepend to the name of each environment variable. + /// May consist of any printable ASCII characters except '='. + /// + [JsonPropertyName("prefix")] + public string? Prefix { get; set; } + + /// The Secret to select from + [JsonPropertyName("secretRef")] + public V1ClusterSpecEnvFromSecretRef? SecretRef { get; set; } +} + +/// +/// May contain labels and annotations that will be copied into the PVC +/// when creating it. No other fields are allowed and will be rejected during +/// validation. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateMetadata +{ +} + +/// +/// dataSource field can be used to specify either: +/// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) +/// * An existing PVC (PersistentVolumeClaim) +/// If the provisioner or an external controller can support the specified data source, +/// it will create a new volume based on the contents of the specified data source. +/// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, +/// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. +/// If the namespace is specified, then dataSourceRef will not be copied to dataSource. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpecDataSource +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty +/// volume is desired. This may be any object from a non-empty API group (non +/// core object) or a PersistentVolumeClaim object. +/// When this field is specified, volume binding will only succeed if the type of +/// the specified object matches some installed volume populator or dynamic +/// provisioner. +/// This field will replace the functionality of the dataSource field and as such +/// if both fields are non-empty, they must have the same value. For backwards +/// compatibility, when namespace isn't specified in dataSourceRef, +/// both fields (dataSource and dataSourceRef) will be set to the same +/// value automatically if one of them is empty and the other is non-empty. +/// When namespace is specified in dataSourceRef, +/// dataSource isn't set to the same value and must be empty. +/// There are three important differences between dataSource and dataSourceRef: +/// * While dataSource only allows two specific types of objects, dataSourceRef +/// allows any non-core object, as well as PersistentVolumeClaim objects. +/// * While dataSource ignores disallowed values (dropping them), dataSourceRef +/// preserves all values, and generates an error if a disallowed value is +/// specified. +/// * While dataSource only allows local objects, dataSourceRef allows objects +/// in any namespaces. +/// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. +/// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpecDataSourceRef +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Namespace is the namespace of resource being referenced + /// Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + /// (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("namespace")] + public string? Namespace { get; set; } +} + +/// +/// resources represents the minimum resources the volume should have. +/// Users are allowed to specify resource requirements +/// that are lower than previous value but must still be higher than capacity recorded in the +/// status field of the claim. +/// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpecResources +{ + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpecSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// selector is a label query over volumes to consider for binding. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpecSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// The specification for the PersistentVolumeClaim. The entire content is +/// copied unchanged into the PVC that gets created from this +/// template. The same fields as in a PersistentVolumeClaim +/// are also valid here. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpec +{ + /// + /// accessModes contains the desired access modes the volume should have. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + /// + [JsonPropertyName("accessModes")] + public IList? AccessModes { get; set; } + + /// + /// dataSource field can be used to specify either: + /// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + /// * An existing PVC (PersistentVolumeClaim) + /// If the provisioner or an external controller can support the specified data source, + /// it will create a new volume based on the contents of the specified data source. + /// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + /// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + /// If the namespace is specified, then dataSourceRef will not be copied to dataSource. + /// + [JsonPropertyName("dataSource")] + public V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpecDataSource? DataSource { get; set; } + + /// + /// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + /// volume is desired. This may be any object from a non-empty API group (non + /// core object) or a PersistentVolumeClaim object. + /// When this field is specified, volume binding will only succeed if the type of + /// the specified object matches some installed volume populator or dynamic + /// provisioner. + /// This field will replace the functionality of the dataSource field and as such + /// if both fields are non-empty, they must have the same value. For backwards + /// compatibility, when namespace isn't specified in dataSourceRef, + /// both fields (dataSource and dataSourceRef) will be set to the same + /// value automatically if one of them is empty and the other is non-empty. + /// When namespace is specified in dataSourceRef, + /// dataSource isn't set to the same value and must be empty. + /// There are three important differences between dataSource and dataSourceRef: + /// * While dataSource only allows two specific types of objects, dataSourceRef + /// allows any non-core object, as well as PersistentVolumeClaim objects. + /// * While dataSource ignores disallowed values (dropping them), dataSourceRef + /// preserves all values, and generates an error if a disallowed value is + /// specified. + /// * While dataSource only allows local objects, dataSourceRef allows objects + /// in any namespaces. + /// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + /// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("dataSourceRef")] + public V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpecDataSourceRef? DataSourceRef { get; set; } + + /// + /// resources represents the minimum resources the volume should have. + /// Users are allowed to specify resource requirements + /// that are lower than previous value but must still be higher than capacity recorded in the + /// status field of the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + /// + [JsonPropertyName("resources")] + public V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpecResources? Resources { get; set; } + + /// selector is a label query over volumes to consider for binding. + [JsonPropertyName("selector")] + public V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpecSelector? Selector { get; set; } + + /// + /// storageClassName is the name of the StorageClass required by the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + /// + [JsonPropertyName("storageClassName")] + public string? StorageClassName { get; set; } + + /// + /// volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + /// If specified, the CSI driver will create or update the volume with the attributes defined + /// in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + /// it can be changed after the claim is created. An empty string or nil value indicates that no + /// VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + /// this field can be reset to its previous value (including nil) to cancel the modification. + /// If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + /// set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + /// exists. + /// More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + /// + [JsonPropertyName("volumeAttributesClassName")] + public string? VolumeAttributesClassName { get; set; } + + /// + /// volumeMode defines what type of volume is required by the claim. + /// Value of Filesystem is implied when not included in claim spec. + /// + [JsonPropertyName("volumeMode")] + public string? VolumeMode { get; set; } + + /// volumeName is the binding reference to the PersistentVolume backing this claim. + [JsonPropertyName("volumeName")] + public string? VolumeName { get; set; } +} + +/// +/// Will be used to create a stand-alone PVC to provision the volume. +/// The pod in which this EphemeralVolumeSource is embedded will be the +/// owner of the PVC, i.e. the PVC will be deleted together with the +/// pod. The name of the PVC will be `<pod name>-<volume name>` where +/// `<volume name>` is the name from the `PodSpec.Volumes` array +/// entry. Pod validation will reject the pod if the concatenated name +/// is not valid for a PVC (for example, too long). +/// +/// An existing PVC with that name that is not owned by the pod +/// will *not* be used for the pod to avoid using an unrelated +/// volume by mistake. Starting the pod is then blocked until +/// the unrelated PVC is removed. If such a pre-created PVC is +/// meant to be used by the pod, the PVC has to updated with an +/// owner reference to the pod once the pod exists. Normally +/// this should not be necessary, but it may be useful when +/// manually reconstructing a broken cluster. +/// +/// This field is read-only and no changes will be made by Kubernetes +/// to the PVC after it has been created. +/// +/// Required, must not be nil. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplate +{ + /// + /// May contain labels and annotations that will be copied into the PVC + /// when creating it. No other fields are allowed and will be rejected during + /// validation. + /// + [JsonPropertyName("metadata")] + public V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateMetadata? Metadata { get; set; } + + /// + /// The specification for the PersistentVolumeClaim. The entire content is + /// copied unchanged into the PVC that gets created from this + /// template. The same fields as in a PersistentVolumeClaim + /// are also valid here. + /// + [JsonPropertyName("spec")] + public required V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplateSpec Spec { get; set; } +} + +/// EphemeralVolumeSource allows the user to configure the source of ephemeral volumes. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumeSource +{ + /// + /// Will be used to create a stand-alone PVC to provision the volume. + /// The pod in which this EphemeralVolumeSource is embedded will be the + /// owner of the PVC, i.e. the PVC will be deleted together with the + /// pod. The name of the PVC will be `<pod name>-<volume name>` where + /// `<volume name>` is the name from the `PodSpec.Volumes` array + /// entry. Pod validation will reject the pod if the concatenated name + /// is not valid for a PVC (for example, too long). + /// + /// An existing PVC with that name that is not owned by the pod + /// will *not* be used for the pod to avoid using an unrelated + /// volume by mistake. Starting the pod is then blocked until + /// the unrelated PVC is removed. If such a pre-created PVC is + /// meant to be used by the pod, the PVC has to updated with an + /// owner reference to the pod once the pod exists. Normally + /// this should not be necessary, but it may be useful when + /// manually reconstructing a broken cluster. + /// + /// This field is read-only and no changes will be made by Kubernetes + /// to the PVC after it has been created. + /// + /// Required, must not be nil. + /// + [JsonPropertyName("volumeClaimTemplate")] + public V1ClusterSpecEphemeralVolumeSourceVolumeClaimTemplate? VolumeClaimTemplate { get; set; } +} + +/// +/// EphemeralVolumesSizeLimit allows the user to set the limits for the ephemeral +/// volumes +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecEphemeralVolumesSizeLimit +{ + /// Shm is the size limit of the shared memory volume + [JsonPropertyName("shm")] + public IntOrString? Shm { get; set; } + + /// TemporaryData is the size limit of the temporary data volume + [JsonPropertyName("temporaryData")] + public IntOrString? TemporaryData { get; set; } +} + +/// The connection string to be used +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentialsConnectionString +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The storage account where to upload data +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentialsStorageAccount +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// The storage account key to be used in conjunction +/// with the storage account name +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentialsStorageKey +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// A shared-access-signature to be used in conjunction with +/// the storage account name +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentialsStorageSasToken +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The credentials to use to upload data to Azure Blob Storage +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentials +{ + /// The connection string to be used + [JsonPropertyName("connectionString")] + public V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentialsConnectionString? ConnectionString { get; set; } + + /// Use the Azure AD based authentication without providing explicitly the keys. + [JsonPropertyName("inheritFromAzureAD")] + public bool? InheritFromAzureAD { get; set; } + + /// The storage account where to upload data + [JsonPropertyName("storageAccount")] + public V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentialsStorageAccount? StorageAccount { get; set; } + + /// + /// The storage account key to be used in conjunction + /// with the storage account name + /// + [JsonPropertyName("storageKey")] + public V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentialsStorageKey? StorageKey { get; set; } + + /// + /// A shared-access-signature to be used in conjunction with + /// the storage account name + /// + [JsonPropertyName("storageSasToken")] + public V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentialsStorageSasToken? StorageSasToken { get; set; } + + /// + /// Use the default Azure authentication flow, which includes DefaultAzureCredential. + /// This allows authentication using environment variables and managed identities. + /// + [JsonPropertyName("useDefaultAzureCredentials")] + public bool? UseDefaultAzureCredentials { get; set; } +} + +/// +/// Compress a backup file (a tar file per tablespace) while streaming it +/// to the object store. Available options are empty string (no +/// compression, default), `gzip`, `bzip2`, and `snappy`. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecExternalClustersBarmanObjectStoreDataCompressionEnum +{ + [EnumMember(Value = "bzip2"), JsonStringEnumMemberName("bzip2")] + Bzip2, + [EnumMember(Value = "gzip"), JsonStringEnumMemberName("gzip")] + Gzip, + [EnumMember(Value = "snappy"), JsonStringEnumMemberName("snappy")] + Snappy +} + +/// +/// Whenever to force the encryption of files (if the bucket is +/// not already configured for that). +/// Allowed options are empty string (use the bucket policy, default), +/// `AES256` and `aws:kms` +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecExternalClustersBarmanObjectStoreDataEncryptionEnum +{ + [EnumMember(Value = "AES256"), JsonStringEnumMemberName("AES256")] + AES256, + [EnumMember(Value = "aws:kms"), JsonStringEnumMemberName("aws:kms")] + AwsKms +} + +/// +/// The configuration to be used to backup the data files +/// When not defined, base backups files will be stored uncompressed and may +/// be unencrypted in the object store, according to the bucket default +/// policy. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreData +{ + /// + /// AdditionalCommandArgs represents additional arguments that can be appended + /// to the 'barman-cloud-backup' command-line invocation. These arguments + /// provide flexibility to customize the backup process further according to + /// specific requirements or configurations. + /// + /// Example: + /// In a scenario where specialized backup options are required, such as setting + /// a specific timeout or defining custom behavior, users can use this field + /// to specify additional command arguments. + /// + /// Note: + /// It's essential to ensure that the provided arguments are valid and supported + /// by the 'barman-cloud-backup' command, to avoid potential errors or unintended + /// behavior during execution. + /// + [JsonPropertyName("additionalCommandArgs")] + public IList? AdditionalCommandArgs { get; set; } + + /// + /// Compress a backup file (a tar file per tablespace) while streaming it + /// to the object store. Available options are empty string (no + /// compression, default), `gzip`, `bzip2`, and `snappy`. + /// + [JsonPropertyName("compression")] + public V1ClusterSpecExternalClustersBarmanObjectStoreDataCompressionEnum? Compression { get; set; } + + /// + /// Whenever to force the encryption of files (if the bucket is + /// not already configured for that). + /// Allowed options are empty string (use the bucket policy, default), + /// `AES256` and `aws:kms` + /// + [JsonPropertyName("encryption")] + public V1ClusterSpecExternalClustersBarmanObjectStoreDataEncryptionEnum? Encryption { get; set; } + + /// + /// Control whether the I/O workload for the backup initial checkpoint will + /// be limited, according to the `checkpoint_completion_target` setting on + /// the PostgreSQL server. If set to true, an immediate checkpoint will be + /// used, meaning PostgreSQL will complete the checkpoint as soon as + /// possible. `false` by default. + /// + [JsonPropertyName("immediateCheckpoint")] + public bool? ImmediateCheckpoint { get; set; } + + /// + /// The number of parallel jobs to be used to upload the backup, defaults + /// to 2 + /// + [JsonPropertyName("jobs")] + public int? Jobs { get; set; } +} + +/// +/// EndpointCA store the CA bundle of the barman endpoint. +/// Useful when using self-signed certificates to avoid +/// errors with certificate issuer and barman-cloud-wal-archive +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreEndpointCA +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The secret containing the Google Cloud Storage JSON file with the credentials +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreGoogleCredentialsApplicationCredentials +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The credentials to use to upload data to Google Cloud Storage +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreGoogleCredentials +{ + /// The secret containing the Google Cloud Storage JSON file with the credentials + [JsonPropertyName("applicationCredentials")] + public V1ClusterSpecExternalClustersBarmanObjectStoreGoogleCredentialsApplicationCredentials? ApplicationCredentials { get; set; } + + /// + /// If set to true, will presume that it's running inside a GKE environment, + /// default to false. + /// + [JsonPropertyName("gkeEnvironment")] + public bool? GkeEnvironment { get; set; } +} + +/// The reference to the access key id +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreS3CredentialsAccessKeyId +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The reference to the secret containing the region name +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreS3CredentialsRegion +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The reference to the secret access key +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreS3CredentialsSecretAccessKey +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The references to the session key +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreS3CredentialsSessionToken +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The credentials to use to upload data to S3 +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreS3Credentials +{ + /// The reference to the access key id + [JsonPropertyName("accessKeyId")] + public V1ClusterSpecExternalClustersBarmanObjectStoreS3CredentialsAccessKeyId? AccessKeyId { get; set; } + + /// Use the role based authentication without providing explicitly the keys. + [JsonPropertyName("inheritFromIAMRole")] + public bool? InheritFromIAMRole { get; set; } + + /// The reference to the secret containing the region name + [JsonPropertyName("region")] + public V1ClusterSpecExternalClustersBarmanObjectStoreS3CredentialsRegion? Region { get; set; } + + /// The reference to the secret access key + [JsonPropertyName("secretAccessKey")] + public V1ClusterSpecExternalClustersBarmanObjectStoreS3CredentialsSecretAccessKey? SecretAccessKey { get; set; } + + /// The references to the session key + [JsonPropertyName("sessionToken")] + public V1ClusterSpecExternalClustersBarmanObjectStoreS3CredentialsSessionToken? SessionToken { get; set; } +} + +/// +/// Compress a WAL file before sending it to the object store. Available +/// options are empty string (no compression, default), `gzip`, `bzip2`, +/// `lz4`, `snappy`, `xz`, and `zstd`. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecExternalClustersBarmanObjectStoreWalCompressionEnum +{ + [EnumMember(Value = "bzip2"), JsonStringEnumMemberName("bzip2")] + Bzip2, + [EnumMember(Value = "gzip"), JsonStringEnumMemberName("gzip")] + Gzip, + [EnumMember(Value = "lz4"), JsonStringEnumMemberName("lz4")] + Lz4, + [EnumMember(Value = "snappy"), JsonStringEnumMemberName("snappy")] + Snappy, + [EnumMember(Value = "xz"), JsonStringEnumMemberName("xz")] + Xz, + [EnumMember(Value = "zstd"), JsonStringEnumMemberName("zstd")] + Zstd +} + +/// +/// Whenever to force the encryption of files (if the bucket is +/// not already configured for that). +/// Allowed options are empty string (use the bucket policy, default), +/// `AES256` and `aws:kms` +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecExternalClustersBarmanObjectStoreWalEncryptionEnum +{ + [EnumMember(Value = "AES256"), JsonStringEnumMemberName("AES256")] + AES256, + [EnumMember(Value = "aws:kms"), JsonStringEnumMemberName("aws:kms")] + AwsKms +} + +/// +/// The configuration for the backup of the WAL stream. +/// When not defined, WAL files will be stored uncompressed and may be +/// unencrypted in the object store, according to the bucket default policy. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStoreWal +{ + /// + /// Additional arguments that can be appended to the 'barman-cloud-wal-archive' + /// command-line invocation. These arguments provide flexibility to customize + /// the WAL archive process further, according to specific requirements or configurations. + /// + /// Example: + /// In a scenario where specialized backup options are required, such as setting + /// a specific timeout or defining custom behavior, users can use this field + /// to specify additional command arguments. + /// + /// Note: + /// It's essential to ensure that the provided arguments are valid and supported + /// by the 'barman-cloud-wal-archive' command, to avoid potential errors or unintended + /// behavior during execution. + /// + [JsonPropertyName("archiveAdditionalCommandArgs")] + public IList? ArchiveAdditionalCommandArgs { get; set; } + + /// + /// Compress a WAL file before sending it to the object store. Available + /// options are empty string (no compression, default), `gzip`, `bzip2`, + /// `lz4`, `snappy`, `xz`, and `zstd`. + /// + [JsonPropertyName("compression")] + public V1ClusterSpecExternalClustersBarmanObjectStoreWalCompressionEnum? Compression { get; set; } + + /// + /// Whenever to force the encryption of files (if the bucket is + /// not already configured for that). + /// Allowed options are empty string (use the bucket policy, default), + /// `AES256` and `aws:kms` + /// + [JsonPropertyName("encryption")] + public V1ClusterSpecExternalClustersBarmanObjectStoreWalEncryptionEnum? Encryption { get; set; } + + /// + /// Number of WAL files to be either archived in parallel (when the + /// PostgreSQL instance is archiving to a backup object store) or + /// restored in parallel (when a PostgreSQL standby is fetching WAL + /// files from a recovery object store). If not specified, WAL files + /// will be processed one at a time. It accepts a positive integer as a + /// value - with 1 being the minimum accepted value. + /// + [JsonPropertyName("maxParallel")] + public int? MaxParallel { get; set; } + + /// + /// Additional arguments that can be appended to the 'barman-cloud-wal-restore' + /// command-line invocation. These arguments provide flexibility to customize + /// the WAL restore process further, according to specific requirements or configurations. + /// + /// Example: + /// In a scenario where specialized backup options are required, such as setting + /// a specific timeout or defining custom behavior, users can use this field + /// to specify additional command arguments. + /// + /// Note: + /// It's essential to ensure that the provided arguments are valid and supported + /// by the 'barman-cloud-wal-restore' command, to avoid potential errors or unintended + /// behavior during execution. + /// + [JsonPropertyName("restoreAdditionalCommandArgs")] + public IList? RestoreAdditionalCommandArgs { get; set; } +} + +/// The configuration for the barman-cloud tool suite +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersBarmanObjectStore +{ + /// The credentials to use to upload data to Azure Blob Storage + [JsonPropertyName("azureCredentials")] + public V1ClusterSpecExternalClustersBarmanObjectStoreAzureCredentials? AzureCredentials { get; set; } + + /// + /// The configuration to be used to backup the data files + /// When not defined, base backups files will be stored uncompressed and may + /// be unencrypted in the object store, according to the bucket default + /// policy. + /// + [JsonPropertyName("data")] + public V1ClusterSpecExternalClustersBarmanObjectStoreData? Data { get; set; } + + /// + /// The path where to store the backup (i.e. s3://bucket/path/to/folder) + /// this path, with different destination folders, will be used for WALs + /// and for data + /// + [JsonPropertyName("destinationPath")] + public required string DestinationPath { get; set; } + + /// + /// EndpointCA store the CA bundle of the barman endpoint. + /// Useful when using self-signed certificates to avoid + /// errors with certificate issuer and barman-cloud-wal-archive + /// + [JsonPropertyName("endpointCA")] + public V1ClusterSpecExternalClustersBarmanObjectStoreEndpointCA? EndpointCA { get; set; } + + /// + /// Endpoint to be used to upload data to the cloud, + /// overriding the automatic endpoint discovery + /// + [JsonPropertyName("endpointURL")] + public string? EndpointURL { get; set; } + + /// The credentials to use to upload data to Google Cloud Storage + [JsonPropertyName("googleCredentials")] + public V1ClusterSpecExternalClustersBarmanObjectStoreGoogleCredentials? GoogleCredentials { get; set; } + + /// + /// HistoryTags is a list of key value pairs that will be passed to the + /// Barman --history-tags option. + /// + [JsonPropertyName("historyTags")] + public IDictionary? HistoryTags { get; set; } + + /// The credentials to use to upload data to S3 + [JsonPropertyName("s3Credentials")] + public V1ClusterSpecExternalClustersBarmanObjectStoreS3Credentials? S3Credentials { get; set; } + + /// + /// The server name on S3, the cluster name is used if this + /// parameter is omitted + /// + [JsonPropertyName("serverName")] + public string? ServerName { get; set; } + + /// + /// Tags is a list of key value pairs that will be passed to the + /// Barman --tags option. + /// + [JsonPropertyName("tags")] + public IDictionary? Tags { get; set; } + + /// + /// The configuration for the backup of the WAL stream. + /// When not defined, WAL files will be stored uncompressed and may be + /// unencrypted in the object store, according to the bucket default policy. + /// + [JsonPropertyName("wal")] + public V1ClusterSpecExternalClustersBarmanObjectStoreWal? Wal { get; set; } +} + +/// +/// The reference to the password to be used to connect to the server. +/// If a password is provided, CloudNativePG creates a PostgreSQL +/// passfile at `/controller/external/NAME/pass` (where "NAME" is the +/// cluster's name). This passfile is automatically referenced in the +/// connection string when establishing a connection to the remote +/// PostgreSQL server from the current PostgreSQL `Cluster`. This ensures +/// secure and efficient password management for external clusters. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersPassword +{ + /// The key of the secret to select from. Must be a valid secret key. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// +/// The configuration of the plugin that is taking care +/// of WAL archiving and backups for this external cluster +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersPlugin +{ + /// Enabled is true if this plugin will be used + [JsonPropertyName("enabled")] + public bool? Enabled { get; set; } + + /// + /// Marks the plugin as the WAL archiver. At most one plugin can be + /// designated as a WAL archiver. This cannot be enabled if the + /// `.spec.backup.barmanObjectStore` configuration is present. + /// + [JsonPropertyName("isWALArchiver")] + public bool? IsWALArchiver { get; set; } + + /// Name is the plugin name + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Parameters is the configuration of the plugin + [JsonPropertyName("parameters")] + public IDictionary? Parameters { get; set; } +} + +/// +/// The reference to an SSL certificate to be used to connect to this +/// instance +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersSslCert +{ + /// The key of the secret to select from. Must be a valid secret key. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// +/// The reference to an SSL private key to be used to connect to this +/// instance +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersSslKey +{ + /// The key of the secret to select from. Must be a valid secret key. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// +/// The reference to an SSL CA public key to be used to connect to this +/// instance +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClustersSslRootCert +{ + /// The key of the secret to select from. Must be a valid secret key. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// +/// ExternalCluster represents the connection parameters to an +/// external cluster which is used in the other sections of the configuration +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecExternalClusters +{ + /// The configuration for the barman-cloud tool suite + [JsonPropertyName("barmanObjectStore")] + public V1ClusterSpecExternalClustersBarmanObjectStore? BarmanObjectStore { get; set; } + + /// The list of connection parameters, such as dbname, host, username, etc + [JsonPropertyName("connectionParameters")] + public IDictionary? ConnectionParameters { get; set; } + + /// The server name, required + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// The reference to the password to be used to connect to the server. + /// If a password is provided, CloudNativePG creates a PostgreSQL + /// passfile at `/controller/external/NAME/pass` (where "NAME" is the + /// cluster's name). This passfile is automatically referenced in the + /// connection string when establishing a connection to the remote + /// PostgreSQL server from the current PostgreSQL `Cluster`. This ensures + /// secure and efficient password management for external clusters. + /// + [JsonPropertyName("password")] + public V1ClusterSpecExternalClustersPassword? Password { get; set; } + + /// + /// The configuration of the plugin that is taking care + /// of WAL archiving and backups for this external cluster + /// + [JsonPropertyName("plugin")] + public V1ClusterSpecExternalClustersPlugin? Plugin { get; set; } + + /// + /// The reference to an SSL certificate to be used to connect to this + /// instance + /// + [JsonPropertyName("sslCert")] + public V1ClusterSpecExternalClustersSslCert? SslCert { get; set; } + + /// + /// The reference to an SSL private key to be used to connect to this + /// instance + /// + [JsonPropertyName("sslKey")] + public V1ClusterSpecExternalClustersSslKey? SslKey { get; set; } + + /// + /// The reference to an SSL CA public key to be used to connect to this + /// instance + /// + [JsonPropertyName("sslRootCert")] + public V1ClusterSpecExternalClustersSslRootCert? SslRootCert { get; set; } +} + +/// Defines the major PostgreSQL version we want to use within an ImageCatalog +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecImageCatalogRef +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// The major version of PostgreSQL we want to use from the ImageCatalog + [JsonPropertyName("major")] + public required int Major { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// LocalObjectReference contains enough information to let you locate a +/// local object with a known type inside the same namespace +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecImagePullSecrets +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// Metadata that will be inherited by all objects related to the Cluster +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecInheritedMetadata +{ + [JsonPropertyName("annotations")] + public IDictionary? Annotations { get; set; } + + [JsonPropertyName("labels")] + public IDictionary? Labels { get; set; } +} + +/// The instances' log level, one of the following values: error, warning, info (default), debug, trace +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecLogLevelEnum +{ + [EnumMember(Value = "error"), JsonStringEnumMemberName("error")] + Error, + [EnumMember(Value = "warning"), JsonStringEnumMemberName("warning")] + Warning, + [EnumMember(Value = "info"), JsonStringEnumMemberName("info")] + Info, + [EnumMember(Value = "debug"), JsonStringEnumMemberName("debug")] + Debug, + [EnumMember(Value = "trace"), JsonStringEnumMemberName("trace")] + Trace +} + +/// Ensure the role is `present` or `absent` - defaults to "present" +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecManagedRolesEnsureEnum +{ + [EnumMember(Value = "present"), JsonStringEnumMemberName("present")] + Present, + [EnumMember(Value = "absent"), JsonStringEnumMemberName("absent")] + Absent +} + +/// +/// Secret containing the password of the role (if present) +/// If null, the password will be ignored unless DisablePassword is set +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedRolesPasswordSecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// RoleConfiguration is the representation, in Kubernetes, of a PostgreSQL role +/// with the additional field Ensure specifying whether to ensure the presence or +/// absence of the role in the database +/// +/// The defaults of the CREATE ROLE command are applied +/// Reference: https://www.postgresql.org/docs/current/sql-createrole.html +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedRoles +{ + /// + /// Whether a role bypasses every row-level security (RLS) policy. + /// Default is `false`. + /// + [JsonPropertyName("bypassrls")] + public bool? Bypassrls { get; set; } + + /// Description of the role + [JsonPropertyName("comment")] + public string? Comment { get; set; } + + /// + /// If the role can log in, this specifies how many concurrent + /// connections the role can make. `-1` (the default) means no limit. + /// + [JsonPropertyName("connectionLimit")] + public long? ConnectionLimit { get; set; } + + /// + /// When set to `true`, the role being defined will be allowed to create + /// new databases. Specifying `false` (default) will deny a role the + /// ability to create databases. + /// + [JsonPropertyName("createdb")] + public bool? Createdb { get; set; } + + /// + /// Whether the role will be permitted to create, alter, drop, comment + /// on, change the security label for, and grant or revoke membership in + /// other roles. Default is `false`. + /// + [JsonPropertyName("createrole")] + public bool? Createrole { get; set; } + + /// DisablePassword indicates that a role's password should be set to NULL in Postgres + [JsonPropertyName("disablePassword")] + public bool? DisablePassword { get; set; } + + /// Ensure the role is `present` or `absent` - defaults to "present" + [JsonPropertyName("ensure")] + public V1ClusterSpecManagedRolesEnsureEnum? Ensure { get; set; } + + /// + /// List of one or more existing roles to which this role will be + /// immediately added as a new member. Default empty. + /// + [JsonPropertyName("inRoles")] + public IList? InRoles { get; set; } + + /// + /// Whether a role "inherits" the privileges of roles it is a member of. + /// Defaults is `true`. + /// + [JsonPropertyName("inherit")] + public bool? Inherit { get; set; } + + /// + /// Whether the role is allowed to log in. A role having the `login` + /// attribute can be thought of as a user. Roles without this attribute + /// are useful for managing database privileges, but are not users in + /// the usual sense of the word. Default is `false`. + /// + [JsonPropertyName("login")] + public bool? Login { get; set; } + + /// Name of the role + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Secret containing the password of the role (if present) + /// If null, the password will be ignored unless DisablePassword is set + /// + [JsonPropertyName("passwordSecret")] + public V1ClusterSpecManagedRolesPasswordSecret? PasswordSecret { get; set; } + + /// + /// Whether a role is a replication role. A role must have this + /// attribute (or be a superuser) in order to be able to connect to the + /// server in replication mode (physical or logical replication) and in + /// order to be able to create or drop replication slots. A role having + /// the `replication` attribute is a very highly privileged role, and + /// should only be used on roles actually used for replication. Default + /// is `false`. + /// + [JsonPropertyName("replication")] + public bool? Replication { get; set; } + + /// + /// Whether the role is a `superuser` who can override all access + /// restrictions within the database - superuser status is dangerous and + /// should be used only when really needed. You must yourself be a + /// superuser to create a new superuser. Defaults is `false`. + /// + [JsonPropertyName("superuser")] + public bool? Superuser { get; set; } + + /// + /// Date and time after which the role's password is no longer valid. + /// When omitted, the password will never expire (default). + /// + [JsonPropertyName("validUntil")] + public DateTime? ValidUntil { get; set; } +} + +/// +/// SelectorType specifies the type of selectors that the service will have. +/// Valid values are "rw", "r", and "ro", representing read-write, read, and read-only services. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecManagedServicesAdditionalSelectorTypeEnum +{ + [EnumMember(Value = "rw"), JsonStringEnumMemberName("rw")] + Rw, + [EnumMember(Value = "r"), JsonStringEnumMemberName("r")] + R, + [EnumMember(Value = "ro"), JsonStringEnumMemberName("ro")] + Ro +} + +/// +/// Standard object's metadata. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedServicesAdditionalServiceTemplateMetadata +{ + /// + /// Annotations is an unstructured key value map stored with a resource that may be + /// set by external tools to store and retrieve arbitrary metadata. They are not + /// queryable and should be preserved when modifying objects. + /// More info: http://kubernetes.io/docs/user-guide/annotations + /// + [JsonPropertyName("annotations")] + public IDictionary? Annotations { get; set; } + + /// + /// Map of string keys and values that can be used to organize and categorize + /// (scope and select) objects. May match selectors of replication controllers + /// and services. + /// More info: http://kubernetes.io/docs/user-guide/labels + /// + [JsonPropertyName("labels")] + public IDictionary? Labels { get; set; } + + /// The name of the resource. Only supported for certain types + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// ServicePort contains information on service's port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedServicesAdditionalServiceTemplateSpecPorts +{ + /// + /// The application protocol for this port. + /// This is used as a hint for implementations to offer richer behavior for protocols that they understand. + /// This field follows standard Kubernetes label syntax. + /// Valid values are either: + /// + /// * Un-prefixed protocol names - reserved for IANA standard service names (as per + /// RFC-6335 and https://www.iana.org/assignments/service-names). + /// + /// * Kubernetes-defined prefixed names: + /// * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior- + /// * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455 + /// * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455 + /// + /// * Other protocols should use implementation-defined prefixed names such as + /// mycompany.com/my-custom-protocol. + /// + [JsonPropertyName("appProtocol")] + public string? AppProtocol { get; set; } + + /// + /// The name of this port within the service. This must be a DNS_LABEL. + /// All ports within a ServiceSpec must have unique names. When considering + /// the endpoints for a Service, this must match the 'name' field in the + /// EndpointPort. + /// Optional if only one ServicePort is defined on this service. + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// + /// The port on each node on which this service is exposed when type is + /// NodePort or LoadBalancer. Usually assigned by the system. If a value is + /// specified, in-range, and not in use it will be used, otherwise the + /// operation will fail. If not specified, a port will be allocated if this + /// Service requires one. If this field is specified when creating a + /// Service which does not need it, creation will fail. This field will be + /// wiped when updating a Service to no longer need it (e.g. changing type + /// from NodePort to ClusterIP). + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + /// + [JsonPropertyName("nodePort")] + public int? NodePort { get; set; } + + /// The port that will be exposed by this service. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". + /// Default is TCP. + /// + [JsonPropertyName("protocol")] + public string? Protocol { get; set; } + + /// + /// Number or name of the port to access on the pods targeted by the service. + /// Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + /// If this is a string, it will be looked up as a named port in the + /// target Pod's container ports. If this is not specified, the value + /// of the 'port' field is used (an identity map). + /// This field is ignored for services with clusterIP=None, and should be + /// omitted or set equal to the 'port' field. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service + /// + [JsonPropertyName("targetPort")] + public IntOrString? TargetPort { get; set; } +} + +/// clientIP contains the configurations of Client IP based session affinity. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedServicesAdditionalServiceTemplateSpecSessionAffinityConfigClientIP +{ + /// + /// timeoutSeconds specifies the seconds of ClientIP type session sticky time. + /// The value must be >0 & & <=86400(for 1 day) if ServiceAffinity == "ClientIP". + /// Default value is 10800(for 3 hours). + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// sessionAffinityConfig contains the configurations of session affinity. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedServicesAdditionalServiceTemplateSpecSessionAffinityConfig +{ + /// clientIP contains the configurations of Client IP based session affinity. + [JsonPropertyName("clientIP")] + public V1ClusterSpecManagedServicesAdditionalServiceTemplateSpecSessionAffinityConfigClientIP? ClientIP { get; set; } +} + +/// +/// Specification of the desired behavior of the service. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedServicesAdditionalServiceTemplateSpec +{ + /// + /// allocateLoadBalancerNodePorts defines if NodePorts will be automatically + /// allocated for services with type LoadBalancer. Default is "true". It + /// may be set to "false" if the cluster load-balancer does not rely on + /// NodePorts. If the caller requests specific NodePorts (by specifying a + /// value), those requests will be respected, regardless of this field. + /// This field may only be set for services with type LoadBalancer and will + /// be cleared if the type is changed to any other type. + /// + [JsonPropertyName("allocateLoadBalancerNodePorts")] + public bool? AllocateLoadBalancerNodePorts { get; set; } + + /// + /// clusterIP is the IP address of the service and is usually assigned + /// randomly. If an address is specified manually, is in-range (as per + /// system configuration), and is not in use, it will be allocated to the + /// service; otherwise creation of the service will fail. This field may not + /// be changed through updates unless the type field is also being changed + /// to ExternalName (which requires this field to be blank) or the type + /// field is being changed from ExternalName (in which case this field may + /// optionally be specified, as describe above). Valid values are "None", + /// empty string (" "), or a valid IP address. Setting this to "None" makes a + /// "headless service" (no virtual IP), which is useful when direct endpoint + /// connections are preferred and proxying is not required. Only applies to + /// types ClusterIP, NodePort, and LoadBalancer. If this field is specified + /// when creating a Service of type ExternalName, creation will fail. This + /// field will be wiped when updating a Service to type ExternalName. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + /// + [JsonPropertyName("clusterIP")] + public string? ClusterIP { get; set; } + + /// + /// ClusterIPs is a list of IP addresses assigned to this service, and are + /// usually assigned randomly. If an address is specified manually, is + /// in-range (as per system configuration), and is not in use, it will be + /// allocated to the service; otherwise creation of the service will fail. + /// This field may not be changed through updates unless the type field is + /// also being changed to ExternalName (which requires this field to be + /// empty) or the type field is being changed from ExternalName (in which + /// case this field may optionally be specified, as describe above). Valid + /// values are "None", empty string (" "), or a valid IP address. Setting + /// this to "None" makes a "headless service" (no virtual IP), which is + /// useful when direct endpoint connections are preferred and proxying is + /// not required. Only applies to types ClusterIP, NodePort, and + /// LoadBalancer. If this field is specified when creating a Service of type + /// ExternalName, creation will fail. This field will be wiped when updating + /// a Service to type ExternalName. If this field is not specified, it will + /// be initialized from the clusterIP field. If this field is specified, + /// clients must ensure that clusterIPs[0] and clusterIP have the same + /// value. + /// + /// This field may hold a maximum of two entries (dual-stack IPs, in either order). + /// These IPs must correspond to the values of the ipFamilies field. Both + /// clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + /// + [JsonPropertyName("clusterIPs")] + public IList? ClusterIPs { get; set; } + + /// + /// externalIPs is a list of IP addresses for which nodes in the cluster + /// will also accept traffic for this service. These IPs are not managed by + /// Kubernetes. The user is responsible for ensuring that traffic arrives + /// at a node with this IP. A common example is external load-balancers + /// that are not part of the Kubernetes system. + /// + [JsonPropertyName("externalIPs")] + public IList? ExternalIPs { get; set; } + + /// + /// externalName is the external reference that discovery mechanisms will + /// return as an alias for this service (e.g. a DNS CNAME record). No + /// proxying will be involved. Must be a lowercase RFC-1123 hostname + /// (https://tools.ietf.org/html/rfc1123) and requires `type` to be "ExternalName". + /// + [JsonPropertyName("externalName")] + public string? ExternalName { get; set; } + + /// + /// externalTrafficPolicy describes how nodes distribute service traffic they + /// receive on one of the Service's "externally-facing" addresses (NodePorts, + /// ExternalIPs, and LoadBalancer IPs). If set to "Local", the proxy will configure + /// the service in a way that assumes that external load balancers will take care + /// of balancing the service traffic between nodes, and so each node will deliver + /// traffic only to the node-local endpoints of the service, without masquerading + /// the client source IP. (Traffic mistakenly sent to a node with no endpoints will + /// be dropped.) The default value, "Cluster", uses the standard behavior of + /// routing to all endpoints evenly (possibly modified by topology and other + /// features). Note that traffic sent to an External IP or LoadBalancer IP from + /// within the cluster will always get "Cluster" semantics, but clients sending to + /// a NodePort from within the cluster may need to take traffic policy into account + /// when picking a node. + /// + [JsonPropertyName("externalTrafficPolicy")] + public string? ExternalTrafficPolicy { get; set; } + + /// + /// healthCheckNodePort specifies the healthcheck nodePort for the service. + /// This only applies when type is set to LoadBalancer and + /// externalTrafficPolicy is set to Local. If a value is specified, is + /// in-range, and is not in use, it will be used. If not specified, a value + /// will be automatically allocated. External systems (e.g. load-balancers) + /// can use this port to determine if a given node holds endpoints for this + /// service or not. If this field is specified when creating a Service + /// which does not need it, creation will fail. This field will be wiped + /// when updating a Service to no longer need it (e.g. changing type). + /// This field cannot be updated once set. + /// + [JsonPropertyName("healthCheckNodePort")] + public int? HealthCheckNodePort { get; set; } + + /// + /// InternalTrafficPolicy describes how nodes distribute service traffic they + /// receive on the ClusterIP. If set to "Local", the proxy will assume that pods + /// only want to talk to endpoints of the service on the same node as the pod, + /// dropping the traffic if there are no local endpoints. The default value, + /// "Cluster", uses the standard behavior of routing to all endpoints evenly + /// (possibly modified by topology and other features). + /// + [JsonPropertyName("internalTrafficPolicy")] + public string? InternalTrafficPolicy { get; set; } + + /// + /// IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this + /// service. This field is usually assigned automatically based on cluster + /// configuration and the ipFamilyPolicy field. If this field is specified + /// manually, the requested family is available in the cluster, + /// and ipFamilyPolicy allows it, it will be used; otherwise creation of + /// the service will fail. This field is conditionally mutable: it allows + /// for adding or removing a secondary IP family, but it does not allow + /// changing the primary IP family of the Service. Valid values are "IPv4" + /// and "IPv6". This field only applies to Services of types ClusterIP, + /// NodePort, and LoadBalancer, and does apply to "headless" services. + /// This field will be wiped when updating a Service to type ExternalName. + /// + /// This field may hold a maximum of two entries (dual-stack families, in + /// either order). These families must correspond to the values of the + /// clusterIPs field, if specified. Both clusterIPs and ipFamilies are + /// governed by the ipFamilyPolicy field. + /// + [JsonPropertyName("ipFamilies")] + public IList? IpFamilies { get; set; } + + /// + /// IPFamilyPolicy represents the dual-stack-ness requested or required by + /// this Service. If there is no value provided, then this field will be set + /// to SingleStack. Services can be "SingleStack" (a single IP family), + /// "PreferDualStack" (two IP families on dual-stack configured clusters or + /// a single IP family on single-stack clusters), or "RequireDualStack" + /// (two IP families on dual-stack configured clusters, otherwise fail). The + /// ipFamilies and clusterIPs fields depend on the value of this field. This + /// field will be wiped when updating a service to type ExternalName. + /// + [JsonPropertyName("ipFamilyPolicy")] + public string? IpFamilyPolicy { get; set; } + + /// + /// loadBalancerClass is the class of the load balancer implementation this Service belongs to. + /// If specified, the value of this field must be a label-style identifier, with an optional prefix, + /// e.g. "internal-vip" or "example.com/internal-vip". Unprefixed names are reserved for end-users. + /// This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load + /// balancer implementation is used, today this is typically done through the cloud provider integration, + /// but should apply for any default implementation. If set, it is assumed that a load balancer + /// implementation is watching for Services with a matching class. Any default load balancer + /// implementation (e.g. cloud providers) should ignore Services that set this field. + /// This field can only be set when creating or updating a Service to type 'LoadBalancer'. + /// Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type. + /// + [JsonPropertyName("loadBalancerClass")] + public string? LoadBalancerClass { get; set; } + + /// + /// Only applies to Service Type: LoadBalancer. + /// This feature depends on whether the underlying cloud-provider supports specifying + /// the loadBalancerIP when a load balancer is created. + /// This field will be ignored if the cloud-provider does not support the feature. + /// Deprecated: This field was under-specified and its meaning varies across implementations. + /// Using it is non-portable and it may not support dual-stack. + /// Users are encouraged to use implementation-specific annotations when available. + /// + [JsonPropertyName("loadBalancerIP")] + public string? LoadBalancerIP { get; set; } + + /// + /// If specified and supported by the platform, this will restrict traffic through the cloud-provider + /// load-balancer will be restricted to the specified client IPs. This field will be ignored if the + /// cloud-provider does not support the feature." + /// More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/ + /// + [JsonPropertyName("loadBalancerSourceRanges")] + public IList? LoadBalancerSourceRanges { get; set; } + + /// + /// The list of ports that are exposed by this service. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + /// + [JsonPropertyName("ports")] + public IList? Ports { get; set; } + + /// + /// publishNotReadyAddresses indicates that any agent which deals with endpoints for this + /// Service should disregard any indications of ready/not-ready. + /// The primary use case for setting this field is for a StatefulSet's Headless Service to + /// propagate SRV DNS records for its Pods for the purpose of peer discovery. + /// The Kubernetes controllers that generate Endpoints and EndpointSlice resources for + /// Services interpret this to mean that all endpoints are considered "ready" even if the + /// Pods themselves are not. Agents which consume only Kubernetes generated endpoints + /// through the Endpoints or EndpointSlice resources can safely assume this behavior. + /// + [JsonPropertyName("publishNotReadyAddresses")] + public bool? PublishNotReadyAddresses { get; set; } + + /// + /// Route service traffic to pods with label keys and values matching this + /// selector. If empty or not present, the service is assumed to have an + /// external process managing its endpoints, which Kubernetes will not + /// modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + /// Ignored if type is ExternalName. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/ + /// + [JsonPropertyName("selector")] + public IDictionary? Selector { get; set; } + + /// + /// Supports "ClientIP" and "None". Used to maintain session affinity. + /// Enable client IP based session affinity. + /// Must be ClientIP or None. + /// Defaults to None. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + /// + [JsonPropertyName("sessionAffinity")] + public string? SessionAffinity { get; set; } + + /// sessionAffinityConfig contains the configurations of session affinity. + [JsonPropertyName("sessionAffinityConfig")] + public V1ClusterSpecManagedServicesAdditionalServiceTemplateSpecSessionAffinityConfig? SessionAffinityConfig { get; set; } + + /// + /// TrafficDistribution offers a way to express preferences for how traffic + /// is distributed to Service endpoints. Implementations can use this field + /// as a hint, but are not required to guarantee strict adherence. If the + /// field is not set, the implementation will apply its default routing + /// strategy. If set to "PreferClose", implementations should prioritize + /// endpoints that are in the same zone. + /// + [JsonPropertyName("trafficDistribution")] + public string? TrafficDistribution { get; set; } + + /// + /// type determines how the Service is exposed. Defaults to ClusterIP. Valid + /// options are ExternalName, ClusterIP, NodePort, and LoadBalancer. + /// "ClusterIP" allocates a cluster-internal IP address for load-balancing + /// to endpoints. Endpoints are determined by the selector or if that is not + /// specified, by manual construction of an Endpoints object or + /// EndpointSlice objects. If clusterIP is "None", no virtual IP is + /// allocated and the endpoints are published as a set of endpoints rather + /// than a virtual IP. + /// "NodePort" builds on ClusterIP and allocates a port on every node which + /// routes to the same endpoints as the clusterIP. + /// "LoadBalancer" builds on NodePort and creates an external load-balancer + /// (if supported in the current cloud) which routes to the same endpoints + /// as the clusterIP. + /// "ExternalName" aliases this service to the specified externalName. + /// Several other fields do not apply to ExternalName services. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + /// + [JsonPropertyName("type")] + public string? Type { get; set; } +} + +/// ServiceTemplate is the template specification for the service. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedServicesAdditionalServiceTemplate +{ + /// + /// Standard object's metadata. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + /// + [JsonPropertyName("metadata")] + public V1ClusterSpecManagedServicesAdditionalServiceTemplateMetadata? Metadata { get; set; } + + /// + /// Specification of the desired behavior of the service. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public V1ClusterSpecManagedServicesAdditionalServiceTemplateSpec? Spec { get; set; } +} + +/// UpdateStrategy describes how the service differences should be reconciled +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecManagedServicesAdditionalUpdateStrategyEnum +{ + [EnumMember(Value = "patch"), JsonStringEnumMemberName("patch")] + Patch, + [EnumMember(Value = "replace"), JsonStringEnumMemberName("replace")] + Replace +} + +/// +/// ManagedService represents a specific service managed by the cluster. +/// It includes the type of service and its associated template specification. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedServicesAdditional +{ + /// + /// SelectorType specifies the type of selectors that the service will have. + /// Valid values are "rw", "r", and "ro", representing read-write, read, and read-only services. + /// + [JsonPropertyName("selectorType")] + public required V1ClusterSpecManagedServicesAdditionalSelectorTypeEnum SelectorType { get; set; } + + /// ServiceTemplate is the template specification for the service. + [JsonPropertyName("serviceTemplate")] + public required V1ClusterSpecManagedServicesAdditionalServiceTemplate ServiceTemplate { get; set; } + + /// UpdateStrategy describes how the service differences should be reconciled + [JsonPropertyName("updateStrategy")] + public V1ClusterSpecManagedServicesAdditionalUpdateStrategyEnum? UpdateStrategy { get; set; } +} + +/// +/// ServiceSelectorType describes a valid value for generating the service selectors. +/// It indicates which type of service the selector applies to, such as read-write, read, or read-only +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecManagedServicesDisabledDefaultServicesEnum +{ + [EnumMember(Value = "rw"), JsonStringEnumMemberName("rw")] + Rw, + [EnumMember(Value = "r"), JsonStringEnumMemberName("r")] + R, + [EnumMember(Value = "ro"), JsonStringEnumMemberName("ro")] + Ro +} + +/// Services roles managed by the `Cluster` +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManagedServices +{ + /// Additional is a list of additional managed services specified by the user. + [JsonPropertyName("additional")] + public IList? Additional { get; set; } + + /// + /// DisabledDefaultServices is a list of service types that are disabled by default. + /// Valid values are "r", and "ro", representing read, and read-only services. + /// + [JsonPropertyName("disabledDefaultServices")] + public IList? DisabledDefaultServices { get; set; } +} + +/// The configuration that is used by the portions of PostgreSQL that are managed by the instance manager +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecManaged +{ + /// Database roles managed by the `Cluster` + [JsonPropertyName("roles")] + public IList? Roles { get; set; } + + /// Services roles managed by the `Cluster` + [JsonPropertyName("services")] + public V1ClusterSpecManagedServices? Services { get; set; } +} + +/// +/// ConfigMapKeySelector contains enough information to let you locate +/// the key of a ConfigMap +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecMonitoringCustomQueriesConfigMap +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// SecretKeySelector contains enough information to let you locate +/// the key of a Secret +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecMonitoringCustomQueriesSecret +{ + /// The key to select + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// action to perform based on the regex matching. +/// +/// `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. +/// `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. +/// +/// Default: "Replace" +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecMonitoringPodMonitorMetricRelabelingsActionEnum +{ + [EnumMember(Value = "replace"), JsonStringEnumMemberName("replace")] + Replace, + [EnumMember(Value = "Replace"), JsonStringEnumMemberName("Replace")] + Replace1, + [EnumMember(Value = "keep"), JsonStringEnumMemberName("keep")] + Keep, + [EnumMember(Value = "Keep"), JsonStringEnumMemberName("Keep")] + Keep1, + [EnumMember(Value = "drop"), JsonStringEnumMemberName("drop")] + Drop, + [EnumMember(Value = "Drop"), JsonStringEnumMemberName("Drop")] + Drop1, + [EnumMember(Value = "hashmod"), JsonStringEnumMemberName("hashmod")] + Hashmod, + [EnumMember(Value = "HashMod"), JsonStringEnumMemberName("HashMod")] + HashMod, + [EnumMember(Value = "labelmap"), JsonStringEnumMemberName("labelmap")] + Labelmap, + [EnumMember(Value = "LabelMap"), JsonStringEnumMemberName("LabelMap")] + LabelMap, + [EnumMember(Value = "labeldrop"), JsonStringEnumMemberName("labeldrop")] + Labeldrop, + [EnumMember(Value = "LabelDrop"), JsonStringEnumMemberName("LabelDrop")] + LabelDrop, + [EnumMember(Value = "labelkeep"), JsonStringEnumMemberName("labelkeep")] + Labelkeep, + [EnumMember(Value = "LabelKeep"), JsonStringEnumMemberName("LabelKeep")] + LabelKeep, + [EnumMember(Value = "lowercase"), JsonStringEnumMemberName("lowercase")] + Lowercase, + [EnumMember(Value = "Lowercase"), JsonStringEnumMemberName("Lowercase")] + Lowercase1, + [EnumMember(Value = "uppercase"), JsonStringEnumMemberName("uppercase")] + Uppercase, + [EnumMember(Value = "Uppercase"), JsonStringEnumMemberName("Uppercase")] + Uppercase1, + [EnumMember(Value = "keepequal"), JsonStringEnumMemberName("keepequal")] + Keepequal, + [EnumMember(Value = "KeepEqual"), JsonStringEnumMemberName("KeepEqual")] + KeepEqual, + [EnumMember(Value = "dropequal"), JsonStringEnumMemberName("dropequal")] + Dropequal, + [EnumMember(Value = "DropEqual"), JsonStringEnumMemberName("DropEqual")] + DropEqual +} + +/// +/// RelabelConfig allows dynamic rewriting of the label set for targets, alerts, +/// scraped samples and remote write samples. +/// +/// More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecMonitoringPodMonitorMetricRelabelings +{ + /// + /// action to perform based on the regex matching. + /// + /// `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + /// `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + /// + /// Default: "Replace" + /// + [JsonPropertyName("action")] + public V1ClusterSpecMonitoringPodMonitorMetricRelabelingsActionEnum? Action { get; set; } + + /// + /// modulus to take of the hash of the source label values. + /// + /// Only applicable when the action is `HashMod`. + /// + [JsonPropertyName("modulus")] + public long? Modulus { get; set; } + + /// regex defines the regular expression against which the extracted value is matched. + [JsonPropertyName("regex")] + public string? Regex { get; set; } + + /// + /// replacement value against which a Replace action is performed if the + /// regular expression matches. + /// + /// Regex capture groups are available. + /// + [JsonPropertyName("replacement")] + public string? Replacement { get; set; } + + /// separator defines the string between concatenated SourceLabels. + [JsonPropertyName("separator")] + public string? Separator { get; set; } + + /// + /// sourceLabels defines the source labels select values from existing labels. Their content is + /// concatenated using the configured Separator and matched against the + /// configured regular expression. + /// + [JsonPropertyName("sourceLabels")] + public IList? SourceLabels { get; set; } + + /// + /// targetLabel defines the label to which the resulting string is written in a replacement. + /// + /// It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + /// `KeepEqual` and `DropEqual` actions. + /// + /// Regex capture groups are available. + /// + [JsonPropertyName("targetLabel")] + public string? TargetLabel { get; set; } +} + +/// +/// action to perform based on the regex matching. +/// +/// `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. +/// `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. +/// +/// Default: "Replace" +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecMonitoringPodMonitorRelabelingsActionEnum +{ + [EnumMember(Value = "replace"), JsonStringEnumMemberName("replace")] + Replace, + [EnumMember(Value = "Replace"), JsonStringEnumMemberName("Replace")] + Replace1, + [EnumMember(Value = "keep"), JsonStringEnumMemberName("keep")] + Keep, + [EnumMember(Value = "Keep"), JsonStringEnumMemberName("Keep")] + Keep1, + [EnumMember(Value = "drop"), JsonStringEnumMemberName("drop")] + Drop, + [EnumMember(Value = "Drop"), JsonStringEnumMemberName("Drop")] + Drop1, + [EnumMember(Value = "hashmod"), JsonStringEnumMemberName("hashmod")] + Hashmod, + [EnumMember(Value = "HashMod"), JsonStringEnumMemberName("HashMod")] + HashMod, + [EnumMember(Value = "labelmap"), JsonStringEnumMemberName("labelmap")] + Labelmap, + [EnumMember(Value = "LabelMap"), JsonStringEnumMemberName("LabelMap")] + LabelMap, + [EnumMember(Value = "labeldrop"), JsonStringEnumMemberName("labeldrop")] + Labeldrop, + [EnumMember(Value = "LabelDrop"), JsonStringEnumMemberName("LabelDrop")] + LabelDrop, + [EnumMember(Value = "labelkeep"), JsonStringEnumMemberName("labelkeep")] + Labelkeep, + [EnumMember(Value = "LabelKeep"), JsonStringEnumMemberName("LabelKeep")] + LabelKeep, + [EnumMember(Value = "lowercase"), JsonStringEnumMemberName("lowercase")] + Lowercase, + [EnumMember(Value = "Lowercase"), JsonStringEnumMemberName("Lowercase")] + Lowercase1, + [EnumMember(Value = "uppercase"), JsonStringEnumMemberName("uppercase")] + Uppercase, + [EnumMember(Value = "Uppercase"), JsonStringEnumMemberName("Uppercase")] + Uppercase1, + [EnumMember(Value = "keepequal"), JsonStringEnumMemberName("keepequal")] + Keepequal, + [EnumMember(Value = "KeepEqual"), JsonStringEnumMemberName("KeepEqual")] + KeepEqual, + [EnumMember(Value = "dropequal"), JsonStringEnumMemberName("dropequal")] + Dropequal, + [EnumMember(Value = "DropEqual"), JsonStringEnumMemberName("DropEqual")] + DropEqual +} + +/// +/// RelabelConfig allows dynamic rewriting of the label set for targets, alerts, +/// scraped samples and remote write samples. +/// +/// More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecMonitoringPodMonitorRelabelings +{ + /// + /// action to perform based on the regex matching. + /// + /// `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + /// `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + /// + /// Default: "Replace" + /// + [JsonPropertyName("action")] + public V1ClusterSpecMonitoringPodMonitorRelabelingsActionEnum? Action { get; set; } + + /// + /// modulus to take of the hash of the source label values. + /// + /// Only applicable when the action is `HashMod`. + /// + [JsonPropertyName("modulus")] + public long? Modulus { get; set; } + + /// regex defines the regular expression against which the extracted value is matched. + [JsonPropertyName("regex")] + public string? Regex { get; set; } + + /// + /// replacement value against which a Replace action is performed if the + /// regular expression matches. + /// + /// Regex capture groups are available. + /// + [JsonPropertyName("replacement")] + public string? Replacement { get; set; } + + /// separator defines the string between concatenated SourceLabels. + [JsonPropertyName("separator")] + public string? Separator { get; set; } + + /// + /// sourceLabels defines the source labels select values from existing labels. Their content is + /// concatenated using the configured Separator and matched against the + /// configured regular expression. + /// + [JsonPropertyName("sourceLabels")] + public IList? SourceLabels { get; set; } + + /// + /// targetLabel defines the label to which the resulting string is written in a replacement. + /// + /// It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + /// `KeepEqual` and `DropEqual` actions. + /// + /// Regex capture groups are available. + /// + [JsonPropertyName("targetLabel")] + public string? TargetLabel { get; set; } +} + +/// +/// Configure TLS communication for the metrics endpoint. +/// Changing tls.enabled option will force a rollout of all instances. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecMonitoringTls +{ + /// + /// Enable TLS for the monitoring endpoint. + /// Changing this option will force a rollout of all instances. + /// + [JsonPropertyName("enabled")] + public bool? Enabled { get; set; } +} + +/// The configuration of the monitoring infrastructure of this cluster +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecMonitoring +{ + /// The list of config maps containing the custom queries + [JsonPropertyName("customQueriesConfigMap")] + public IList? CustomQueriesConfigMap { get; set; } + + /// The list of secrets containing the custom queries + [JsonPropertyName("customQueriesSecret")] + public IList? CustomQueriesSecret { get; set; } + + /// + /// Whether the default queries should be injected. + /// Set it to `true` if you don't want to inject default queries into the cluster. + /// Default: false. + /// + [JsonPropertyName("disableDefaultQueries")] + public bool? DisableDefaultQueries { get; set; } + + /// + /// Enable or disable the `PodMonitor` + /// + /// Deprecated: This feature will be removed in an upcoming release. If + /// you need this functionality, you can create a PodMonitor manually. + /// + [JsonPropertyName("enablePodMonitor")] + public bool? EnablePodMonitor { get; set; } + + /// + /// The interval during which metrics computed from queries are considered current. + /// Once it is exceeded, a new scrape will trigger a rerun + /// of the queries. + /// If not set, defaults to 30 seconds, in line with Prometheus scraping defaults. + /// Setting this to zero disables the caching mechanism and can cause heavy load on the PostgreSQL server. + /// + [JsonPropertyName("metricsQueriesTTL")] + public string? MetricsQueriesTTL { get; set; } + + /// + /// The list of metric relabelings for the `PodMonitor`. Applied to samples before ingestion. + /// + /// Deprecated: This feature will be removed in an upcoming release. If + /// you need this functionality, you can create a PodMonitor manually. + /// + [JsonPropertyName("podMonitorMetricRelabelings")] + public IList? PodMonitorMetricRelabelings { get; set; } + + /// + /// The list of relabelings for the `PodMonitor`. Applied to samples before scraping. + /// + /// Deprecated: This feature will be removed in an upcoming release. If + /// you need this functionality, you can create a PodMonitor manually. + /// + [JsonPropertyName("podMonitorRelabelings")] + public IList? PodMonitorRelabelings { get; set; } + + /// + /// Configure TLS communication for the metrics endpoint. + /// Changing tls.enabled option will force a rollout of all instances. + /// + [JsonPropertyName("tls")] + public V1ClusterSpecMonitoringTls? Tls { get; set; } +} + +/// Define a maintenance window for the Kubernetes nodes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecNodeMaintenanceWindow +{ + /// Is there a node maintenance activity in progress? + [JsonPropertyName("inProgress")] + public bool? InProgress { get; set; } + + /// + /// Reuse the existing PVC (wait for the node to come + /// up again) or not (recreate it elsewhere - when `instances` >1) + /// + [JsonPropertyName("reusePVC")] + public bool? ReusePVC { get; set; } +} + +/// +/// PluginConfiguration specifies a plugin that need to be loaded for this +/// cluster to be reconciled +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPlugins +{ + /// Enabled is true if this plugin will be used + [JsonPropertyName("enabled")] + public bool? Enabled { get; set; } + + /// + /// Marks the plugin as the WAL archiver. At most one plugin can be + /// designated as a WAL archiver. This cannot be enabled if the + /// `.spec.backup.barmanObjectStore` configuration is present. + /// + [JsonPropertyName("isWALArchiver")] + public bool? IsWALArchiver { get; set; } + + /// Name is the plugin name + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Parameters is the configuration of the plugin + [JsonPropertyName("parameters")] + public IDictionary? Parameters { get; set; } +} + +/// +/// appArmorProfile is the AppArmor options to use by the containers in this pod. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPodSecurityContextAppArmorProfile +{ + /// + /// localhostProfile indicates a profile loaded on the node that should be used. + /// The profile must be preconfigured on the node to work. + /// Must match the loaded name of the profile. + /// Must be set if and only if type is "Localhost". + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of AppArmor profile will be applied. + /// Valid options are: + /// Localhost - a profile pre-loaded on the node. + /// RuntimeDefault - the container runtime's default profile. + /// Unconfined - no AppArmor enforcement. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The SELinux context to be applied to all containers. +/// If unspecified, the container runtime will allocate a random SELinux context for each +/// container. May also be set in SecurityContext. If set in +/// both SecurityContext and PodSecurityContext, the value specified in SecurityContext +/// takes precedence for that container. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPodSecurityContextSeLinuxOptions +{ + /// Level is SELinux level label that applies to the container. + [JsonPropertyName("level")] + public string? Level { get; set; } + + /// Role is a SELinux role label that applies to the container. + [JsonPropertyName("role")] + public string? Role { get; set; } + + /// Type is a SELinux type label that applies to the container. + [JsonPropertyName("type")] + public string? Type { get; set; } + + /// User is a SELinux user label that applies to the container. + [JsonPropertyName("user")] + public string? User { get; set; } +} + +/// +/// The seccomp options to use by the containers in this pod. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPodSecurityContextSeccompProfile +{ + /// + /// localhostProfile indicates a profile defined in a file on the node should be used. + /// The profile must be preconfigured on the node to work. + /// Must be a descending path, relative to the kubelet's configured seccomp profile location. + /// Must be set if type is "Localhost". Must NOT be set for any other type. + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of seccomp profile will be applied. + /// Valid options are: + /// + /// Localhost - a profile defined in a file on the node should be used. + /// RuntimeDefault - the container runtime default profile should be used. + /// Unconfined - no profile should be applied. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// Sysctl defines a kernel parameter to be set +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPodSecurityContextSysctls +{ + /// Name of a property to set + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Value of a property to set + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// +/// The Windows specific settings applied to all containers. +/// If unspecified, the options within a container's SecurityContext will be used. +/// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is linux. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPodSecurityContextWindowsOptions +{ + /// + /// GMSACredentialSpec is where the GMSA admission webhook + /// (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + /// GMSA credential spec named by the GMSACredentialSpecName field. + /// + [JsonPropertyName("gmsaCredentialSpec")] + public string? GmsaCredentialSpec { get; set; } + + /// GMSACredentialSpecName is the name of the GMSA credential spec to use. + [JsonPropertyName("gmsaCredentialSpecName")] + public string? GmsaCredentialSpecName { get; set; } + + /// + /// HostProcess determines if a container should be run as a 'Host Process' container. + /// All of a Pod's containers must have the same effective HostProcess value + /// (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + /// In addition, if HostProcess is true then HostNetwork must also be set to true. + /// + [JsonPropertyName("hostProcess")] + public bool? HostProcess { get; set; } + + /// + /// The UserName in Windows to run the entrypoint of the container process. + /// Defaults to the user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsUserName")] + public string? RunAsUserName { get; set; } +} + +/// +/// Override the PodSecurityContext applied to every Pod of the cluster. +/// When set, this overrides the operator's default PodSecurityContext for the cluster. +/// If omitted, the operator defaults are used. +/// This field doesn't have any effect if SecurityContextConstraints are present. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPodSecurityContext +{ + /// + /// appArmorProfile is the AppArmor options to use by the containers in this pod. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("appArmorProfile")] + public V1ClusterSpecPodSecurityContextAppArmorProfile? AppArmorProfile { get; set; } + + /// + /// A special supplemental group that applies to all containers in a pod. + /// Some volume types allow the Kubelet to change the ownership of that volume + /// to be owned by the pod: + /// + /// 1. The owning GID will be the FSGroup + /// 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) + /// 3. The permission bits are OR'd with rw-rw---- + /// + /// If unset, the Kubelet will not modify the ownership and permissions of any volume. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("fsGroup")] + public long? FsGroup { get; set; } + + /// + /// fsGroupChangePolicy defines behavior of changing ownership and permission of the volume + /// before being exposed inside Pod. This field will only apply to + /// volume types which support fsGroup based ownership(and permissions). + /// It will have no effect on ephemeral volume types such as: secret, configmaps + /// and emptydir. + /// Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("fsGroupChangePolicy")] + public string? FsGroupChangePolicy { get; set; } + + /// + /// The GID to run the entrypoint of the container process. + /// Uses runtime default if unset. + /// May also be set in SecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence + /// for that container. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsGroup")] + public long? RunAsGroup { get; set; } + + /// + /// Indicates that the container must run as a non-root user. + /// If true, the Kubelet will validate the image at runtime to ensure that it + /// does not run as UID 0 (root) and fail to start the container if it does. + /// If unset or false, no such validation will be performed. + /// May also be set in SecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsNonRoot")] + public bool? RunAsNonRoot { get; set; } + + /// + /// The UID to run the entrypoint of the container process. + /// Defaults to user specified in image metadata if unspecified. + /// May also be set in SecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence + /// for that container. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsUser")] + public long? RunAsUser { get; set; } + + /// + /// seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod. + /// It has no effect on nodes that do not support SELinux or to volumes does not support SELinux. + /// Valid values are "MountOption" and "Recursive". + /// + /// "Recursive" means relabeling of all files on all Pod volumes by the container runtime. + /// This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node. + /// + /// "MountOption" mounts all eligible Pod volumes with `-o context` mount option. + /// This requires all Pods that share the same volume to use the same SELinux label. + /// It is not possible to share the same volume among privileged and unprivileged Pods. + /// Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes + /// whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their + /// CSIDriver instance. Other volumes are always re-labelled recursively. + /// "MountOption" value is allowed only when SELinuxMount feature gate is enabled. + /// + /// If not specified and SELinuxMount feature gate is enabled, "MountOption" is used. + /// If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes + /// and "Recursive" for all other volumes. + /// + /// This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers. + /// + /// All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seLinuxChangePolicy")] + public string? SeLinuxChangePolicy { get; set; } + + /// + /// The SELinux context to be applied to all containers. + /// If unspecified, the container runtime will allocate a random SELinux context for each + /// container. May also be set in SecurityContext. If set in + /// both SecurityContext and PodSecurityContext, the value specified in SecurityContext + /// takes precedence for that container. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seLinuxOptions")] + public V1ClusterSpecPodSecurityContextSeLinuxOptions? SeLinuxOptions { get; set; } + + /// + /// The seccomp options to use by the containers in this pod. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seccompProfile")] + public V1ClusterSpecPodSecurityContextSeccompProfile? SeccompProfile { get; set; } + + /// + /// A list of groups applied to the first process run in each container, in + /// addition to the container's primary GID and fsGroup (if specified). If + /// the SupplementalGroupsPolicy feature is enabled, the + /// supplementalGroupsPolicy field determines whether these are in addition + /// to or instead of any group memberships defined in the container image. + /// If unspecified, no additional groups are added, though group memberships + /// defined in the container image may still be used, depending on the + /// supplementalGroupsPolicy field. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("supplementalGroups")] + public IList? SupplementalGroups { get; set; } + + /// + /// Defines how supplemental groups of the first container processes are calculated. + /// Valid values are "Merge" and "Strict". If not specified, "Merge" is used. + /// (Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled + /// and the container runtime must implement support for this feature. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("supplementalGroupsPolicy")] + public string? SupplementalGroupsPolicy { get; set; } + + /// + /// Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported + /// sysctls (by the container runtime) might fail to launch. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("sysctls")] + public IList? Sysctls { get; set; } + + /// + /// The Windows specific settings applied to all containers. + /// If unspecified, the options within a container's SecurityContext will be used. + /// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is linux. + /// + [JsonPropertyName("windowsOptions")] + public V1ClusterSpecPodSecurityContextWindowsOptions? WindowsOptions { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPodSelectorRefsSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// Selector is a label selector that identifies the pods whose IPs +/// should be resolved. Only pods in the Cluster's namespace are considered. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPodSelectorRefsSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// PodSelectorRef defines a named pod label selector for use in pg_hba rules. +/// Pods matching the selector in the Cluster's namespace will have their IPs +/// resolved and made available for pg_hba address expansion via the +/// `${podselector:NAME}` syntax. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPodSelectorRefs +{ + /// + /// Name is the identifier used to reference this selector in pg_hba rules + /// via the ${podselector:NAME} syntax in the address field. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Selector is a label selector that identifies the pods whose IPs + /// should be resolved. Only pods in the Cluster's namespace are considered. + /// + [JsonPropertyName("selector")] + public required V1ClusterSpecPodSelectorRefsSelector Selector { get; set; } +} + +/// +/// ExtensionEnvVar defines an environment variable for a specific extension +/// image volume. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresqlExtensionsEnv +{ + /// + /// Name of the environment variable to be injected into the + /// PostgreSQL process. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Value of the environment variable. CloudNativePG performs a direct + /// replacement of this value, with support for placeholder expansion. + /// The ${`image_root`} placeholder resolves to the absolute mount path + /// of the extension's volume (e.g., `/extensions/my-extension`). This + /// is particularly useful for allowing applications or libraries to + /// locate specific directories within the mounted image. + /// Unrecognized placeholders are rejected. To include a literal ${...} + /// in the value, escape it as $${...}. + /// + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// The image containing the extension. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresqlExtensionsImage +{ + /// + /// Policy for pulling OCI objects. Possible values are: + /// Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. + /// Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. + /// IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. + /// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + /// + [JsonPropertyName("pullPolicy")] + public string? PullPolicy { get; set; } + + /// + /// Required: Image or artifact reference to be used. + /// Behaves in the same way as pod.spec.containers[*].image. + /// Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets. + /// More info: https://kubernetes.io/docs/concepts/containers/images + /// This field is optional to allow higher level config management to default or override + /// container images in workload controllers like Deployments and StatefulSets. + /// + [JsonPropertyName("reference")] + public string? Reference { get; set; } +} + +/// +/// ExtensionConfiguration is the configuration used to add +/// PostgreSQL extensions to the Cluster. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresqlExtensions +{ + /// + /// A list of directories within the image to be appended to the + /// PostgreSQL process's `PATH` environment variable. + /// + [JsonPropertyName("bin_path")] + public IList? BinPath { get; set; } + + /// + /// The list of directories inside the image which should be added to dynamic_library_path. + /// If not defined, defaults to "/lib". + /// + [JsonPropertyName("dynamic_library_path")] + public IList? DynamicLibraryPath { get; set; } + + /// + /// Env is a list of custom environment variables to be set in the + /// PostgreSQL process for this extension. It is the responsibility of the + /// cluster administrator to ensure the variables are correct for the + /// specific extension. Note that changes to these variables require + /// a manual cluster restart to take effect. + /// + [JsonPropertyName("env")] + public IList? Env { get; set; } + + /// + /// The list of directories inside the image which should be added to extension_control_path. + /// If not defined, defaults to "/share". + /// + [JsonPropertyName("extension_control_path")] + public IList? ExtensionControlPath { get; set; } + + /// The image containing the extension. + [JsonPropertyName("image")] + public V1ClusterSpecPostgresqlExtensionsImage? Image { get; set; } + + /// The list of directories inside the image which should be added to ld_library_path. + [JsonPropertyName("ld_library_path")] + public IList? LdLibraryPath { get; set; } + + /// The name of the extension, required + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// Bind as authentication configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresqlLdapBindAsAuth +{ + /// Prefix for the bind authentication option + [JsonPropertyName("prefix")] + public string? Prefix { get; set; } + + /// Suffix for the bind authentication option + [JsonPropertyName("suffix")] + public string? Suffix { get; set; } +} + +/// Secret with the password for the user to bind to the directory +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresqlLdapBindSearchAuthBindPassword +{ + /// The key of the secret to select from. Must be a valid secret key. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// Bind+Search authentication configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresqlLdapBindSearchAuth +{ + /// Root DN to begin the user search + [JsonPropertyName("baseDN")] + public string? BaseDN { get; set; } + + /// DN of the user to bind to the directory + [JsonPropertyName("bindDN")] + public string? BindDN { get; set; } + + /// Secret with the password for the user to bind to the directory + [JsonPropertyName("bindPassword")] + public V1ClusterSpecPostgresqlLdapBindSearchAuthBindPassword? BindPassword { get; set; } + + /// Attribute to match against the username + [JsonPropertyName("searchAttribute")] + public string? SearchAttribute { get; set; } + + /// Search filter to use when doing the search+bind authentication + [JsonPropertyName("searchFilter")] + public string? SearchFilter { get; set; } +} + +/// LDAP schema to be used, possible options are `ldap` and `ldaps` +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecPostgresqlLdapSchemeEnum +{ + [EnumMember(Value = "ldap"), JsonStringEnumMemberName("ldap")] + Ldap, + [EnumMember(Value = "ldaps"), JsonStringEnumMemberName("ldaps")] + Ldaps +} + +/// Options to specify LDAP configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresqlLdap +{ + /// Bind as authentication configuration + [JsonPropertyName("bindAsAuth")] + public V1ClusterSpecPostgresqlLdapBindAsAuth? BindAsAuth { get; set; } + + /// Bind+Search authentication configuration + [JsonPropertyName("bindSearchAuth")] + public V1ClusterSpecPostgresqlLdapBindSearchAuth? BindSearchAuth { get; set; } + + /// LDAP server port + [JsonPropertyName("port")] + public int? Port { get; set; } + + /// LDAP schema to be used, possible options are `ldap` and `ldaps` + [JsonPropertyName("scheme")] + public V1ClusterSpecPostgresqlLdapSchemeEnum? Scheme { get; set; } + + /// LDAP hostname or IP address + [JsonPropertyName("server")] + public string? Server { get; set; } + + /// Set to 'true' to enable LDAP over TLS. 'false' is default + [JsonPropertyName("tls")] + public bool? Tls { get; set; } +} + +/// +/// Requirements to be met by sync replicas. This will affect how the "synchronous_standby_names" parameter will be +/// set up. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresqlSyncReplicaElectionConstraint +{ + /// This flag enables the constraints for sync replicas + [JsonPropertyName("enabled")] + public required bool Enabled { get; set; } + + /// A list of node labels values to extract and compare to evaluate if the pods reside in the same topology or not + [JsonPropertyName("nodeLabelsAntiAffinity")] + public IList? NodeLabelsAntiAffinity { get; set; } +} + +/// +/// If set to "required", data durability is strictly enforced. Write operations +/// with synchronous commit settings (`on`, `remote_write`, or `remote_apply`) will +/// block if there are insufficient healthy replicas, ensuring data persistence. +/// If set to "preferred", data durability is maintained when healthy replicas +/// are available, but the required number of instances will adjust dynamically +/// if replicas become unavailable. This setting relaxes strict durability enforcement +/// to allow for operational continuity. This setting is only applicable if both +/// `standbyNamesPre` and `standbyNamesPost` are unset (empty). +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecPostgresqlSynchronousDataDurabilityEnum +{ + [EnumMember(Value = "required"), JsonStringEnumMemberName("required")] + Required, + [EnumMember(Value = "preferred"), JsonStringEnumMemberName("preferred")] + Preferred +} + +/// +/// Method to select synchronous replication standbys from the listed +/// servers, accepting 'any' (quorum-based synchronous replication) or +/// 'first' (priority-based synchronous replication) as values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecPostgresqlSynchronousMethodEnum +{ + [EnumMember(Value = "any"), JsonStringEnumMemberName("any")] + Any, + [EnumMember(Value = "first"), JsonStringEnumMemberName("first")] + First +} + +/// Configuration of the PostgreSQL synchronous replication feature +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresqlSynchronous +{ + /// + /// If set to "required", data durability is strictly enforced. Write operations + /// with synchronous commit settings (`on`, `remote_write`, or `remote_apply`) will + /// block if there are insufficient healthy replicas, ensuring data persistence. + /// If set to "preferred", data durability is maintained when healthy replicas + /// are available, but the required number of instances will adjust dynamically + /// if replicas become unavailable. This setting relaxes strict durability enforcement + /// to allow for operational continuity. This setting is only applicable if both + /// `standbyNamesPre` and `standbyNamesPost` are unset (empty). + /// + [JsonPropertyName("dataDurability")] + public V1ClusterSpecPostgresqlSynchronousDataDurabilityEnum? DataDurability { get; set; } + + /// + /// FailoverQuorum enables a quorum-based check before failover, improving + /// data durability and safety during failover events in CloudNativePG-managed + /// PostgreSQL clusters. + /// + [JsonPropertyName("failoverQuorum")] + public bool? FailoverQuorum { get; set; } + + /// + /// Specifies the maximum number of local cluster pods that can be + /// automatically included in the `synchronous_standby_names` option in + /// PostgreSQL. + /// + [JsonPropertyName("maxStandbyNamesFromCluster")] + public int? MaxStandbyNamesFromCluster { get; set; } + + /// + /// Method to select synchronous replication standbys from the listed + /// servers, accepting 'any' (quorum-based synchronous replication) or + /// 'first' (priority-based synchronous replication) as values. + /// + [JsonPropertyName("method")] + public required V1ClusterSpecPostgresqlSynchronousMethodEnum Method { get; set; } + + /// + /// Specifies the number of synchronous standby servers that + /// transactions must wait for responses from. + /// + [JsonPropertyName("number")] + public required int Number { get; set; } + + /// + /// A user-defined list of application names to be added to + /// `synchronous_standby_names` after local cluster pods (the order is + /// only useful for priority-based synchronous replication). + /// + [JsonPropertyName("standbyNamesPost")] + public IList? StandbyNamesPost { get; set; } + + /// + /// A user-defined list of application names to be added to + /// `synchronous_standby_names` before local cluster pods (the order is + /// only useful for priority-based synchronous replication). + /// + [JsonPropertyName("standbyNamesPre")] + public IList? StandbyNamesPre { get; set; } +} + +/// Configuration of the PostgreSQL server +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecPostgresql +{ + /// + /// If this parameter is true, the user will be able to invoke `ALTER SYSTEM` + /// on this CloudNativePG Cluster. + /// This should only be used for debugging and troubleshooting. + /// Defaults to false. + /// + [JsonPropertyName("enableAlterSystem")] + public bool? EnableAlterSystem { get; set; } + + /// The configuration of the extensions to be added + [JsonPropertyName("extensions")] + public IList? Extensions { get; set; } + + /// Options to specify LDAP configuration + [JsonPropertyName("ldap")] + public V1ClusterSpecPostgresqlLdap? Ldap { get; set; } + + /// PostgreSQL configuration options (postgresql.conf) + [JsonPropertyName("parameters")] + public IDictionary? Parameters { get; set; } + + /// + /// PostgreSQL Host Based Authentication rules (lines to be appended + /// to the pg_hba.conf file). + /// Use the ${podselector:NAME} syntax to reference a pod selector; + /// the rule will be expanded for each Pod IP matching that selector. + /// + [JsonPropertyName("pg_hba")] + public IList? PgHba { get; set; } + + /// + /// PostgreSQL User Name Maps rules (lines to be appended + /// to the pg_ident.conf file) + /// + [JsonPropertyName("pg_ident")] + public IList? PgIdent { get; set; } + + /// + /// Specifies the maximum number of seconds to wait when promoting an instance to primary. + /// Default value is 40000000, greater than one year in seconds, + /// big enough to simulate an infinite timeout + /// + [JsonPropertyName("promotionTimeout")] + public int? PromotionTimeout { get; set; } + + /// Lists of shared preload libraries to add to the default ones + [JsonPropertyName("shared_preload_libraries")] + public IList? SharedPreloadLibraries { get; set; } + + /// + /// Requirements to be met by sync replicas. This will affect how the "synchronous_standby_names" parameter will be + /// set up. + /// + [JsonPropertyName("syncReplicaElectionConstraint")] + public V1ClusterSpecPostgresqlSyncReplicaElectionConstraint? SyncReplicaElectionConstraint { get; set; } + + /// Configuration of the PostgreSQL synchronous replication feature + [JsonPropertyName("synchronous")] + public V1ClusterSpecPostgresqlSynchronous? Synchronous { get; set; } +} + +/// +/// Method to follow to upgrade the primary server during a rolling +/// update procedure, after all replicas have been successfully updated: +/// it can be with a switchover (`switchover`) or in-place (`restart` - default). +/// Note: when using `switchover`, the operator will reject updates that change both +/// the image name and PostgreSQL configuration parameters simultaneously to avoid +/// configuration mismatches during the switchover process. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecPrimaryUpdateMethodEnum +{ + [EnumMember(Value = "switchover"), JsonStringEnumMemberName("switchover")] + Switchover, + [EnumMember(Value = "restart"), JsonStringEnumMemberName("restart")] + Restart +} + +/// +/// Deployment strategy to follow to upgrade the primary server during a rolling +/// update procedure, after all replicas have been successfully updated: +/// it can be automated (`unsupervised` - default) or manual (`supervised`) +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecPrimaryUpdateStrategyEnum +{ + [EnumMember(Value = "unsupervised"), JsonStringEnumMemberName("unsupervised")] + Unsupervised, + [EnumMember(Value = "supervised"), JsonStringEnumMemberName("supervised")] + Supervised +} + +/// +/// Configure the feature that extends the liveness probe for a primary +/// instance. In addition to the basic checks, this verifies whether the +/// primary is isolated from the Kubernetes API server and from its +/// replicas, ensuring that it can be safely shut down if network +/// partition or API unavailability is detected. Enabled by default. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProbesLivenessIsolationCheck +{ + /// Timeout in milliseconds for connections during the primary isolation check + [JsonPropertyName("connectionTimeout")] + public int? ConnectionTimeout { get; set; } + + /// Whether primary isolation checking is enabled for the liveness probe + [JsonPropertyName("enabled")] + public bool? Enabled { get; set; } + + /// Timeout in milliseconds for requests during the primary isolation check + [JsonPropertyName("requestTimeout")] + public int? RequestTimeout { get; set; } +} + +/// The liveness probe configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProbesLiveness +{ + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// Configure the feature that extends the liveness probe for a primary + /// instance. In addition to the basic checks, this verifies whether the + /// primary is isolated from the Kubernetes API server and from its + /// replicas, ensuring that it can be safely shut down if network + /// partition or API unavailability is detected. Enabled by default. + /// + [JsonPropertyName("isolationCheck")] + public V1ClusterSpecProbesLivenessIsolationCheck? IsolationCheck { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// The probe strategy +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecProbesReadinessTypeEnum +{ + [EnumMember(Value = "pg_isready"), JsonStringEnumMemberName("pg_isready")] + PgIsready, + [EnumMember(Value = "streaming"), JsonStringEnumMemberName("streaming")] + Streaming, + [EnumMember(Value = "query"), JsonStringEnumMemberName("query")] + Query +} + +/// The readiness probe configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProbesReadiness +{ + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// Lag limit. Used only for `streaming` strategy + [JsonPropertyName("maximumLag")] + public IntOrString? MaximumLag { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } + + /// The probe strategy + [JsonPropertyName("type")] + public V1ClusterSpecProbesReadinessTypeEnum? Type { get; set; } +} + +/// The probe strategy +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterSpecProbesStartupTypeEnum +{ + [EnumMember(Value = "pg_isready"), JsonStringEnumMemberName("pg_isready")] + PgIsready, + [EnumMember(Value = "streaming"), JsonStringEnumMemberName("streaming")] + Streaming, + [EnumMember(Value = "query"), JsonStringEnumMemberName("query")] + Query +} + +/// The startup probe configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProbesStartup +{ + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// Lag limit. Used only for `streaming` strategy + [JsonPropertyName("maximumLag")] + public IntOrString? MaximumLag { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } + + /// The probe strategy + [JsonPropertyName("type")] + public V1ClusterSpecProbesStartupTypeEnum? Type { get; set; } +} + +/// +/// The configuration of the probes to be injected +/// in the PostgreSQL Pods. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProbes +{ + /// The liveness probe configuration + [JsonPropertyName("liveness")] + public V1ClusterSpecProbesLiveness? Liveness { get; set; } + + /// The readiness probe configuration + [JsonPropertyName("readiness")] + public V1ClusterSpecProbesReadiness? Readiness { get; set; } + + /// The startup probe configuration + [JsonPropertyName("startup")] + public V1ClusterSpecProbesStartup? Startup { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesClusterTrustBundleLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// Select all ClusterTrustBundles that match this label selector. Only has +/// effect if signerName is set. Mutually-exclusive with name. If unset, +/// interpreted as "match nothing". If set but empty, interpreted as "match +/// everything". +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesClusterTrustBundleLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field +/// of ClusterTrustBundle objects in an auto-updating file. +/// +/// Alpha, gated by the ClusterTrustBundleProjection feature gate. +/// +/// ClusterTrustBundle objects can either be selected by name, or by the +/// combination of signer name and a label selector. +/// +/// Kubelet performs aggressive normalization of the PEM contents written +/// into the pod filesystem. Esoteric PEM features such as inter-block +/// comments and block headers are stripped. Certificates are deduplicated. +/// The ordering of certificates within the file is arbitrary, and Kubelet +/// may change the order over time. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesClusterTrustBundle +{ + /// + /// Select all ClusterTrustBundles that match this label selector. Only has + /// effect if signerName is set. Mutually-exclusive with name. If unset, + /// interpreted as "match nothing". If set but empty, interpreted as "match + /// everything". + /// + [JsonPropertyName("labelSelector")] + public V1ClusterSpecProjectedVolumeTemplateSourcesClusterTrustBundleLabelSelector? LabelSelector { get; set; } + + /// + /// Select a single ClusterTrustBundle by object name. Mutually-exclusive + /// with signerName and labelSelector. + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// + /// If true, don't block pod startup if the referenced ClusterTrustBundle(s) + /// aren't available. If using name, then the named ClusterTrustBundle is + /// allowed not to exist. If using signerName, then the combination of + /// signerName and labelSelector is allowed to match zero + /// ClusterTrustBundles. + /// + [JsonPropertyName("optional")] + public bool? Optional { get; set; } + + /// Relative path from the volume root to write the bundle. + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// + /// Select all ClusterTrustBundles that match this signer name. + /// Mutually-exclusive with name. The contents of all selected + /// ClusterTrustBundles will be unified and deduplicated. + /// + [JsonPropertyName("signerName")] + public string? SignerName { get; set; } +} + +/// Maps a string key to a path within a volume. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesConfigMapItems +{ + /// key is the key to project. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// mode is Optional: mode bits used to set permissions on this file. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// If not specified, the volume defaultMode will be used. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("mode")] + public int? Mode { get; set; } + + /// + /// path is the relative path of the file to map the key to. + /// May not be an absolute path. + /// May not contain the path element '..'. + /// May not start with the string '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } +} + +/// configMap information about the configMap data to project +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesConfigMap +{ + /// + /// items if unspecified, each key-value pair in the Data field of the referenced + /// ConfigMap will be projected into the volume as a file whose name is the + /// key and content is the value. If specified, the listed keys will be + /// projected into the specified paths, and unlisted keys will not be + /// present. If a key is specified which is not present in the ConfigMap, + /// the volume setup will error unless it is marked optional. Paths must be + /// relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("items")] + public IList? Items { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// optional specify whether the ConfigMap or its keys must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesDownwardAPIItemsFieldRef +{ + /// Version of the schema the FieldPath is written in terms of, defaults to "v1". + [JsonPropertyName("apiVersion")] + public string? ApiVersion { get; set; } + + /// Path of the field to select in the specified API version. + [JsonPropertyName("fieldPath")] + public required string FieldPath { get; set; } +} + +/// +/// Selects a resource of the container: only resources limits and requests +/// (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesDownwardAPIItemsResourceFieldRef +{ + /// Container name: required for volumes, optional for env vars + [JsonPropertyName("containerName")] + public string? ContainerName { get; set; } + + /// Specifies the output format of the exposed resources, defaults to "1" + [JsonPropertyName("divisor")] + public IntOrString? Divisor { get; set; } + + /// Required: resource to select + [JsonPropertyName("resource")] + public required string Resource { get; set; } +} + +/// DownwardAPIVolumeFile represents information to create the file containing the pod field +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesDownwardAPIItems +{ + /// Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported. + [JsonPropertyName("fieldRef")] + public V1ClusterSpecProjectedVolumeTemplateSourcesDownwardAPIItemsFieldRef? FieldRef { get; set; } + + /// + /// Optional: mode bits used to set permissions on this file, must be an octal value + /// between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// If not specified, the volume defaultMode will be used. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("mode")] + public int? Mode { get; set; } + + /// Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..' + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// + /// Selects a resource of the container: only resources limits and requests + /// (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + /// + [JsonPropertyName("resourceFieldRef")] + public V1ClusterSpecProjectedVolumeTemplateSourcesDownwardAPIItemsResourceFieldRef? ResourceFieldRef { get; set; } +} + +/// downwardAPI information about the downwardAPI data to project +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesDownwardAPI +{ + /// Items is a list of DownwardAPIVolume file + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// +/// Projects an auto-rotating credential bundle (private key and certificate +/// chain) that the pod can use either as a TLS client or server. +/// +/// Kubelet generates a private key and uses it to send a +/// PodCertificateRequest to the named signer. Once the signer approves the +/// request and issues a certificate chain, Kubelet writes the key and +/// certificate chain to the pod filesystem. The pod does not start until +/// certificates have been issued for each podCertificate projected volume +/// source in its spec. +/// +/// Kubelet will begin trying to rotate the certificate at the time indicated +/// by the signer using the PodCertificateRequest.Status.BeginRefreshAt +/// timestamp. +/// +/// Kubelet can write a single file, indicated by the credentialBundlePath +/// field, or separate files, indicated by the keyPath and +/// certificateChainPath fields. +/// +/// The credential bundle is a single file in PEM format. The first PEM +/// entry is the private key (in PKCS#8 format), and the remaining PEM +/// entries are the certificate chain issued by the signer (typically, +/// signers will return their certificate chain in leaf-to-root order). +/// +/// Prefer using the credential bundle format, since your application code +/// can read it atomically. If you use keyPath and certificateChainPath, +/// your application must make two separate file reads. If these coincide +/// with a certificate rotation, it is possible that the private key and leaf +/// certificate you read may not correspond to each other. Your application +/// will need to check for this condition, and re-read until they are +/// consistent. +/// +/// The named signer controls chooses the format of the certificate it +/// issues; consult the signer implementation's documentation to learn how to +/// use the certificates it issues. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesPodCertificate +{ + /// + /// Write the certificate chain at this path in the projected volume. + /// + /// Most applications should use credentialBundlePath. When using keyPath + /// and certificateChainPath, your application needs to check that the key + /// and leaf certificate are consistent, because it is possible to read the + /// files mid-rotation. + /// + [JsonPropertyName("certificateChainPath")] + public string? CertificateChainPath { get; set; } + + /// + /// Write the credential bundle at this path in the projected volume. + /// + /// The credential bundle is a single file that contains multiple PEM blocks. + /// The first PEM block is a PRIVATE KEY block, containing a PKCS#8 private + /// key. + /// + /// The remaining blocks are CERTIFICATE blocks, containing the issued + /// certificate chain from the signer (leaf and any intermediates). + /// + /// Using credentialBundlePath lets your Pod's application code make a single + /// atomic read that retrieves a consistent key and certificate chain. If you + /// project them to separate files, your application code will need to + /// additionally check that the leaf certificate was issued to the key. + /// + [JsonPropertyName("credentialBundlePath")] + public string? CredentialBundlePath { get; set; } + + /// + /// Write the key at this path in the projected volume. + /// + /// Most applications should use credentialBundlePath. When using keyPath + /// and certificateChainPath, your application needs to check that the key + /// and leaf certificate are consistent, because it is possible to read the + /// files mid-rotation. + /// + [JsonPropertyName("keyPath")] + public string? KeyPath { get; set; } + + /// + /// The type of keypair Kubelet will generate for the pod. + /// + /// Valid values are "RSA3072", "RSA4096", "ECDSAP256", "ECDSAP384", + /// "ECDSAP521", and "ED25519". + /// + [JsonPropertyName("keyType")] + public required string KeyType { get; set; } + + /// + /// maxExpirationSeconds is the maximum lifetime permitted for the + /// certificate. + /// + /// Kubelet copies this value verbatim into the PodCertificateRequests it + /// generates for this projection. + /// + /// If omitted, kube-apiserver will set it to 86400(24 hours). kube-apiserver + /// will reject values shorter than 3600 (1 hour). The maximum allowable + /// value is 7862400 (91 days). + /// + /// The signer implementation is then free to issue a certificate with any + /// lifetime *shorter* than MaxExpirationSeconds, but no shorter than 3600 + /// seconds (1 hour). This constraint is enforced by kube-apiserver. + /// `kubernetes.io` signers will never issue certificates with a lifetime + /// longer than 24 hours. + /// + [JsonPropertyName("maxExpirationSeconds")] + public int? MaxExpirationSeconds { get; set; } + + /// Kubelet's generated CSRs will be addressed to this signer. + [JsonPropertyName("signerName")] + public required string SignerName { get; set; } + + /// + /// userAnnotations allow pod authors to pass additional information to + /// the signer implementation. Kubernetes does not restrict or validate this + /// metadata in any way. + /// + /// These values are copied verbatim into the `spec.unverifiedUserAnnotations` field of + /// the PodCertificateRequest objects that Kubelet creates. + /// + /// Entries are subject to the same validation as object metadata annotations, + /// with the addition that all keys must be domain-prefixed. No restrictions + /// are placed on values, except an overall size limitation on the entire field. + /// + /// Signers should document the keys and values they support. Signers should + /// deny requests that contain keys they do not recognize. + /// + [JsonPropertyName("userAnnotations")] + public IDictionary? UserAnnotations { get; set; } +} + +/// Maps a string key to a path within a volume. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesSecretItems +{ + /// key is the key to project. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// mode is Optional: mode bits used to set permissions on this file. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// If not specified, the volume defaultMode will be used. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("mode")] + public int? Mode { get; set; } + + /// + /// path is the relative path of the file to map the key to. + /// May not be an absolute path. + /// May not contain the path element '..'. + /// May not start with the string '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } +} + +/// secret information about the secret data to project +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesSecret +{ + /// + /// items if unspecified, each key-value pair in the Data field of the referenced + /// Secret will be projected into the volume as a file whose name is the + /// key and content is the value. If specified, the listed keys will be + /// projected into the specified paths, and unlisted keys will not be + /// present. If a key is specified which is not present in the Secret, + /// the volume setup will error unless it is marked optional. Paths must be + /// relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("items")] + public IList? Items { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// optional field specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// serviceAccountToken is information about the serviceAccountToken data to project +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSourcesServiceAccountToken +{ + /// + /// audience is the intended audience of the token. A recipient of a token + /// must identify itself with an identifier specified in the audience of the + /// token, and otherwise should reject the token. The audience defaults to the + /// identifier of the apiserver. + /// + [JsonPropertyName("audience")] + public string? Audience { get; set; } + + /// + /// expirationSeconds is the requested duration of validity of the service + /// account token. As the token approaches expiration, the kubelet volume + /// plugin will proactively rotate the service account token. The kubelet will + /// start trying to rotate the token if the token is older than 80 percent of + /// its time to live or if the token is older than 24 hours.Defaults to 1 hour + /// and must be at least 10 minutes. + /// + [JsonPropertyName("expirationSeconds")] + public long? ExpirationSeconds { get; set; } + + /// + /// path is the path relative to the mount point of the file to project the + /// token into. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } +} + +/// +/// Projection that may be projected along with other supported volume types. +/// Exactly one of these fields must be set. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplateSources +{ + /// + /// ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field + /// of ClusterTrustBundle objects in an auto-updating file. + /// + /// Alpha, gated by the ClusterTrustBundleProjection feature gate. + /// + /// ClusterTrustBundle objects can either be selected by name, or by the + /// combination of signer name and a label selector. + /// + /// Kubelet performs aggressive normalization of the PEM contents written + /// into the pod filesystem. Esoteric PEM features such as inter-block + /// comments and block headers are stripped. Certificates are deduplicated. + /// The ordering of certificates within the file is arbitrary, and Kubelet + /// may change the order over time. + /// + [JsonPropertyName("clusterTrustBundle")] + public V1ClusterSpecProjectedVolumeTemplateSourcesClusterTrustBundle? ClusterTrustBundle { get; set; } + + /// configMap information about the configMap data to project + [JsonPropertyName("configMap")] + public V1ClusterSpecProjectedVolumeTemplateSourcesConfigMap? ConfigMap { get; set; } + + /// downwardAPI information about the downwardAPI data to project + [JsonPropertyName("downwardAPI")] + public V1ClusterSpecProjectedVolumeTemplateSourcesDownwardAPI? DownwardAPI { get; set; } + + /// + /// Projects an auto-rotating credential bundle (private key and certificate + /// chain) that the pod can use either as a TLS client or server. + /// + /// Kubelet generates a private key and uses it to send a + /// PodCertificateRequest to the named signer. Once the signer approves the + /// request and issues a certificate chain, Kubelet writes the key and + /// certificate chain to the pod filesystem. The pod does not start until + /// certificates have been issued for each podCertificate projected volume + /// source in its spec. + /// + /// Kubelet will begin trying to rotate the certificate at the time indicated + /// by the signer using the PodCertificateRequest.Status.BeginRefreshAt + /// timestamp. + /// + /// Kubelet can write a single file, indicated by the credentialBundlePath + /// field, or separate files, indicated by the keyPath and + /// certificateChainPath fields. + /// + /// The credential bundle is a single file in PEM format. The first PEM + /// entry is the private key (in PKCS#8 format), and the remaining PEM + /// entries are the certificate chain issued by the signer (typically, + /// signers will return their certificate chain in leaf-to-root order). + /// + /// Prefer using the credential bundle format, since your application code + /// can read it atomically. If you use keyPath and certificateChainPath, + /// your application must make two separate file reads. If these coincide + /// with a certificate rotation, it is possible that the private key and leaf + /// certificate you read may not correspond to each other. Your application + /// will need to check for this condition, and re-read until they are + /// consistent. + /// + /// The named signer controls chooses the format of the certificate it + /// issues; consult the signer implementation's documentation to learn how to + /// use the certificates it issues. + /// + [JsonPropertyName("podCertificate")] + public V1ClusterSpecProjectedVolumeTemplateSourcesPodCertificate? PodCertificate { get; set; } + + /// secret information about the secret data to project + [JsonPropertyName("secret")] + public V1ClusterSpecProjectedVolumeTemplateSourcesSecret? Secret { get; set; } + + /// serviceAccountToken is information about the serviceAccountToken data to project + [JsonPropertyName("serviceAccountToken")] + public V1ClusterSpecProjectedVolumeTemplateSourcesServiceAccountToken? ServiceAccountToken { get; set; } +} + +/// +/// Template to be used to define projected volumes, projected volumes will be mounted +/// under `/projected` base folder +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecProjectedVolumeTemplate +{ + /// + /// defaultMode are the mode bits used to set permissions on created files by default. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// Directories within the path are not affected by this setting. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("defaultMode")] + public int? DefaultMode { get; set; } + + /// + /// sources is the list of volume projections. Each entry in this list + /// handles one source. + /// + [JsonPropertyName("sources")] + public IList? Sources { get; set; } +} + +/// Replica cluster configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecReplica +{ + /// + /// If replica mode is enabled, this cluster will be a replica of an + /// existing cluster. Replica cluster can be created from a recovery + /// object store or via streaming through pg_basebackup. + /// Refer to the Replica clusters page of the documentation for more information. + /// + [JsonPropertyName("enabled")] + public bool? Enabled { get; set; } + + /// + /// When replica mode is enabled, this parameter allows you to replay + /// transactions only when the system time is at least the configured + /// time past the commit time. This provides an opportunity to correct + /// data loss errors. Note that when this parameter is set, a promotion + /// token cannot be used. + /// + [JsonPropertyName("minApplyDelay")] + public string? MinApplyDelay { get; set; } + + /// + /// Primary defines which Cluster is defined to be the primary in the distributed PostgreSQL cluster, based on the + /// topology specified in externalClusters + /// + [JsonPropertyName("primary")] + public string? Primary { get; set; } + + /// + /// A demotion token generated by an external cluster used to + /// check if the promotion requirements are met. + /// + [JsonPropertyName("promotionToken")] + public string? PromotionToken { get; set; } + + /// + /// Self defines the name of this cluster. It is used to determine if this is a primary + /// or a replica cluster, comparing it with `primary` + /// + [JsonPropertyName("self")] + public string? Self { get; set; } + + /// The name of the external cluster which is the replication origin + [JsonPropertyName("source")] + public required string Source { get; set; } +} + +/// Replication slots for high availability configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecReplicationSlotsHighAvailability +{ + /// + /// If enabled (default), the operator will automatically manage replication slots + /// on the primary instance and use them in streaming replication + /// connections with all the standby instances that are part of the HA + /// cluster. If disabled, the operator will not take advantage + /// of replication slots in streaming connections with the replicas. + /// This feature also controls replication slots in replica cluster, + /// from the designated primary to its cascading replicas. + /// + [JsonPropertyName("enabled")] + public bool? Enabled { get; set; } + + /// + /// Prefix for replication slots managed by the operator for HA. + /// It may only contain lower case letters, numbers, and the underscore character. + /// This can only be set at creation time. By default set to `_cnpg_`. + /// + [JsonPropertyName("slotPrefix")] + public string? SlotPrefix { get; set; } + + /// + /// When enabled, the operator automatically manages synchronization of logical + /// decoding (replication) slots across high-availability clusters. + /// + /// Requires one of the following conditions: + /// - PostgreSQL version 17 or later + /// - PostgreSQL version < 17 with pg_failover_slots extension enabled + /// + [JsonPropertyName("synchronizeLogicalDecoding")] + public bool? SynchronizeLogicalDecoding { get; set; } +} + +/// Configures the synchronization of the user defined physical replication slots +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecReplicationSlotsSynchronizeReplicas +{ + /// When set to true, every replication slot that is on the primary is synchronized on each standby + [JsonPropertyName("enabled")] + public bool? Enabled { get; set; } + + /// List of regular expression patterns to match the names of replication slots to be excluded (by default empty) + [JsonPropertyName("excludePatterns")] + public IList? ExcludePatterns { get; set; } +} + +/// Replication slots management configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecReplicationSlots +{ + /// Replication slots for high availability configuration + [JsonPropertyName("highAvailability")] + public V1ClusterSpecReplicationSlotsHighAvailability? HighAvailability { get; set; } + + /// Configures the synchronization of the user defined physical replication slots + [JsonPropertyName("synchronizeReplicas")] + public V1ClusterSpecReplicationSlotsSynchronizeReplicas? SynchronizeReplicas { get; set; } + + /// + /// Standby will update the status of the local replication slots + /// every `updateInterval` seconds (default 30). + /// + [JsonPropertyName("updateInterval")] + public int? UpdateInterval { get; set; } +} + +/// ResourceClaim references one entry in PodSpec.ResourceClaims. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecResourcesClaims +{ + /// + /// Name must match the name of one entry in pod.spec.resourceClaims of + /// the Pod where this field is used. It makes that resource available + /// inside a container. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Request is the name chosen for a request in the referenced claim. + /// If empty, everything from the claim is made available, otherwise + /// only the result of this request. + /// + [JsonPropertyName("request")] + public string? Request { get; set; } +} + +/// +/// Resources requirements of every generated Pod. Please refer to +/// https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ +/// for more information. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecResources +{ + /// + /// Claims lists the names of resources, defined in spec.resourceClaims, + /// that are used by this container. + /// + /// This field depends on the + /// DynamicResourceAllocation feature gate. + /// + /// This field is immutable. It can only be set for containers. + /// + [JsonPropertyName("claims")] + public IList? Claims { get; set; } + + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// +/// The SeccompProfile applied to every Pod and Container. +/// Defaults to: `RuntimeDefault` +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecSeccompProfile +{ + /// + /// localhostProfile indicates a profile defined in a file on the node should be used. + /// The profile must be preconfigured on the node to work. + /// Must be a descending path, relative to the kubelet's configured seccomp profile location. + /// Must be set if type is "Localhost". Must NOT be set for any other type. + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of seccomp profile will be applied. + /// Valid options are: + /// + /// Localhost - a profile defined in a file on the node should be used. + /// RuntimeDefault - the container runtime default profile should be used. + /// Unconfined - no profile should be applied. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// appArmorProfile is the AppArmor options to use by this container. If set, this profile +/// overrides the pod's appArmorProfile. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecSecurityContextAppArmorProfile +{ + /// + /// localhostProfile indicates a profile loaded on the node that should be used. + /// The profile must be preconfigured on the node to work. + /// Must match the loaded name of the profile. + /// Must be set if and only if type is "Localhost". + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of AppArmor profile will be applied. + /// Valid options are: + /// Localhost - a profile pre-loaded on the node. + /// RuntimeDefault - the container runtime's default profile. + /// Unconfined - no AppArmor enforcement. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The capabilities to add/drop when running containers. +/// Defaults to the default set of capabilities granted by the container runtime. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecSecurityContextCapabilities +{ + /// Added capabilities + [JsonPropertyName("add")] + public IList? Add { get; set; } + + /// Removed capabilities + [JsonPropertyName("drop")] + public IList? Drop { get; set; } +} + +/// +/// The SELinux context to be applied to the container. +/// If unspecified, the container runtime will allocate a random SELinux context for each +/// container. May also be set in PodSecurityContext. If set in both SecurityContext and +/// PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecSecurityContextSeLinuxOptions +{ + /// Level is SELinux level label that applies to the container. + [JsonPropertyName("level")] + public string? Level { get; set; } + + /// Role is a SELinux role label that applies to the container. + [JsonPropertyName("role")] + public string? Role { get; set; } + + /// Type is a SELinux type label that applies to the container. + [JsonPropertyName("type")] + public string? Type { get; set; } + + /// User is a SELinux user label that applies to the container. + [JsonPropertyName("user")] + public string? User { get; set; } +} + +/// +/// The seccomp options to use by this container. If seccomp options are +/// provided at both the pod & container level, the container options +/// override the pod options. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecSecurityContextSeccompProfile +{ + /// + /// localhostProfile indicates a profile defined in a file on the node should be used. + /// The profile must be preconfigured on the node to work. + /// Must be a descending path, relative to the kubelet's configured seccomp profile location. + /// Must be set if type is "Localhost". Must NOT be set for any other type. + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of seccomp profile will be applied. + /// Valid options are: + /// + /// Localhost - a profile defined in a file on the node should be used. + /// RuntimeDefault - the container runtime default profile should be used. + /// Unconfined - no profile should be applied. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The Windows specific settings applied to all containers. +/// If unspecified, the options from the PodSecurityContext will be used. +/// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is linux. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecSecurityContextWindowsOptions +{ + /// + /// GMSACredentialSpec is where the GMSA admission webhook + /// (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + /// GMSA credential spec named by the GMSACredentialSpecName field. + /// + [JsonPropertyName("gmsaCredentialSpec")] + public string? GmsaCredentialSpec { get; set; } + + /// GMSACredentialSpecName is the name of the GMSA credential spec to use. + [JsonPropertyName("gmsaCredentialSpecName")] + public string? GmsaCredentialSpecName { get; set; } + + /// + /// HostProcess determines if a container should be run as a 'Host Process' container. + /// All of a Pod's containers must have the same effective HostProcess value + /// (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + /// In addition, if HostProcess is true then HostNetwork must also be set to true. + /// + [JsonPropertyName("hostProcess")] + public bool? HostProcess { get; set; } + + /// + /// The UserName in Windows to run the entrypoint of the container process. + /// Defaults to the user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsUserName")] + public string? RunAsUserName { get; set; } +} + +/// +/// Override the SecurityContext applied to every Container in the Pod of the cluster. +/// When set, this overrides the operator's default Container SecurityContext. +/// If omitted, the operator defaults are used. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecSecurityContext +{ + /// + /// AllowPrivilegeEscalation controls whether a process can gain more + /// privileges than its parent process. This bool directly controls if + /// the no_new_privs flag will be set on the container process. + /// AllowPrivilegeEscalation is true always when the container is: + /// 1) run as Privileged + /// 2) has CAP_SYS_ADMIN + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("allowPrivilegeEscalation")] + public bool? AllowPrivilegeEscalation { get; set; } + + /// + /// appArmorProfile is the AppArmor options to use by this container. If set, this profile + /// overrides the pod's appArmorProfile. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("appArmorProfile")] + public V1ClusterSpecSecurityContextAppArmorProfile? AppArmorProfile { get; set; } + + /// + /// The capabilities to add/drop when running containers. + /// Defaults to the default set of capabilities granted by the container runtime. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("capabilities")] + public V1ClusterSpecSecurityContextCapabilities? Capabilities { get; set; } + + /// + /// Run container in privileged mode. + /// Processes in privileged containers are essentially equivalent to root on the host. + /// Defaults to false. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("privileged")] + public bool? Privileged { get; set; } + + /// + /// procMount denotes the type of proc mount to use for the containers. + /// The default value is Default which uses the container runtime defaults for + /// readonly paths and masked paths. + /// This requires the ProcMountType feature flag to be enabled. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("procMount")] + public string? ProcMount { get; set; } + + /// + /// Whether this container has a read-only root filesystem. + /// Default is false. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("readOnlyRootFilesystem")] + public bool? ReadOnlyRootFilesystem { get; set; } + + /// + /// The GID to run the entrypoint of the container process. + /// Uses runtime default if unset. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsGroup")] + public long? RunAsGroup { get; set; } + + /// + /// Indicates that the container must run as a non-root user. + /// If true, the Kubelet will validate the image at runtime to ensure that it + /// does not run as UID 0 (root) and fail to start the container if it does. + /// If unset or false, no such validation will be performed. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsNonRoot")] + public bool? RunAsNonRoot { get; set; } + + /// + /// The UID to run the entrypoint of the container process. + /// Defaults to user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsUser")] + public long? RunAsUser { get; set; } + + /// + /// The SELinux context to be applied to the container. + /// If unspecified, the container runtime will allocate a random SELinux context for each + /// container. May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seLinuxOptions")] + public V1ClusterSpecSecurityContextSeLinuxOptions? SeLinuxOptions { get; set; } + + /// + /// The seccomp options to use by this container. If seccomp options are + /// provided at both the pod & container level, the container options + /// override the pod options. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seccompProfile")] + public V1ClusterSpecSecurityContextSeccompProfile? SeccompProfile { get; set; } + + /// + /// The Windows specific settings applied to all containers. + /// If unspecified, the options from the PodSecurityContext will be used. + /// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is linux. + /// + [JsonPropertyName("windowsOptions")] + public V1ClusterSpecSecurityContextWindowsOptions? WindowsOptions { get; set; } +} + +/// +/// Metadata are the metadata to be used for the generated +/// service account +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecServiceAccountTemplateMetadata +{ + /// + /// Annotations is an unstructured key value map stored with a resource that may be + /// set by external tools to store and retrieve arbitrary metadata. They are not + /// queryable and should be preserved when modifying objects. + /// More info: http://kubernetes.io/docs/user-guide/annotations + /// + [JsonPropertyName("annotations")] + public IDictionary? Annotations { get; set; } + + /// + /// Map of string keys and values that can be used to organize and categorize + /// (scope and select) objects. May match selectors of replication controllers + /// and services. + /// More info: http://kubernetes.io/docs/user-guide/labels + /// + [JsonPropertyName("labels")] + public IDictionary? Labels { get; set; } + + /// The name of the resource. Only supported for certain types + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// Configure the generation of the service account +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecServiceAccountTemplate +{ + /// + /// Metadata are the metadata to be used for the generated + /// service account + /// + [JsonPropertyName("metadata")] + public required V1ClusterSpecServiceAccountTemplateMetadata Metadata { get; set; } +} + +/// +/// dataSource field can be used to specify either: +/// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) +/// * An existing PVC (PersistentVolumeClaim) +/// If the provisioner or an external controller can support the specified data source, +/// it will create a new volume based on the contents of the specified data source. +/// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, +/// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. +/// If the namespace is specified, then dataSourceRef will not be copied to dataSource. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecStoragePvcTemplateDataSource +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty +/// volume is desired. This may be any object from a non-empty API group (non +/// core object) or a PersistentVolumeClaim object. +/// When this field is specified, volume binding will only succeed if the type of +/// the specified object matches some installed volume populator or dynamic +/// provisioner. +/// This field will replace the functionality of the dataSource field and as such +/// if both fields are non-empty, they must have the same value. For backwards +/// compatibility, when namespace isn't specified in dataSourceRef, +/// both fields (dataSource and dataSourceRef) will be set to the same +/// value automatically if one of them is empty and the other is non-empty. +/// When namespace is specified in dataSourceRef, +/// dataSource isn't set to the same value and must be empty. +/// There are three important differences between dataSource and dataSourceRef: +/// * While dataSource only allows two specific types of objects, dataSourceRef +/// allows any non-core object, as well as PersistentVolumeClaim objects. +/// * While dataSource ignores disallowed values (dropping them), dataSourceRef +/// preserves all values, and generates an error if a disallowed value is +/// specified. +/// * While dataSource only allows local objects, dataSourceRef allows objects +/// in any namespaces. +/// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. +/// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecStoragePvcTemplateDataSourceRef +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Namespace is the namespace of resource being referenced + /// Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + /// (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("namespace")] + public string? Namespace { get; set; } +} + +/// +/// resources represents the minimum resources the volume should have. +/// Users are allowed to specify resource requirements +/// that are lower than previous value but must still be higher than capacity recorded in the +/// status field of the claim. +/// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecStoragePvcTemplateResources +{ + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecStoragePvcTemplateSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// selector is a label query over volumes to consider for binding. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecStoragePvcTemplateSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// Template to be used to generate the Persistent Volume Claim +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecStoragePvcTemplate +{ + /// + /// accessModes contains the desired access modes the volume should have. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + /// + [JsonPropertyName("accessModes")] + public IList? AccessModes { get; set; } + + /// + /// dataSource field can be used to specify either: + /// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + /// * An existing PVC (PersistentVolumeClaim) + /// If the provisioner or an external controller can support the specified data source, + /// it will create a new volume based on the contents of the specified data source. + /// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + /// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + /// If the namespace is specified, then dataSourceRef will not be copied to dataSource. + /// + [JsonPropertyName("dataSource")] + public V1ClusterSpecStoragePvcTemplateDataSource? DataSource { get; set; } + + /// + /// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + /// volume is desired. This may be any object from a non-empty API group (non + /// core object) or a PersistentVolumeClaim object. + /// When this field is specified, volume binding will only succeed if the type of + /// the specified object matches some installed volume populator or dynamic + /// provisioner. + /// This field will replace the functionality of the dataSource field and as such + /// if both fields are non-empty, they must have the same value. For backwards + /// compatibility, when namespace isn't specified in dataSourceRef, + /// both fields (dataSource and dataSourceRef) will be set to the same + /// value automatically if one of them is empty and the other is non-empty. + /// When namespace is specified in dataSourceRef, + /// dataSource isn't set to the same value and must be empty. + /// There are three important differences between dataSource and dataSourceRef: + /// * While dataSource only allows two specific types of objects, dataSourceRef + /// allows any non-core object, as well as PersistentVolumeClaim objects. + /// * While dataSource ignores disallowed values (dropping them), dataSourceRef + /// preserves all values, and generates an error if a disallowed value is + /// specified. + /// * While dataSource only allows local objects, dataSourceRef allows objects + /// in any namespaces. + /// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + /// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("dataSourceRef")] + public V1ClusterSpecStoragePvcTemplateDataSourceRef? DataSourceRef { get; set; } + + /// + /// resources represents the minimum resources the volume should have. + /// Users are allowed to specify resource requirements + /// that are lower than previous value but must still be higher than capacity recorded in the + /// status field of the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + /// + [JsonPropertyName("resources")] + public V1ClusterSpecStoragePvcTemplateResources? Resources { get; set; } + + /// selector is a label query over volumes to consider for binding. + [JsonPropertyName("selector")] + public V1ClusterSpecStoragePvcTemplateSelector? Selector { get; set; } + + /// + /// storageClassName is the name of the StorageClass required by the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + /// + [JsonPropertyName("storageClassName")] + public string? StorageClassName { get; set; } + + /// + /// volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + /// If specified, the CSI driver will create or update the volume with the attributes defined + /// in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + /// it can be changed after the claim is created. An empty string or nil value indicates that no + /// VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + /// this field can be reset to its previous value (including nil) to cancel the modification. + /// If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + /// set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + /// exists. + /// More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + /// + [JsonPropertyName("volumeAttributesClassName")] + public string? VolumeAttributesClassName { get; set; } + + /// + /// volumeMode defines what type of volume is required by the claim. + /// Value of Filesystem is implied when not included in claim spec. + /// + [JsonPropertyName("volumeMode")] + public string? VolumeMode { get; set; } + + /// volumeName is the binding reference to the PersistentVolume backing this claim. + [JsonPropertyName("volumeName")] + public string? VolumeName { get; set; } +} + +/// Configuration of the storage of the instances +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecStorage +{ + /// Template to be used to generate the Persistent Volume Claim + [JsonPropertyName("pvcTemplate")] + public V1ClusterSpecStoragePvcTemplate? PvcTemplate { get; set; } + + /// Resize existent PVCs, defaults to true + [JsonPropertyName("resizeInUseVolumes")] + public bool? ResizeInUseVolumes { get; set; } + + /// + /// Size of the storage. Required if not already specified in the PVC template. + /// Changes to this field are automatically reapplied to the created PVCs. + /// Size cannot be decreased. + /// + [JsonPropertyName("size")] + public string? Size { get; set; } + + /// + /// StorageClass to use for PVCs. Applied after + /// evaluating the PVC template, if available. + /// If not specified, the generated PVCs will use the + /// default storage class + /// + [JsonPropertyName("storageClass")] + public string? StorageClass { get; set; } +} + +/// +/// The secret containing the superuser password. If not defined a new +/// secret will be created with a randomly generated password +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecSuperuserSecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// Owner is the PostgreSQL user owning the tablespace +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTablespacesOwner +{ + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// +/// dataSource field can be used to specify either: +/// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) +/// * An existing PVC (PersistentVolumeClaim) +/// If the provisioner or an external controller can support the specified data source, +/// it will create a new volume based on the contents of the specified data source. +/// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, +/// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. +/// If the namespace is specified, then dataSourceRef will not be copied to dataSource. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTablespacesStoragePvcTemplateDataSource +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty +/// volume is desired. This may be any object from a non-empty API group (non +/// core object) or a PersistentVolumeClaim object. +/// When this field is specified, volume binding will only succeed if the type of +/// the specified object matches some installed volume populator or dynamic +/// provisioner. +/// This field will replace the functionality of the dataSource field and as such +/// if both fields are non-empty, they must have the same value. For backwards +/// compatibility, when namespace isn't specified in dataSourceRef, +/// both fields (dataSource and dataSourceRef) will be set to the same +/// value automatically if one of them is empty and the other is non-empty. +/// When namespace is specified in dataSourceRef, +/// dataSource isn't set to the same value and must be empty. +/// There are three important differences between dataSource and dataSourceRef: +/// * While dataSource only allows two specific types of objects, dataSourceRef +/// allows any non-core object, as well as PersistentVolumeClaim objects. +/// * While dataSource ignores disallowed values (dropping them), dataSourceRef +/// preserves all values, and generates an error if a disallowed value is +/// specified. +/// * While dataSource only allows local objects, dataSourceRef allows objects +/// in any namespaces. +/// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. +/// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTablespacesStoragePvcTemplateDataSourceRef +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Namespace is the namespace of resource being referenced + /// Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + /// (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("namespace")] + public string? Namespace { get; set; } +} + +/// +/// resources represents the minimum resources the volume should have. +/// Users are allowed to specify resource requirements +/// that are lower than previous value but must still be higher than capacity recorded in the +/// status field of the claim. +/// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTablespacesStoragePvcTemplateResources +{ + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTablespacesStoragePvcTemplateSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// selector is a label query over volumes to consider for binding. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTablespacesStoragePvcTemplateSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// Template to be used to generate the Persistent Volume Claim +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTablespacesStoragePvcTemplate +{ + /// + /// accessModes contains the desired access modes the volume should have. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + /// + [JsonPropertyName("accessModes")] + public IList? AccessModes { get; set; } + + /// + /// dataSource field can be used to specify either: + /// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + /// * An existing PVC (PersistentVolumeClaim) + /// If the provisioner or an external controller can support the specified data source, + /// it will create a new volume based on the contents of the specified data source. + /// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + /// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + /// If the namespace is specified, then dataSourceRef will not be copied to dataSource. + /// + [JsonPropertyName("dataSource")] + public V1ClusterSpecTablespacesStoragePvcTemplateDataSource? DataSource { get; set; } + + /// + /// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + /// volume is desired. This may be any object from a non-empty API group (non + /// core object) or a PersistentVolumeClaim object. + /// When this field is specified, volume binding will only succeed if the type of + /// the specified object matches some installed volume populator or dynamic + /// provisioner. + /// This field will replace the functionality of the dataSource field and as such + /// if both fields are non-empty, they must have the same value. For backwards + /// compatibility, when namespace isn't specified in dataSourceRef, + /// both fields (dataSource and dataSourceRef) will be set to the same + /// value automatically if one of them is empty and the other is non-empty. + /// When namespace is specified in dataSourceRef, + /// dataSource isn't set to the same value and must be empty. + /// There are three important differences between dataSource and dataSourceRef: + /// * While dataSource only allows two specific types of objects, dataSourceRef + /// allows any non-core object, as well as PersistentVolumeClaim objects. + /// * While dataSource ignores disallowed values (dropping them), dataSourceRef + /// preserves all values, and generates an error if a disallowed value is + /// specified. + /// * While dataSource only allows local objects, dataSourceRef allows objects + /// in any namespaces. + /// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + /// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("dataSourceRef")] + public V1ClusterSpecTablespacesStoragePvcTemplateDataSourceRef? DataSourceRef { get; set; } + + /// + /// resources represents the minimum resources the volume should have. + /// Users are allowed to specify resource requirements + /// that are lower than previous value but must still be higher than capacity recorded in the + /// status field of the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + /// + [JsonPropertyName("resources")] + public V1ClusterSpecTablespacesStoragePvcTemplateResources? Resources { get; set; } + + /// selector is a label query over volumes to consider for binding. + [JsonPropertyName("selector")] + public V1ClusterSpecTablespacesStoragePvcTemplateSelector? Selector { get; set; } + + /// + /// storageClassName is the name of the StorageClass required by the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + /// + [JsonPropertyName("storageClassName")] + public string? StorageClassName { get; set; } + + /// + /// volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + /// If specified, the CSI driver will create or update the volume with the attributes defined + /// in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + /// it can be changed after the claim is created. An empty string or nil value indicates that no + /// VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + /// this field can be reset to its previous value (including nil) to cancel the modification. + /// If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + /// set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + /// exists. + /// More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + /// + [JsonPropertyName("volumeAttributesClassName")] + public string? VolumeAttributesClassName { get; set; } + + /// + /// volumeMode defines what type of volume is required by the claim. + /// Value of Filesystem is implied when not included in claim spec. + /// + [JsonPropertyName("volumeMode")] + public string? VolumeMode { get; set; } + + /// volumeName is the binding reference to the PersistentVolume backing this claim. + [JsonPropertyName("volumeName")] + public string? VolumeName { get; set; } +} + +/// The storage configuration for the tablespace +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTablespacesStorage +{ + /// Template to be used to generate the Persistent Volume Claim + [JsonPropertyName("pvcTemplate")] + public V1ClusterSpecTablespacesStoragePvcTemplate? PvcTemplate { get; set; } + + /// Resize existent PVCs, defaults to true + [JsonPropertyName("resizeInUseVolumes")] + public bool? ResizeInUseVolumes { get; set; } + + /// + /// Size of the storage. Required if not already specified in the PVC template. + /// Changes to this field are automatically reapplied to the created PVCs. + /// Size cannot be decreased. + /// + [JsonPropertyName("size")] + public string? Size { get; set; } + + /// + /// StorageClass to use for PVCs. Applied after + /// evaluating the PVC template, if available. + /// If not specified, the generated PVCs will use the + /// default storage class + /// + [JsonPropertyName("storageClass")] + public string? StorageClass { get; set; } +} + +/// +/// TablespaceConfiguration is the configuration of a tablespace, and includes +/// the storage specification for the tablespace +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTablespaces +{ + /// The name of the tablespace + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Owner is the PostgreSQL user owning the tablespace + [JsonPropertyName("owner")] + public V1ClusterSpecTablespacesOwner? Owner { get; set; } + + /// The storage configuration for the tablespace + [JsonPropertyName("storage")] + public required V1ClusterSpecTablespacesStorage Storage { get; set; } + + /// + /// When set to true, the tablespace will be added as a `temp_tablespaces` + /// entry in PostgreSQL, and will be available to automatically house temp + /// database objects, or other temporary files. Please refer to PostgreSQL + /// documentation for more information on the `temp_tablespaces` GUC. + /// + [JsonPropertyName("temporary")] + public bool? Temporary { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTopologySpreadConstraintsLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// LabelSelector is used to find matching pods. +/// Pods that match this label selector are counted to determine the number of pods +/// in their corresponding topology domain. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTopologySpreadConstraintsLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// TopologySpreadConstraint specifies how to spread matching pods among the given topology. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecTopologySpreadConstraints +{ + /// + /// LabelSelector is used to find matching pods. + /// Pods that match this label selector are counted to determine the number of pods + /// in their corresponding topology domain. + /// + [JsonPropertyName("labelSelector")] + public V1ClusterSpecTopologySpreadConstraintsLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select the pods over which + /// spreading will be calculated. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are ANDed with labelSelector + /// to select the group of existing pods over which spreading will be calculated + /// for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + /// MatchLabelKeys cannot be set when LabelSelector isn't set. + /// Keys that don't exist in the incoming pod labels will + /// be ignored. A null or empty list means only match against labelSelector. + /// + /// This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default). + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MaxSkew describes the degree to which pods may be unevenly distributed. + /// When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference + /// between the number of matching pods in the target topology and the global minimum. + /// The global minimum is the minimum number of matching pods in an eligible domain + /// or zero if the number of eligible domains is less than MinDomains. + /// For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + /// labelSelector spread as 2/2/1: + /// In this case, the global minimum is 1. + /// | zone1 | zone2 | zone3 | + /// | P P | P P | P | + /// - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; + /// scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) + /// violate MaxSkew(1). + /// - if MaxSkew is 2, incoming pod can be scheduled onto any zone. + /// When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence + /// to topologies that satisfy it. + /// It's a required field. Default value is 1 and 0 is not allowed. + /// + [JsonPropertyName("maxSkew")] + public required int MaxSkew { get; set; } + + /// + /// MinDomains indicates a minimum number of eligible domains. + /// When the number of eligible domains with matching topology keys is less than minDomains, + /// Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed. + /// And when the number of eligible domains with matching topology keys equals or greater than minDomains, + /// this value has no effect on scheduling. + /// As a result, when the number of eligible domains is less than minDomains, + /// scheduler won't schedule more than maxSkew Pods to those domains. + /// If value is nil, the constraint behaves as if MinDomains is equal to 1. + /// Valid values are integers greater than 0. + /// When value is not nil, WhenUnsatisfiable must be DoNotSchedule. + /// + /// For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same + /// labelSelector spread as 2/2/2: + /// | zone1 | zone2 | zone3 | + /// | P P | P P | P P | + /// The number of domains is less than 5(MinDomains), so "global minimum" is treated as 0. + /// In this situation, new pod with the same labelSelector cannot be scheduled, + /// because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, + /// it will violate MaxSkew. + /// + [JsonPropertyName("minDomains")] + public int? MinDomains { get; set; } + + /// + /// NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector + /// when calculating pod topology spread skew. Options are: + /// - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. + /// - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. + /// + /// If this value is nil, the behavior is equivalent to the Honor policy. + /// + [JsonPropertyName("nodeAffinityPolicy")] + public string? NodeAffinityPolicy { get; set; } + + /// + /// NodeTaintsPolicy indicates how we will treat node taints when calculating + /// pod topology spread skew. Options are: + /// - Honor: nodes without taints, along with tainted nodes for which the incoming pod + /// has a toleration, are included. + /// - Ignore: node taints are ignored. All nodes are included. + /// + /// If this value is nil, the behavior is equivalent to the Ignore policy. + /// + [JsonPropertyName("nodeTaintsPolicy")] + public string? NodeTaintsPolicy { get; set; } + + /// + /// TopologyKey is the key of node labels. Nodes that have a label with this key + /// and identical values are considered to be in the same topology. + /// We consider each <key, value> as a "bucket", and try to put balanced number + /// of pods into each bucket. + /// We define a domain as a particular instance of a topology. + /// Also, we define an eligible domain as a domain whose nodes meet the requirements of + /// nodeAffinityPolicy and nodeTaintsPolicy. + /// e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology. + /// And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology. + /// It's a required field. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } + + /// + /// WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy + /// the spread constraint. + /// - DoNotSchedule (default) tells the scheduler not to schedule it. + /// - ScheduleAnyway tells the scheduler to schedule the pod in any location, + /// but giving higher precedence to topologies that would help reduce the + /// skew. + /// A constraint is considered "Unsatisfiable" for an incoming pod + /// if and only if every possible node assignment for that pod would violate + /// "MaxSkew" on some topology. + /// For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + /// labelSelector spread as 3/1/1: + /// | zone1 | zone2 | zone3 | + /// | P P P | P | P | + /// If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled + /// to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies + /// MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler + /// won't make it *more* imbalanced. + /// It's a required field. + /// + [JsonPropertyName("whenUnsatisfiable")] + public required string WhenUnsatisfiable { get; set; } +} + +/// +/// dataSource field can be used to specify either: +/// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) +/// * An existing PVC (PersistentVolumeClaim) +/// If the provisioner or an external controller can support the specified data source, +/// it will create a new volume based on the contents of the specified data source. +/// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, +/// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. +/// If the namespace is specified, then dataSourceRef will not be copied to dataSource. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecWalStoragePvcTemplateDataSource +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty +/// volume is desired. This may be any object from a non-empty API group (non +/// core object) or a PersistentVolumeClaim object. +/// When this field is specified, volume binding will only succeed if the type of +/// the specified object matches some installed volume populator or dynamic +/// provisioner. +/// This field will replace the functionality of the dataSource field and as such +/// if both fields are non-empty, they must have the same value. For backwards +/// compatibility, when namespace isn't specified in dataSourceRef, +/// both fields (dataSource and dataSourceRef) will be set to the same +/// value automatically if one of them is empty and the other is non-empty. +/// When namespace is specified in dataSourceRef, +/// dataSource isn't set to the same value and must be empty. +/// There are three important differences between dataSource and dataSourceRef: +/// * While dataSource only allows two specific types of objects, dataSourceRef +/// allows any non-core object, as well as PersistentVolumeClaim objects. +/// * While dataSource ignores disallowed values (dropping them), dataSourceRef +/// preserves all values, and generates an error if a disallowed value is +/// specified. +/// * While dataSource only allows local objects, dataSourceRef allows objects +/// in any namespaces. +/// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. +/// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecWalStoragePvcTemplateDataSourceRef +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Namespace is the namespace of resource being referenced + /// Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + /// (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("namespace")] + public string? Namespace { get; set; } +} + +/// +/// resources represents the minimum resources the volume should have. +/// Users are allowed to specify resource requirements +/// that are lower than previous value but must still be higher than capacity recorded in the +/// status field of the claim. +/// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecWalStoragePvcTemplateResources +{ + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecWalStoragePvcTemplateSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// selector is a label query over volumes to consider for binding. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecWalStoragePvcTemplateSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// Template to be used to generate the Persistent Volume Claim +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecWalStoragePvcTemplate +{ + /// + /// accessModes contains the desired access modes the volume should have. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + /// + [JsonPropertyName("accessModes")] + public IList? AccessModes { get; set; } + + /// + /// dataSource field can be used to specify either: + /// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + /// * An existing PVC (PersistentVolumeClaim) + /// If the provisioner or an external controller can support the specified data source, + /// it will create a new volume based on the contents of the specified data source. + /// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + /// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + /// If the namespace is specified, then dataSourceRef will not be copied to dataSource. + /// + [JsonPropertyName("dataSource")] + public V1ClusterSpecWalStoragePvcTemplateDataSource? DataSource { get; set; } + + /// + /// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + /// volume is desired. This may be any object from a non-empty API group (non + /// core object) or a PersistentVolumeClaim object. + /// When this field is specified, volume binding will only succeed if the type of + /// the specified object matches some installed volume populator or dynamic + /// provisioner. + /// This field will replace the functionality of the dataSource field and as such + /// if both fields are non-empty, they must have the same value. For backwards + /// compatibility, when namespace isn't specified in dataSourceRef, + /// both fields (dataSource and dataSourceRef) will be set to the same + /// value automatically if one of them is empty and the other is non-empty. + /// When namespace is specified in dataSourceRef, + /// dataSource isn't set to the same value and must be empty. + /// There are three important differences between dataSource and dataSourceRef: + /// * While dataSource only allows two specific types of objects, dataSourceRef + /// allows any non-core object, as well as PersistentVolumeClaim objects. + /// * While dataSource ignores disallowed values (dropping them), dataSourceRef + /// preserves all values, and generates an error if a disallowed value is + /// specified. + /// * While dataSource only allows local objects, dataSourceRef allows objects + /// in any namespaces. + /// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + /// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("dataSourceRef")] + public V1ClusterSpecWalStoragePvcTemplateDataSourceRef? DataSourceRef { get; set; } + + /// + /// resources represents the minimum resources the volume should have. + /// Users are allowed to specify resource requirements + /// that are lower than previous value but must still be higher than capacity recorded in the + /// status field of the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + /// + [JsonPropertyName("resources")] + public V1ClusterSpecWalStoragePvcTemplateResources? Resources { get; set; } + + /// selector is a label query over volumes to consider for binding. + [JsonPropertyName("selector")] + public V1ClusterSpecWalStoragePvcTemplateSelector? Selector { get; set; } + + /// + /// storageClassName is the name of the StorageClass required by the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + /// + [JsonPropertyName("storageClassName")] + public string? StorageClassName { get; set; } + + /// + /// volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + /// If specified, the CSI driver will create or update the volume with the attributes defined + /// in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + /// it can be changed after the claim is created. An empty string or nil value indicates that no + /// VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + /// this field can be reset to its previous value (including nil) to cancel the modification. + /// If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + /// set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + /// exists. + /// More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + /// + [JsonPropertyName("volumeAttributesClassName")] + public string? VolumeAttributesClassName { get; set; } + + /// + /// volumeMode defines what type of volume is required by the claim. + /// Value of Filesystem is implied when not included in claim spec. + /// + [JsonPropertyName("volumeMode")] + public string? VolumeMode { get; set; } + + /// volumeName is the binding reference to the PersistentVolume backing this claim. + [JsonPropertyName("volumeName")] + public string? VolumeName { get; set; } +} + +/// Configuration of the storage for PostgreSQL WAL (Write-Ahead Log) +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpecWalStorage +{ + /// Template to be used to generate the Persistent Volume Claim + [JsonPropertyName("pvcTemplate")] + public V1ClusterSpecWalStoragePvcTemplate? PvcTemplate { get; set; } + + /// Resize existent PVCs, defaults to true + [JsonPropertyName("resizeInUseVolumes")] + public bool? ResizeInUseVolumes { get; set; } + + /// + /// Size of the storage. Required if not already specified in the PVC template. + /// Changes to this field are automatically reapplied to the created PVCs. + /// Size cannot be decreased. + /// + [JsonPropertyName("size")] + public string? Size { get; set; } + + /// + /// StorageClass to use for PVCs. Applied after + /// evaluating the PVC template, if available. + /// If not specified, the generated PVCs will use the + /// default storage class + /// + [JsonPropertyName("storageClass")] + public string? StorageClass { get; set; } +} + +/// +/// Specification of the desired behavior of the cluster. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterSpec +{ + /// Affinity/Anti-affinity rules for Pods + [JsonPropertyName("affinity")] + public V1ClusterSpecAffinity? Affinity { get; set; } + + /// The configuration to be used for backups + [JsonPropertyName("backup")] + public V1ClusterSpecBackup? Backup { get; set; } + + /// Instructions to bootstrap this cluster + [JsonPropertyName("bootstrap")] + public V1ClusterSpecBootstrap? Bootstrap { get; set; } + + /// The configuration for the CA and related certificates + [JsonPropertyName("certificates")] + public V1ClusterSpecCertificates? Certificates { get; set; } + + /// Description of this PostgreSQL cluster + [JsonPropertyName("description")] + public string? Description { get; set; } + + /// + /// Manage the `PodDisruptionBudget` resources within the cluster. When + /// configured as `true` (default setting), the pod disruption budgets + /// will safeguard the primary node from being terminated. Conversely, + /// setting it to `false` will result in the absence of any + /// `PodDisruptionBudget` resource, permitting the shutdown of all nodes + /// hosting the PostgreSQL cluster. This latter configuration is + /// advisable for any PostgreSQL cluster employed for + /// development/staging purposes. + /// + [JsonPropertyName("enablePDB")] + public bool? EnablePDB { get; set; } + + /// + /// When this option is enabled, the operator will use the `SuperuserSecret` + /// to update the `postgres` user password (if the secret is + /// not present, the operator will automatically create one). When this + /// option is disabled, the operator will ignore the `SuperuserSecret` content, delete + /// it when automatically created, and then blank the password of the `postgres` + /// user by setting it to `NULL`. Disabled by default. + /// + [JsonPropertyName("enableSuperuserAccess")] + public bool? EnableSuperuserAccess { get; set; } + + /// + /// Env follows the Env format to pass environment variables + /// to the pods created in the cluster + /// + [JsonPropertyName("env")] + public IList? Env { get; set; } + + /// + /// EnvFrom follows the EnvFrom format to pass environment variables + /// sources to the pods to be used by Env + /// + [JsonPropertyName("envFrom")] + public IList? EnvFrom { get; set; } + + /// EphemeralVolumeSource allows the user to configure the source of ephemeral volumes. + [JsonPropertyName("ephemeralVolumeSource")] + public V1ClusterSpecEphemeralVolumeSource? EphemeralVolumeSource { get; set; } + + /// + /// EphemeralVolumesSizeLimit allows the user to set the limits for the ephemeral + /// volumes + /// + [JsonPropertyName("ephemeralVolumesSizeLimit")] + public V1ClusterSpecEphemeralVolumesSizeLimit? EphemeralVolumesSizeLimit { get; set; } + + /// The list of external clusters which are used in the configuration + [JsonPropertyName("externalClusters")] + public IList? ExternalClusters { get; set; } + + /// + /// The amount of time (in seconds) to wait before triggering a failover + /// after the primary PostgreSQL instance in the cluster was detected + /// to be unhealthy + /// + [JsonPropertyName("failoverDelay")] + public int? FailoverDelay { get; set; } + + /// Defines the major PostgreSQL version we want to use within an ImageCatalog + [JsonPropertyName("imageCatalogRef")] + public V1ClusterSpecImageCatalogRef? ImageCatalogRef { get; set; } + + /// + /// Name of the container image, supporting both tags (`<image>:<tag>`) + /// and digests for deterministic and repeatable deployments + /// (`<image>:<tag>@sha256:<digestValue>`) + /// + [JsonPropertyName("imageName")] + public string? ImageName { get; set; } + + /// + /// Image pull policy. + /// One of `Always`, `Never` or `IfNotPresent`. + /// If not defined, it defaults to `IfNotPresent`. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + /// + [JsonPropertyName("imagePullPolicy")] + public string? ImagePullPolicy { get; set; } + + /// The list of pull secrets to be used to pull the images + [JsonPropertyName("imagePullSecrets")] + public IList? ImagePullSecrets { get; set; } + + /// Metadata that will be inherited by all objects related to the Cluster + [JsonPropertyName("inheritedMetadata")] + public V1ClusterSpecInheritedMetadata? InheritedMetadata { get; set; } + + /// Number of instances required in the cluster + [JsonPropertyName("instances")] + public int? Instances { get; set; } + + /// + /// LivenessProbeTimeout is the time (in seconds) that is allowed for a PostgreSQL instance + /// to successfully respond to the liveness probe (default 30). + /// The Liveness probe failure threshold is derived from this value using the formula: + /// ceiling(livenessProbe / 10). + /// + [JsonPropertyName("livenessProbeTimeout")] + public int? LivenessProbeTimeout { get; set; } + + /// The instances' log level, one of the following values: error, warning, info (default), debug, trace + [JsonPropertyName("logLevel")] + public V1ClusterSpecLogLevelEnum? LogLevel { get; set; } + + /// The configuration that is used by the portions of PostgreSQL that are managed by the instance manager + [JsonPropertyName("managed")] + public V1ClusterSpecManaged? Managed { get; set; } + + /// + /// The target value for the synchronous replication quorum, that can be + /// decreased if the number of ready standbys is lower than this. + /// Undefined or 0 disable synchronous replication. + /// + [JsonPropertyName("maxSyncReplicas")] + public int? MaxSyncReplicas { get; set; } + + /// + /// Minimum number of instances required in synchronous replication with the + /// primary. Undefined or 0 allow writes to complete when no standby is + /// available. + /// + [JsonPropertyName("minSyncReplicas")] + public int? MinSyncReplicas { get; set; } + + /// The configuration of the monitoring infrastructure of this cluster + [JsonPropertyName("monitoring")] + public V1ClusterSpecMonitoring? Monitoring { get; set; } + + /// Define a maintenance window for the Kubernetes nodes + [JsonPropertyName("nodeMaintenanceWindow")] + public V1ClusterSpecNodeMaintenanceWindow? NodeMaintenanceWindow { get; set; } + + /// + /// The plugins configuration, containing + /// any plugin to be loaded with the corresponding configuration + /// + [JsonPropertyName("plugins")] + public IList? Plugins { get; set; } + + /// + /// Override the PodSecurityContext applied to every Pod of the cluster. + /// When set, this overrides the operator's default PodSecurityContext for the cluster. + /// If omitted, the operator defaults are used. + /// This field doesn't have any effect if SecurityContextConstraints are present. + /// + [JsonPropertyName("podSecurityContext")] + public V1ClusterSpecPodSecurityContext? PodSecurityContext { get; set; } + + /// + /// PodSelectorRefs defines named pod label selectors that can be referenced + /// in pg_hba rules using the ${podselector:NAME} syntax in the address field. + /// The operator resolves matching pod IPs and the instance manager expands + /// pg_hba lines accordingly. Only pods in the Cluster's own namespace are considered. + /// + [JsonPropertyName("podSelectorRefs")] + public IList? PodSelectorRefs { get; set; } + + /// The GID of the `postgres` user inside the image, defaults to `26` + [JsonPropertyName("postgresGID")] + public long? PostgresGID { get; set; } + + /// The UID of the `postgres` user inside the image, defaults to `26` + [JsonPropertyName("postgresUID")] + public long? PostgresUID { get; set; } + + /// Configuration of the PostgreSQL server + [JsonPropertyName("postgresql")] + public V1ClusterSpecPostgresql? Postgresql { get; set; } + + /// + /// Method to follow to upgrade the primary server during a rolling + /// update procedure, after all replicas have been successfully updated: + /// it can be with a switchover (`switchover`) or in-place (`restart` - default). + /// Note: when using `switchover`, the operator will reject updates that change both + /// the image name and PostgreSQL configuration parameters simultaneously to avoid + /// configuration mismatches during the switchover process. + /// + [JsonPropertyName("primaryUpdateMethod")] + public V1ClusterSpecPrimaryUpdateMethodEnum? PrimaryUpdateMethod { get; set; } + + /// + /// Deployment strategy to follow to upgrade the primary server during a rolling + /// update procedure, after all replicas have been successfully updated: + /// it can be automated (`unsupervised` - default) or manual (`supervised`) + /// + [JsonPropertyName("primaryUpdateStrategy")] + public V1ClusterSpecPrimaryUpdateStrategyEnum? PrimaryUpdateStrategy { get; set; } + + /// + /// Name of the priority class which will be used in every generated Pod, if the PriorityClass + /// specified does not exist, the pod will not be able to schedule. Please refer to + /// https://kubernetes.io/docs/concepts/scheduling-eviction/pod-priority-preemption/#priorityclass + /// for more information + /// + [JsonPropertyName("priorityClassName")] + public string? PriorityClassName { get; set; } + + /// + /// The configuration of the probes to be injected + /// in the PostgreSQL Pods. + /// + [JsonPropertyName("probes")] + public V1ClusterSpecProbes? Probes { get; set; } + + /// + /// Template to be used to define projected volumes, projected volumes will be mounted + /// under `/projected` base folder + /// + [JsonPropertyName("projectedVolumeTemplate")] + public V1ClusterSpecProjectedVolumeTemplate? ProjectedVolumeTemplate { get; set; } + + /// Replica cluster configuration + [JsonPropertyName("replica")] + public V1ClusterSpecReplica? Replica { get; set; } + + /// Replication slots management configuration + [JsonPropertyName("replicationSlots")] + public V1ClusterSpecReplicationSlots? ReplicationSlots { get; set; } + + /// + /// Resources requirements of every generated Pod. Please refer to + /// https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// for more information. + /// + [JsonPropertyName("resources")] + public V1ClusterSpecResources? Resources { get; set; } + + /// + /// If specified, the pod will be dispatched by specified Kubernetes + /// scheduler. If not specified, the pod will be dispatched by the default + /// scheduler. More info: + /// https://kubernetes.io/docs/concepts/scheduling-eviction/kube-scheduler/ + /// + [JsonPropertyName("schedulerName")] + public string? SchedulerName { get; set; } + + /// + /// The SeccompProfile applied to every Pod and Container. + /// Defaults to: `RuntimeDefault` + /// + [JsonPropertyName("seccompProfile")] + public V1ClusterSpecSeccompProfile? SeccompProfile { get; set; } + + /// + /// Override the SecurityContext applied to every Container in the Pod of the cluster. + /// When set, this overrides the operator's default Container SecurityContext. + /// If omitted, the operator defaults are used. + /// + [JsonPropertyName("securityContext")] + public V1ClusterSpecSecurityContext? SecurityContext { get; set; } + + /// + /// Name of an existing ServiceAccount in the same namespace to use for the cluster. + /// When specified, the operator will not create a new ServiceAccount + /// but will use the provided one. This is useful for sharing a single + /// ServiceAccount across multiple clusters (e.g., for cloud IAM configurations). + /// If not specified, a ServiceAccount will be created with the cluster name. + /// Mutually exclusive with ServiceAccountTemplate. + /// + [JsonPropertyName("serviceAccountName")] + public string? ServiceAccountName { get; set; } + + /// Configure the generation of the service account + [JsonPropertyName("serviceAccountTemplate")] + public V1ClusterSpecServiceAccountTemplate? ServiceAccountTemplate { get; set; } + + /// + /// The time in seconds that controls the window of time reserved for the smart shutdown of Postgres to complete. + /// Make sure you reserve enough time for the operator to request a fast shutdown of Postgres + /// (that is: `stopDelay` - `smartShutdownTimeout`). Default is 180 seconds. + /// + [JsonPropertyName("smartShutdownTimeout")] + public int? SmartShutdownTimeout { get; set; } + + /// + /// The time in seconds that is allowed for a PostgreSQL instance to + /// successfully start up (default 3600). + /// The startup probe failure threshold is derived from this value using the formula: + /// ceiling(startDelay / 10). + /// + [JsonPropertyName("startDelay")] + public int? StartDelay { get; set; } + + /// + /// The time in seconds that is allowed for a PostgreSQL instance to + /// gracefully shutdown (default 1800) + /// + [JsonPropertyName("stopDelay")] + public int? StopDelay { get; set; } + + /// Configuration of the storage of the instances + [JsonPropertyName("storage")] + public V1ClusterSpecStorage? Storage { get; set; } + + /// + /// The secret containing the superuser password. If not defined a new + /// secret will be created with a randomly generated password + /// + [JsonPropertyName("superuserSecret")] + public V1ClusterSpecSuperuserSecret? SuperuserSecret { get; set; } + + /// + /// The time in seconds that is allowed for a primary PostgreSQL instance + /// to gracefully shutdown during a switchover. + /// Default value is 3600 seconds (1 hour). + /// + [JsonPropertyName("switchoverDelay")] + public int? SwitchoverDelay { get; set; } + + /// The tablespaces configuration + [JsonPropertyName("tablespaces")] + public IList? Tablespaces { get; set; } + + /// + /// TopologySpreadConstraints specifies how to spread matching pods among the given topology. + /// More info: + /// https://kubernetes.io/docs/concepts/scheduling-eviction/topology-spread-constraints/ + /// + [JsonPropertyName("topologySpreadConstraints")] + public IList? TopologySpreadConstraints { get; set; } + + /// Configuration of the storage for PostgreSQL WAL (Write-Ahead Log) + [JsonPropertyName("walStorage")] + public V1ClusterSpecWalStorage? WalStorage { get; set; } +} + +/// AvailableArchitecture represents the state of a cluster's architecture +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusAvailableArchitectures +{ + /// GoArch is the name of the executable architecture + [JsonPropertyName("goArch")] + public required string GoArch { get; set; } + + /// Hash is the hash of the executable + [JsonPropertyName("hash")] + public required string Hash { get; set; } +} + +/// The configuration for the CA and related certificates, initialized with defaults. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusCertificates +{ + /// + /// The secret containing the Client CA certificate. If not defined, a new secret will be created + /// with a self-signed CA and will be used to generate all the client certificates.<br /> + /// <br /> + /// Contains:<br /> + /// <br /> + /// - `ca.crt`: CA that should be used to validate the client certificates, + /// used as `ssl_ca_file` of all the instances.<br /> + /// - `ca.key`: key used to generate client certificates, if ReplicationTLSSecret is provided, + /// this can be omitted.<br /> + /// + [JsonPropertyName("clientCASecret")] + public string? ClientCASecret { get; set; } + + /// Expiration dates for all certificates. + [JsonPropertyName("expirations")] + public IDictionary? Expirations { get; set; } + + /// + /// The secret of type kubernetes.io/tls containing the client certificate to authenticate as + /// the `streaming_replica` user. + /// If not defined, ClientCASecret must provide also `ca.key`, and a new secret will be + /// created using the provided CA. + /// + [JsonPropertyName("replicationTLSSecret")] + public string? ReplicationTLSSecret { get; set; } + + /// The list of the server alternative DNS names to be added to the generated server TLS certificates, when required. + [JsonPropertyName("serverAltDNSNames")] + public IList? ServerAltDNSNames { get; set; } + + /// + /// The secret containing the Server CA certificate. If not defined, a new secret will be created + /// with a self-signed CA and will be used to generate the TLS certificate ServerTLSSecret.<br /> + /// <br /> + /// Contains:<br /> + /// <br /> + /// - `ca.crt`: CA that should be used to validate the server certificate, + /// used as `sslrootcert` in client connection strings.<br /> + /// - `ca.key`: key used to generate Server SSL certs, if ServerTLSSecret is provided, + /// this can be omitted.<br /> + /// + [JsonPropertyName("serverCASecret")] + public string? ServerCASecret { get; set; } + + /// + /// The secret of type kubernetes.io/tls containing the server TLS certificate and key that will be set as + /// `ssl_cert_file` and `ssl_key_file` so that clients can connect to postgres securely. + /// If not defined, ServerCASecret must provide also `ca.key` and a new secret will be + /// created using the provided CA. + /// + [JsonPropertyName("serverTLSSecret")] + public string? ServerTLSSecret { get; set; } +} + +/// status of the condition, one of True, False, Unknown. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ClusterStatusConditionsStatusEnum +{ + [EnumMember(Value = "True"), JsonStringEnumMemberName("True")] + True, + [EnumMember(Value = "False"), JsonStringEnumMemberName("False")] + False, + [EnumMember(Value = "Unknown"), JsonStringEnumMemberName("Unknown")] + Unknown +} + +/// Condition contains details for one aspect of the current state of this API Resource. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusConditions +{ + /// + /// lastTransitionTime is the last time the condition transitioned from one status to another. + /// This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable. + /// + [JsonPropertyName("lastTransitionTime")] + public required DateTime LastTransitionTime { get; set; } + + /// + /// message is a human readable message indicating details about the transition. + /// This may be an empty string. + /// + [JsonPropertyName("message")] + public required string Message { get; set; } + + /// + /// observedGeneration represents the .metadata.generation that the condition was set based upon. + /// For instance, if .metadata.generation is currently 12, but the .status.conditions[x].observedGeneration is 9, the condition is out of date + /// with respect to the current state of the instance. + /// + [JsonPropertyName("observedGeneration")] + public long? ObservedGeneration { get; set; } + + /// + /// reason contains a programmatic identifier indicating the reason for the condition's last transition. + /// Producers of specific condition types may define expected values and meanings for this field, + /// and whether the values are considered a guaranteed API. + /// The value should be a CamelCase string. + /// This field may not be empty. + /// + [JsonPropertyName("reason")] + public required string Reason { get; set; } + + /// status of the condition, one of True, False, Unknown. + [JsonPropertyName("status")] + public required V1ClusterStatusConditionsStatusEnum Status { get; set; } + + /// type of condition in CamelCase or in foo.example.com/CamelCase. + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The list of resource versions of the configmaps, +/// managed by the operator. Every change here is done in the +/// interest of the instance manager, which will refresh the +/// configmap data +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusConfigMapResourceVersion +{ + /// + /// A map with the versions of all the config maps used to pass metrics. + /// Map keys are the config map names, map values are the versions + /// + [JsonPropertyName("metrics")] + public IDictionary? Metrics { get; set; } +} + +/// InstanceReportedState describes the last reported state of an instance during a reconciliation loop +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusInstancesReportedState +{ + /// IP address of the instance + [JsonPropertyName("ip")] + public string? Ip { get; set; } + + /// indicates if an instance is the primary one + [JsonPropertyName("isPrimary")] + public required bool IsPrimary { get; set; } + + /// indicates on which TimelineId the instance is + [JsonPropertyName("timeLineID")] + public int? TimeLineID { get; set; } +} + +/// PasswordState represents the state of the password of a managed RoleConfiguration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusManagedRolesStatusPasswordStatus +{ + /// the resource version of the password secret + [JsonPropertyName("resourceVersion")] + public string? ResourceVersion { get; set; } + + /// the last transaction ID to affect the role definition in PostgreSQL + [JsonPropertyName("transactionID")] + public long? TransactionID { get; set; } +} + +/// ManagedRolesStatus reports the state of the managed roles in the cluster +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusManagedRolesStatus +{ + /// ByStatus gives the list of roles in each state + [JsonPropertyName("byStatus")] + public IDictionary>? ByStatus { get; set; } + + /// + /// CannotReconcile lists roles that cannot be reconciled in PostgreSQL, + /// with an explanation of the cause + /// + [JsonPropertyName("cannotReconcile")] + public IDictionary>? CannotReconcile { get; set; } + + /// PasswordStatus gives the last transaction id and password secret version for each managed role + [JsonPropertyName("passwordStatus")] + public IDictionary? PasswordStatus { get; set; } +} + +/// +/// ExtensionEnvVar defines an environment variable for a specific extension +/// image volume. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusPgDataImageInfoExtensionsEnv +{ + /// + /// Name of the environment variable to be injected into the + /// PostgreSQL process. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Value of the environment variable. CloudNativePG performs a direct + /// replacement of this value, with support for placeholder expansion. + /// The ${`image_root`} placeholder resolves to the absolute mount path + /// of the extension's volume (e.g., `/extensions/my-extension`). This + /// is particularly useful for allowing applications or libraries to + /// locate specific directories within the mounted image. + /// Unrecognized placeholders are rejected. To include a literal ${...} + /// in the value, escape it as $${...}. + /// + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// The image containing the extension. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusPgDataImageInfoExtensionsImage +{ + /// + /// Policy for pulling OCI objects. Possible values are: + /// Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. + /// Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. + /// IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. + /// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + /// + [JsonPropertyName("pullPolicy")] + public string? PullPolicy { get; set; } + + /// + /// Required: Image or artifact reference to be used. + /// Behaves in the same way as pod.spec.containers[*].image. + /// Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets. + /// More info: https://kubernetes.io/docs/concepts/containers/images + /// This field is optional to allow higher level config management to default or override + /// container images in workload controllers like Deployments and StatefulSets. + /// + [JsonPropertyName("reference")] + public string? Reference { get; set; } +} + +/// +/// ExtensionConfiguration is the configuration used to add +/// PostgreSQL extensions to the Cluster. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusPgDataImageInfoExtensions +{ + /// + /// A list of directories within the image to be appended to the + /// PostgreSQL process's `PATH` environment variable. + /// + [JsonPropertyName("bin_path")] + public IList? BinPath { get; set; } + + /// + /// The list of directories inside the image which should be added to dynamic_library_path. + /// If not defined, defaults to "/lib". + /// + [JsonPropertyName("dynamic_library_path")] + public IList? DynamicLibraryPath { get; set; } + + /// + /// Env is a list of custom environment variables to be set in the + /// PostgreSQL process for this extension. It is the responsibility of the + /// cluster administrator to ensure the variables are correct for the + /// specific extension. Note that changes to these variables require + /// a manual cluster restart to take effect. + /// + [JsonPropertyName("env")] + public IList? Env { get; set; } + + /// + /// The list of directories inside the image which should be added to extension_control_path. + /// If not defined, defaults to "/share". + /// + [JsonPropertyName("extension_control_path")] + public IList? ExtensionControlPath { get; set; } + + /// The image containing the extension. + [JsonPropertyName("image")] + public V1ClusterStatusPgDataImageInfoExtensionsImage? Image { get; set; } + + /// The list of directories inside the image which should be added to ld_library_path. + [JsonPropertyName("ld_library_path")] + public IList? LdLibraryPath { get; set; } + + /// The name of the extension, required + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// PGDataImageInfo contains the details of the latest image that has run on the current data directory. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusPgDataImageInfo +{ + /// Extensions contains the container image extensions available for the current Image + [JsonPropertyName("extensions")] + public IList? Extensions { get; set; } + + /// Image is the image name + [JsonPropertyName("image")] + public required string Image { get; set; } + + /// MajorVersion is the major version of the image + [JsonPropertyName("majorVersion")] + public required int MajorVersion { get; set; } +} + +/// PluginStatus is the status of a loaded plugin +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusPluginStatus +{ + /// + /// BackupCapabilities are the list of capabilities of the + /// plugin regarding the Backup management + /// + [JsonPropertyName("backupCapabilities")] + public IList? BackupCapabilities { get; set; } + + /// + /// Capabilities are the list of capabilities of the + /// plugin + /// + [JsonPropertyName("capabilities")] + public IList? Capabilities { get; set; } + + /// Name is the name of the plugin + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// OperatorCapabilities are the list of capabilities of the + /// plugin regarding the reconciler + /// + [JsonPropertyName("operatorCapabilities")] + public IList? OperatorCapabilities { get; set; } + + /// + /// RestoreJobHookCapabilities are the list of capabilities of the + /// plugin regarding the RestoreJobHook management + /// + [JsonPropertyName("restoreJobHookCapabilities")] + public IList? RestoreJobHookCapabilities { get; set; } + + /// Status contain the status reported by the plugin through the SetStatusInCluster interface + [JsonPropertyName("status")] + public string? Status { get; set; } + + /// + /// Version is the version of the plugin loaded by the + /// latest reconciliation loop + /// + [JsonPropertyName("version")] + public required string Version { get; set; } + + /// + /// WALCapabilities are the list of capabilities of the + /// plugin regarding the WAL management + /// + [JsonPropertyName("walCapabilities")] + public IList? WalCapabilities { get; set; } +} + +/// PodSelectorRefStatus contains the resolved pod IPs for a named selector. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusPodSelectorRefs +{ + /// + /// IPs is the list of pod IPs matching the selector. + /// Each IP is a single address (no CIDR notation). + /// + [JsonPropertyName("ips")] + public IList? Ips { get; set; } + + /// Name corresponds to the name in the spec's PodSelectorRef. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// PgBouncerIntegrationStatus encapsulates the needed integration for the pgbouncer poolers referencing the cluster +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusPoolerIntegrationsPgBouncerIntegration +{ + [JsonPropertyName("secrets")] + public IList? Secrets { get; set; } +} + +/// The integration needed by poolers referencing the cluster +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusPoolerIntegrations +{ + /// PgBouncerIntegrationStatus encapsulates the needed integration for the pgbouncer poolers referencing the cluster + [JsonPropertyName("pgBouncerIntegration")] + public V1ClusterStatusPoolerIntegrationsPgBouncerIntegration? PgBouncerIntegration { get; set; } +} + +/// +/// The list of resource versions of the secrets +/// managed by the operator. Every change here is done in the +/// interest of the instance manager, which will refresh the +/// secret data +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusSecretsResourceVersion +{ + /// The resource version of the "app" user secret + [JsonPropertyName("applicationSecretVersion")] + public string? ApplicationSecretVersion { get; set; } + + /// The resource version of the Barman Endpoint CA if provided + [JsonPropertyName("barmanEndpointCA")] + public string? BarmanEndpointCA { get; set; } + + /// Unused. Retained for compatibility with old versions. + [JsonPropertyName("caSecretVersion")] + public string? CaSecretVersion { get; set; } + + /// The resource version of the PostgreSQL client-side CA secret version + [JsonPropertyName("clientCaSecretVersion")] + public string? ClientCaSecretVersion { get; set; } + + /// The resource versions of the external cluster secrets + [JsonPropertyName("externalClusterSecretVersion")] + public IDictionary? ExternalClusterSecretVersion { get; set; } + + /// The resource versions of the managed roles secrets + [JsonPropertyName("managedRoleSecretVersion")] + public IDictionary? ManagedRoleSecretVersion { get; set; } + + /// + /// A map with the versions of all the secrets used to pass metrics. + /// Map keys are the secret names, map values are the versions + /// + [JsonPropertyName("metrics")] + public IDictionary? Metrics { get; set; } + + /// The resource version of the "streaming_replica" user secret + [JsonPropertyName("replicationSecretVersion")] + public string? ReplicationSecretVersion { get; set; } + + /// The resource version of the PostgreSQL server-side CA secret version + [JsonPropertyName("serverCaSecretVersion")] + public string? ServerCaSecretVersion { get; set; } + + /// The resource version of the PostgreSQL server-side secret version + [JsonPropertyName("serverSecretVersion")] + public string? ServerSecretVersion { get; set; } + + /// The resource version of the "postgres" user secret + [JsonPropertyName("superuserSecretVersion")] + public string? SuperuserSecretVersion { get; set; } +} + +/// SwitchReplicaClusterStatus is the status of the switch to replica cluster +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusSwitchReplicaClusterStatus +{ + /// InProgress indicates if there is an ongoing procedure of switching a cluster to a replica cluster. + [JsonPropertyName("inProgress")] + public bool? InProgress { get; set; } +} + +/// TablespaceState represents the state of a tablespace in a cluster +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusTablespacesStatus +{ + /// Error is the reconciliation error, if any + [JsonPropertyName("error")] + public string? Error { get; set; } + + /// Name is the name of the tablespace + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Owner is the PostgreSQL user owning the tablespace + [JsonPropertyName("owner")] + public string? Owner { get; set; } + + /// State is the latest reconciliation state + [JsonPropertyName("state")] + public required string State { get; set; } +} + +/// Instances topology. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatusTopology +{ + /// Instances contains the pod topology of the instances + [JsonPropertyName("instances")] + public IDictionary>? Instances { get; set; } + + /// + /// NodesUsed represents the count of distinct nodes accommodating the instances. + /// A value of '1' suggests that all instances are hosted on a single node, + /// implying the absence of High Availability (HA). Ideally, this value should + /// be the same as the number of instances in the Postgres HA cluster, implying + /// shared nothing architecture on the compute side. + /// + [JsonPropertyName("nodesUsed")] + public int? NodesUsed { get; set; } + + /// + /// SuccessfullyExtracted indicates if the topology data was extract. It is useful to enact fallback behaviors + /// in synchronous replica election in case of failures + /// + [JsonPropertyName("successfullyExtracted")] + public bool? SuccessfullyExtracted { get; set; } +} + +/// +/// Most recently observed status of the cluster. This data may not be up +/// to date. Populated by the system. Read-only. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ClusterStatus +{ + /// AvailableArchitectures reports the available architectures of a cluster + [JsonPropertyName("availableArchitectures")] + public IList? AvailableArchitectures { get; set; } + + /// The configuration for the CA and related certificates, initialized with defaults. + [JsonPropertyName("certificates")] + public V1ClusterStatusCertificates? Certificates { get; set; } + + /// The commit hash number of which this operator running + [JsonPropertyName("cloudNativePGCommitHash")] + public string? CloudNativePGCommitHash { get; set; } + + /// The hash of the binary of the operator + [JsonPropertyName("cloudNativePGOperatorHash")] + public string? CloudNativePGOperatorHash { get; set; } + + /// Conditions for cluster object + [JsonPropertyName("conditions")] + public IList? Conditions { get; set; } + + /// + /// The list of resource versions of the configmaps, + /// managed by the operator. Every change here is done in the + /// interest of the instance manager, which will refresh the + /// configmap data + /// + [JsonPropertyName("configMapResourceVersion")] + public V1ClusterStatusConfigMapResourceVersion? ConfigMapResourceVersion { get; set; } + + /// Current primary instance + [JsonPropertyName("currentPrimary")] + public string? CurrentPrimary { get; set; } + + /// + /// The timestamp when the primary was detected to be unhealthy + /// This field is reported when `.spec.failoverDelay` is populated or during online upgrades + /// + [JsonPropertyName("currentPrimaryFailingSinceTimestamp")] + public string? CurrentPrimaryFailingSinceTimestamp { get; set; } + + /// The timestamp when the last actual promotion to primary has occurred + [JsonPropertyName("currentPrimaryTimestamp")] + public string? CurrentPrimaryTimestamp { get; set; } + + /// + /// List of all the PVCs created by this cluster and still available + /// which are not attached to a Pod + /// + [JsonPropertyName("danglingPVC")] + public IList? DanglingPVC { get; set; } + + /// + /// DemotionToken is a JSON token containing the information + /// from pg_controldata such as Database system identifier, Latest checkpoint's + /// TimeLineID, Latest checkpoint's REDO location, Latest checkpoint's REDO + /// WAL file, and Time of latest checkpoint + /// + [JsonPropertyName("demotionToken")] + public string? DemotionToken { get; set; } + + /// + /// The first recoverability point, stored as a date in RFC3339 format. + /// This field is calculated from the content of FirstRecoverabilityPointByMethod. + /// + /// Deprecated: the field is not set for backup plugins. + /// + [JsonPropertyName("firstRecoverabilityPoint")] + public string? FirstRecoverabilityPoint { get; set; } + + /// + /// The first recoverability point, stored as a date in RFC3339 format, per backup method type. + /// + /// Deprecated: the field is not set for backup plugins. + /// + [JsonPropertyName("firstRecoverabilityPointByMethod")] + public IDictionary? FirstRecoverabilityPointByMethod { get; set; } + + /// List of all the PVCs not dangling nor initializing + [JsonPropertyName("healthyPVC")] + public IList? HealthyPVC { get; set; } + + /// Image contains the image name used by the pods + [JsonPropertyName("image")] + public string? Image { get; set; } + + /// List of all the PVCs that are being initialized by this cluster + [JsonPropertyName("initializingPVC")] + public IList? InitializingPVC { get; set; } + + /// List of instance names in the cluster + [JsonPropertyName("instanceNames")] + public IList? InstanceNames { get; set; } + + /// The total number of PVC Groups detected in the cluster. It may differ from the number of existing instance pods. + [JsonPropertyName("instances")] + public int? Instances { get; set; } + + /// The reported state of the instances during the last reconciliation loop + [JsonPropertyName("instancesReportedState")] + public IDictionary? InstancesReportedState { get; set; } + + /// InstancesStatus indicates in which status the instances are + [JsonPropertyName("instancesStatus")] + public IDictionary>? InstancesStatus { get; set; } + + /// How many Jobs have been created by this cluster + [JsonPropertyName("jobCount")] + public int? JobCount { get; set; } + + /// + /// Last failed backup, stored as a date in RFC3339 format. + /// + /// Deprecated: the field is not set for backup plugins. + /// + [JsonPropertyName("lastFailedBackup")] + public string? LastFailedBackup { get; set; } + + /// + /// LastPromotionToken is the last verified promotion token that + /// was used to promote a replica cluster + /// + [JsonPropertyName("lastPromotionToken")] + public string? LastPromotionToken { get; set; } + + /// + /// Last successful backup, stored as a date in RFC3339 format. + /// This field is calculated from the content of LastSuccessfulBackupByMethod. + /// + /// Deprecated: the field is not set for backup plugins. + /// + [JsonPropertyName("lastSuccessfulBackup")] + public string? LastSuccessfulBackup { get; set; } + + /// + /// Last successful backup, stored as a date in RFC3339 format, per backup method type. + /// + /// Deprecated: the field is not set for backup plugins. + /// + [JsonPropertyName("lastSuccessfulBackupByMethod")] + public IDictionary? LastSuccessfulBackupByMethod { get; set; } + + /// ID of the latest generated node (used to avoid node name clashing) + [JsonPropertyName("latestGeneratedNode")] + public int? LatestGeneratedNode { get; set; } + + /// ManagedRolesStatus reports the state of the managed roles in the cluster + [JsonPropertyName("managedRolesStatus")] + public V1ClusterStatusManagedRolesStatus? ManagedRolesStatus { get; set; } + + /// OnlineUpdateEnabled shows if the online upgrade is enabled inside the cluster + [JsonPropertyName("onlineUpdateEnabled")] + public bool? OnlineUpdateEnabled { get; set; } + + /// PGDataImageInfo contains the details of the latest image that has run on the current data directory. + [JsonPropertyName("pgDataImageInfo")] + public V1ClusterStatusPgDataImageInfo? PgDataImageInfo { get; set; } + + /// Current phase of the cluster + [JsonPropertyName("phase")] + public string? Phase { get; set; } + + /// Reason for the current phase + [JsonPropertyName("phaseReason")] + public string? PhaseReason { get; set; } + + /// PluginStatus is the status of the loaded plugins + [JsonPropertyName("pluginStatus")] + public IList? PluginStatus { get; set; } + + /// + /// PodSelectorRefs contains the resolved pod IPs for each named selector + /// defined in spec.podSelectorRefs. + /// + [JsonPropertyName("podSelectorRefs")] + public IList? PodSelectorRefs { get; set; } + + /// The integration needed by poolers referencing the cluster + [JsonPropertyName("poolerIntegrations")] + public V1ClusterStatusPoolerIntegrations? PoolerIntegrations { get; set; } + + /// How many PVCs have been created by this cluster + [JsonPropertyName("pvcCount")] + public int? PvcCount { get; set; } + + /// Current list of read pods + [JsonPropertyName("readService")] + public string? ReadService { get; set; } + + /// The total number of ready instances in the cluster. It is equal to the number of ready instance pods. + [JsonPropertyName("readyInstances")] + public int? ReadyInstances { get; set; } + + /// List of all the PVCs that have ResizingPVC condition. + [JsonPropertyName("resizingPVC")] + public IList? ResizingPVC { get; set; } + + /// + /// The list of resource versions of the secrets + /// managed by the operator. Every change here is done in the + /// interest of the instance manager, which will refresh the + /// secret data + /// + [JsonPropertyName("secretsResourceVersion")] + public V1ClusterStatusSecretsResourceVersion? SecretsResourceVersion { get; set; } + + /// SwitchReplicaClusterStatus is the status of the switch to replica cluster + [JsonPropertyName("switchReplicaClusterStatus")] + public V1ClusterStatusSwitchReplicaClusterStatus? SwitchReplicaClusterStatus { get; set; } + + /// SystemID is the latest detected PostgreSQL SystemID + [JsonPropertyName("systemID")] + public string? SystemID { get; set; } + + /// TablespacesStatus reports the state of the declarative tablespaces in the cluster + [JsonPropertyName("tablespacesStatus")] + public IList? TablespacesStatus { get; set; } + + /// + /// Target primary instance, this is different from the previous one + /// during a switchover or a failover + /// + [JsonPropertyName("targetPrimary")] + public string? TargetPrimary { get; set; } + + /// The timestamp when the last request for a new primary has occurred + [JsonPropertyName("targetPrimaryTimestamp")] + public string? TargetPrimaryTimestamp { get; set; } + + /// The timeline of the Postgres cluster + [JsonPropertyName("timelineID")] + public int? TimelineID { get; set; } + + /// Instances topology. + [JsonPropertyName("topology")] + public V1ClusterStatusTopology? Topology { get; set; } + + /// List of all the PVCs that are unusable because another PVC is missing + [JsonPropertyName("unusablePVC")] + public IList? UnusablePVC { get; set; } + + /// Current write pod + [JsonPropertyName("writeService")] + public string? WriteService { get; set; } +} + +/// +/// Cluster defines the API schema for a highly available PostgreSQL database cluster +/// managed by CloudNativePG. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1Cluster : IKubernetesObject, ISpec, IStatus +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "Cluster"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "clusters"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "Cluster"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// + /// Specification of the desired behavior of the cluster. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public required V1ClusterSpec Spec { get; set; } + + /// + /// Most recently observed status of the cluster. This data may not be up + /// to date. Populated by the system. Read-only. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("status")] + public V1ClusterStatus? Status { get; set; } +} \ No newline at end of file diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.databases.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.databases.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..5c2083f --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.databases.postgresql.cnpg.io.g.cs @@ -0,0 +1,739 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// Database is the Schema for the databases API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1DatabaseList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "DatabaseList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "databases"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "DatabaseList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1Database objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// The name of the PostgreSQL cluster hosting the database. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpecCluster +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// The policy for end-of-life maintenance of this database. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecDatabaseReclaimPolicyEnum +{ + [EnumMember(Value = "delete"), JsonStringEnumMemberName("delete")] + Delete, + [EnumMember(Value = "retain"), JsonStringEnumMemberName("retain")] + Retain +} + +/// Ensure the PostgreSQL database is `present` or `absent` - defaults to "present". +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecEnsureEnum +{ + [EnumMember(Value = "present"), JsonStringEnumMemberName("present")] + Present, + [EnumMember(Value = "absent"), JsonStringEnumMemberName("absent")] + Absent +} + +/// +/// Specifies whether an object (e.g schema) should be present or absent +/// in the database. If set to `present`, the object will be created if +/// it does not exist. If set to `absent`, the extension/schema will be +/// removed if it exists. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecExtensionsEnsureEnum +{ + [EnumMember(Value = "present"), JsonStringEnumMemberName("present")] + Present, + [EnumMember(Value = "absent"), JsonStringEnumMemberName("absent")] + Absent +} + +/// ExtensionSpec configures an extension in a database +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpecExtensions +{ + /// + /// Specifies whether an object (e.g schema) should be present or absent + /// in the database. If set to `present`, the object will be created if + /// it does not exist. If set to `absent`, the extension/schema will be + /// removed if it exists. + /// + [JsonPropertyName("ensure")] + public V1DatabaseSpecExtensionsEnsureEnum? Ensure { get; set; } + + /// Name of the object (extension, schema, FDW, server) + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// The name of the schema in which to install the extension's objects, + /// in case the extension allows its contents to be relocated. If not + /// specified (default), and the extension's control file does not + /// specify a schema either, the current default object creation schema + /// is used. + /// + [JsonPropertyName("schema")] + public string? Schema { get; set; } + + /// + /// The version of the extension to install. If empty, the operator will + /// install the default version (whatever is specified in the + /// extension's control file) + /// + [JsonPropertyName("version")] + public string? Version { get; set; } +} + +/// +/// Specifies whether an object (e.g schema) should be present or absent +/// in the database. If set to `present`, the object will be created if +/// it does not exist. If set to `absent`, the extension/schema will be +/// removed if it exists. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecFdwsEnsureEnum +{ + [EnumMember(Value = "present"), JsonStringEnumMemberName("present")] + Present, + [EnumMember(Value = "absent"), JsonStringEnumMemberName("absent")] + Absent +} + +/// +/// Specifies whether an option should be present or absent in +/// the database. If set to `present`, the option will be +/// created if it does not exist. If set to `absent`, the +/// option will be removed if it exists. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecFdwsOptionsEnsureEnum +{ + [EnumMember(Value = "present"), JsonStringEnumMemberName("present")] + Present, + [EnumMember(Value = "absent"), JsonStringEnumMemberName("absent")] + Absent +} + +/// OptionSpec holds the name, value and the ensure field for an option +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpecFdwsOptions +{ + /// + /// Specifies whether an option should be present or absent in + /// the database. If set to `present`, the option will be + /// created if it does not exist. If set to `absent`, the + /// option will be removed if it exists. + /// + [JsonPropertyName("ensure")] + public V1DatabaseSpecFdwsOptionsEnsureEnum? Ensure { get; set; } + + /// Name of the option + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Value of the option + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// The type of usage +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecFdwsUsageTypeEnum +{ + [EnumMember(Value = "grant"), JsonStringEnumMemberName("grant")] + Grant, + [EnumMember(Value = "revoke"), JsonStringEnumMemberName("revoke")] + Revoke +} + +/// UsageSpec configures a usage for a foreign data wrapper +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpecFdwsUsage +{ + /// Name of the usage + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The type of usage + [JsonPropertyName("type")] + public V1DatabaseSpecFdwsUsageTypeEnum? Type { get; set; } +} + +/// FDWSpec configures an Foreign Data Wrapper in a database +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpecFdws +{ + /// + /// Specifies whether an object (e.g schema) should be present or absent + /// in the database. If set to `present`, the object will be created if + /// it does not exist. If set to `absent`, the extension/schema will be + /// removed if it exists. + /// + [JsonPropertyName("ensure")] + public V1DatabaseSpecFdwsEnsureEnum? Ensure { get; set; } + + /// + /// Name of the handler function (e.g., "postgres_fdw_handler"). + /// This will be empty if no handler is specified. In that case, + /// the default handler is registered when the FDW extension is created. + /// + [JsonPropertyName("handler")] + public string? Handler { get; set; } + + /// Name of the object (extension, schema, FDW, server) + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Options specifies the configuration options for the FDW. + [JsonPropertyName("options")] + public IList? Options { get; set; } + + /// + /// Owner specifies the database role that will own the Foreign Data Wrapper. + /// The role must have superuser privileges in the target database. + /// + [JsonPropertyName("owner")] + public string? Owner { get; set; } + + /// List of roles for which `USAGE` privileges on the FDW are granted or revoked. + [JsonPropertyName("usage")] + public IList? Usage { get; set; } + + /// + /// Name of the validator function (e.g., "postgres_fdw_validator"). + /// This will be empty if no validator is specified. In that case, + /// the default validator is registered when the FDW extension is created. + /// + [JsonPropertyName("validator")] + public string? Validator { get; set; } +} + +/// +/// Specifies whether an object (e.g schema) should be present or absent +/// in the database. If set to `present`, the object will be created if +/// it does not exist. If set to `absent`, the extension/schema will be +/// removed if it exists. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecSchemasEnsureEnum +{ + [EnumMember(Value = "present"), JsonStringEnumMemberName("present")] + Present, + [EnumMember(Value = "absent"), JsonStringEnumMemberName("absent")] + Absent +} + +/// SchemaSpec configures a schema in a database +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpecSchemas +{ + /// + /// Specifies whether an object (e.g schema) should be present or absent + /// in the database. If set to `present`, the object will be created if + /// it does not exist. If set to `absent`, the extension/schema will be + /// removed if it exists. + /// + [JsonPropertyName("ensure")] + public V1DatabaseSpecSchemasEnsureEnum? Ensure { get; set; } + + /// Name of the object (extension, schema, FDW, server) + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// The role name of the user who owns the schema inside PostgreSQL. + /// It maps to the `AUTHORIZATION` parameter of `CREATE SCHEMA` and the + /// `OWNER TO` command of `ALTER SCHEMA`. + /// + [JsonPropertyName("owner")] + public string? Owner { get; set; } +} + +/// +/// Specifies whether an object (e.g schema) should be present or absent +/// in the database. If set to `present`, the object will be created if +/// it does not exist. If set to `absent`, the extension/schema will be +/// removed if it exists. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecServersEnsureEnum +{ + [EnumMember(Value = "present"), JsonStringEnumMemberName("present")] + Present, + [EnumMember(Value = "absent"), JsonStringEnumMemberName("absent")] + Absent +} + +/// +/// Specifies whether an option should be present or absent in +/// the database. If set to `present`, the option will be +/// created if it does not exist. If set to `absent`, the +/// option will be removed if it exists. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecServersOptionsEnsureEnum +{ + [EnumMember(Value = "present"), JsonStringEnumMemberName("present")] + Present, + [EnumMember(Value = "absent"), JsonStringEnumMemberName("absent")] + Absent +} + +/// OptionSpec holds the name, value and the ensure field for an option +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpecServersOptions +{ + /// + /// Specifies whether an option should be present or absent in + /// the database. If set to `present`, the option will be + /// created if it does not exist. If set to `absent`, the + /// option will be removed if it exists. + /// + [JsonPropertyName("ensure")] + public V1DatabaseSpecServersOptionsEnsureEnum? Ensure { get; set; } + + /// Name of the option + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Value of the option + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// The type of usage +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1DatabaseSpecServersUsageTypeEnum +{ + [EnumMember(Value = "grant"), JsonStringEnumMemberName("grant")] + Grant, + [EnumMember(Value = "revoke"), JsonStringEnumMemberName("revoke")] + Revoke +} + +/// UsageSpec configures a usage for a foreign data wrapper +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpecServersUsage +{ + /// Name of the usage + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The type of usage + [JsonPropertyName("type")] + public V1DatabaseSpecServersUsageTypeEnum? Type { get; set; } +} + +/// ServerSpec configures a server of a foreign data wrapper +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpecServers +{ + /// + /// Specifies whether an object (e.g schema) should be present or absent + /// in the database. If set to `present`, the object will be created if + /// it does not exist. If set to `absent`, the extension/schema will be + /// removed if it exists. + /// + [JsonPropertyName("ensure")] + public V1DatabaseSpecServersEnsureEnum? Ensure { get; set; } + + /// The name of the Foreign Data Wrapper (FDW) + [JsonPropertyName("fdw")] + public required string Fdw { get; set; } + + /// Name of the object (extension, schema, FDW, server) + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Options specifies the configuration options for the server + /// (key is the option name, value is the option value). + /// + [JsonPropertyName("options")] + public IList? Options { get; set; } + + /// List of roles for which `USAGE` privileges on the server are granted or revoked. + [JsonPropertyName("usage")] + public IList? Usage { get; set; } +} + +/// +/// Specification of the desired Database. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseSpec +{ + /// + /// Maps to the `ALLOW_CONNECTIONS` parameter of `CREATE DATABASE` and + /// `ALTER DATABASE`. If false then no one can connect to this database. + /// + [JsonPropertyName("allowConnections")] + public bool? AllowConnections { get; set; } + + /// + /// Maps to the `BUILTIN_LOCALE` parameter of `CREATE DATABASE`. This + /// setting cannot be changed. Specifies the locale name when the + /// builtin provider is used. This option requires `localeProvider` to + /// be set to `builtin`. Available from PostgreSQL 17. + /// + [JsonPropertyName("builtinLocale")] + public string? BuiltinLocale { get; set; } + + /// The name of the PostgreSQL cluster hosting the database. + [JsonPropertyName("cluster")] + public required V1DatabaseSpecCluster Cluster { get; set; } + + /// + /// Maps to the `COLLATION_VERSION` parameter of `CREATE DATABASE`. This + /// setting cannot be changed. + /// + [JsonPropertyName("collationVersion")] + public string? CollationVersion { get; set; } + + /// + /// Maps to the `CONNECTION LIMIT` clause of `CREATE DATABASE` and + /// `ALTER DATABASE`. How many concurrent connections can be made to + /// this database. -1 (the default) means no limit. + /// + [JsonPropertyName("connectionLimit")] + public int? ConnectionLimit { get; set; } + + /// The policy for end-of-life maintenance of this database. + [JsonPropertyName("databaseReclaimPolicy")] + public V1DatabaseSpecDatabaseReclaimPolicyEnum? DatabaseReclaimPolicy { get; set; } + + /// + /// Maps to the `ENCODING` parameter of `CREATE DATABASE`. This setting + /// cannot be changed. Character set encoding to use in the database. + /// + [JsonPropertyName("encoding")] + public string? Encoding { get; set; } + + /// Ensure the PostgreSQL database is `present` or `absent` - defaults to "present". + [JsonPropertyName("ensure")] + public V1DatabaseSpecEnsureEnum? Ensure { get; set; } + + /// The list of extensions to be managed in the database + [JsonPropertyName("extensions")] + public IList? Extensions { get; set; } + + /// The list of foreign data wrappers to be managed in the database + [JsonPropertyName("fdws")] + public IList? Fdws { get; set; } + + /// + /// Maps to the `ICU_LOCALE` parameter of `CREATE DATABASE`. This + /// setting cannot be changed. Specifies the ICU locale when the ICU + /// provider is used. This option requires `localeProvider` to be set to + /// `icu`. Available from PostgreSQL 15. + /// + [JsonPropertyName("icuLocale")] + public string? IcuLocale { get; set; } + + /// + /// Maps to the `ICU_RULES` parameter of `CREATE DATABASE`. This setting + /// cannot be changed. Specifies additional collation rules to customize + /// the behavior of the default collation. This option requires + /// `localeProvider` to be set to `icu`. Available from PostgreSQL 16. + /// + [JsonPropertyName("icuRules")] + public string? IcuRules { get; set; } + + /// + /// Maps to the `IS_TEMPLATE` parameter of `CREATE DATABASE` and `ALTER + /// DATABASE`. If true, this database is considered a template and can + /// be cloned by any user with `CREATEDB` privileges. + /// + [JsonPropertyName("isTemplate")] + public bool? IsTemplate { get; set; } + + /// + /// Maps to the `LOCALE` parameter of `CREATE DATABASE`. This setting + /// cannot be changed. Sets the default collation order and character + /// classification in the new database. + /// + [JsonPropertyName("locale")] + public string? Locale { get; set; } + + /// + /// Maps to the `LC_CTYPE` parameter of `CREATE DATABASE`. This setting + /// cannot be changed. + /// + [JsonPropertyName("localeCType")] + public string? LocaleCType { get; set; } + + /// + /// Maps to the `LC_COLLATE` parameter of `CREATE DATABASE`. This + /// setting cannot be changed. + /// + [JsonPropertyName("localeCollate")] + public string? LocaleCollate { get; set; } + + /// + /// Maps to the `LOCALE_PROVIDER` parameter of `CREATE DATABASE`. This + /// setting cannot be changed. This option sets the locale provider for + /// databases created in the new cluster. Available from PostgreSQL 16. + /// + [JsonPropertyName("localeProvider")] + public string? LocaleProvider { get; set; } + + /// The name of the database to create inside PostgreSQL. This setting cannot be changed. + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Maps to the `OWNER` parameter of `CREATE DATABASE`. + /// Maps to the `OWNER TO` command of `ALTER DATABASE`. + /// The role name of the user who owns the database inside PostgreSQL. + /// + [JsonPropertyName("owner")] + public required string Owner { get; set; } + + /// The list of schemas to be managed in the database + [JsonPropertyName("schemas")] + public IList? Schemas { get; set; } + + /// The list of foreign servers to be managed in the database + [JsonPropertyName("servers")] + public IList? Servers { get; set; } + + /// + /// Maps to the `TABLESPACE` parameter of `CREATE DATABASE`. + /// Maps to the `SET TABLESPACE` command of `ALTER DATABASE`. + /// The name of the tablespace (in PostgreSQL) that will be associated + /// with the new database. This tablespace will be the default + /// tablespace used for objects created in this database. + /// + [JsonPropertyName("tablespace")] + public string? Tablespace { get; set; } + + /// + /// Maps to the `TEMPLATE` parameter of `CREATE DATABASE`. This setting + /// cannot be changed. The name of the template from which to create + /// this database. + /// + [JsonPropertyName("template")] + public string? Template { get; set; } +} + +/// DatabaseObjectStatus is the status of the managed database objects +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseStatusExtensions +{ + /// + /// True of the object has been installed successfully in + /// the database + /// + [JsonPropertyName("applied")] + public required bool Applied { get; set; } + + /// Message is the object reconciliation message + [JsonPropertyName("message")] + public string? Message { get; set; } + + /// The name of the object + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// DatabaseObjectStatus is the status of the managed database objects +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseStatusFdws +{ + /// + /// True of the object has been installed successfully in + /// the database + /// + [JsonPropertyName("applied")] + public required bool Applied { get; set; } + + /// Message is the object reconciliation message + [JsonPropertyName("message")] + public string? Message { get; set; } + + /// The name of the object + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// DatabaseObjectStatus is the status of the managed database objects +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseStatusSchemas +{ + /// + /// True of the object has been installed successfully in + /// the database + /// + [JsonPropertyName("applied")] + public required bool Applied { get; set; } + + /// Message is the object reconciliation message + [JsonPropertyName("message")] + public string? Message { get; set; } + + /// The name of the object + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// DatabaseObjectStatus is the status of the managed database objects +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseStatusServers +{ + /// + /// True of the object has been installed successfully in + /// the database + /// + [JsonPropertyName("applied")] + public required bool Applied { get; set; } + + /// Message is the object reconciliation message + [JsonPropertyName("message")] + public string? Message { get; set; } + + /// The name of the object + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// Most recently observed status of the Database. This data may not be up to +/// date. Populated by the system. Read-only. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1DatabaseStatus +{ + /// Applied is true if the database was reconciled correctly + [JsonPropertyName("applied")] + public bool? Applied { get; set; } + + /// Extensions is the status of the managed extensions + [JsonPropertyName("extensions")] + public IList? Extensions { get; set; } + + /// FDWs is the status of the managed FDWs + [JsonPropertyName("fdws")] + public IList? Fdws { get; set; } + + /// Message is the reconciliation output message + [JsonPropertyName("message")] + public string? Message { get; set; } + + /// + /// A sequence number representing the latest + /// desired state that was synchronized + /// + [JsonPropertyName("observedGeneration")] + public long? ObservedGeneration { get; set; } + + /// Schemas is the status of the managed schemas + [JsonPropertyName("schemas")] + public IList? Schemas { get; set; } + + /// Servers is the status of the managed servers + [JsonPropertyName("servers")] + public IList? Servers { get; set; } +} + +/// Database is the Schema for the databases API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1Database : IKubernetesObject, ISpec, IStatus +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "Database"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "databases"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "Database"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// + /// Specification of the desired Database. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public required V1DatabaseSpec Spec { get; set; } + + /// + /// Most recently observed status of the Database. This data may not be up to + /// date. Populated by the system. Read-only. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("status")] + public V1DatabaseStatus? Status { get; set; } +} \ No newline at end of file diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.failoverquorums.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.failoverquorums.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..b5780e1 --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.failoverquorums.postgresql.cnpg.io.g.cs @@ -0,0 +1,105 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// +/// FailoverQuorum contains the information about the current failover +/// quorum status of a PG cluster. It is updated by the instance manager +/// of the primary node and reset to zero by the operator to trigger +/// an update. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1FailoverQuorumList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "FailoverQuorumList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "failoverquorums"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "FailoverQuorumList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1FailoverQuorum objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// Most recently observed status of the failover quorum. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1FailoverQuorumStatus +{ + /// Contains the latest reported Method value. + [JsonPropertyName("method")] + public string? Method { get; set; } + + /// + /// Primary is the name of the primary instance that updated + /// this object the latest time. + /// + [JsonPropertyName("primary")] + public string? Primary { get; set; } + + /// + /// StandbyNames is the list of potentially synchronous + /// instance names. + /// + [JsonPropertyName("standbyNames")] + public IList? StandbyNames { get; set; } + + /// + /// StandbyNumber is the number of synchronous standbys that transactions + /// need to wait for replies from. + /// + [JsonPropertyName("standbyNumber")] + public int? StandbyNumber { get; set; } +} + +/// +/// FailoverQuorum contains the information about the current failover +/// quorum status of a PG cluster. It is updated by the instance manager +/// of the primary node and reset to zero by the operator to trigger +/// an update. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1FailoverQuorum : IKubernetesObject, IStatus +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "FailoverQuorum"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "failoverquorums"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "FailoverQuorum"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// Most recently observed status of the failover quorum. + [JsonPropertyName("status")] + public V1FailoverQuorumStatus? Status { get; set; } +} \ No newline at end of file diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.imagecatalogs.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.imagecatalogs.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..90a2044 --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.imagecatalogs.postgresql.cnpg.io.g.cs @@ -0,0 +1,206 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// ImageCatalog is the Schema for the imagecatalogs API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1ImageCatalogList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "ImageCatalogList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "imagecatalogs"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "ImageCatalogList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1ImageCatalog objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// +/// ExtensionEnvVar defines an environment variable for a specific extension +/// image volume. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ImageCatalogSpecImagesExtensionsEnv +{ + /// + /// Name of the environment variable to be injected into the + /// PostgreSQL process. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Value of the environment variable. CloudNativePG performs a direct + /// replacement of this value, with support for placeholder expansion. + /// The ${`image_root`} placeholder resolves to the absolute mount path + /// of the extension's volume (e.g., `/extensions/my-extension`). This + /// is particularly useful for allowing applications or libraries to + /// locate specific directories within the mounted image. + /// Unrecognized placeholders are rejected. To include a literal ${...} + /// in the value, escape it as $${...}. + /// + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// The image containing the extension. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ImageCatalogSpecImagesExtensionsImage +{ + /// + /// Policy for pulling OCI objects. Possible values are: + /// Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. + /// Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. + /// IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. + /// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + /// + [JsonPropertyName("pullPolicy")] + public string? PullPolicy { get; set; } + + /// + /// Required: Image or artifact reference to be used. + /// Behaves in the same way as pod.spec.containers[*].image. + /// Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets. + /// More info: https://kubernetes.io/docs/concepts/containers/images + /// This field is optional to allow higher level config management to default or override + /// container images in workload controllers like Deployments and StatefulSets. + /// + [JsonPropertyName("reference")] + public string? Reference { get; set; } +} + +/// +/// ExtensionConfiguration is the configuration used to add +/// PostgreSQL extensions to the Cluster. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ImageCatalogSpecImagesExtensions +{ + /// + /// A list of directories within the image to be appended to the + /// PostgreSQL process's `PATH` environment variable. + /// + [JsonPropertyName("bin_path")] + public IList? BinPath { get; set; } + + /// + /// The list of directories inside the image which should be added to dynamic_library_path. + /// If not defined, defaults to "/lib". + /// + [JsonPropertyName("dynamic_library_path")] + public IList? DynamicLibraryPath { get; set; } + + /// + /// Env is a list of custom environment variables to be set in the + /// PostgreSQL process for this extension. It is the responsibility of the + /// cluster administrator to ensure the variables are correct for the + /// specific extension. Note that changes to these variables require + /// a manual cluster restart to take effect. + /// + [JsonPropertyName("env")] + public IList? Env { get; set; } + + /// + /// The list of directories inside the image which should be added to extension_control_path. + /// If not defined, defaults to "/share". + /// + [JsonPropertyName("extension_control_path")] + public IList? ExtensionControlPath { get; set; } + + /// The image containing the extension. + [JsonPropertyName("image")] + public V1ImageCatalogSpecImagesExtensionsImage? Image { get; set; } + + /// The list of directories inside the image which should be added to ld_library_path. + [JsonPropertyName("ld_library_path")] + public IList? LdLibraryPath { get; set; } + + /// The name of the extension, required + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// CatalogImage defines the image and major version +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ImageCatalogSpecImages +{ + /// The configuration of the extensions to be added + [JsonPropertyName("extensions")] + public IList? Extensions { get; set; } + + /// The image reference + [JsonPropertyName("image")] + public required string Image { get; set; } + + /// The PostgreSQL major version of the image. Must be unique within the catalog. + [JsonPropertyName("major")] + public required int Major { get; set; } +} + +/// +/// Specification of the desired behavior of the ImageCatalog. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ImageCatalogSpec +{ + /// List of CatalogImages available in the catalog + [JsonPropertyName("images")] + public required IList Images { get; set; } +} + +/// ImageCatalog is the Schema for the imagecatalogs API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1ImageCatalog : IKubernetesObject, ISpec +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "ImageCatalog"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "imagecatalogs"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "ImageCatalog"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// + /// Specification of the desired behavior of the ImageCatalog. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public required V1ImageCatalogSpec Spec { get; set; } +} \ No newline at end of file diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.poolers.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.poolers.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..2818bf3 --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.poolers.postgresql.cnpg.io.g.cs @@ -0,0 +1,11797 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// Pooler is the Schema for the poolers API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1PoolerList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "PoolerList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "poolers"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "PoolerList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1Pooler objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// +/// This is the cluster reference on which the Pooler will work. +/// Pooler name should never match with any cluster name within the same namespace. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecCluster +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// Rolling update config params. Present only if DeploymentStrategyType = +/// RollingUpdate. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecDeploymentStrategyRollingUpdate +{ + /// + /// The maximum number of pods that can be scheduled above the desired number of + /// pods. + /// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). + /// This can not be 0 if MaxUnavailable is 0. + /// Absolute number is calculated from percentage by rounding up. + /// Defaults to 25%. + /// Example: when this is set to 30%, the new ReplicaSet can be scaled up immediately when + /// the rolling update starts, such that the total number of old and new pods do not exceed + /// 130% of desired pods. Once old pods have been killed, + /// new ReplicaSet can be scaled up further, ensuring that total number of pods running + /// at any time during the update is at most 130% of desired pods. + /// + [JsonPropertyName("maxSurge")] + public IntOrString? MaxSurge { get; set; } + + /// + /// The maximum number of pods that can be unavailable during the update. + /// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). + /// Absolute number is calculated from percentage by rounding down. + /// This can not be 0 if MaxSurge is 0. + /// Defaults to 25%. + /// Example: when this is set to 30%, the old ReplicaSet can be scaled down to 70% of desired pods + /// immediately when the rolling update starts. Once new pods are ready, old ReplicaSet + /// can be scaled down further, followed by scaling up the new ReplicaSet, ensuring + /// that the total number of pods available at all times during the update is at + /// least 70% of desired pods. + /// + [JsonPropertyName("maxUnavailable")] + public IntOrString? MaxUnavailable { get; set; } +} + +/// The deployment strategy to use for pgbouncer to replace existing pods with new ones +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecDeploymentStrategy +{ + /// + /// Rolling update config params. Present only if DeploymentStrategyType = + /// RollingUpdate. + /// + [JsonPropertyName("rollingUpdate")] + public V1PoolerSpecDeploymentStrategyRollingUpdate? RollingUpdate { get; set; } + + /// Type of deployment. Can be "Recreate" or "RollingUpdate". Default is RollingUpdate. + [JsonPropertyName("type")] + public string? Type { get; set; } +} + +/// +/// action to perform based on the regex matching. +/// +/// `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. +/// `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. +/// +/// Default: "Replace" +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1PoolerSpecMonitoringPodMonitorMetricRelabelingsActionEnum +{ + [EnumMember(Value = "replace"), JsonStringEnumMemberName("replace")] + Replace, + [EnumMember(Value = "Replace"), JsonStringEnumMemberName("Replace")] + Replace1, + [EnumMember(Value = "keep"), JsonStringEnumMemberName("keep")] + Keep, + [EnumMember(Value = "Keep"), JsonStringEnumMemberName("Keep")] + Keep1, + [EnumMember(Value = "drop"), JsonStringEnumMemberName("drop")] + Drop, + [EnumMember(Value = "Drop"), JsonStringEnumMemberName("Drop")] + Drop1, + [EnumMember(Value = "hashmod"), JsonStringEnumMemberName("hashmod")] + Hashmod, + [EnumMember(Value = "HashMod"), JsonStringEnumMemberName("HashMod")] + HashMod, + [EnumMember(Value = "labelmap"), JsonStringEnumMemberName("labelmap")] + Labelmap, + [EnumMember(Value = "LabelMap"), JsonStringEnumMemberName("LabelMap")] + LabelMap, + [EnumMember(Value = "labeldrop"), JsonStringEnumMemberName("labeldrop")] + Labeldrop, + [EnumMember(Value = "LabelDrop"), JsonStringEnumMemberName("LabelDrop")] + LabelDrop, + [EnumMember(Value = "labelkeep"), JsonStringEnumMemberName("labelkeep")] + Labelkeep, + [EnumMember(Value = "LabelKeep"), JsonStringEnumMemberName("LabelKeep")] + LabelKeep, + [EnumMember(Value = "lowercase"), JsonStringEnumMemberName("lowercase")] + Lowercase, + [EnumMember(Value = "Lowercase"), JsonStringEnumMemberName("Lowercase")] + Lowercase1, + [EnumMember(Value = "uppercase"), JsonStringEnumMemberName("uppercase")] + Uppercase, + [EnumMember(Value = "Uppercase"), JsonStringEnumMemberName("Uppercase")] + Uppercase1, + [EnumMember(Value = "keepequal"), JsonStringEnumMemberName("keepequal")] + Keepequal, + [EnumMember(Value = "KeepEqual"), JsonStringEnumMemberName("KeepEqual")] + KeepEqual, + [EnumMember(Value = "dropequal"), JsonStringEnumMemberName("dropequal")] + Dropequal, + [EnumMember(Value = "DropEqual"), JsonStringEnumMemberName("DropEqual")] + DropEqual +} + +/// +/// RelabelConfig allows dynamic rewriting of the label set for targets, alerts, +/// scraped samples and remote write samples. +/// +/// More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecMonitoringPodMonitorMetricRelabelings +{ + /// + /// action to perform based on the regex matching. + /// + /// `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + /// `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + /// + /// Default: "Replace" + /// + [JsonPropertyName("action")] + public V1PoolerSpecMonitoringPodMonitorMetricRelabelingsActionEnum? Action { get; set; } + + /// + /// modulus to take of the hash of the source label values. + /// + /// Only applicable when the action is `HashMod`. + /// + [JsonPropertyName("modulus")] + public long? Modulus { get; set; } + + /// regex defines the regular expression against which the extracted value is matched. + [JsonPropertyName("regex")] + public string? Regex { get; set; } + + /// + /// replacement value against which a Replace action is performed if the + /// regular expression matches. + /// + /// Regex capture groups are available. + /// + [JsonPropertyName("replacement")] + public string? Replacement { get; set; } + + /// separator defines the string between concatenated SourceLabels. + [JsonPropertyName("separator")] + public string? Separator { get; set; } + + /// + /// sourceLabels defines the source labels select values from existing labels. Their content is + /// concatenated using the configured Separator and matched against the + /// configured regular expression. + /// + [JsonPropertyName("sourceLabels")] + public IList? SourceLabels { get; set; } + + /// + /// targetLabel defines the label to which the resulting string is written in a replacement. + /// + /// It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + /// `KeepEqual` and `DropEqual` actions. + /// + /// Regex capture groups are available. + /// + [JsonPropertyName("targetLabel")] + public string? TargetLabel { get; set; } +} + +/// +/// action to perform based on the regex matching. +/// +/// `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. +/// `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. +/// +/// Default: "Replace" +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1PoolerSpecMonitoringPodMonitorRelabelingsActionEnum +{ + [EnumMember(Value = "replace"), JsonStringEnumMemberName("replace")] + Replace, + [EnumMember(Value = "Replace"), JsonStringEnumMemberName("Replace")] + Replace1, + [EnumMember(Value = "keep"), JsonStringEnumMemberName("keep")] + Keep, + [EnumMember(Value = "Keep"), JsonStringEnumMemberName("Keep")] + Keep1, + [EnumMember(Value = "drop"), JsonStringEnumMemberName("drop")] + Drop, + [EnumMember(Value = "Drop"), JsonStringEnumMemberName("Drop")] + Drop1, + [EnumMember(Value = "hashmod"), JsonStringEnumMemberName("hashmod")] + Hashmod, + [EnumMember(Value = "HashMod"), JsonStringEnumMemberName("HashMod")] + HashMod, + [EnumMember(Value = "labelmap"), JsonStringEnumMemberName("labelmap")] + Labelmap, + [EnumMember(Value = "LabelMap"), JsonStringEnumMemberName("LabelMap")] + LabelMap, + [EnumMember(Value = "labeldrop"), JsonStringEnumMemberName("labeldrop")] + Labeldrop, + [EnumMember(Value = "LabelDrop"), JsonStringEnumMemberName("LabelDrop")] + LabelDrop, + [EnumMember(Value = "labelkeep"), JsonStringEnumMemberName("labelkeep")] + Labelkeep, + [EnumMember(Value = "LabelKeep"), JsonStringEnumMemberName("LabelKeep")] + LabelKeep, + [EnumMember(Value = "lowercase"), JsonStringEnumMemberName("lowercase")] + Lowercase, + [EnumMember(Value = "Lowercase"), JsonStringEnumMemberName("Lowercase")] + Lowercase1, + [EnumMember(Value = "uppercase"), JsonStringEnumMemberName("uppercase")] + Uppercase, + [EnumMember(Value = "Uppercase"), JsonStringEnumMemberName("Uppercase")] + Uppercase1, + [EnumMember(Value = "keepequal"), JsonStringEnumMemberName("keepequal")] + Keepequal, + [EnumMember(Value = "KeepEqual"), JsonStringEnumMemberName("KeepEqual")] + KeepEqual, + [EnumMember(Value = "dropequal"), JsonStringEnumMemberName("dropequal")] + Dropequal, + [EnumMember(Value = "DropEqual"), JsonStringEnumMemberName("DropEqual")] + DropEqual +} + +/// +/// RelabelConfig allows dynamic rewriting of the label set for targets, alerts, +/// scraped samples and remote write samples. +/// +/// More info: https://prometheus.io/docs/prometheus/latest/configuration/configuration/#relabel_config +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecMonitoringPodMonitorRelabelings +{ + /// + /// action to perform based on the regex matching. + /// + /// `Uppercase` and `Lowercase` actions require Prometheus >= v2.36.0. + /// `DropEqual` and `KeepEqual` actions require Prometheus >= v2.41.0. + /// + /// Default: "Replace" + /// + [JsonPropertyName("action")] + public V1PoolerSpecMonitoringPodMonitorRelabelingsActionEnum? Action { get; set; } + + /// + /// modulus to take of the hash of the source label values. + /// + /// Only applicable when the action is `HashMod`. + /// + [JsonPropertyName("modulus")] + public long? Modulus { get; set; } + + /// regex defines the regular expression against which the extracted value is matched. + [JsonPropertyName("regex")] + public string? Regex { get; set; } + + /// + /// replacement value against which a Replace action is performed if the + /// regular expression matches. + /// + /// Regex capture groups are available. + /// + [JsonPropertyName("replacement")] + public string? Replacement { get; set; } + + /// separator defines the string between concatenated SourceLabels. + [JsonPropertyName("separator")] + public string? Separator { get; set; } + + /// + /// sourceLabels defines the source labels select values from existing labels. Their content is + /// concatenated using the configured Separator and matched against the + /// configured regular expression. + /// + [JsonPropertyName("sourceLabels")] + public IList? SourceLabels { get; set; } + + /// + /// targetLabel defines the label to which the resulting string is written in a replacement. + /// + /// It is mandatory for `Replace`, `HashMod`, `Lowercase`, `Uppercase`, + /// `KeepEqual` and `DropEqual` actions. + /// + /// Regex capture groups are available. + /// + [JsonPropertyName("targetLabel")] + public string? TargetLabel { get; set; } +} + +/// +/// The configuration of the monitoring infrastructure of this pooler. +/// +/// Deprecated: This feature will be removed in an upcoming release. If +/// you need this functionality, you can create a PodMonitor manually. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecMonitoring +{ + /// Enable or disable the `PodMonitor` + [JsonPropertyName("enablePodMonitor")] + public bool? EnablePodMonitor { get; set; } + + /// The list of metric relabelings for the `PodMonitor`. Applied to samples before ingestion. + [JsonPropertyName("podMonitorMetricRelabelings")] + public IList? PodMonitorMetricRelabelings { get; set; } + + /// The list of relabelings for the `PodMonitor`. Applied to samples before scraping. + [JsonPropertyName("podMonitorRelabelings")] + public IList? PodMonitorRelabelings { get; set; } +} + +/// +/// The credentials of the user that need to be used for the authentication +/// query. In case it is specified, also an AuthQuery +/// (e.g. "SELECT usename, passwd FROM pg_catalog.pg_shadow WHERE usename=$1") +/// has to be specified and no automatic CNPG Cluster integration will be triggered. +/// +/// Deprecated. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecPgbouncerAuthQuerySecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// ClientCASecret provides PgBouncer’s client_tls_ca_file, the root +/// CA for validating client certificates +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecPgbouncerClientCASecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// ClientTLSSecret provides PgBouncer’s client_tls_key_file (private key) +/// and client_tls_cert_file (certificate) used to accept client connections +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecPgbouncerClientTLSSecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The pool mode. Default: `session`. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1PoolerSpecPgbouncerPoolModeEnum +{ + [EnumMember(Value = "session"), JsonStringEnumMemberName("session")] + Session, + [EnumMember(Value = "transaction"), JsonStringEnumMemberName("transaction")] + Transaction +} + +/// +/// ServerCASecret provides PgBouncer’s server_tls_ca_file, the root +/// CA for validating PostgreSQL certificates +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecPgbouncerServerCASecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// ServerTLSSecret, when pointing to a TLS secret, provides pgbouncer's +/// `server_tls_key_file` and `server_tls_cert_file`, used when +/// authenticating against PostgreSQL. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecPgbouncerServerTLSSecret +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// The PgBouncer configuration +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecPgbouncer +{ + /// + /// The query that will be used to download the hash of the password + /// of a certain user. Default: "SELECT usename, passwd FROM public.user_search($1)". + /// In case it is specified, also an AuthQuerySecret has to be specified and + /// no automatic CNPG Cluster integration will be triggered. + /// + [JsonPropertyName("authQuery")] + public string? AuthQuery { get; set; } + + /// + /// The credentials of the user that need to be used for the authentication + /// query. In case it is specified, also an AuthQuery + /// (e.g. "SELECT usename, passwd FROM pg_catalog.pg_shadow WHERE usename=$1") + /// has to be specified and no automatic CNPG Cluster integration will be triggered. + /// + /// Deprecated. + /// + [JsonPropertyName("authQuerySecret")] + public V1PoolerSpecPgbouncerAuthQuerySecret? AuthQuerySecret { get; set; } + + /// + /// ClientCASecret provides PgBouncer’s client_tls_ca_file, the root + /// CA for validating client certificates + /// + [JsonPropertyName("clientCASecret")] + public V1PoolerSpecPgbouncerClientCASecret? ClientCASecret { get; set; } + + /// + /// ClientTLSSecret provides PgBouncer’s client_tls_key_file (private key) + /// and client_tls_cert_file (certificate) used to accept client connections + /// + [JsonPropertyName("clientTLSSecret")] + public V1PoolerSpecPgbouncerClientTLSSecret? ClientTLSSecret { get; set; } + + /// + /// Additional parameters to be passed to PgBouncer - please check + /// the CNPG documentation for a list of options you can configure + /// + [JsonPropertyName("parameters")] + public IDictionary? Parameters { get; set; } + + /// + /// When set to `true`, PgBouncer will disconnect from the PostgreSQL + /// server, first waiting for all queries to complete, and pause all new + /// client connections until this value is set to `false` (default). Internally, + /// the operator calls PgBouncer's `PAUSE` and `RESUME` commands. + /// + [JsonPropertyName("paused")] + public bool? Paused { get; set; } + + /// + /// PostgreSQL Host Based Authentication rules (lines to be appended + /// to the pg_hba.conf file) + /// + [JsonPropertyName("pg_hba")] + public IList? PgHba { get; set; } + + /// The pool mode. Default: `session`. + [JsonPropertyName("poolMode")] + public V1PoolerSpecPgbouncerPoolModeEnum? PoolMode { get; set; } + + /// + /// ServerCASecret provides PgBouncer’s server_tls_ca_file, the root + /// CA for validating PostgreSQL certificates + /// + [JsonPropertyName("serverCASecret")] + public V1PoolerSpecPgbouncerServerCASecret? ServerCASecret { get; set; } + + /// + /// ServerTLSSecret, when pointing to a TLS secret, provides pgbouncer's + /// `server_tls_key_file` and `server_tls_cert_file`, used when + /// authenticating against PostgreSQL. + /// + [JsonPropertyName("serverTLSSecret")] + public V1PoolerSpecPgbouncerServerTLSSecret? ServerTLSSecret { get; set; } +} + +/// +/// Standard object's metadata. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecServiceTemplateMetadata +{ + /// + /// Annotations is an unstructured key value map stored with a resource that may be + /// set by external tools to store and retrieve arbitrary metadata. They are not + /// queryable and should be preserved when modifying objects. + /// More info: http://kubernetes.io/docs/user-guide/annotations + /// + [JsonPropertyName("annotations")] + public IDictionary? Annotations { get; set; } + + /// + /// Map of string keys and values that can be used to organize and categorize + /// (scope and select) objects. May match selectors of replication controllers + /// and services. + /// More info: http://kubernetes.io/docs/user-guide/labels + /// + [JsonPropertyName("labels")] + public IDictionary? Labels { get; set; } + + /// The name of the resource. Only supported for certain types + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// ServicePort contains information on service's port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecServiceTemplateSpecPorts +{ + /// + /// The application protocol for this port. + /// This is used as a hint for implementations to offer richer behavior for protocols that they understand. + /// This field follows standard Kubernetes label syntax. + /// Valid values are either: + /// + /// * Un-prefixed protocol names - reserved for IANA standard service names (as per + /// RFC-6335 and https://www.iana.org/assignments/service-names). + /// + /// * Kubernetes-defined prefixed names: + /// * 'kubernetes.io/h2c' - HTTP/2 prior knowledge over cleartext as described in https://www.rfc-editor.org/rfc/rfc9113.html#name-starting-http-2-with-prior- + /// * 'kubernetes.io/ws' - WebSocket over cleartext as described in https://www.rfc-editor.org/rfc/rfc6455 + /// * 'kubernetes.io/wss' - WebSocket over TLS as described in https://www.rfc-editor.org/rfc/rfc6455 + /// + /// * Other protocols should use implementation-defined prefixed names such as + /// mycompany.com/my-custom-protocol. + /// + [JsonPropertyName("appProtocol")] + public string? AppProtocol { get; set; } + + /// + /// The name of this port within the service. This must be a DNS_LABEL. + /// All ports within a ServiceSpec must have unique names. When considering + /// the endpoints for a Service, this must match the 'name' field in the + /// EndpointPort. + /// Optional if only one ServicePort is defined on this service. + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// + /// The port on each node on which this service is exposed when type is + /// NodePort or LoadBalancer. Usually assigned by the system. If a value is + /// specified, in-range, and not in use it will be used, otherwise the + /// operation will fail. If not specified, a port will be allocated if this + /// Service requires one. If this field is specified when creating a + /// Service which does not need it, creation will fail. This field will be + /// wiped when updating a Service to no longer need it (e.g. changing type + /// from NodePort to ClusterIP). + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport + /// + [JsonPropertyName("nodePort")] + public int? NodePort { get; set; } + + /// The port that will be exposed by this service. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// The IP protocol for this port. Supports "TCP", "UDP", and "SCTP". + /// Default is TCP. + /// + [JsonPropertyName("protocol")] + public string? Protocol { get; set; } + + /// + /// Number or name of the port to access on the pods targeted by the service. + /// Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. + /// If this is a string, it will be looked up as a named port in the + /// target Pod's container ports. If this is not specified, the value + /// of the 'port' field is used (an identity map). + /// This field is ignored for services with clusterIP=None, and should be + /// omitted or set equal to the 'port' field. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service + /// + [JsonPropertyName("targetPort")] + public IntOrString? TargetPort { get; set; } +} + +/// clientIP contains the configurations of Client IP based session affinity. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecServiceTemplateSpecSessionAffinityConfigClientIP +{ + /// + /// timeoutSeconds specifies the seconds of ClientIP type session sticky time. + /// The value must be >0 & & <=86400(for 1 day) if ServiceAffinity == "ClientIP". + /// Default value is 10800(for 3 hours). + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// sessionAffinityConfig contains the configurations of session affinity. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecServiceTemplateSpecSessionAffinityConfig +{ + /// clientIP contains the configurations of Client IP based session affinity. + [JsonPropertyName("clientIP")] + public V1PoolerSpecServiceTemplateSpecSessionAffinityConfigClientIP? ClientIP { get; set; } +} + +/// +/// Specification of the desired behavior of the service. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecServiceTemplateSpec +{ + /// + /// allocateLoadBalancerNodePorts defines if NodePorts will be automatically + /// allocated for services with type LoadBalancer. Default is "true". It + /// may be set to "false" if the cluster load-balancer does not rely on + /// NodePorts. If the caller requests specific NodePorts (by specifying a + /// value), those requests will be respected, regardless of this field. + /// This field may only be set for services with type LoadBalancer and will + /// be cleared if the type is changed to any other type. + /// + [JsonPropertyName("allocateLoadBalancerNodePorts")] + public bool? AllocateLoadBalancerNodePorts { get; set; } + + /// + /// clusterIP is the IP address of the service and is usually assigned + /// randomly. If an address is specified manually, is in-range (as per + /// system configuration), and is not in use, it will be allocated to the + /// service; otherwise creation of the service will fail. This field may not + /// be changed through updates unless the type field is also being changed + /// to ExternalName (which requires this field to be blank) or the type + /// field is being changed from ExternalName (in which case this field may + /// optionally be specified, as describe above). Valid values are "None", + /// empty string (" "), or a valid IP address. Setting this to "None" makes a + /// "headless service" (no virtual IP), which is useful when direct endpoint + /// connections are preferred and proxying is not required. Only applies to + /// types ClusterIP, NodePort, and LoadBalancer. If this field is specified + /// when creating a Service of type ExternalName, creation will fail. This + /// field will be wiped when updating a Service to type ExternalName. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + /// + [JsonPropertyName("clusterIP")] + public string? ClusterIP { get; set; } + + /// + /// ClusterIPs is a list of IP addresses assigned to this service, and are + /// usually assigned randomly. If an address is specified manually, is + /// in-range (as per system configuration), and is not in use, it will be + /// allocated to the service; otherwise creation of the service will fail. + /// This field may not be changed through updates unless the type field is + /// also being changed to ExternalName (which requires this field to be + /// empty) or the type field is being changed from ExternalName (in which + /// case this field may optionally be specified, as describe above). Valid + /// values are "None", empty string (" "), or a valid IP address. Setting + /// this to "None" makes a "headless service" (no virtual IP), which is + /// useful when direct endpoint connections are preferred and proxying is + /// not required. Only applies to types ClusterIP, NodePort, and + /// LoadBalancer. If this field is specified when creating a Service of type + /// ExternalName, creation will fail. This field will be wiped when updating + /// a Service to type ExternalName. If this field is not specified, it will + /// be initialized from the clusterIP field. If this field is specified, + /// clients must ensure that clusterIPs[0] and clusterIP have the same + /// value. + /// + /// This field may hold a maximum of two entries (dual-stack IPs, in either order). + /// These IPs must correspond to the values of the ipFamilies field. Both + /// clusterIPs and ipFamilies are governed by the ipFamilyPolicy field. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + /// + [JsonPropertyName("clusterIPs")] + public IList? ClusterIPs { get; set; } + + /// + /// externalIPs is a list of IP addresses for which nodes in the cluster + /// will also accept traffic for this service. These IPs are not managed by + /// Kubernetes. The user is responsible for ensuring that traffic arrives + /// at a node with this IP. A common example is external load-balancers + /// that are not part of the Kubernetes system. + /// + [JsonPropertyName("externalIPs")] + public IList? ExternalIPs { get; set; } + + /// + /// externalName is the external reference that discovery mechanisms will + /// return as an alias for this service (e.g. a DNS CNAME record). No + /// proxying will be involved. Must be a lowercase RFC-1123 hostname + /// (https://tools.ietf.org/html/rfc1123) and requires `type` to be "ExternalName". + /// + [JsonPropertyName("externalName")] + public string? ExternalName { get; set; } + + /// + /// externalTrafficPolicy describes how nodes distribute service traffic they + /// receive on one of the Service's "externally-facing" addresses (NodePorts, + /// ExternalIPs, and LoadBalancer IPs). If set to "Local", the proxy will configure + /// the service in a way that assumes that external load balancers will take care + /// of balancing the service traffic between nodes, and so each node will deliver + /// traffic only to the node-local endpoints of the service, without masquerading + /// the client source IP. (Traffic mistakenly sent to a node with no endpoints will + /// be dropped.) The default value, "Cluster", uses the standard behavior of + /// routing to all endpoints evenly (possibly modified by topology and other + /// features). Note that traffic sent to an External IP or LoadBalancer IP from + /// within the cluster will always get "Cluster" semantics, but clients sending to + /// a NodePort from within the cluster may need to take traffic policy into account + /// when picking a node. + /// + [JsonPropertyName("externalTrafficPolicy")] + public string? ExternalTrafficPolicy { get; set; } + + /// + /// healthCheckNodePort specifies the healthcheck nodePort for the service. + /// This only applies when type is set to LoadBalancer and + /// externalTrafficPolicy is set to Local. If a value is specified, is + /// in-range, and is not in use, it will be used. If not specified, a value + /// will be automatically allocated. External systems (e.g. load-balancers) + /// can use this port to determine if a given node holds endpoints for this + /// service or not. If this field is specified when creating a Service + /// which does not need it, creation will fail. This field will be wiped + /// when updating a Service to no longer need it (e.g. changing type). + /// This field cannot be updated once set. + /// + [JsonPropertyName("healthCheckNodePort")] + public int? HealthCheckNodePort { get; set; } + + /// + /// InternalTrafficPolicy describes how nodes distribute service traffic they + /// receive on the ClusterIP. If set to "Local", the proxy will assume that pods + /// only want to talk to endpoints of the service on the same node as the pod, + /// dropping the traffic if there are no local endpoints. The default value, + /// "Cluster", uses the standard behavior of routing to all endpoints evenly + /// (possibly modified by topology and other features). + /// + [JsonPropertyName("internalTrafficPolicy")] + public string? InternalTrafficPolicy { get; set; } + + /// + /// IPFamilies is a list of IP families (e.g. IPv4, IPv6) assigned to this + /// service. This field is usually assigned automatically based on cluster + /// configuration and the ipFamilyPolicy field. If this field is specified + /// manually, the requested family is available in the cluster, + /// and ipFamilyPolicy allows it, it will be used; otherwise creation of + /// the service will fail. This field is conditionally mutable: it allows + /// for adding or removing a secondary IP family, but it does not allow + /// changing the primary IP family of the Service. Valid values are "IPv4" + /// and "IPv6". This field only applies to Services of types ClusterIP, + /// NodePort, and LoadBalancer, and does apply to "headless" services. + /// This field will be wiped when updating a Service to type ExternalName. + /// + /// This field may hold a maximum of two entries (dual-stack families, in + /// either order). These families must correspond to the values of the + /// clusterIPs field, if specified. Both clusterIPs and ipFamilies are + /// governed by the ipFamilyPolicy field. + /// + [JsonPropertyName("ipFamilies")] + public IList? IpFamilies { get; set; } + + /// + /// IPFamilyPolicy represents the dual-stack-ness requested or required by + /// this Service. If there is no value provided, then this field will be set + /// to SingleStack. Services can be "SingleStack" (a single IP family), + /// "PreferDualStack" (two IP families on dual-stack configured clusters or + /// a single IP family on single-stack clusters), or "RequireDualStack" + /// (two IP families on dual-stack configured clusters, otherwise fail). The + /// ipFamilies and clusterIPs fields depend on the value of this field. This + /// field will be wiped when updating a service to type ExternalName. + /// + [JsonPropertyName("ipFamilyPolicy")] + public string? IpFamilyPolicy { get; set; } + + /// + /// loadBalancerClass is the class of the load balancer implementation this Service belongs to. + /// If specified, the value of this field must be a label-style identifier, with an optional prefix, + /// e.g. "internal-vip" or "example.com/internal-vip". Unprefixed names are reserved for end-users. + /// This field can only be set when the Service type is 'LoadBalancer'. If not set, the default load + /// balancer implementation is used, today this is typically done through the cloud provider integration, + /// but should apply for any default implementation. If set, it is assumed that a load balancer + /// implementation is watching for Services with a matching class. Any default load balancer + /// implementation (e.g. cloud providers) should ignore Services that set this field. + /// This field can only be set when creating or updating a Service to type 'LoadBalancer'. + /// Once set, it can not be changed. This field will be wiped when a service is updated to a non 'LoadBalancer' type. + /// + [JsonPropertyName("loadBalancerClass")] + public string? LoadBalancerClass { get; set; } + + /// + /// Only applies to Service Type: LoadBalancer. + /// This feature depends on whether the underlying cloud-provider supports specifying + /// the loadBalancerIP when a load balancer is created. + /// This field will be ignored if the cloud-provider does not support the feature. + /// Deprecated: This field was under-specified and its meaning varies across implementations. + /// Using it is non-portable and it may not support dual-stack. + /// Users are encouraged to use implementation-specific annotations when available. + /// + [JsonPropertyName("loadBalancerIP")] + public string? LoadBalancerIP { get; set; } + + /// + /// If specified and supported by the platform, this will restrict traffic through the cloud-provider + /// load-balancer will be restricted to the specified client IPs. This field will be ignored if the + /// cloud-provider does not support the feature." + /// More info: https://kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/ + /// + [JsonPropertyName("loadBalancerSourceRanges")] + public IList? LoadBalancerSourceRanges { get; set; } + + /// + /// The list of ports that are exposed by this service. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + /// + [JsonPropertyName("ports")] + public IList? Ports { get; set; } + + /// + /// publishNotReadyAddresses indicates that any agent which deals with endpoints for this + /// Service should disregard any indications of ready/not-ready. + /// The primary use case for setting this field is for a StatefulSet's Headless Service to + /// propagate SRV DNS records for its Pods for the purpose of peer discovery. + /// The Kubernetes controllers that generate Endpoints and EndpointSlice resources for + /// Services interpret this to mean that all endpoints are considered "ready" even if the + /// Pods themselves are not. Agents which consume only Kubernetes generated endpoints + /// through the Endpoints or EndpointSlice resources can safely assume this behavior. + /// + [JsonPropertyName("publishNotReadyAddresses")] + public bool? PublishNotReadyAddresses { get; set; } + + /// + /// Route service traffic to pods with label keys and values matching this + /// selector. If empty or not present, the service is assumed to have an + /// external process managing its endpoints, which Kubernetes will not + /// modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. + /// Ignored if type is ExternalName. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/ + /// + [JsonPropertyName("selector")] + public IDictionary? Selector { get; set; } + + /// + /// Supports "ClientIP" and "None". Used to maintain session affinity. + /// Enable client IP based session affinity. + /// Must be ClientIP or None. + /// Defaults to None. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies + /// + [JsonPropertyName("sessionAffinity")] + public string? SessionAffinity { get; set; } + + /// sessionAffinityConfig contains the configurations of session affinity. + [JsonPropertyName("sessionAffinityConfig")] + public V1PoolerSpecServiceTemplateSpecSessionAffinityConfig? SessionAffinityConfig { get; set; } + + /// + /// TrafficDistribution offers a way to express preferences for how traffic + /// is distributed to Service endpoints. Implementations can use this field + /// as a hint, but are not required to guarantee strict adherence. If the + /// field is not set, the implementation will apply its default routing + /// strategy. If set to "PreferClose", implementations should prioritize + /// endpoints that are in the same zone. + /// + [JsonPropertyName("trafficDistribution")] + public string? TrafficDistribution { get; set; } + + /// + /// type determines how the Service is exposed. Defaults to ClusterIP. Valid + /// options are ExternalName, ClusterIP, NodePort, and LoadBalancer. + /// "ClusterIP" allocates a cluster-internal IP address for load-balancing + /// to endpoints. Endpoints are determined by the selector or if that is not + /// specified, by manual construction of an Endpoints object or + /// EndpointSlice objects. If clusterIP is "None", no virtual IP is + /// allocated and the endpoints are published as a set of endpoints rather + /// than a virtual IP. + /// "NodePort" builds on ClusterIP and allocates a port on every node which + /// routes to the same endpoints as the clusterIP. + /// "LoadBalancer" builds on NodePort and creates an external load-balancer + /// (if supported in the current cloud) which routes to the same endpoints + /// as the clusterIP. + /// "ExternalName" aliases this service to the specified externalName. + /// Several other fields do not apply to ExternalName services. + /// More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types + /// + [JsonPropertyName("type")] + public string? Type { get; set; } +} + +/// Template for the Service to be created +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecServiceTemplate +{ + /// + /// Standard object's metadata. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + /// + [JsonPropertyName("metadata")] + public V1PoolerSpecServiceTemplateMetadata? Metadata { get; set; } + + /// + /// Specification of the desired behavior of the service. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public V1PoolerSpecServiceTemplateSpec? Spec { get; set; } +} + +/// +/// Standard object's metadata. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateMetadata +{ + /// + /// Annotations is an unstructured key value map stored with a resource that may be + /// set by external tools to store and retrieve arbitrary metadata. They are not + /// queryable and should be preserved when modifying objects. + /// More info: http://kubernetes.io/docs/user-guide/annotations + /// + [JsonPropertyName("annotations")] + public IDictionary? Annotations { get; set; } + + /// + /// Map of string keys and values that can be used to organize and categorize + /// (scope and select) objects. May match selectors of replication controllers + /// and services. + /// More info: http://kubernetes.io/docs/user-guide/labels + /// + [JsonPropertyName("labels")] + public IDictionary? Labels { get; set; } + + /// The name of the resource. Only supported for certain types + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// +/// A node selector requirement is a selector that contains values, a key, and an operator +/// that relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionPreferenceMatchExpressions +{ + /// The label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. If the operator is Gt or Lt, the values + /// array must have a single element, which will be interpreted as an integer. + /// This array is replaced during a strategic merge patch. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A node selector requirement is a selector that contains values, a key, and an operator +/// that relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionPreferenceMatchFields +{ + /// The label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. If the operator is Gt or Lt, the values + /// array must have a single element, which will be interpreted as an integer. + /// This array is replaced during a strategic merge patch. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// A node selector term, associated with the corresponding weight. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionPreference +{ + /// A list of node selector requirements by node's labels. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// A list of node selector requirements by node's fields. + [JsonPropertyName("matchFields")] + public IList? MatchFields { get; set; } +} + +/// +/// An empty preferred scheduling term matches all objects with implicit weight 0 +/// (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op). +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecution +{ + /// A node selector term, associated with the corresponding weight. + [JsonPropertyName("preference")] + public required V1PoolerSpecTemplateSpecAffinityNodeAffinityPreferredDuringSchedulingIgnoredDuringExecutionPreference Preference { get; set; } + + /// Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100. + [JsonPropertyName("weight")] + public required int Weight { get; set; } +} + +/// +/// A node selector requirement is a selector that contains values, a key, and an operator +/// that relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecutionNodeSelectorTermsMatchExpressions +{ + /// The label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. If the operator is Gt or Lt, the values + /// array must have a single element, which will be interpreted as an integer. + /// This array is replaced during a strategic merge patch. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A node selector requirement is a selector that contains values, a key, and an operator +/// that relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecutionNodeSelectorTermsMatchFields +{ + /// The label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. If the operator is Gt or Lt, the values + /// array must have a single element, which will be interpreted as an integer. + /// This array is replaced during a strategic merge patch. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A null or empty node selector term matches no objects. The requirements of +/// them are ANDed. +/// The TopologySelectorTerm type implements a subset of the NodeSelectorTerm. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecutionNodeSelectorTerms +{ + /// A list of node selector requirements by node's labels. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// A list of node selector requirements by node's fields. + [JsonPropertyName("matchFields")] + public IList? MatchFields { get; set; } +} + +/// +/// If the affinity requirements specified by this field are not met at +/// scheduling time, the pod will not be scheduled onto the node. +/// If the affinity requirements specified by this field cease to be met +/// at some point during pod execution (e.g. due to an update), the system +/// may or may not try to eventually evict the pod from its node. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution +{ + /// Required. A list of node selector terms. The terms are ORed. + [JsonPropertyName("nodeSelectorTerms")] + public required IList NodeSelectorTerms { get; set; } +} + +/// Describes node affinity scheduling rules for the pod. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityNodeAffinity +{ + /// + /// The scheduler will prefer to schedule pods to nodes that satisfy + /// the affinity expressions specified by this field, but it may choose + /// a node that violates one or more of the expressions. The node that is + /// most preferred is the one with the greatest sum of weights, i.e. + /// for each node that meets all of the scheduling requirements (resource + /// request, requiredDuringScheduling affinity expressions, etc.), + /// compute a sum by iterating through the elements of this field and adding + /// "weight" to the sum if the node matches the corresponding matchExpressions; the + /// node(s) with the highest sum are the most preferred. + /// + [JsonPropertyName("preferredDuringSchedulingIgnoredDuringExecution")] + public IList? PreferredDuringSchedulingIgnoredDuringExecution { get; set; } + + /// + /// If the affinity requirements specified by this field are not met at + /// scheduling time, the pod will not be scheduled onto the node. + /// If the affinity requirements specified by this field cease to be met + /// at some point during pod execution (e.g. due to an update), the system + /// may or may not try to eventually evict the pod from its node. + /// + [JsonPropertyName("requiredDuringSchedulingIgnoredDuringExecution")] + public V1PoolerSpecTemplateSpecAffinityNodeAffinityRequiredDuringSchedulingIgnoredDuringExecution? RequiredDuringSchedulingIgnoredDuringExecution { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over a set of resources, in this case pods. +/// If it's null, this PodAffinityTerm matches with no Pods. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over the set of namespaces that the term applies to. +/// The term is applied to the union of the namespaces selected by this field +/// and the ones listed in the namespaces field. +/// null selector and null or empty namespaces list means "this pod's namespace". +/// An empty selector ({}) matches all namespaces. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// Required. A pod affinity term, associated with the corresponding weight. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm +{ + /// + /// A label query over a set of resources, in this case pods. + /// If it's null, this PodAffinityTerm matches with no Pods. + /// + [JsonPropertyName("labelSelector")] + public V1PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both matchLabelKeys and labelSelector. + /// Also, matchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MismatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + /// Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("mismatchLabelKeys")] + public IList? MismatchLabelKeys { get; set; } + + /// + /// A label query over the set of namespaces that the term applies to. + /// The term is applied to the union of the namespaces selected by this field + /// and the ones listed in the namespaces field. + /// null selector and null or empty namespaces list means "this pod's namespace". + /// An empty selector ({}) matches all namespaces. + /// + [JsonPropertyName("namespaceSelector")] + public V1PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector? NamespaceSelector { get; set; } + + /// + /// namespaces specifies a static list of namespace names that the term applies to. + /// The term is applied to the union of the namespaces listed in this field + /// and the ones selected by namespaceSelector. + /// null or empty namespaces list and null namespaceSelector means "this pod's namespace". + /// + [JsonPropertyName("namespaces")] + public IList? Namespaces { get; set; } + + /// + /// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + /// the labelSelector in the specified namespaces, where co-located is defined as running on a node + /// whose value of the label with key topologyKey matches that of any node on which any of the + /// selected pods is running. + /// Empty topologyKey is not allowed. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } +} + +/// The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecution +{ + /// Required. A pod affinity term, associated with the corresponding weight. + [JsonPropertyName("podAffinityTerm")] + public required V1PoolerSpecTemplateSpecAffinityPodAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm PodAffinityTerm { get; set; } + + /// + /// weight associated with matching the corresponding podAffinityTerm, + /// in the range 1-100. + /// + [JsonPropertyName("weight")] + public required int Weight { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over a set of resources, in this case pods. +/// If it's null, this PodAffinityTerm matches with no Pods. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over the set of namespaces that the term applies to. +/// The term is applied to the union of the namespaces selected by this field +/// and the ones listed in the namespaces field. +/// null selector and null or empty namespaces list means "this pod's namespace". +/// An empty selector ({}) matches all namespaces. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// Defines a set of pods (namely those matching the labelSelector +/// relative to the given namespace(s)) that this pod should be +/// co-located (affinity) or not co-located (anti-affinity) with, +/// where co-located is defined as running on a node whose value of +/// the label with key <topologyKey> matches that of any node on which +/// a pod of the set of pods is running +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecution +{ + /// + /// A label query over a set of resources, in this case pods. + /// If it's null, this PodAffinityTerm matches with no Pods. + /// + [JsonPropertyName("labelSelector")] + public V1PoolerSpecTemplateSpecAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both matchLabelKeys and labelSelector. + /// Also, matchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MismatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + /// Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("mismatchLabelKeys")] + public IList? MismatchLabelKeys { get; set; } + + /// + /// A label query over the set of namespaces that the term applies to. + /// The term is applied to the union of the namespaces selected by this field + /// and the ones listed in the namespaces field. + /// null selector and null or empty namespaces list means "this pod's namespace". + /// An empty selector ({}) matches all namespaces. + /// + [JsonPropertyName("namespaceSelector")] + public V1PoolerSpecTemplateSpecAffinityPodAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector? NamespaceSelector { get; set; } + + /// + /// namespaces specifies a static list of namespace names that the term applies to. + /// The term is applied to the union of the namespaces listed in this field + /// and the ones selected by namespaceSelector. + /// null or empty namespaces list and null namespaceSelector means "this pod's namespace". + /// + [JsonPropertyName("namespaces")] + public IList? Namespaces { get; set; } + + /// + /// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + /// the labelSelector in the specified namespaces, where co-located is defined as running on a node + /// whose value of the label with key topologyKey matches that of any node on which any of the + /// selected pods is running. + /// Empty topologyKey is not allowed. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } +} + +/// Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAffinity +{ + /// + /// The scheduler will prefer to schedule pods to nodes that satisfy + /// the affinity expressions specified by this field, but it may choose + /// a node that violates one or more of the expressions. The node that is + /// most preferred is the one with the greatest sum of weights, i.e. + /// for each node that meets all of the scheduling requirements (resource + /// request, requiredDuringScheduling affinity expressions, etc.), + /// compute a sum by iterating through the elements of this field and adding + /// "weight" to the sum if the node has pods which matches the corresponding podAffinityTerm; the + /// node(s) with the highest sum are the most preferred. + /// + [JsonPropertyName("preferredDuringSchedulingIgnoredDuringExecution")] + public IList? PreferredDuringSchedulingIgnoredDuringExecution { get; set; } + + /// + /// If the affinity requirements specified by this field are not met at + /// scheduling time, the pod will not be scheduled onto the node. + /// If the affinity requirements specified by this field cease to be met + /// at some point during pod execution (e.g. due to a pod label update), the + /// system may or may not try to eventually evict the pod from its node. + /// When there are multiple elements, the lists of nodes corresponding to each + /// podAffinityTerm are intersected, i.e. all terms must be satisfied. + /// + [JsonPropertyName("requiredDuringSchedulingIgnoredDuringExecution")] + public IList? RequiredDuringSchedulingIgnoredDuringExecution { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over a set of resources, in this case pods. +/// If it's null, this PodAffinityTerm matches with no Pods. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over the set of namespaces that the term applies to. +/// The term is applied to the union of the namespaces selected by this field +/// and the ones listed in the namespaces field. +/// null selector and null or empty namespaces list means "this pod's namespace". +/// An empty selector ({}) matches all namespaces. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// Required. A pod affinity term, associated with the corresponding weight. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm +{ + /// + /// A label query over a set of resources, in this case pods. + /// If it's null, this PodAffinityTerm matches with no Pods. + /// + [JsonPropertyName("labelSelector")] + public V1PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both matchLabelKeys and labelSelector. + /// Also, matchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MismatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + /// Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("mismatchLabelKeys")] + public IList? MismatchLabelKeys { get; set; } + + /// + /// A label query over the set of namespaces that the term applies to. + /// The term is applied to the union of the namespaces selected by this field + /// and the ones listed in the namespaces field. + /// null selector and null or empty namespaces list means "this pod's namespace". + /// An empty selector ({}) matches all namespaces. + /// + [JsonPropertyName("namespaceSelector")] + public V1PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTermNamespaceSelector? NamespaceSelector { get; set; } + + /// + /// namespaces specifies a static list of namespace names that the term applies to. + /// The term is applied to the union of the namespaces listed in this field + /// and the ones selected by namespaceSelector. + /// null or empty namespaces list and null namespaceSelector means "this pod's namespace". + /// + [JsonPropertyName("namespaces")] + public IList? Namespaces { get; set; } + + /// + /// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + /// the labelSelector in the specified namespaces, where co-located is defined as running on a node + /// whose value of the label with key topologyKey matches that of any node on which any of the + /// selected pods is running. + /// Empty topologyKey is not allowed. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } +} + +/// The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s) +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecution +{ + /// Required. A pod affinity term, associated with the corresponding weight. + [JsonPropertyName("podAffinityTerm")] + public required V1PoolerSpecTemplateSpecAffinityPodAntiAffinityPreferredDuringSchedulingIgnoredDuringExecutionPodAffinityTerm PodAffinityTerm { get; set; } + + /// + /// weight associated with matching the corresponding podAffinityTerm, + /// in the range 1-100. + /// + [JsonPropertyName("weight")] + public required int Weight { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over a set of resources, in this case pods. +/// If it's null, this PodAffinityTerm matches with no Pods. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// A label query over the set of namespaces that the term applies to. +/// The term is applied to the union of the namespaces selected by this field +/// and the ones listed in the namespaces field. +/// null selector and null or empty namespaces list means "this pod's namespace". +/// An empty selector ({}) matches all namespaces. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// Defines a set of pods (namely those matching the labelSelector +/// relative to the given namespace(s)) that this pod should be +/// co-located (affinity) or not co-located (anti-affinity) with, +/// where co-located is defined as running on a node whose value of +/// the label with key <topologyKey> matches that of any node on which +/// a pod of the set of pods is running +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecution +{ + /// + /// A label query over a set of resources, in this case pods. + /// If it's null, this PodAffinityTerm matches with no Pods. + /// + [JsonPropertyName("labelSelector")] + public V1PoolerSpecTemplateSpecAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key in (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both matchLabelKeys and labelSelector. + /// Also, matchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MismatchLabelKeys is a set of pod label keys to select which pods will + /// be taken into consideration. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are merged with `labelSelector` as `key notin (value)` + /// to select the group of existing pods which pods will be taken into consideration + /// for the incoming pod's pod (anti) affinity. Keys that don't exist in the incoming + /// pod labels will be ignored. The default value is empty. + /// The same key is forbidden to exist in both mismatchLabelKeys and labelSelector. + /// Also, mismatchLabelKeys cannot be set when labelSelector isn't set. + /// + [JsonPropertyName("mismatchLabelKeys")] + public IList? MismatchLabelKeys { get; set; } + + /// + /// A label query over the set of namespaces that the term applies to. + /// The term is applied to the union of the namespaces selected by this field + /// and the ones listed in the namespaces field. + /// null selector and null or empty namespaces list means "this pod's namespace". + /// An empty selector ({}) matches all namespaces. + /// + [JsonPropertyName("namespaceSelector")] + public V1PoolerSpecTemplateSpecAffinityPodAntiAffinityRequiredDuringSchedulingIgnoredDuringExecutionNamespaceSelector? NamespaceSelector { get; set; } + + /// + /// namespaces specifies a static list of namespace names that the term applies to. + /// The term is applied to the union of the namespaces listed in this field + /// and the ones selected by namespaceSelector. + /// null or empty namespaces list and null namespaceSelector means "this pod's namespace". + /// + [JsonPropertyName("namespaces")] + public IList? Namespaces { get; set; } + + /// + /// This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching + /// the labelSelector in the specified namespaces, where co-located is defined as running on a node + /// whose value of the label with key topologyKey matches that of any node on which any of the + /// selected pods is running. + /// Empty topologyKey is not allowed. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } +} + +/// Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinityPodAntiAffinity +{ + /// + /// The scheduler will prefer to schedule pods to nodes that satisfy + /// the anti-affinity expressions specified by this field, but it may choose + /// a node that violates one or more of the expressions. The node that is + /// most preferred is the one with the greatest sum of weights, i.e. + /// for each node that meets all of the scheduling requirements (resource + /// request, requiredDuringScheduling anti-affinity expressions, etc.), + /// compute a sum by iterating through the elements of this field and subtracting + /// "weight" from the sum if the node has pods which matches the corresponding podAffinityTerm; the + /// node(s) with the highest sum are the most preferred. + /// + [JsonPropertyName("preferredDuringSchedulingIgnoredDuringExecution")] + public IList? PreferredDuringSchedulingIgnoredDuringExecution { get; set; } + + /// + /// If the anti-affinity requirements specified by this field are not met at + /// scheduling time, the pod will not be scheduled onto the node. + /// If the anti-affinity requirements specified by this field cease to be met + /// at some point during pod execution (e.g. due to a pod label update), the + /// system may or may not try to eventually evict the pod from its node. + /// When there are multiple elements, the lists of nodes corresponding to each + /// podAffinityTerm are intersected, i.e. all terms must be satisfied. + /// + [JsonPropertyName("requiredDuringSchedulingIgnoredDuringExecution")] + public IList? RequiredDuringSchedulingIgnoredDuringExecution { get; set; } +} + +/// If specified, the pod's scheduling constraints +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecAffinity +{ + /// Describes node affinity scheduling rules for the pod. + [JsonPropertyName("nodeAffinity")] + public V1PoolerSpecTemplateSpecAffinityNodeAffinity? NodeAffinity { get; set; } + + /// Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)). + [JsonPropertyName("podAffinity")] + public V1PoolerSpecTemplateSpecAffinityPodAffinity? PodAffinity { get; set; } + + /// Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)). + [JsonPropertyName("podAntiAffinity")] + public V1PoolerSpecTemplateSpecAffinityPodAntiAffinity? PodAntiAffinity { get; set; } +} + +/// Selects a key of a ConfigMap. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnvValueFromConfigMapKeyRef +{ + /// The key to select. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the ConfigMap or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// +/// Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels[' <KEY> ']`, `metadata.annotations[' <KEY> ']`, +/// spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnvValueFromFieldRef +{ + /// Version of the schema the FieldPath is written in terms of, defaults to "v1". + [JsonPropertyName("apiVersion")] + public string? ApiVersion { get; set; } + + /// Path of the field to select in the specified API version. + [JsonPropertyName("fieldPath")] + public required string FieldPath { get; set; } +} + +/// +/// FileKeyRef selects a key of the env file. +/// Requires the EnvFiles feature gate to be enabled. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnvValueFromFileKeyRef +{ + /// + /// The key within the env file. An invalid key will prevent the pod from starting. + /// The keys defined within a source may consist of any printable ASCII characters except '='. + /// During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. + /// + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Specify whether the file or its key must be defined. If the file or key + /// does not exist, then the env var is not published. + /// If optional is set to true and the specified key does not exist, + /// the environment variable will not be set in the Pod's containers. + /// + /// If optional is set to false and the specified key does not exist, + /// an error will be returned during Pod creation. + /// + [JsonPropertyName("optional")] + public bool? Optional { get; set; } + + /// + /// The path within the volume from which to select the file. + /// Must be relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// The name of the volume mount containing the env file. + [JsonPropertyName("volumeName")] + public required string VolumeName { get; set; } +} + +/// +/// Selects a resource of the container: only resources limits and requests +/// (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnvValueFromResourceFieldRef +{ + /// Container name: required for volumes, optional for env vars + [JsonPropertyName("containerName")] + public string? ContainerName { get; set; } + + /// Specifies the output format of the exposed resources, defaults to "1" + [JsonPropertyName("divisor")] + public IntOrString? Divisor { get; set; } + + /// Required: resource to select + [JsonPropertyName("resource")] + public required string Resource { get; set; } +} + +/// Selects a key of a secret in the pod's namespace +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnvValueFromSecretKeyRef +{ + /// The key of the secret to select from. Must be a valid secret key. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// Source for the environment variable's value. Cannot be used if value is not empty. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnvValueFrom +{ + /// Selects a key of a ConfigMap. + [JsonPropertyName("configMapKeyRef")] + public V1PoolerSpecTemplateSpecContainersEnvValueFromConfigMapKeyRef? ConfigMapKeyRef { get; set; } + + /// + /// Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels[' <KEY> ']`, `metadata.annotations[' <KEY> ']`, + /// spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. + /// + [JsonPropertyName("fieldRef")] + public V1PoolerSpecTemplateSpecContainersEnvValueFromFieldRef? FieldRef { get; set; } + + /// + /// FileKeyRef selects a key of the env file. + /// Requires the EnvFiles feature gate to be enabled. + /// + [JsonPropertyName("fileKeyRef")] + public V1PoolerSpecTemplateSpecContainersEnvValueFromFileKeyRef? FileKeyRef { get; set; } + + /// + /// Selects a resource of the container: only resources limits and requests + /// (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. + /// + [JsonPropertyName("resourceFieldRef")] + public V1PoolerSpecTemplateSpecContainersEnvValueFromResourceFieldRef? ResourceFieldRef { get; set; } + + /// Selects a key of a secret in the pod's namespace + [JsonPropertyName("secretKeyRef")] + public V1PoolerSpecTemplateSpecContainersEnvValueFromSecretKeyRef? SecretKeyRef { get; set; } +} + +/// EnvVar represents an environment variable present in a Container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnv +{ + /// + /// Name of the environment variable. + /// May consist of any printable ASCII characters except '='. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Variable references $(VAR_NAME) are expanded + /// using the previously defined environment variables in the container and + /// any service environment variables. If a variable cannot be resolved, + /// the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + /// "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + /// Escaped references will never be expanded, regardless of whether the variable + /// exists or not. + /// Defaults to " ". + /// + [JsonPropertyName("value")] + public string? Value { get; set; } + + /// Source for the environment variable's value. Cannot be used if value is not empty. + [JsonPropertyName("valueFrom")] + public V1PoolerSpecTemplateSpecContainersEnvValueFrom? ValueFrom { get; set; } +} + +/// The ConfigMap to select from +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnvFromConfigMapRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the ConfigMap must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// The Secret to select from +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnvFromSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// EnvFromSource represents the source of a set of ConfigMaps or Secrets +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersEnvFrom +{ + /// The ConfigMap to select from + [JsonPropertyName("configMapRef")] + public V1PoolerSpecTemplateSpecContainersEnvFromConfigMapRef? ConfigMapRef { get; set; } + + /// + /// Optional text to prepend to the name of each environment variable. + /// May consist of any printable ASCII characters except '='. + /// + [JsonPropertyName("prefix")] + public string? Prefix { get; set; } + + /// The Secret to select from + [JsonPropertyName("secretRef")] + public V1PoolerSpecTemplateSpecContainersEnvFromSecretRef? SecretRef { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePostStartExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePostStartHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePostStartHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// Sleep represents a duration that the container should sleep. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePostStartSleep +{ + /// Seconds is the number of seconds to sleep. + [JsonPropertyName("seconds")] + public required long Seconds { get; set; } +} + +/// +/// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept +/// for backward compatibility. There is no validation of this field and +/// lifecycle hooks will fail at runtime when it is specified. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// PostStart is called immediately after a container is created. If the handler fails, +/// the container is terminated and restarted according to its restart policy. +/// Other management of the container blocks until the hook completes. +/// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePostStart +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecContainersLifecyclePostStartExec? Exec { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecContainersLifecyclePostStartHttpGet? HttpGet { get; set; } + + /// Sleep represents a duration that the container should sleep. + [JsonPropertyName("sleep")] + public V1PoolerSpecTemplateSpecContainersLifecyclePostStartSleep? Sleep { get; set; } + + /// + /// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + /// for backward compatibility. There is no validation of this field and + /// lifecycle hooks will fail at runtime when it is specified. + /// + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecContainersLifecyclePostStartTcpSocket? TcpSocket { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePreStopExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePreStopHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePreStopHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// Sleep represents a duration that the container should sleep. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePreStopSleep +{ + /// Seconds is the number of seconds to sleep. + [JsonPropertyName("seconds")] + public required long Seconds { get; set; } +} + +/// +/// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept +/// for backward compatibility. There is no validation of this field and +/// lifecycle hooks will fail at runtime when it is specified. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// PreStop is called immediately before a container is terminated due to an +/// API request or management event such as liveness/startup probe failure, +/// preemption, resource contention, etc. The handler is not called if the +/// container crashes or exits. The Pod's termination grace period countdown begins before the +/// PreStop hook is executed. Regardless of the outcome of the handler, the +/// container will eventually terminate within the Pod's termination grace +/// period (unless delayed by finalizers). Other management of the container blocks until the hook completes +/// or until the termination grace period is reached. +/// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecyclePreStop +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecContainersLifecyclePreStopExec? Exec { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecContainersLifecyclePreStopHttpGet? HttpGet { get; set; } + + /// Sleep represents a duration that the container should sleep. + [JsonPropertyName("sleep")] + public V1PoolerSpecTemplateSpecContainersLifecyclePreStopSleep? Sleep { get; set; } + + /// + /// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + /// for backward compatibility. There is no validation of this field and + /// lifecycle hooks will fail at runtime when it is specified. + /// + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecContainersLifecyclePreStopTcpSocket? TcpSocket { get; set; } +} + +/// +/// Actions that the management system should take in response to container lifecycle events. +/// Cannot be updated. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLifecycle +{ + /// + /// PostStart is called immediately after a container is created. If the handler fails, + /// the container is terminated and restarted according to its restart policy. + /// Other management of the container blocks until the hook completes. + /// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + /// + [JsonPropertyName("postStart")] + public V1PoolerSpecTemplateSpecContainersLifecyclePostStart? PostStart { get; set; } + + /// + /// PreStop is called immediately before a container is terminated due to an + /// API request or management event such as liveness/startup probe failure, + /// preemption, resource contention, etc. The handler is not called if the + /// container crashes or exits. The Pod's termination grace period countdown begins before the + /// PreStop hook is executed. Regardless of the outcome of the handler, the + /// container will eventually terminate within the Pod's termination grace + /// period (unless delayed by finalizers). Other management of the container blocks until the hook completes + /// or until the termination grace period is reached. + /// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + /// + [JsonPropertyName("preStop")] + public V1PoolerSpecTemplateSpecContainersLifecyclePreStop? PreStop { get; set; } + + /// + /// StopSignal defines which signal will be sent to a container when it is being stopped. + /// If not specified, the default is defined by the container runtime in use. + /// StopSignal can only be set for Pods with a non-empty .spec.os.name + /// + [JsonPropertyName("stopSignal")] + public string? StopSignal { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLivenessProbeExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// GRPC specifies a GRPC HealthCheckRequest. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLivenessProbeGrpc +{ + /// Port number of the gRPC service. Number must be in the range 1 to 65535. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// Service is the name of the service to place in the gRPC HealthCheckRequest + /// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + /// + /// If this is not specified, the default behavior is defined by gRPC. + /// + [JsonPropertyName("service")] + public string? Service { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLivenessProbeHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLivenessProbeHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// TCPSocket specifies a connection to a TCP port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLivenessProbeTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// Periodic probe of container liveness. +/// Container will be restarted if the probe fails. +/// Cannot be updated. +/// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersLivenessProbe +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecContainersLivenessProbeExec? Exec { get; set; } + + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// GRPC specifies a GRPC HealthCheckRequest. + [JsonPropertyName("grpc")] + public V1PoolerSpecTemplateSpecContainersLivenessProbeGrpc? Grpc { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecContainersLivenessProbeHttpGet? HttpGet { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// TCPSocket specifies a connection to a TCP port. + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecContainersLivenessProbeTcpSocket? TcpSocket { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// ContainerPort represents a network port in a single container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersPorts +{ + /// + /// Number of port to expose on the pod's IP address. + /// This must be a valid port number, 0 < x < 65536. + /// + [JsonPropertyName("containerPort")] + public required int ContainerPort { get; set; } + + /// What host IP to bind the external port to. + [JsonPropertyName("hostIP")] + public string? HostIP { get; set; } + + /// + /// Number of port to expose on the host. + /// If specified, this must be a valid port number, 0 < x < 65536. + /// If HostNetwork is specified, this must match ContainerPort. + /// Most containers do not need this. + /// + [JsonPropertyName("hostPort")] + public int? HostPort { get; set; } + + /// + /// If specified, this must be an IANA_SVC_NAME and unique within the pod. Each + /// named port in a pod must have a unique name. Name for the port that can be + /// referred to by services. + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// + /// Protocol for port. Must be UDP, TCP, or SCTP. + /// Defaults to "TCP". + /// + [JsonPropertyName("protocol")] + public string? Protocol { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersReadinessProbeExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// GRPC specifies a GRPC HealthCheckRequest. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersReadinessProbeGrpc +{ + /// Port number of the gRPC service. Number must be in the range 1 to 65535. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// Service is the name of the service to place in the gRPC HealthCheckRequest + /// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + /// + /// If this is not specified, the default behavior is defined by gRPC. + /// + [JsonPropertyName("service")] + public string? Service { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersReadinessProbeHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersReadinessProbeHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// TCPSocket specifies a connection to a TCP port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersReadinessProbeTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// Periodic probe of container service readiness. +/// Container will be removed from service endpoints if the probe fails. +/// Cannot be updated. +/// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersReadinessProbe +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecContainersReadinessProbeExec? Exec { get; set; } + + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// GRPC specifies a GRPC HealthCheckRequest. + [JsonPropertyName("grpc")] + public V1PoolerSpecTemplateSpecContainersReadinessProbeGrpc? Grpc { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecContainersReadinessProbeHttpGet? HttpGet { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// TCPSocket specifies a connection to a TCP port. + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecContainersReadinessProbeTcpSocket? TcpSocket { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// ContainerResizePolicy represents resource resize policy for the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersResizePolicy +{ + /// + /// Name of the resource to which this resource resize policy applies. + /// Supported values: cpu, memory. + /// + [JsonPropertyName("resourceName")] + public required string ResourceName { get; set; } + + /// + /// Restart policy to apply when specified resource is resized. + /// If not specified, it defaults to NotRequired. + /// + [JsonPropertyName("restartPolicy")] + public required string RestartPolicy { get; set; } +} + +/// ResourceClaim references one entry in PodSpec.ResourceClaims. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersResourcesClaims +{ + /// + /// Name must match the name of one entry in pod.spec.resourceClaims of + /// the Pod where this field is used. It makes that resource available + /// inside a container. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Request is the name chosen for a request in the referenced claim. + /// If empty, everything from the claim is made available, otherwise + /// only the result of this request. + /// + [JsonPropertyName("request")] + public string? Request { get; set; } +} + +/// +/// Compute Resources required by this container. +/// Cannot be updated. +/// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersResources +{ + /// + /// Claims lists the names of resources, defined in spec.resourceClaims, + /// that are used by this container. + /// + /// This field depends on the + /// DynamicResourceAllocation feature gate. + /// + /// This field is immutable. It can only be set for containers. + /// + [JsonPropertyName("claims")] + public IList? Claims { get; set; } + + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// Represents the exit codes to check on container exits. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersRestartPolicyRulesExitCodes +{ + /// + /// Represents the relationship between the container exit code(s) and the + /// specified values. Possible values are: + /// - In: the requirement is satisfied if the container exit code is in the + /// set of specified values. + /// - NotIn: the requirement is satisfied if the container exit code is + /// not in the set of specified values. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// Specifies the set of values to check for container exit codes. + /// At most 255 elements are allowed. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// ContainerRestartRule describes how a container exit is handled. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersRestartPolicyRules +{ + /// + /// Specifies the action taken on a container exit if the requirements + /// are satisfied. The only possible value is "Restart" to restart the + /// container. + /// + [JsonPropertyName("action")] + public required string Action { get; set; } + + /// Represents the exit codes to check on container exits. + [JsonPropertyName("exitCodes")] + public V1PoolerSpecTemplateSpecContainersRestartPolicyRulesExitCodes? ExitCodes { get; set; } +} + +/// +/// appArmorProfile is the AppArmor options to use by this container. If set, this profile +/// overrides the pod's appArmorProfile. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersSecurityContextAppArmorProfile +{ + /// + /// localhostProfile indicates a profile loaded on the node that should be used. + /// The profile must be preconfigured on the node to work. + /// Must match the loaded name of the profile. + /// Must be set if and only if type is "Localhost". + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of AppArmor profile will be applied. + /// Valid options are: + /// Localhost - a profile pre-loaded on the node. + /// RuntimeDefault - the container runtime's default profile. + /// Unconfined - no AppArmor enforcement. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The capabilities to add/drop when running containers. +/// Defaults to the default set of capabilities granted by the container runtime. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersSecurityContextCapabilities +{ + /// Added capabilities + [JsonPropertyName("add")] + public IList? Add { get; set; } + + /// Removed capabilities + [JsonPropertyName("drop")] + public IList? Drop { get; set; } +} + +/// +/// The SELinux context to be applied to the container. +/// If unspecified, the container runtime will allocate a random SELinux context for each +/// container. May also be set in PodSecurityContext. If set in both SecurityContext and +/// PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersSecurityContextSeLinuxOptions +{ + /// Level is SELinux level label that applies to the container. + [JsonPropertyName("level")] + public string? Level { get; set; } + + /// Role is a SELinux role label that applies to the container. + [JsonPropertyName("role")] + public string? Role { get; set; } + + /// Type is a SELinux type label that applies to the container. + [JsonPropertyName("type")] + public string? Type { get; set; } + + /// User is a SELinux user label that applies to the container. + [JsonPropertyName("user")] + public string? User { get; set; } +} + +/// +/// The seccomp options to use by this container. If seccomp options are +/// provided at both the pod & container level, the container options +/// override the pod options. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersSecurityContextSeccompProfile +{ + /// + /// localhostProfile indicates a profile defined in a file on the node should be used. + /// The profile must be preconfigured on the node to work. + /// Must be a descending path, relative to the kubelet's configured seccomp profile location. + /// Must be set if type is "Localhost". Must NOT be set for any other type. + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of seccomp profile will be applied. + /// Valid options are: + /// + /// Localhost - a profile defined in a file on the node should be used. + /// RuntimeDefault - the container runtime default profile should be used. + /// Unconfined - no profile should be applied. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The Windows specific settings applied to all containers. +/// If unspecified, the options from the PodSecurityContext will be used. +/// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is linux. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersSecurityContextWindowsOptions +{ + /// + /// GMSACredentialSpec is where the GMSA admission webhook + /// (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + /// GMSA credential spec named by the GMSACredentialSpecName field. + /// + [JsonPropertyName("gmsaCredentialSpec")] + public string? GmsaCredentialSpec { get; set; } + + /// GMSACredentialSpecName is the name of the GMSA credential spec to use. + [JsonPropertyName("gmsaCredentialSpecName")] + public string? GmsaCredentialSpecName { get; set; } + + /// + /// HostProcess determines if a container should be run as a 'Host Process' container. + /// All of a Pod's containers must have the same effective HostProcess value + /// (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + /// In addition, if HostProcess is true then HostNetwork must also be set to true. + /// + [JsonPropertyName("hostProcess")] + public bool? HostProcess { get; set; } + + /// + /// The UserName in Windows to run the entrypoint of the container process. + /// Defaults to the user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsUserName")] + public string? RunAsUserName { get; set; } +} + +/// +/// SecurityContext defines the security options the container should be run with. +/// If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. +/// More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersSecurityContext +{ + /// + /// AllowPrivilegeEscalation controls whether a process can gain more + /// privileges than its parent process. This bool directly controls if + /// the no_new_privs flag will be set on the container process. + /// AllowPrivilegeEscalation is true always when the container is: + /// 1) run as Privileged + /// 2) has CAP_SYS_ADMIN + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("allowPrivilegeEscalation")] + public bool? AllowPrivilegeEscalation { get; set; } + + /// + /// appArmorProfile is the AppArmor options to use by this container. If set, this profile + /// overrides the pod's appArmorProfile. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("appArmorProfile")] + public V1PoolerSpecTemplateSpecContainersSecurityContextAppArmorProfile? AppArmorProfile { get; set; } + + /// + /// The capabilities to add/drop when running containers. + /// Defaults to the default set of capabilities granted by the container runtime. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("capabilities")] + public V1PoolerSpecTemplateSpecContainersSecurityContextCapabilities? Capabilities { get; set; } + + /// + /// Run container in privileged mode. + /// Processes in privileged containers are essentially equivalent to root on the host. + /// Defaults to false. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("privileged")] + public bool? Privileged { get; set; } + + /// + /// procMount denotes the type of proc mount to use for the containers. + /// The default value is Default which uses the container runtime defaults for + /// readonly paths and masked paths. + /// This requires the ProcMountType feature flag to be enabled. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("procMount")] + public string? ProcMount { get; set; } + + /// + /// Whether this container has a read-only root filesystem. + /// Default is false. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("readOnlyRootFilesystem")] + public bool? ReadOnlyRootFilesystem { get; set; } + + /// + /// The GID to run the entrypoint of the container process. + /// Uses runtime default if unset. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsGroup")] + public long? RunAsGroup { get; set; } + + /// + /// Indicates that the container must run as a non-root user. + /// If true, the Kubelet will validate the image at runtime to ensure that it + /// does not run as UID 0 (root) and fail to start the container if it does. + /// If unset or false, no such validation will be performed. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsNonRoot")] + public bool? RunAsNonRoot { get; set; } + + /// + /// The UID to run the entrypoint of the container process. + /// Defaults to user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsUser")] + public long? RunAsUser { get; set; } + + /// + /// The SELinux context to be applied to the container. + /// If unspecified, the container runtime will allocate a random SELinux context for each + /// container. May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seLinuxOptions")] + public V1PoolerSpecTemplateSpecContainersSecurityContextSeLinuxOptions? SeLinuxOptions { get; set; } + + /// + /// The seccomp options to use by this container. If seccomp options are + /// provided at both the pod & container level, the container options + /// override the pod options. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seccompProfile")] + public V1PoolerSpecTemplateSpecContainersSecurityContextSeccompProfile? SeccompProfile { get; set; } + + /// + /// The Windows specific settings applied to all containers. + /// If unspecified, the options from the PodSecurityContext will be used. + /// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is linux. + /// + [JsonPropertyName("windowsOptions")] + public V1PoolerSpecTemplateSpecContainersSecurityContextWindowsOptions? WindowsOptions { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersStartupProbeExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// GRPC specifies a GRPC HealthCheckRequest. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersStartupProbeGrpc +{ + /// Port number of the gRPC service. Number must be in the range 1 to 65535. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// Service is the name of the service to place in the gRPC HealthCheckRequest + /// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + /// + /// If this is not specified, the default behavior is defined by gRPC. + /// + [JsonPropertyName("service")] + public string? Service { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersStartupProbeHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersStartupProbeHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// TCPSocket specifies a connection to a TCP port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersStartupProbeTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// StartupProbe indicates that the Pod has successfully initialized. +/// If specified, no other probes are executed until this completes successfully. +/// If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. +/// This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, +/// when it might take a long time to load data or warm a cache, than during steady-state operation. +/// This cannot be updated. +/// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersStartupProbe +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecContainersStartupProbeExec? Exec { get; set; } + + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// GRPC specifies a GRPC HealthCheckRequest. + [JsonPropertyName("grpc")] + public V1PoolerSpecTemplateSpecContainersStartupProbeGrpc? Grpc { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecContainersStartupProbeHttpGet? HttpGet { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// TCPSocket specifies a connection to a TCP port. + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecContainersStartupProbeTcpSocket? TcpSocket { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// volumeDevice describes a mapping of a raw block device within a container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersVolumeDevices +{ + /// devicePath is the path inside of the container that the device will be mapped to. + [JsonPropertyName("devicePath")] + public required string DevicePath { get; set; } + + /// name must match the name of a persistentVolumeClaim in the pod + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// VolumeMount describes a mounting of a Volume within a container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainersVolumeMounts +{ + /// + /// Path within the container at which the volume should be mounted. Must + /// not contain ':'. + /// + [JsonPropertyName("mountPath")] + public required string MountPath { get; set; } + + /// + /// mountPropagation determines how mounts are propagated from the host + /// to container and the other way around. + /// When not set, MountPropagationNone is used. + /// This field is beta in 1.10. + /// When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified + /// (which defaults to None). + /// + [JsonPropertyName("mountPropagation")] + public string? MountPropagation { get; set; } + + /// This must match the Name of a Volume. + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Mounted read-only if true, read-write otherwise (false or unspecified). + /// Defaults to false. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// RecursiveReadOnly specifies whether read-only mounts should be handled + /// recursively. + /// + /// If ReadOnly is false, this field has no meaning and must be unspecified. + /// + /// If ReadOnly is true, and this field is set to Disabled, the mount is not made + /// recursively read-only. If this field is set to IfPossible, the mount is made + /// recursively read-only, if it is supported by the container runtime. If this + /// field is set to Enabled, the mount is made recursively read-only if it is + /// supported by the container runtime, otherwise the pod will not be started and + /// an error will be generated to indicate the reason. + /// + /// If this field is set to IfPossible or Enabled, MountPropagation must be set to + /// None (or be unspecified, which defaults to None). + /// + /// If this field is not specified, it is treated as an equivalent of Disabled. + /// + [JsonPropertyName("recursiveReadOnly")] + public string? RecursiveReadOnly { get; set; } + + /// + /// Path within the volume from which the container's volume should be mounted. + /// Defaults to " " (volume's root). + /// + [JsonPropertyName("subPath")] + public string? SubPath { get; set; } + + /// + /// Expanded path within the volume from which the container's volume should be mounted. + /// Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + /// Defaults to " " (volume's root). + /// SubPathExpr and SubPath are mutually exclusive. + /// + [JsonPropertyName("subPathExpr")] + public string? SubPathExpr { get; set; } +} + +/// A single application container that you want to run within a pod. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecContainers +{ + /// + /// Arguments to the entrypoint. + /// The container image's CMD is used if this is not provided. + /// Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + /// cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + /// produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + /// of whether the variable exists or not. Cannot be updated. + /// More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + /// + [JsonPropertyName("args")] + public IList? Args { get; set; } + + /// + /// Entrypoint array. Not executed within a shell. + /// The container image's ENTRYPOINT is used if this is not provided. + /// Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + /// cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + /// produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + /// of whether the variable exists or not. Cannot be updated. + /// More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } + + /// + /// List of environment variables to set in the container. + /// Cannot be updated. + /// + [JsonPropertyName("env")] + public IList? Env { get; set; } + + /// + /// List of sources to populate environment variables in the container. + /// The keys defined within a source may consist of any printable ASCII characters except '='. + /// When a key exists in multiple + /// sources, the value associated with the last source will take precedence. + /// Values defined by an Env with a duplicate key will take precedence. + /// Cannot be updated. + /// + [JsonPropertyName("envFrom")] + public IList? EnvFrom { get; set; } + + /// + /// Container image name. + /// More info: https://kubernetes.io/docs/concepts/containers/images + /// This field is optional to allow higher level config management to default or override + /// container images in workload controllers like Deployments and StatefulSets. + /// + [JsonPropertyName("image")] + public string? Image { get; set; } + + /// + /// Image pull policy. + /// One of Always, Never, IfNotPresent. + /// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + /// + [JsonPropertyName("imagePullPolicy")] + public string? ImagePullPolicy { get; set; } + + /// + /// Actions that the management system should take in response to container lifecycle events. + /// Cannot be updated. + /// + [JsonPropertyName("lifecycle")] + public V1PoolerSpecTemplateSpecContainersLifecycle? Lifecycle { get; set; } + + /// + /// Periodic probe of container liveness. + /// Container will be restarted if the probe fails. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("livenessProbe")] + public V1PoolerSpecTemplateSpecContainersLivenessProbe? LivenessProbe { get; set; } + + /// + /// Name of the container specified as a DNS_LABEL. + /// Each container in a pod must have a unique name (DNS_LABEL). + /// Cannot be updated. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// List of ports to expose from the container. Not specifying a port here + /// DOES NOT prevent that port from being exposed. Any port which is + /// listening on the default "0.0.0.0" address inside a container will be + /// accessible from the network. + /// Modifying this array with strategic merge patch may corrupt the data. + /// For more information See https://github.com/kubernetes/kubernetes/issues/108255. + /// Cannot be updated. + /// + [JsonPropertyName("ports")] + public IList? Ports { get; set; } + + /// + /// Periodic probe of container service readiness. + /// Container will be removed from service endpoints if the probe fails. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("readinessProbe")] + public V1PoolerSpecTemplateSpecContainersReadinessProbe? ReadinessProbe { get; set; } + + /// + /// Resources resize policy for the container. + /// This field cannot be set on ephemeral containers. + /// + [JsonPropertyName("resizePolicy")] + public IList? ResizePolicy { get; set; } + + /// + /// Compute Resources required by this container. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("resources")] + public V1PoolerSpecTemplateSpecContainersResources? Resources { get; set; } + + /// + /// RestartPolicy defines the restart behavior of individual containers in a pod. + /// This overrides the pod-level restart policy. When this field is not specified, + /// the restart behavior is defined by the Pod's restart policy and the container type. + /// Additionally, setting the RestartPolicy as "Always" for the init container will + /// have the following effect: + /// this init container will be continually restarted on + /// exit until all regular containers have terminated. Once all regular + /// containers have completed, all init containers with restartPolicy "Always" + /// will be shut down. This lifecycle differs from normal init containers and + /// is often referred to as a "sidecar" container. Although this init + /// container still starts in the init container sequence, it does not wait + /// for the container to complete before proceeding to the next init + /// container. Instead, the next init container starts immediately after this + /// init container is started, or after any startupProbe has successfully + /// completed. + /// + [JsonPropertyName("restartPolicy")] + public string? RestartPolicy { get; set; } + + /// + /// Represents a list of rules to be checked to determine if the + /// container should be restarted on exit. The rules are evaluated in + /// order. Once a rule matches a container exit condition, the remaining + /// rules are ignored. If no rule matches the container exit condition, + /// the Container-level restart policy determines the whether the container + /// is restarted or not. Constraints on the rules: + /// - At most 20 rules are allowed. + /// - Rules can have the same action. + /// - Identical rules are not forbidden in validations. + /// When rules are specified, container MUST set RestartPolicy explicitly + /// even it if matches the Pod's RestartPolicy. + /// + [JsonPropertyName("restartPolicyRules")] + public IList? RestartPolicyRules { get; set; } + + /// + /// SecurityContext defines the security options the container should be run with. + /// If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + /// More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + /// + [JsonPropertyName("securityContext")] + public V1PoolerSpecTemplateSpecContainersSecurityContext? SecurityContext { get; set; } + + /// + /// StartupProbe indicates that the Pod has successfully initialized. + /// If specified, no other probes are executed until this completes successfully. + /// If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. + /// This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, + /// when it might take a long time to load data or warm a cache, than during steady-state operation. + /// This cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("startupProbe")] + public V1PoolerSpecTemplateSpecContainersStartupProbe? StartupProbe { get; set; } + + /// + /// Whether this container should allocate a buffer for stdin in the container runtime. If this + /// is not set, reads from stdin in the container will always result in EOF. + /// Default is false. + /// + [JsonPropertyName("stdin")] + public bool? Stdin { get; set; } + + /// + /// Whether the container runtime should close the stdin channel after it has been opened by + /// a single attach. When stdin is true the stdin stream will remain open across multiple attach + /// sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the + /// first client attaches to stdin, and then remains open and accepts data until the client disconnects, + /// at which time stdin is closed and remains closed until the container is restarted. If this + /// flag is false, a container processes that reads from stdin will never receive an EOF. + /// Default is false + /// + [JsonPropertyName("stdinOnce")] + public bool? StdinOnce { get; set; } + + /// + /// Optional: Path at which the file to which the container's termination message + /// will be written is mounted into the container's filesystem. + /// Message written is intended to be brief final status, such as an assertion failure message. + /// Will be truncated by the node if greater than 4096 bytes. The total message length across + /// all containers will be limited to 12kb. + /// Defaults to /dev/termination-log. + /// Cannot be updated. + /// + [JsonPropertyName("terminationMessagePath")] + public string? TerminationMessagePath { get; set; } + + /// + /// Indicate how the termination message should be populated. File will use the contents of + /// terminationMessagePath to populate the container status message on both success and failure. + /// FallbackToLogsOnError will use the last chunk of container log output if the termination + /// message file is empty and the container exited with an error. + /// The log output is limited to 2048 bytes or 80 lines, whichever is smaller. + /// Defaults to File. + /// Cannot be updated. + /// + [JsonPropertyName("terminationMessagePolicy")] + public string? TerminationMessagePolicy { get; set; } + + /// + /// Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. + /// Default is false. + /// + [JsonPropertyName("tty")] + public bool? Tty { get; set; } + + /// volumeDevices is the list of block devices to be used by the container. + [JsonPropertyName("volumeDevices")] + public IList? VolumeDevices { get; set; } + + /// + /// Pod volumes to mount into the container's filesystem. + /// Cannot be updated. + /// + [JsonPropertyName("volumeMounts")] + public IList? VolumeMounts { get; set; } + + /// + /// Container's working directory. + /// If not specified, the container runtime's default will be used, which + /// might be configured in the container image. + /// Cannot be updated. + /// + [JsonPropertyName("workingDir")] + public string? WorkingDir { get; set; } +} + +/// PodDNSConfigOption defines DNS resolver options of a pod. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecDnsConfigOptions +{ + /// + /// Name is this DNS resolver option's name. + /// Required. + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Value is this DNS resolver option's value. + [JsonPropertyName("value")] + public string? Value { get; set; } +} + +/// +/// Specifies the DNS parameters of a pod. +/// Parameters specified here will be merged to the generated DNS +/// configuration based on DNSPolicy. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecDnsConfig +{ + /// + /// A list of DNS name server IP addresses. + /// This will be appended to the base nameservers generated from DNSPolicy. + /// Duplicated nameservers will be removed. + /// + [JsonPropertyName("nameservers")] + public IList? Nameservers { get; set; } + + /// + /// A list of DNS resolver options. + /// This will be merged with the base options generated from DNSPolicy. + /// Duplicated entries will be removed. Resolution options given in Options + /// will override those that appear in the base DNSPolicy. + /// + [JsonPropertyName("options")] + public IList? Options { get; set; } + + /// + /// A list of DNS search domains for host-name lookup. + /// This will be appended to the base search paths generated from DNSPolicy. + /// Duplicated search paths will be removed. + /// + [JsonPropertyName("searches")] + public IList? Searches { get; set; } +} + +/// Selects a key of a ConfigMap. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromConfigMapKeyRef +{ + /// The key to select. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the ConfigMap or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// +/// Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels[' <KEY> ']`, `metadata.annotations[' <KEY> ']`, +/// spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromFieldRef +{ + /// Version of the schema the FieldPath is written in terms of, defaults to "v1". + [JsonPropertyName("apiVersion")] + public string? ApiVersion { get; set; } + + /// Path of the field to select in the specified API version. + [JsonPropertyName("fieldPath")] + public required string FieldPath { get; set; } +} + +/// +/// FileKeyRef selects a key of the env file. +/// Requires the EnvFiles feature gate to be enabled. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromFileKeyRef +{ + /// + /// The key within the env file. An invalid key will prevent the pod from starting. + /// The keys defined within a source may consist of any printable ASCII characters except '='. + /// During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. + /// + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Specify whether the file or its key must be defined. If the file or key + /// does not exist, then the env var is not published. + /// If optional is set to true and the specified key does not exist, + /// the environment variable will not be set in the Pod's containers. + /// + /// If optional is set to false and the specified key does not exist, + /// an error will be returned during Pod creation. + /// + [JsonPropertyName("optional")] + public bool? Optional { get; set; } + + /// + /// The path within the volume from which to select the file. + /// Must be relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// The name of the volume mount containing the env file. + [JsonPropertyName("volumeName")] + public required string VolumeName { get; set; } +} + +/// +/// Selects a resource of the container: only resources limits and requests +/// (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromResourceFieldRef +{ + /// Container name: required for volumes, optional for env vars + [JsonPropertyName("containerName")] + public string? ContainerName { get; set; } + + /// Specifies the output format of the exposed resources, defaults to "1" + [JsonPropertyName("divisor")] + public IntOrString? Divisor { get; set; } + + /// Required: resource to select + [JsonPropertyName("resource")] + public required string Resource { get; set; } +} + +/// Selects a key of a secret in the pod's namespace +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromSecretKeyRef +{ + /// The key of the secret to select from. Must be a valid secret key. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// Source for the environment variable's value. Cannot be used if value is not empty. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFrom +{ + /// Selects a key of a ConfigMap. + [JsonPropertyName("configMapKeyRef")] + public V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromConfigMapKeyRef? ConfigMapKeyRef { get; set; } + + /// + /// Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels[' <KEY> ']`, `metadata.annotations[' <KEY> ']`, + /// spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. + /// + [JsonPropertyName("fieldRef")] + public V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromFieldRef? FieldRef { get; set; } + + /// + /// FileKeyRef selects a key of the env file. + /// Requires the EnvFiles feature gate to be enabled. + /// + [JsonPropertyName("fileKeyRef")] + public V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromFileKeyRef? FileKeyRef { get; set; } + + /// + /// Selects a resource of the container: only resources limits and requests + /// (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. + /// + [JsonPropertyName("resourceFieldRef")] + public V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromResourceFieldRef? ResourceFieldRef { get; set; } + + /// Selects a key of a secret in the pod's namespace + [JsonPropertyName("secretKeyRef")] + public V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFromSecretKeyRef? SecretKeyRef { get; set; } +} + +/// EnvVar represents an environment variable present in a Container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnv +{ + /// + /// Name of the environment variable. + /// May consist of any printable ASCII characters except '='. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Variable references $(VAR_NAME) are expanded + /// using the previously defined environment variables in the container and + /// any service environment variables. If a variable cannot be resolved, + /// the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + /// "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + /// Escaped references will never be expanded, regardless of whether the variable + /// exists or not. + /// Defaults to " ". + /// + [JsonPropertyName("value")] + public string? Value { get; set; } + + /// Source for the environment variable's value. Cannot be used if value is not empty. + [JsonPropertyName("valueFrom")] + public V1PoolerSpecTemplateSpecEphemeralContainersEnvValueFrom? ValueFrom { get; set; } +} + +/// The ConfigMap to select from +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnvFromConfigMapRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the ConfigMap must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// The Secret to select from +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnvFromSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// EnvFromSource represents the source of a set of ConfigMaps or Secrets +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersEnvFrom +{ + /// The ConfigMap to select from + [JsonPropertyName("configMapRef")] + public V1PoolerSpecTemplateSpecEphemeralContainersEnvFromConfigMapRef? ConfigMapRef { get; set; } + + /// + /// Optional text to prepend to the name of each environment variable. + /// May consist of any printable ASCII characters except '='. + /// + [JsonPropertyName("prefix")] + public string? Prefix { get; set; } + + /// The Secret to select from + [JsonPropertyName("secretRef")] + public V1PoolerSpecTemplateSpecEphemeralContainersEnvFromSecretRef? SecretRef { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// Sleep represents a duration that the container should sleep. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartSleep +{ + /// Seconds is the number of seconds to sleep. + [JsonPropertyName("seconds")] + public required long Seconds { get; set; } +} + +/// +/// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept +/// for backward compatibility. There is no validation of this field and +/// lifecycle hooks will fail at runtime when it is specified. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// PostStart is called immediately after a container is created. If the handler fails, +/// the container is terminated and restarted according to its restart policy. +/// Other management of the container blocks until the hook completes. +/// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStart +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartExec? Exec { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartHttpGet? HttpGet { get; set; } + + /// Sleep represents a duration that the container should sleep. + [JsonPropertyName("sleep")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartSleep? Sleep { get; set; } + + /// + /// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + /// for backward compatibility. There is no validation of this field and + /// lifecycle hooks will fail at runtime when it is specified. + /// + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStartTcpSocket? TcpSocket { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// Sleep represents a duration that the container should sleep. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopSleep +{ + /// Seconds is the number of seconds to sleep. + [JsonPropertyName("seconds")] + public required long Seconds { get; set; } +} + +/// +/// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept +/// for backward compatibility. There is no validation of this field and +/// lifecycle hooks will fail at runtime when it is specified. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// PreStop is called immediately before a container is terminated due to an +/// API request or management event such as liveness/startup probe failure, +/// preemption, resource contention, etc. The handler is not called if the +/// container crashes or exits. The Pod's termination grace period countdown begins before the +/// PreStop hook is executed. Regardless of the outcome of the handler, the +/// container will eventually terminate within the Pod's termination grace +/// period (unless delayed by finalizers). Other management of the container blocks until the hook completes +/// or until the termination grace period is reached. +/// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStop +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopExec? Exec { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopHttpGet? HttpGet { get; set; } + + /// Sleep represents a duration that the container should sleep. + [JsonPropertyName("sleep")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopSleep? Sleep { get; set; } + + /// + /// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + /// for backward compatibility. There is no validation of this field and + /// lifecycle hooks will fail at runtime when it is specified. + /// + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStopTcpSocket? TcpSocket { get; set; } +} + +/// Lifecycle is not allowed for ephemeral containers. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLifecycle +{ + /// + /// PostStart is called immediately after a container is created. If the handler fails, + /// the container is terminated and restarted according to its restart policy. + /// Other management of the container blocks until the hook completes. + /// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + /// + [JsonPropertyName("postStart")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePostStart? PostStart { get; set; } + + /// + /// PreStop is called immediately before a container is terminated due to an + /// API request or management event such as liveness/startup probe failure, + /// preemption, resource contention, etc. The handler is not called if the + /// container crashes or exits. The Pod's termination grace period countdown begins before the + /// PreStop hook is executed. Regardless of the outcome of the handler, the + /// container will eventually terminate within the Pod's termination grace + /// period (unless delayed by finalizers). Other management of the container blocks until the hook completes + /// or until the termination grace period is reached. + /// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + /// + [JsonPropertyName("preStop")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecyclePreStop? PreStop { get; set; } + + /// + /// StopSignal defines which signal will be sent to a container when it is being stopped. + /// If not specified, the default is defined by the container runtime in use. + /// StopSignal can only be set for Pods with a non-empty .spec.os.name + /// + [JsonPropertyName("stopSignal")] + public string? StopSignal { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbeExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// GRPC specifies a GRPC HealthCheckRequest. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbeGrpc +{ + /// Port number of the gRPC service. Number must be in the range 1 to 65535. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// Service is the name of the service to place in the gRPC HealthCheckRequest + /// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + /// + /// If this is not specified, the default behavior is defined by gRPC. + /// + [JsonPropertyName("service")] + public string? Service { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbeHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbeHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// TCPSocket specifies a connection to a TCP port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbeTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// Probes are not allowed for ephemeral containers. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbe +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbeExec? Exec { get; set; } + + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// GRPC specifies a GRPC HealthCheckRequest. + [JsonPropertyName("grpc")] + public V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbeGrpc? Grpc { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbeHttpGet? HttpGet { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// TCPSocket specifies a connection to a TCP port. + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbeTcpSocket? TcpSocket { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// ContainerPort represents a network port in a single container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersPorts +{ + /// + /// Number of port to expose on the pod's IP address. + /// This must be a valid port number, 0 < x < 65536. + /// + [JsonPropertyName("containerPort")] + public required int ContainerPort { get; set; } + + /// What host IP to bind the external port to. + [JsonPropertyName("hostIP")] + public string? HostIP { get; set; } + + /// + /// Number of port to expose on the host. + /// If specified, this must be a valid port number, 0 < x < 65536. + /// If HostNetwork is specified, this must match ContainerPort. + /// Most containers do not need this. + /// + [JsonPropertyName("hostPort")] + public int? HostPort { get; set; } + + /// + /// If specified, this must be an IANA_SVC_NAME and unique within the pod. Each + /// named port in a pod must have a unique name. Name for the port that can be + /// referred to by services. + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// + /// Protocol for port. Must be UDP, TCP, or SCTP. + /// Defaults to "TCP". + /// + [JsonPropertyName("protocol")] + public string? Protocol { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbeExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// GRPC specifies a GRPC HealthCheckRequest. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbeGrpc +{ + /// Port number of the gRPC service. Number must be in the range 1 to 65535. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// Service is the name of the service to place in the gRPC HealthCheckRequest + /// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + /// + /// If this is not specified, the default behavior is defined by gRPC. + /// + [JsonPropertyName("service")] + public string? Service { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbeHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbeHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// TCPSocket specifies a connection to a TCP port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbeTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// Probes are not allowed for ephemeral containers. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbe +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbeExec? Exec { get; set; } + + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// GRPC specifies a GRPC HealthCheckRequest. + [JsonPropertyName("grpc")] + public V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbeGrpc? Grpc { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbeHttpGet? HttpGet { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// TCPSocket specifies a connection to a TCP port. + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbeTcpSocket? TcpSocket { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// ContainerResizePolicy represents resource resize policy for the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersResizePolicy +{ + /// + /// Name of the resource to which this resource resize policy applies. + /// Supported values: cpu, memory. + /// + [JsonPropertyName("resourceName")] + public required string ResourceName { get; set; } + + /// + /// Restart policy to apply when specified resource is resized. + /// If not specified, it defaults to NotRequired. + /// + [JsonPropertyName("restartPolicy")] + public required string RestartPolicy { get; set; } +} + +/// ResourceClaim references one entry in PodSpec.ResourceClaims. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersResourcesClaims +{ + /// + /// Name must match the name of one entry in pod.spec.resourceClaims of + /// the Pod where this field is used. It makes that resource available + /// inside a container. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Request is the name chosen for a request in the referenced claim. + /// If empty, everything from the claim is made available, otherwise + /// only the result of this request. + /// + [JsonPropertyName("request")] + public string? Request { get; set; } +} + +/// +/// Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources +/// already allocated to the pod. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersResources +{ + /// + /// Claims lists the names of resources, defined in spec.resourceClaims, + /// that are used by this container. + /// + /// This field depends on the + /// DynamicResourceAllocation feature gate. + /// + /// This field is immutable. It can only be set for containers. + /// + [JsonPropertyName("claims")] + public IList? Claims { get; set; } + + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// Represents the exit codes to check on container exits. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersRestartPolicyRulesExitCodes +{ + /// + /// Represents the relationship between the container exit code(s) and the + /// specified values. Possible values are: + /// - In: the requirement is satisfied if the container exit code is in the + /// set of specified values. + /// - NotIn: the requirement is satisfied if the container exit code is + /// not in the set of specified values. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// Specifies the set of values to check for container exit codes. + /// At most 255 elements are allowed. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// ContainerRestartRule describes how a container exit is handled. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersRestartPolicyRules +{ + /// + /// Specifies the action taken on a container exit if the requirements + /// are satisfied. The only possible value is "Restart" to restart the + /// container. + /// + [JsonPropertyName("action")] + public required string Action { get; set; } + + /// Represents the exit codes to check on container exits. + [JsonPropertyName("exitCodes")] + public V1PoolerSpecTemplateSpecEphemeralContainersRestartPolicyRulesExitCodes? ExitCodes { get; set; } +} + +/// +/// appArmorProfile is the AppArmor options to use by this container. If set, this profile +/// overrides the pod's appArmorProfile. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextAppArmorProfile +{ + /// + /// localhostProfile indicates a profile loaded on the node that should be used. + /// The profile must be preconfigured on the node to work. + /// Must match the loaded name of the profile. + /// Must be set if and only if type is "Localhost". + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of AppArmor profile will be applied. + /// Valid options are: + /// Localhost - a profile pre-loaded on the node. + /// RuntimeDefault - the container runtime's default profile. + /// Unconfined - no AppArmor enforcement. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The capabilities to add/drop when running containers. +/// Defaults to the default set of capabilities granted by the container runtime. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextCapabilities +{ + /// Added capabilities + [JsonPropertyName("add")] + public IList? Add { get; set; } + + /// Removed capabilities + [JsonPropertyName("drop")] + public IList? Drop { get; set; } +} + +/// +/// The SELinux context to be applied to the container. +/// If unspecified, the container runtime will allocate a random SELinux context for each +/// container. May also be set in PodSecurityContext. If set in both SecurityContext and +/// PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextSeLinuxOptions +{ + /// Level is SELinux level label that applies to the container. + [JsonPropertyName("level")] + public string? Level { get; set; } + + /// Role is a SELinux role label that applies to the container. + [JsonPropertyName("role")] + public string? Role { get; set; } + + /// Type is a SELinux type label that applies to the container. + [JsonPropertyName("type")] + public string? Type { get; set; } + + /// User is a SELinux user label that applies to the container. + [JsonPropertyName("user")] + public string? User { get; set; } +} + +/// +/// The seccomp options to use by this container. If seccomp options are +/// provided at both the pod & container level, the container options +/// override the pod options. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextSeccompProfile +{ + /// + /// localhostProfile indicates a profile defined in a file on the node should be used. + /// The profile must be preconfigured on the node to work. + /// Must be a descending path, relative to the kubelet's configured seccomp profile location. + /// Must be set if type is "Localhost". Must NOT be set for any other type. + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of seccomp profile will be applied. + /// Valid options are: + /// + /// Localhost - a profile defined in a file on the node should be used. + /// RuntimeDefault - the container runtime default profile should be used. + /// Unconfined - no profile should be applied. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The Windows specific settings applied to all containers. +/// If unspecified, the options from the PodSecurityContext will be used. +/// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is linux. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextWindowsOptions +{ + /// + /// GMSACredentialSpec is where the GMSA admission webhook + /// (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + /// GMSA credential spec named by the GMSACredentialSpecName field. + /// + [JsonPropertyName("gmsaCredentialSpec")] + public string? GmsaCredentialSpec { get; set; } + + /// GMSACredentialSpecName is the name of the GMSA credential spec to use. + [JsonPropertyName("gmsaCredentialSpecName")] + public string? GmsaCredentialSpecName { get; set; } + + /// + /// HostProcess determines if a container should be run as a 'Host Process' container. + /// All of a Pod's containers must have the same effective HostProcess value + /// (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + /// In addition, if HostProcess is true then HostNetwork must also be set to true. + /// + [JsonPropertyName("hostProcess")] + public bool? HostProcess { get; set; } + + /// + /// The UserName in Windows to run the entrypoint of the container process. + /// Defaults to the user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsUserName")] + public string? RunAsUserName { get; set; } +} + +/// +/// Optional: SecurityContext defines the security options the ephemeral container should be run with. +/// If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersSecurityContext +{ + /// + /// AllowPrivilegeEscalation controls whether a process can gain more + /// privileges than its parent process. This bool directly controls if + /// the no_new_privs flag will be set on the container process. + /// AllowPrivilegeEscalation is true always when the container is: + /// 1) run as Privileged + /// 2) has CAP_SYS_ADMIN + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("allowPrivilegeEscalation")] + public bool? AllowPrivilegeEscalation { get; set; } + + /// + /// appArmorProfile is the AppArmor options to use by this container. If set, this profile + /// overrides the pod's appArmorProfile. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("appArmorProfile")] + public V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextAppArmorProfile? AppArmorProfile { get; set; } + + /// + /// The capabilities to add/drop when running containers. + /// Defaults to the default set of capabilities granted by the container runtime. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("capabilities")] + public V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextCapabilities? Capabilities { get; set; } + + /// + /// Run container in privileged mode. + /// Processes in privileged containers are essentially equivalent to root on the host. + /// Defaults to false. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("privileged")] + public bool? Privileged { get; set; } + + /// + /// procMount denotes the type of proc mount to use for the containers. + /// The default value is Default which uses the container runtime defaults for + /// readonly paths and masked paths. + /// This requires the ProcMountType feature flag to be enabled. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("procMount")] + public string? ProcMount { get; set; } + + /// + /// Whether this container has a read-only root filesystem. + /// Default is false. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("readOnlyRootFilesystem")] + public bool? ReadOnlyRootFilesystem { get; set; } + + /// + /// The GID to run the entrypoint of the container process. + /// Uses runtime default if unset. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsGroup")] + public long? RunAsGroup { get; set; } + + /// + /// Indicates that the container must run as a non-root user. + /// If true, the Kubelet will validate the image at runtime to ensure that it + /// does not run as UID 0 (root) and fail to start the container if it does. + /// If unset or false, no such validation will be performed. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsNonRoot")] + public bool? RunAsNonRoot { get; set; } + + /// + /// The UID to run the entrypoint of the container process. + /// Defaults to user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsUser")] + public long? RunAsUser { get; set; } + + /// + /// The SELinux context to be applied to the container. + /// If unspecified, the container runtime will allocate a random SELinux context for each + /// container. May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seLinuxOptions")] + public V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextSeLinuxOptions? SeLinuxOptions { get; set; } + + /// + /// The seccomp options to use by this container. If seccomp options are + /// provided at both the pod & container level, the container options + /// override the pod options. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seccompProfile")] + public V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextSeccompProfile? SeccompProfile { get; set; } + + /// + /// The Windows specific settings applied to all containers. + /// If unspecified, the options from the PodSecurityContext will be used. + /// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is linux. + /// + [JsonPropertyName("windowsOptions")] + public V1PoolerSpecTemplateSpecEphemeralContainersSecurityContextWindowsOptions? WindowsOptions { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersStartupProbeExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// GRPC specifies a GRPC HealthCheckRequest. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersStartupProbeGrpc +{ + /// Port number of the gRPC service. Number must be in the range 1 to 65535. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// Service is the name of the service to place in the gRPC HealthCheckRequest + /// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + /// + /// If this is not specified, the default behavior is defined by gRPC. + /// + [JsonPropertyName("service")] + public string? Service { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersStartupProbeHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersStartupProbeHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// TCPSocket specifies a connection to a TCP port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersStartupProbeTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// Probes are not allowed for ephemeral containers. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersStartupProbe +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecEphemeralContainersStartupProbeExec? Exec { get; set; } + + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// GRPC specifies a GRPC HealthCheckRequest. + [JsonPropertyName("grpc")] + public V1PoolerSpecTemplateSpecEphemeralContainersStartupProbeGrpc? Grpc { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecEphemeralContainersStartupProbeHttpGet? HttpGet { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// TCPSocket specifies a connection to a TCP port. + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecEphemeralContainersStartupProbeTcpSocket? TcpSocket { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// volumeDevice describes a mapping of a raw block device within a container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersVolumeDevices +{ + /// devicePath is the path inside of the container that the device will be mapped to. + [JsonPropertyName("devicePath")] + public required string DevicePath { get; set; } + + /// name must match the name of a persistentVolumeClaim in the pod + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// VolumeMount describes a mounting of a Volume within a container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainersVolumeMounts +{ + /// + /// Path within the container at which the volume should be mounted. Must + /// not contain ':'. + /// + [JsonPropertyName("mountPath")] + public required string MountPath { get; set; } + + /// + /// mountPropagation determines how mounts are propagated from the host + /// to container and the other way around. + /// When not set, MountPropagationNone is used. + /// This field is beta in 1.10. + /// When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified + /// (which defaults to None). + /// + [JsonPropertyName("mountPropagation")] + public string? MountPropagation { get; set; } + + /// This must match the Name of a Volume. + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Mounted read-only if true, read-write otherwise (false or unspecified). + /// Defaults to false. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// RecursiveReadOnly specifies whether read-only mounts should be handled + /// recursively. + /// + /// If ReadOnly is false, this field has no meaning and must be unspecified. + /// + /// If ReadOnly is true, and this field is set to Disabled, the mount is not made + /// recursively read-only. If this field is set to IfPossible, the mount is made + /// recursively read-only, if it is supported by the container runtime. If this + /// field is set to Enabled, the mount is made recursively read-only if it is + /// supported by the container runtime, otherwise the pod will not be started and + /// an error will be generated to indicate the reason. + /// + /// If this field is set to IfPossible or Enabled, MountPropagation must be set to + /// None (or be unspecified, which defaults to None). + /// + /// If this field is not specified, it is treated as an equivalent of Disabled. + /// + [JsonPropertyName("recursiveReadOnly")] + public string? RecursiveReadOnly { get; set; } + + /// + /// Path within the volume from which the container's volume should be mounted. + /// Defaults to " " (volume's root). + /// + [JsonPropertyName("subPath")] + public string? SubPath { get; set; } + + /// + /// Expanded path within the volume from which the container's volume should be mounted. + /// Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + /// Defaults to " " (volume's root). + /// SubPathExpr and SubPath are mutually exclusive. + /// + [JsonPropertyName("subPathExpr")] + public string? SubPathExpr { get; set; } +} + +/// +/// An EphemeralContainer is a temporary container that you may add to an existing Pod for +/// user-initiated activities such as debugging. Ephemeral containers have no resource or +/// scheduling guarantees, and they will not be restarted when they exit or when a Pod is +/// removed or restarted. The kubelet may evict a Pod if an ephemeral container causes the +/// Pod to exceed its resource allocation. +/// +/// To add an ephemeral container, use the ephemeralcontainers subresource of an existing +/// Pod. Ephemeral containers may not be removed or restarted. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecEphemeralContainers +{ + /// + /// Arguments to the entrypoint. + /// The image's CMD is used if this is not provided. + /// Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + /// cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + /// produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + /// of whether the variable exists or not. Cannot be updated. + /// More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + /// + [JsonPropertyName("args")] + public IList? Args { get; set; } + + /// + /// Entrypoint array. Not executed within a shell. + /// The image's ENTRYPOINT is used if this is not provided. + /// Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + /// cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + /// produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + /// of whether the variable exists or not. Cannot be updated. + /// More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } + + /// + /// List of environment variables to set in the container. + /// Cannot be updated. + /// + [JsonPropertyName("env")] + public IList? Env { get; set; } + + /// + /// List of sources to populate environment variables in the container. + /// The keys defined within a source may consist of any printable ASCII characters except '='. + /// When a key exists in multiple + /// sources, the value associated with the last source will take precedence. + /// Values defined by an Env with a duplicate key will take precedence. + /// Cannot be updated. + /// + [JsonPropertyName("envFrom")] + public IList? EnvFrom { get; set; } + + /// + /// Container image name. + /// More info: https://kubernetes.io/docs/concepts/containers/images + /// + [JsonPropertyName("image")] + public string? Image { get; set; } + + /// + /// Image pull policy. + /// One of Always, Never, IfNotPresent. + /// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + /// + [JsonPropertyName("imagePullPolicy")] + public string? ImagePullPolicy { get; set; } + + /// Lifecycle is not allowed for ephemeral containers. + [JsonPropertyName("lifecycle")] + public V1PoolerSpecTemplateSpecEphemeralContainersLifecycle? Lifecycle { get; set; } + + /// Probes are not allowed for ephemeral containers. + [JsonPropertyName("livenessProbe")] + public V1PoolerSpecTemplateSpecEphemeralContainersLivenessProbe? LivenessProbe { get; set; } + + /// + /// Name of the ephemeral container specified as a DNS_LABEL. + /// This name must be unique among all containers, init containers and ephemeral containers. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Ports are not allowed for ephemeral containers. + [JsonPropertyName("ports")] + public IList? Ports { get; set; } + + /// Probes are not allowed for ephemeral containers. + [JsonPropertyName("readinessProbe")] + public V1PoolerSpecTemplateSpecEphemeralContainersReadinessProbe? ReadinessProbe { get; set; } + + /// Resources resize policy for the container. + [JsonPropertyName("resizePolicy")] + public IList? ResizePolicy { get; set; } + + /// + /// Resources are not allowed for ephemeral containers. Ephemeral containers use spare resources + /// already allocated to the pod. + /// + [JsonPropertyName("resources")] + public V1PoolerSpecTemplateSpecEphemeralContainersResources? Resources { get; set; } + + /// + /// Restart policy for the container to manage the restart behavior of each + /// container within a pod. + /// You cannot set this field on ephemeral containers. + /// + [JsonPropertyName("restartPolicy")] + public string? RestartPolicy { get; set; } + + /// + /// Represents a list of rules to be checked to determine if the + /// container should be restarted on exit. You cannot set this field on + /// ephemeral containers. + /// + [JsonPropertyName("restartPolicyRules")] + public IList? RestartPolicyRules { get; set; } + + /// + /// Optional: SecurityContext defines the security options the ephemeral container should be run with. + /// If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + /// + [JsonPropertyName("securityContext")] + public V1PoolerSpecTemplateSpecEphemeralContainersSecurityContext? SecurityContext { get; set; } + + /// Probes are not allowed for ephemeral containers. + [JsonPropertyName("startupProbe")] + public V1PoolerSpecTemplateSpecEphemeralContainersStartupProbe? StartupProbe { get; set; } + + /// + /// Whether this container should allocate a buffer for stdin in the container runtime. If this + /// is not set, reads from stdin in the container will always result in EOF. + /// Default is false. + /// + [JsonPropertyName("stdin")] + public bool? Stdin { get; set; } + + /// + /// Whether the container runtime should close the stdin channel after it has been opened by + /// a single attach. When stdin is true the stdin stream will remain open across multiple attach + /// sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the + /// first client attaches to stdin, and then remains open and accepts data until the client disconnects, + /// at which time stdin is closed and remains closed until the container is restarted. If this + /// flag is false, a container processes that reads from stdin will never receive an EOF. + /// Default is false + /// + [JsonPropertyName("stdinOnce")] + public bool? StdinOnce { get; set; } + + /// + /// If set, the name of the container from PodSpec that this ephemeral container targets. + /// The ephemeral container will be run in the namespaces (IPC, PID, etc) of this container. + /// If not set then the ephemeral container uses the namespaces configured in the Pod spec. + /// + /// The container runtime must implement support for this feature. If the runtime does not + /// support namespace targeting then the result of setting this field is undefined. + /// + [JsonPropertyName("targetContainerName")] + public string? TargetContainerName { get; set; } + + /// + /// Optional: Path at which the file to which the container's termination message + /// will be written is mounted into the container's filesystem. + /// Message written is intended to be brief final status, such as an assertion failure message. + /// Will be truncated by the node if greater than 4096 bytes. The total message length across + /// all containers will be limited to 12kb. + /// Defaults to /dev/termination-log. + /// Cannot be updated. + /// + [JsonPropertyName("terminationMessagePath")] + public string? TerminationMessagePath { get; set; } + + /// + /// Indicate how the termination message should be populated. File will use the contents of + /// terminationMessagePath to populate the container status message on both success and failure. + /// FallbackToLogsOnError will use the last chunk of container log output if the termination + /// message file is empty and the container exited with an error. + /// The log output is limited to 2048 bytes or 80 lines, whichever is smaller. + /// Defaults to File. + /// Cannot be updated. + /// + [JsonPropertyName("terminationMessagePolicy")] + public string? TerminationMessagePolicy { get; set; } + + /// + /// Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. + /// Default is false. + /// + [JsonPropertyName("tty")] + public bool? Tty { get; set; } + + /// volumeDevices is the list of block devices to be used by the container. + [JsonPropertyName("volumeDevices")] + public IList? VolumeDevices { get; set; } + + /// + /// Pod volumes to mount into the container's filesystem. Subpath mounts are not allowed for ephemeral containers. + /// Cannot be updated. + /// + [JsonPropertyName("volumeMounts")] + public IList? VolumeMounts { get; set; } + + /// + /// Container's working directory. + /// If not specified, the container runtime's default will be used, which + /// might be configured in the container image. + /// Cannot be updated. + /// + [JsonPropertyName("workingDir")] + public string? WorkingDir { get; set; } +} + +/// +/// HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the +/// pod's hosts file. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecHostAliases +{ + /// Hostnames for the above IP address. + [JsonPropertyName("hostnames")] + public IList? Hostnames { get; set; } + + /// IP address of the host file entry. + [JsonPropertyName("ip")] + public required string Ip { get; set; } +} + +/// +/// LocalObjectReference contains enough information to let you locate the +/// referenced object inside the same namespace. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecImagePullSecrets +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// Selects a key of a ConfigMap. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnvValueFromConfigMapKeyRef +{ + /// The key to select. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the ConfigMap or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// +/// Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels[' <KEY> ']`, `metadata.annotations[' <KEY> ']`, +/// spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnvValueFromFieldRef +{ + /// Version of the schema the FieldPath is written in terms of, defaults to "v1". + [JsonPropertyName("apiVersion")] + public string? ApiVersion { get; set; } + + /// Path of the field to select in the specified API version. + [JsonPropertyName("fieldPath")] + public required string FieldPath { get; set; } +} + +/// +/// FileKeyRef selects a key of the env file. +/// Requires the EnvFiles feature gate to be enabled. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnvValueFromFileKeyRef +{ + /// + /// The key within the env file. An invalid key will prevent the pod from starting. + /// The keys defined within a source may consist of any printable ASCII characters except '='. + /// During Alpha stage of the EnvFiles feature gate, the key size is limited to 128 characters. + /// + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Specify whether the file or its key must be defined. If the file or key + /// does not exist, then the env var is not published. + /// If optional is set to true and the specified key does not exist, + /// the environment variable will not be set in the Pod's containers. + /// + /// If optional is set to false and the specified key does not exist, + /// an error will be returned during Pod creation. + /// + [JsonPropertyName("optional")] + public bool? Optional { get; set; } + + /// + /// The path within the volume from which to select the file. + /// Must be relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// The name of the volume mount containing the env file. + [JsonPropertyName("volumeName")] + public required string VolumeName { get; set; } +} + +/// +/// Selects a resource of the container: only resources limits and requests +/// (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnvValueFromResourceFieldRef +{ + /// Container name: required for volumes, optional for env vars + [JsonPropertyName("containerName")] + public string? ContainerName { get; set; } + + /// Specifies the output format of the exposed resources, defaults to "1" + [JsonPropertyName("divisor")] + public IntOrString? Divisor { get; set; } + + /// Required: resource to select + [JsonPropertyName("resource")] + public required string Resource { get; set; } +} + +/// Selects a key of a secret in the pod's namespace +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnvValueFromSecretKeyRef +{ + /// The key of the secret to select from. Must be a valid secret key. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// Source for the environment variable's value. Cannot be used if value is not empty. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnvValueFrom +{ + /// Selects a key of a ConfigMap. + [JsonPropertyName("configMapKeyRef")] + public V1PoolerSpecTemplateSpecInitContainersEnvValueFromConfigMapKeyRef? ConfigMapKeyRef { get; set; } + + /// + /// Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels[' <KEY> ']`, `metadata.annotations[' <KEY> ']`, + /// spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs. + /// + [JsonPropertyName("fieldRef")] + public V1PoolerSpecTemplateSpecInitContainersEnvValueFromFieldRef? FieldRef { get; set; } + + /// + /// FileKeyRef selects a key of the env file. + /// Requires the EnvFiles feature gate to be enabled. + /// + [JsonPropertyName("fileKeyRef")] + public V1PoolerSpecTemplateSpecInitContainersEnvValueFromFileKeyRef? FileKeyRef { get; set; } + + /// + /// Selects a resource of the container: only resources limits and requests + /// (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported. + /// + [JsonPropertyName("resourceFieldRef")] + public V1PoolerSpecTemplateSpecInitContainersEnvValueFromResourceFieldRef? ResourceFieldRef { get; set; } + + /// Selects a key of a secret in the pod's namespace + [JsonPropertyName("secretKeyRef")] + public V1PoolerSpecTemplateSpecInitContainersEnvValueFromSecretKeyRef? SecretKeyRef { get; set; } +} + +/// EnvVar represents an environment variable present in a Container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnv +{ + /// + /// Name of the environment variable. + /// May consist of any printable ASCII characters except '='. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Variable references $(VAR_NAME) are expanded + /// using the previously defined environment variables in the container and + /// any service environment variables. If a variable cannot be resolved, + /// the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. + /// "$$(VAR_NAME)" will produce the string literal "$(VAR_NAME)". + /// Escaped references will never be expanded, regardless of whether the variable + /// exists or not. + /// Defaults to " ". + /// + [JsonPropertyName("value")] + public string? Value { get; set; } + + /// Source for the environment variable's value. Cannot be used if value is not empty. + [JsonPropertyName("valueFrom")] + public V1PoolerSpecTemplateSpecInitContainersEnvValueFrom? ValueFrom { get; set; } +} + +/// The ConfigMap to select from +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnvFromConfigMapRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the ConfigMap must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// The Secret to select from +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnvFromSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// Specify whether the Secret must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// EnvFromSource represents the source of a set of ConfigMaps or Secrets +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersEnvFrom +{ + /// The ConfigMap to select from + [JsonPropertyName("configMapRef")] + public V1PoolerSpecTemplateSpecInitContainersEnvFromConfigMapRef? ConfigMapRef { get; set; } + + /// + /// Optional text to prepend to the name of each environment variable. + /// May consist of any printable ASCII characters except '='. + /// + [JsonPropertyName("prefix")] + public string? Prefix { get; set; } + + /// The Secret to select from + [JsonPropertyName("secretRef")] + public V1PoolerSpecTemplateSpecInitContainersEnvFromSecretRef? SecretRef { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePostStartExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePostStartHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePostStartHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// Sleep represents a duration that the container should sleep. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePostStartSleep +{ + /// Seconds is the number of seconds to sleep. + [JsonPropertyName("seconds")] + public required long Seconds { get; set; } +} + +/// +/// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept +/// for backward compatibility. There is no validation of this field and +/// lifecycle hooks will fail at runtime when it is specified. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// PostStart is called immediately after a container is created. If the handler fails, +/// the container is terminated and restarted according to its restart policy. +/// Other management of the container blocks until the hook completes. +/// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePostStart +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePostStartExec? Exec { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePostStartHttpGet? HttpGet { get; set; } + + /// Sleep represents a duration that the container should sleep. + [JsonPropertyName("sleep")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePostStartSleep? Sleep { get; set; } + + /// + /// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + /// for backward compatibility. There is no validation of this field and + /// lifecycle hooks will fail at runtime when it is specified. + /// + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePostStartTcpSocket? TcpSocket { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePreStopExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePreStopHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePreStopHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// Sleep represents a duration that the container should sleep. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePreStopSleep +{ + /// Seconds is the number of seconds to sleep. + [JsonPropertyName("seconds")] + public required long Seconds { get; set; } +} + +/// +/// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept +/// for backward compatibility. There is no validation of this field and +/// lifecycle hooks will fail at runtime when it is specified. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// PreStop is called immediately before a container is terminated due to an +/// API request or management event such as liveness/startup probe failure, +/// preemption, resource contention, etc. The handler is not called if the +/// container crashes or exits. The Pod's termination grace period countdown begins before the +/// PreStop hook is executed. Regardless of the outcome of the handler, the +/// container will eventually terminate within the Pod's termination grace +/// period (unless delayed by finalizers). Other management of the container blocks until the hook completes +/// or until the termination grace period is reached. +/// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecyclePreStop +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePreStopExec? Exec { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePreStopHttpGet? HttpGet { get; set; } + + /// Sleep represents a duration that the container should sleep. + [JsonPropertyName("sleep")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePreStopSleep? Sleep { get; set; } + + /// + /// Deprecated. TCPSocket is NOT supported as a LifecycleHandler and kept + /// for backward compatibility. There is no validation of this field and + /// lifecycle hooks will fail at runtime when it is specified. + /// + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePreStopTcpSocket? TcpSocket { get; set; } +} + +/// +/// Actions that the management system should take in response to container lifecycle events. +/// Cannot be updated. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLifecycle +{ + /// + /// PostStart is called immediately after a container is created. If the handler fails, + /// the container is terminated and restarted according to its restart policy. + /// Other management of the container blocks until the hook completes. + /// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + /// + [JsonPropertyName("postStart")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePostStart? PostStart { get; set; } + + /// + /// PreStop is called immediately before a container is terminated due to an + /// API request or management event such as liveness/startup probe failure, + /// preemption, resource contention, etc. The handler is not called if the + /// container crashes or exits. The Pod's termination grace period countdown begins before the + /// PreStop hook is executed. Regardless of the outcome of the handler, the + /// container will eventually terminate within the Pod's termination grace + /// period (unless delayed by finalizers). Other management of the container blocks until the hook completes + /// or until the termination grace period is reached. + /// More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks + /// + [JsonPropertyName("preStop")] + public V1PoolerSpecTemplateSpecInitContainersLifecyclePreStop? PreStop { get; set; } + + /// + /// StopSignal defines which signal will be sent to a container when it is being stopped. + /// If not specified, the default is defined by the container runtime in use. + /// StopSignal can only be set for Pods with a non-empty .spec.os.name + /// + [JsonPropertyName("stopSignal")] + public string? StopSignal { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLivenessProbeExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// GRPC specifies a GRPC HealthCheckRequest. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLivenessProbeGrpc +{ + /// Port number of the gRPC service. Number must be in the range 1 to 65535. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// Service is the name of the service to place in the gRPC HealthCheckRequest + /// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + /// + /// If this is not specified, the default behavior is defined by gRPC. + /// + [JsonPropertyName("service")] + public string? Service { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLivenessProbeHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLivenessProbeHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// TCPSocket specifies a connection to a TCP port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLivenessProbeTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// Periodic probe of container liveness. +/// Container will be restarted if the probe fails. +/// Cannot be updated. +/// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersLivenessProbe +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecInitContainersLivenessProbeExec? Exec { get; set; } + + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// GRPC specifies a GRPC HealthCheckRequest. + [JsonPropertyName("grpc")] + public V1PoolerSpecTemplateSpecInitContainersLivenessProbeGrpc? Grpc { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecInitContainersLivenessProbeHttpGet? HttpGet { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// TCPSocket specifies a connection to a TCP port. + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecInitContainersLivenessProbeTcpSocket? TcpSocket { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// ContainerPort represents a network port in a single container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersPorts +{ + /// + /// Number of port to expose on the pod's IP address. + /// This must be a valid port number, 0 < x < 65536. + /// + [JsonPropertyName("containerPort")] + public required int ContainerPort { get; set; } + + /// What host IP to bind the external port to. + [JsonPropertyName("hostIP")] + public string? HostIP { get; set; } + + /// + /// Number of port to expose on the host. + /// If specified, this must be a valid port number, 0 < x < 65536. + /// If HostNetwork is specified, this must match ContainerPort. + /// Most containers do not need this. + /// + [JsonPropertyName("hostPort")] + public int? HostPort { get; set; } + + /// + /// If specified, this must be an IANA_SVC_NAME and unique within the pod. Each + /// named port in a pod must have a unique name. Name for the port that can be + /// referred to by services. + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// + /// Protocol for port. Must be UDP, TCP, or SCTP. + /// Defaults to "TCP". + /// + [JsonPropertyName("protocol")] + public string? Protocol { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersReadinessProbeExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// GRPC specifies a GRPC HealthCheckRequest. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersReadinessProbeGrpc +{ + /// Port number of the gRPC service. Number must be in the range 1 to 65535. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// Service is the name of the service to place in the gRPC HealthCheckRequest + /// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + /// + /// If this is not specified, the default behavior is defined by gRPC. + /// + [JsonPropertyName("service")] + public string? Service { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersReadinessProbeHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersReadinessProbeHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// TCPSocket specifies a connection to a TCP port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersReadinessProbeTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// Periodic probe of container service readiness. +/// Container will be removed from service endpoints if the probe fails. +/// Cannot be updated. +/// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersReadinessProbe +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecInitContainersReadinessProbeExec? Exec { get; set; } + + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// GRPC specifies a GRPC HealthCheckRequest. + [JsonPropertyName("grpc")] + public V1PoolerSpecTemplateSpecInitContainersReadinessProbeGrpc? Grpc { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecInitContainersReadinessProbeHttpGet? HttpGet { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// TCPSocket specifies a connection to a TCP port. + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecInitContainersReadinessProbeTcpSocket? TcpSocket { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// ContainerResizePolicy represents resource resize policy for the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersResizePolicy +{ + /// + /// Name of the resource to which this resource resize policy applies. + /// Supported values: cpu, memory. + /// + [JsonPropertyName("resourceName")] + public required string ResourceName { get; set; } + + /// + /// Restart policy to apply when specified resource is resized. + /// If not specified, it defaults to NotRequired. + /// + [JsonPropertyName("restartPolicy")] + public required string RestartPolicy { get; set; } +} + +/// ResourceClaim references one entry in PodSpec.ResourceClaims. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersResourcesClaims +{ + /// + /// Name must match the name of one entry in pod.spec.resourceClaims of + /// the Pod where this field is used. It makes that resource available + /// inside a container. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Request is the name chosen for a request in the referenced claim. + /// If empty, everything from the claim is made available, otherwise + /// only the result of this request. + /// + [JsonPropertyName("request")] + public string? Request { get; set; } +} + +/// +/// Compute Resources required by this container. +/// Cannot be updated. +/// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersResources +{ + /// + /// Claims lists the names of resources, defined in spec.resourceClaims, + /// that are used by this container. + /// + /// This field depends on the + /// DynamicResourceAllocation feature gate. + /// + /// This field is immutable. It can only be set for containers. + /// + [JsonPropertyName("claims")] + public IList? Claims { get; set; } + + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// Represents the exit codes to check on container exits. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersRestartPolicyRulesExitCodes +{ + /// + /// Represents the relationship between the container exit code(s) and the + /// specified values. Possible values are: + /// - In: the requirement is satisfied if the container exit code is in the + /// set of specified values. + /// - NotIn: the requirement is satisfied if the container exit code is + /// not in the set of specified values. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// Specifies the set of values to check for container exit codes. + /// At most 255 elements are allowed. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// ContainerRestartRule describes how a container exit is handled. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersRestartPolicyRules +{ + /// + /// Specifies the action taken on a container exit if the requirements + /// are satisfied. The only possible value is "Restart" to restart the + /// container. + /// + [JsonPropertyName("action")] + public required string Action { get; set; } + + /// Represents the exit codes to check on container exits. + [JsonPropertyName("exitCodes")] + public V1PoolerSpecTemplateSpecInitContainersRestartPolicyRulesExitCodes? ExitCodes { get; set; } +} + +/// +/// appArmorProfile is the AppArmor options to use by this container. If set, this profile +/// overrides the pod's appArmorProfile. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersSecurityContextAppArmorProfile +{ + /// + /// localhostProfile indicates a profile loaded on the node that should be used. + /// The profile must be preconfigured on the node to work. + /// Must match the loaded name of the profile. + /// Must be set if and only if type is "Localhost". + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of AppArmor profile will be applied. + /// Valid options are: + /// Localhost - a profile pre-loaded on the node. + /// RuntimeDefault - the container runtime's default profile. + /// Unconfined - no AppArmor enforcement. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The capabilities to add/drop when running containers. +/// Defaults to the default set of capabilities granted by the container runtime. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersSecurityContextCapabilities +{ + /// Added capabilities + [JsonPropertyName("add")] + public IList? Add { get; set; } + + /// Removed capabilities + [JsonPropertyName("drop")] + public IList? Drop { get; set; } +} + +/// +/// The SELinux context to be applied to the container. +/// If unspecified, the container runtime will allocate a random SELinux context for each +/// container. May also be set in PodSecurityContext. If set in both SecurityContext and +/// PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersSecurityContextSeLinuxOptions +{ + /// Level is SELinux level label that applies to the container. + [JsonPropertyName("level")] + public string? Level { get; set; } + + /// Role is a SELinux role label that applies to the container. + [JsonPropertyName("role")] + public string? Role { get; set; } + + /// Type is a SELinux type label that applies to the container. + [JsonPropertyName("type")] + public string? Type { get; set; } + + /// User is a SELinux user label that applies to the container. + [JsonPropertyName("user")] + public string? User { get; set; } +} + +/// +/// The seccomp options to use by this container. If seccomp options are +/// provided at both the pod & container level, the container options +/// override the pod options. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersSecurityContextSeccompProfile +{ + /// + /// localhostProfile indicates a profile defined in a file on the node should be used. + /// The profile must be preconfigured on the node to work. + /// Must be a descending path, relative to the kubelet's configured seccomp profile location. + /// Must be set if type is "Localhost". Must NOT be set for any other type. + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of seccomp profile will be applied. + /// Valid options are: + /// + /// Localhost - a profile defined in a file on the node should be used. + /// RuntimeDefault - the container runtime default profile should be used. + /// Unconfined - no profile should be applied. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The Windows specific settings applied to all containers. +/// If unspecified, the options from the PodSecurityContext will be used. +/// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is linux. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersSecurityContextWindowsOptions +{ + /// + /// GMSACredentialSpec is where the GMSA admission webhook + /// (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + /// GMSA credential spec named by the GMSACredentialSpecName field. + /// + [JsonPropertyName("gmsaCredentialSpec")] + public string? GmsaCredentialSpec { get; set; } + + /// GMSACredentialSpecName is the name of the GMSA credential spec to use. + [JsonPropertyName("gmsaCredentialSpecName")] + public string? GmsaCredentialSpecName { get; set; } + + /// + /// HostProcess determines if a container should be run as a 'Host Process' container. + /// All of a Pod's containers must have the same effective HostProcess value + /// (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + /// In addition, if HostProcess is true then HostNetwork must also be set to true. + /// + [JsonPropertyName("hostProcess")] + public bool? HostProcess { get; set; } + + /// + /// The UserName in Windows to run the entrypoint of the container process. + /// Defaults to the user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsUserName")] + public string? RunAsUserName { get; set; } +} + +/// +/// SecurityContext defines the security options the container should be run with. +/// If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. +/// More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersSecurityContext +{ + /// + /// AllowPrivilegeEscalation controls whether a process can gain more + /// privileges than its parent process. This bool directly controls if + /// the no_new_privs flag will be set on the container process. + /// AllowPrivilegeEscalation is true always when the container is: + /// 1) run as Privileged + /// 2) has CAP_SYS_ADMIN + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("allowPrivilegeEscalation")] + public bool? AllowPrivilegeEscalation { get; set; } + + /// + /// appArmorProfile is the AppArmor options to use by this container. If set, this profile + /// overrides the pod's appArmorProfile. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("appArmorProfile")] + public V1PoolerSpecTemplateSpecInitContainersSecurityContextAppArmorProfile? AppArmorProfile { get; set; } + + /// + /// The capabilities to add/drop when running containers. + /// Defaults to the default set of capabilities granted by the container runtime. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("capabilities")] + public V1PoolerSpecTemplateSpecInitContainersSecurityContextCapabilities? Capabilities { get; set; } + + /// + /// Run container in privileged mode. + /// Processes in privileged containers are essentially equivalent to root on the host. + /// Defaults to false. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("privileged")] + public bool? Privileged { get; set; } + + /// + /// procMount denotes the type of proc mount to use for the containers. + /// The default value is Default which uses the container runtime defaults for + /// readonly paths and masked paths. + /// This requires the ProcMountType feature flag to be enabled. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("procMount")] + public string? ProcMount { get; set; } + + /// + /// Whether this container has a read-only root filesystem. + /// Default is false. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("readOnlyRootFilesystem")] + public bool? ReadOnlyRootFilesystem { get; set; } + + /// + /// The GID to run the entrypoint of the container process. + /// Uses runtime default if unset. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsGroup")] + public long? RunAsGroup { get; set; } + + /// + /// Indicates that the container must run as a non-root user. + /// If true, the Kubelet will validate the image at runtime to ensure that it + /// does not run as UID 0 (root) and fail to start the container if it does. + /// If unset or false, no such validation will be performed. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsNonRoot")] + public bool? RunAsNonRoot { get; set; } + + /// + /// The UID to run the entrypoint of the container process. + /// Defaults to user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsUser")] + public long? RunAsUser { get; set; } + + /// + /// The SELinux context to be applied to the container. + /// If unspecified, the container runtime will allocate a random SELinux context for each + /// container. May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seLinuxOptions")] + public V1PoolerSpecTemplateSpecInitContainersSecurityContextSeLinuxOptions? SeLinuxOptions { get; set; } + + /// + /// The seccomp options to use by this container. If seccomp options are + /// provided at both the pod & container level, the container options + /// override the pod options. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seccompProfile")] + public V1PoolerSpecTemplateSpecInitContainersSecurityContextSeccompProfile? SeccompProfile { get; set; } + + /// + /// The Windows specific settings applied to all containers. + /// If unspecified, the options from the PodSecurityContext will be used. + /// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is linux. + /// + [JsonPropertyName("windowsOptions")] + public V1PoolerSpecTemplateSpecInitContainersSecurityContextWindowsOptions? WindowsOptions { get; set; } +} + +/// Exec specifies a command to execute in the container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersStartupProbeExec +{ + /// + /// Command is the command line to execute inside the container, the working directory for the + /// command is root ('/') in the container's filesystem. The command is simply exec'd, it is + /// not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use + /// a shell, you need to explicitly call out to that shell. + /// Exit status of 0 is treated as live/healthy and non-zero is unhealthy. + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } +} + +/// GRPC specifies a GRPC HealthCheckRequest. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersStartupProbeGrpc +{ + /// Port number of the gRPC service. Number must be in the range 1 to 65535. + [JsonPropertyName("port")] + public required int Port { get; set; } + + /// + /// Service is the name of the service to place in the gRPC HealthCheckRequest + /// (see https://github.com/grpc/grpc/blob/master/doc/health-checking.md). + /// + /// If this is not specified, the default behavior is defined by gRPC. + /// + [JsonPropertyName("service")] + public string? Service { get; set; } +} + +/// HTTPHeader describes a custom header to be used in HTTP probes +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersStartupProbeHttpGetHttpHeaders +{ + /// + /// The header field name. + /// This will be canonicalized upon output, so case-variant names will be understood as the same header. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// The header field value + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// HTTPGet specifies an HTTP GET request to perform. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersStartupProbeHttpGet +{ + /// + /// Host name to connect to, defaults to the pod IP. You probably want to set + /// "Host" in httpHeaders instead. + /// + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// Custom headers to set in the request. HTTP allows repeated headers. + [JsonPropertyName("httpHeaders")] + public IList? HttpHeaders { get; set; } + + /// Path to access on the HTTP server. + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// Name or number of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } + + /// + /// Scheme to use for connecting to the host. + /// Defaults to HTTP. + /// + [JsonPropertyName("scheme")] + public string? Scheme { get; set; } +} + +/// TCPSocket specifies a connection to a TCP port. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersStartupProbeTcpSocket +{ + /// Optional: Host name to connect to, defaults to the pod IP. + [JsonPropertyName("host")] + public string? Host { get; set; } + + /// + /// Number or name of the port to access on the container. + /// Number must be in the range 1 to 65535. + /// Name must be an IANA_SVC_NAME. + /// + [JsonPropertyName("port")] + public required IntOrString Port { get; set; } +} + +/// +/// StartupProbe indicates that the Pod has successfully initialized. +/// If specified, no other probes are executed until this completes successfully. +/// If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. +/// This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, +/// when it might take a long time to load data or warm a cache, than during steady-state operation. +/// This cannot be updated. +/// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersStartupProbe +{ + /// Exec specifies a command to execute in the container. + [JsonPropertyName("exec")] + public V1PoolerSpecTemplateSpecInitContainersStartupProbeExec? Exec { get; set; } + + /// + /// Minimum consecutive failures for the probe to be considered failed after having succeeded. + /// Defaults to 3. Minimum value is 1. + /// + [JsonPropertyName("failureThreshold")] + public int? FailureThreshold { get; set; } + + /// GRPC specifies a GRPC HealthCheckRequest. + [JsonPropertyName("grpc")] + public V1PoolerSpecTemplateSpecInitContainersStartupProbeGrpc? Grpc { get; set; } + + /// HTTPGet specifies an HTTP GET request to perform. + [JsonPropertyName("httpGet")] + public V1PoolerSpecTemplateSpecInitContainersStartupProbeHttpGet? HttpGet { get; set; } + + /// + /// Number of seconds after the container has started before liveness probes are initiated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("initialDelaySeconds")] + public int? InitialDelaySeconds { get; set; } + + /// + /// How often (in seconds) to perform the probe. + /// Default to 10 seconds. Minimum value is 1. + /// + [JsonPropertyName("periodSeconds")] + public int? PeriodSeconds { get; set; } + + /// + /// Minimum consecutive successes for the probe to be considered successful after having failed. + /// Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. + /// + [JsonPropertyName("successThreshold")] + public int? SuccessThreshold { get; set; } + + /// TCPSocket specifies a connection to a TCP port. + [JsonPropertyName("tcpSocket")] + public V1PoolerSpecTemplateSpecInitContainersStartupProbeTcpSocket? TcpSocket { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully upon probe failure. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// If this value is nil, the pod's terminationGracePeriodSeconds will be used. Otherwise, this + /// value overrides the value provided by the pod spec. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// This is a beta field and requires enabling ProbeTerminationGracePeriod feature gate. + /// Minimum value is 1. spec.terminationGracePeriodSeconds is used if unset. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// + /// Number of seconds after which the probe times out. + /// Defaults to 1 second. Minimum value is 1. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("timeoutSeconds")] + public int? TimeoutSeconds { get; set; } +} + +/// volumeDevice describes a mapping of a raw block device within a container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersVolumeDevices +{ + /// devicePath is the path inside of the container that the device will be mapped to. + [JsonPropertyName("devicePath")] + public required string DevicePath { get; set; } + + /// name must match the name of a persistentVolumeClaim in the pod + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// VolumeMount describes a mounting of a Volume within a container. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainersVolumeMounts +{ + /// + /// Path within the container at which the volume should be mounted. Must + /// not contain ':'. + /// + [JsonPropertyName("mountPath")] + public required string MountPath { get; set; } + + /// + /// mountPropagation determines how mounts are propagated from the host + /// to container and the other way around. + /// When not set, MountPropagationNone is used. + /// This field is beta in 1.10. + /// When RecursiveReadOnly is set to IfPossible or to Enabled, MountPropagation must be None or unspecified + /// (which defaults to None). + /// + [JsonPropertyName("mountPropagation")] + public string? MountPropagation { get; set; } + + /// This must match the Name of a Volume. + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Mounted read-only if true, read-write otherwise (false or unspecified). + /// Defaults to false. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// RecursiveReadOnly specifies whether read-only mounts should be handled + /// recursively. + /// + /// If ReadOnly is false, this field has no meaning and must be unspecified. + /// + /// If ReadOnly is true, and this field is set to Disabled, the mount is not made + /// recursively read-only. If this field is set to IfPossible, the mount is made + /// recursively read-only, if it is supported by the container runtime. If this + /// field is set to Enabled, the mount is made recursively read-only if it is + /// supported by the container runtime, otherwise the pod will not be started and + /// an error will be generated to indicate the reason. + /// + /// If this field is set to IfPossible or Enabled, MountPropagation must be set to + /// None (or be unspecified, which defaults to None). + /// + /// If this field is not specified, it is treated as an equivalent of Disabled. + /// + [JsonPropertyName("recursiveReadOnly")] + public string? RecursiveReadOnly { get; set; } + + /// + /// Path within the volume from which the container's volume should be mounted. + /// Defaults to " " (volume's root). + /// + [JsonPropertyName("subPath")] + public string? SubPath { get; set; } + + /// + /// Expanded path within the volume from which the container's volume should be mounted. + /// Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. + /// Defaults to " " (volume's root). + /// SubPathExpr and SubPath are mutually exclusive. + /// + [JsonPropertyName("subPathExpr")] + public string? SubPathExpr { get; set; } +} + +/// A single application container that you want to run within a pod. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecInitContainers +{ + /// + /// Arguments to the entrypoint. + /// The container image's CMD is used if this is not provided. + /// Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + /// cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + /// produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + /// of whether the variable exists or not. Cannot be updated. + /// More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + /// + [JsonPropertyName("args")] + public IList? Args { get; set; } + + /// + /// Entrypoint array. Not executed within a shell. + /// The container image's ENTRYPOINT is used if this is not provided. + /// Variable references $(VAR_NAME) are expanded using the container's environment. If a variable + /// cannot be resolved, the reference in the input string will be unchanged. Double $$ are reduced + /// to a single $, which allows for escaping the $(VAR_NAME) syntax: i.e. "$$(VAR_NAME)" will + /// produce the string literal "$(VAR_NAME)". Escaped references will never be expanded, regardless + /// of whether the variable exists or not. Cannot be updated. + /// More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell + /// + [JsonPropertyName("command")] + public IList? Command { get; set; } + + /// + /// List of environment variables to set in the container. + /// Cannot be updated. + /// + [JsonPropertyName("env")] + public IList? Env { get; set; } + + /// + /// List of sources to populate environment variables in the container. + /// The keys defined within a source may consist of any printable ASCII characters except '='. + /// When a key exists in multiple + /// sources, the value associated with the last source will take precedence. + /// Values defined by an Env with a duplicate key will take precedence. + /// Cannot be updated. + /// + [JsonPropertyName("envFrom")] + public IList? EnvFrom { get; set; } + + /// + /// Container image name. + /// More info: https://kubernetes.io/docs/concepts/containers/images + /// This field is optional to allow higher level config management to default or override + /// container images in workload controllers like Deployments and StatefulSets. + /// + [JsonPropertyName("image")] + public string? Image { get; set; } + + /// + /// Image pull policy. + /// One of Always, Never, IfNotPresent. + /// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/containers/images#updating-images + /// + [JsonPropertyName("imagePullPolicy")] + public string? ImagePullPolicy { get; set; } + + /// + /// Actions that the management system should take in response to container lifecycle events. + /// Cannot be updated. + /// + [JsonPropertyName("lifecycle")] + public V1PoolerSpecTemplateSpecInitContainersLifecycle? Lifecycle { get; set; } + + /// + /// Periodic probe of container liveness. + /// Container will be restarted if the probe fails. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("livenessProbe")] + public V1PoolerSpecTemplateSpecInitContainersLivenessProbe? LivenessProbe { get; set; } + + /// + /// Name of the container specified as a DNS_LABEL. + /// Each container in a pod must have a unique name (DNS_LABEL). + /// Cannot be updated. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// List of ports to expose from the container. Not specifying a port here + /// DOES NOT prevent that port from being exposed. Any port which is + /// listening on the default "0.0.0.0" address inside a container will be + /// accessible from the network. + /// Modifying this array with strategic merge patch may corrupt the data. + /// For more information See https://github.com/kubernetes/kubernetes/issues/108255. + /// Cannot be updated. + /// + [JsonPropertyName("ports")] + public IList? Ports { get; set; } + + /// + /// Periodic probe of container service readiness. + /// Container will be removed from service endpoints if the probe fails. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("readinessProbe")] + public V1PoolerSpecTemplateSpecInitContainersReadinessProbe? ReadinessProbe { get; set; } + + /// + /// Resources resize policy for the container. + /// This field cannot be set on ephemeral containers. + /// + [JsonPropertyName("resizePolicy")] + public IList? ResizePolicy { get; set; } + + /// + /// Compute Resources required by this container. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("resources")] + public V1PoolerSpecTemplateSpecInitContainersResources? Resources { get; set; } + + /// + /// RestartPolicy defines the restart behavior of individual containers in a pod. + /// This overrides the pod-level restart policy. When this field is not specified, + /// the restart behavior is defined by the Pod's restart policy and the container type. + /// Additionally, setting the RestartPolicy as "Always" for the init container will + /// have the following effect: + /// this init container will be continually restarted on + /// exit until all regular containers have terminated. Once all regular + /// containers have completed, all init containers with restartPolicy "Always" + /// will be shut down. This lifecycle differs from normal init containers and + /// is often referred to as a "sidecar" container. Although this init + /// container still starts in the init container sequence, it does not wait + /// for the container to complete before proceeding to the next init + /// container. Instead, the next init container starts immediately after this + /// init container is started, or after any startupProbe has successfully + /// completed. + /// + [JsonPropertyName("restartPolicy")] + public string? RestartPolicy { get; set; } + + /// + /// Represents a list of rules to be checked to determine if the + /// container should be restarted on exit. The rules are evaluated in + /// order. Once a rule matches a container exit condition, the remaining + /// rules are ignored. If no rule matches the container exit condition, + /// the Container-level restart policy determines the whether the container + /// is restarted or not. Constraints on the rules: + /// - At most 20 rules are allowed. + /// - Rules can have the same action. + /// - Identical rules are not forbidden in validations. + /// When rules are specified, container MUST set RestartPolicy explicitly + /// even it if matches the Pod's RestartPolicy. + /// + [JsonPropertyName("restartPolicyRules")] + public IList? RestartPolicyRules { get; set; } + + /// + /// SecurityContext defines the security options the container should be run with. + /// If set, the fields of SecurityContext override the equivalent fields of PodSecurityContext. + /// More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ + /// + [JsonPropertyName("securityContext")] + public V1PoolerSpecTemplateSpecInitContainersSecurityContext? SecurityContext { get; set; } + + /// + /// StartupProbe indicates that the Pod has successfully initialized. + /// If specified, no other probes are executed until this completes successfully. + /// If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. + /// This can be used to provide different probe parameters at the beginning of a Pod's lifecycle, + /// when it might take a long time to load data or warm a cache, than during steady-state operation. + /// This cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes + /// + [JsonPropertyName("startupProbe")] + public V1PoolerSpecTemplateSpecInitContainersStartupProbe? StartupProbe { get; set; } + + /// + /// Whether this container should allocate a buffer for stdin in the container runtime. If this + /// is not set, reads from stdin in the container will always result in EOF. + /// Default is false. + /// + [JsonPropertyName("stdin")] + public bool? Stdin { get; set; } + + /// + /// Whether the container runtime should close the stdin channel after it has been opened by + /// a single attach. When stdin is true the stdin stream will remain open across multiple attach + /// sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the + /// first client attaches to stdin, and then remains open and accepts data until the client disconnects, + /// at which time stdin is closed and remains closed until the container is restarted. If this + /// flag is false, a container processes that reads from stdin will never receive an EOF. + /// Default is false + /// + [JsonPropertyName("stdinOnce")] + public bool? StdinOnce { get; set; } + + /// + /// Optional: Path at which the file to which the container's termination message + /// will be written is mounted into the container's filesystem. + /// Message written is intended to be brief final status, such as an assertion failure message. + /// Will be truncated by the node if greater than 4096 bytes. The total message length across + /// all containers will be limited to 12kb. + /// Defaults to /dev/termination-log. + /// Cannot be updated. + /// + [JsonPropertyName("terminationMessagePath")] + public string? TerminationMessagePath { get; set; } + + /// + /// Indicate how the termination message should be populated. File will use the contents of + /// terminationMessagePath to populate the container status message on both success and failure. + /// FallbackToLogsOnError will use the last chunk of container log output if the termination + /// message file is empty and the container exited with an error. + /// The log output is limited to 2048 bytes or 80 lines, whichever is smaller. + /// Defaults to File. + /// Cannot be updated. + /// + [JsonPropertyName("terminationMessagePolicy")] + public string? TerminationMessagePolicy { get; set; } + + /// + /// Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. + /// Default is false. + /// + [JsonPropertyName("tty")] + public bool? Tty { get; set; } + + /// volumeDevices is the list of block devices to be used by the container. + [JsonPropertyName("volumeDevices")] + public IList? VolumeDevices { get; set; } + + /// + /// Pod volumes to mount into the container's filesystem. + /// Cannot be updated. + /// + [JsonPropertyName("volumeMounts")] + public IList? VolumeMounts { get; set; } + + /// + /// Container's working directory. + /// If not specified, the container runtime's default will be used, which + /// might be configured in the container image. + /// Cannot be updated. + /// + [JsonPropertyName("workingDir")] + public string? WorkingDir { get; set; } +} + +/// +/// Specifies the OS of the containers in the pod. +/// Some pod and container fields are restricted if this is set. +/// +/// If the OS field is set to linux, the following fields must be unset: +/// -securityContext.windowsOptions +/// +/// If the OS field is set to windows, following fields must be unset: +/// - spec.hostPID +/// - spec.hostIPC +/// - spec.hostUsers +/// - spec.resources +/// - spec.securityContext.appArmorProfile +/// - spec.securityContext.seLinuxOptions +/// - spec.securityContext.seccompProfile +/// - spec.securityContext.fsGroup +/// - spec.securityContext.fsGroupChangePolicy +/// - spec.securityContext.sysctls +/// - spec.shareProcessNamespace +/// - spec.securityContext.runAsUser +/// - spec.securityContext.runAsGroup +/// - spec.securityContext.supplementalGroups +/// - spec.securityContext.supplementalGroupsPolicy +/// - spec.containers[*].securityContext.appArmorProfile +/// - spec.containers[*].securityContext.seLinuxOptions +/// - spec.containers[*].securityContext.seccompProfile +/// - spec.containers[*].securityContext.capabilities +/// - spec.containers[*].securityContext.readOnlyRootFilesystem +/// - spec.containers[*].securityContext.privileged +/// - spec.containers[*].securityContext.allowPrivilegeEscalation +/// - spec.containers[*].securityContext.procMount +/// - spec.containers[*].securityContext.runAsUser +/// - spec.containers[*].securityContext.runAsGroup +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecOs +{ + /// + /// Name is the name of the operating system. The currently supported values are linux and windows. + /// Additional value may be defined in future and can be one of: + /// https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration + /// Clients should expect to handle additional values and treat unrecognized values in this field as os: null + /// + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// PodReadinessGate contains the reference to a pod condition +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecReadinessGates +{ + /// ConditionType refers to a condition in the pod's condition list with matching type. + [JsonPropertyName("conditionType")] + public required string ConditionType { get; set; } +} + +/// +/// PodResourceClaim references exactly one ResourceClaim, either directly +/// or by naming a ResourceClaimTemplate which is then turned into a ResourceClaim +/// for the pod. +/// +/// It adds a name to it that uniquely identifies the ResourceClaim inside the Pod. +/// Containers that need access to the ResourceClaim reference it with this name. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecResourceClaims +{ + /// + /// Name uniquely identifies this resource claim inside the pod. + /// This must be a DNS_LABEL. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// ResourceClaimName is the name of a ResourceClaim object in the same + /// namespace as this pod. + /// + /// Exactly one of ResourceClaimName and ResourceClaimTemplateName must + /// be set. + /// + [JsonPropertyName("resourceClaimName")] + public string? ResourceClaimName { get; set; } + + /// + /// ResourceClaimTemplateName is the name of a ResourceClaimTemplate + /// object in the same namespace as this pod. + /// + /// The template will be used to create a new ResourceClaim, which will + /// be bound to this pod. When this pod is deleted, the ResourceClaim + /// will also be deleted. The pod name and resource name, along with a + /// generated component, will be used to form a unique name for the + /// ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses. + /// + /// This field is immutable and no changes will be made to the + /// corresponding ResourceClaim by the control plane after creating the + /// ResourceClaim. + /// + /// Exactly one of ResourceClaimName and ResourceClaimTemplateName must + /// be set. + /// + [JsonPropertyName("resourceClaimTemplateName")] + public string? ResourceClaimTemplateName { get; set; } +} + +/// ResourceClaim references one entry in PodSpec.ResourceClaims. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecResourcesClaims +{ + /// + /// Name must match the name of one entry in pod.spec.resourceClaims of + /// the Pod where this field is used. It makes that resource available + /// inside a container. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Request is the name chosen for a request in the referenced claim. + /// If empty, everything from the claim is made available, otherwise + /// only the result of this request. + /// + [JsonPropertyName("request")] + public string? Request { get; set; } +} + +/// +/// Resources is the total amount of CPU and Memory resources required by all +/// containers in the pod. It supports specifying Requests and Limits for +/// "cpu", "memory" and "hugepages-" resource names only. ResourceClaims are not supported. +/// +/// This field enables fine-grained control over resource allocation for the +/// entire pod, allowing resource sharing among containers in a pod. +/// +/// This is an alpha field and requires enabling the PodLevelResources feature +/// gate. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecResources +{ + /// + /// Claims lists the names of resources, defined in spec.resourceClaims, + /// that are used by this container. + /// + /// This field depends on the + /// DynamicResourceAllocation feature gate. + /// + /// This field is immutable. It can only be set for containers. + /// + [JsonPropertyName("claims")] + public IList? Claims { get; set; } + + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// PodSchedulingGate is associated to a Pod to guard its scheduling. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecSchedulingGates +{ + /// + /// Name of the scheduling gate. + /// Each scheduling gate must have a unique name field. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// appArmorProfile is the AppArmor options to use by the containers in this pod. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecSecurityContextAppArmorProfile +{ + /// + /// localhostProfile indicates a profile loaded on the node that should be used. + /// The profile must be preconfigured on the node to work. + /// Must match the loaded name of the profile. + /// Must be set if and only if type is "Localhost". + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of AppArmor profile will be applied. + /// Valid options are: + /// Localhost - a profile pre-loaded on the node. + /// RuntimeDefault - the container runtime's default profile. + /// Unconfined - no AppArmor enforcement. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// +/// The SELinux context to be applied to all containers. +/// If unspecified, the container runtime will allocate a random SELinux context for each +/// container. May also be set in SecurityContext. If set in +/// both SecurityContext and PodSecurityContext, the value specified in SecurityContext +/// takes precedence for that container. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecSecurityContextSeLinuxOptions +{ + /// Level is SELinux level label that applies to the container. + [JsonPropertyName("level")] + public string? Level { get; set; } + + /// Role is a SELinux role label that applies to the container. + [JsonPropertyName("role")] + public string? Role { get; set; } + + /// Type is a SELinux type label that applies to the container. + [JsonPropertyName("type")] + public string? Type { get; set; } + + /// User is a SELinux user label that applies to the container. + [JsonPropertyName("user")] + public string? User { get; set; } +} + +/// +/// The seccomp options to use by the containers in this pod. +/// Note that this field cannot be set when spec.os.name is windows. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecSecurityContextSeccompProfile +{ + /// + /// localhostProfile indicates a profile defined in a file on the node should be used. + /// The profile must be preconfigured on the node to work. + /// Must be a descending path, relative to the kubelet's configured seccomp profile location. + /// Must be set if type is "Localhost". Must NOT be set for any other type. + /// + [JsonPropertyName("localhostProfile")] + public string? LocalhostProfile { get; set; } + + /// + /// type indicates which kind of seccomp profile will be applied. + /// Valid options are: + /// + /// Localhost - a profile defined in a file on the node should be used. + /// RuntimeDefault - the container runtime default profile should be used. + /// Unconfined - no profile should be applied. + /// + [JsonPropertyName("type")] + public required string Type { get; set; } +} + +/// Sysctl defines a kernel parameter to be set +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecSecurityContextSysctls +{ + /// Name of a property to set + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Value of a property to set + [JsonPropertyName("value")] + public required string Value { get; set; } +} + +/// +/// The Windows specific settings applied to all containers. +/// If unspecified, the options within a container's SecurityContext will be used. +/// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. +/// Note that this field cannot be set when spec.os.name is linux. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecSecurityContextWindowsOptions +{ + /// + /// GMSACredentialSpec is where the GMSA admission webhook + /// (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the + /// GMSA credential spec named by the GMSACredentialSpecName field. + /// + [JsonPropertyName("gmsaCredentialSpec")] + public string? GmsaCredentialSpec { get; set; } + + /// GMSACredentialSpecName is the name of the GMSA credential spec to use. + [JsonPropertyName("gmsaCredentialSpecName")] + public string? GmsaCredentialSpecName { get; set; } + + /// + /// HostProcess determines if a container should be run as a 'Host Process' container. + /// All of a Pod's containers must have the same effective HostProcess value + /// (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). + /// In addition, if HostProcess is true then HostNetwork must also be set to true. + /// + [JsonPropertyName("hostProcess")] + public bool? HostProcess { get; set; } + + /// + /// The UserName in Windows to run the entrypoint of the container process. + /// Defaults to the user specified in image metadata if unspecified. + /// May also be set in PodSecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsUserName")] + public string? RunAsUserName { get; set; } +} + +/// +/// SecurityContext holds pod-level security attributes and common container settings. +/// Optional: Defaults to empty. See type description for default values of each field. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecSecurityContext +{ + /// + /// appArmorProfile is the AppArmor options to use by the containers in this pod. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("appArmorProfile")] + public V1PoolerSpecTemplateSpecSecurityContextAppArmorProfile? AppArmorProfile { get; set; } + + /// + /// A special supplemental group that applies to all containers in a pod. + /// Some volume types allow the Kubelet to change the ownership of that volume + /// to be owned by the pod: + /// + /// 1. The owning GID will be the FSGroup + /// 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) + /// 3. The permission bits are OR'd with rw-rw---- + /// + /// If unset, the Kubelet will not modify the ownership and permissions of any volume. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("fsGroup")] + public long? FsGroup { get; set; } + + /// + /// fsGroupChangePolicy defines behavior of changing ownership and permission of the volume + /// before being exposed inside Pod. This field will only apply to + /// volume types which support fsGroup based ownership(and permissions). + /// It will have no effect on ephemeral volume types such as: secret, configmaps + /// and emptydir. + /// Valid values are "OnRootMismatch" and "Always". If not specified, "Always" is used. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("fsGroupChangePolicy")] + public string? FsGroupChangePolicy { get; set; } + + /// + /// The GID to run the entrypoint of the container process. + /// Uses runtime default if unset. + /// May also be set in SecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence + /// for that container. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsGroup")] + public long? RunAsGroup { get; set; } + + /// + /// Indicates that the container must run as a non-root user. + /// If true, the Kubelet will validate the image at runtime to ensure that it + /// does not run as UID 0 (root) and fail to start the container if it does. + /// If unset or false, no such validation will be performed. + /// May also be set in SecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence. + /// + [JsonPropertyName("runAsNonRoot")] + public bool? RunAsNonRoot { get; set; } + + /// + /// The UID to run the entrypoint of the container process. + /// Defaults to user specified in image metadata if unspecified. + /// May also be set in SecurityContext. If set in both SecurityContext and + /// PodSecurityContext, the value specified in SecurityContext takes precedence + /// for that container. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("runAsUser")] + public long? RunAsUser { get; set; } + + /// + /// seLinuxChangePolicy defines how the container's SELinux label is applied to all volumes used by the Pod. + /// It has no effect on nodes that do not support SELinux or to volumes does not support SELinux. + /// Valid values are "MountOption" and "Recursive". + /// + /// "Recursive" means relabeling of all files on all Pod volumes by the container runtime. + /// This may be slow for large volumes, but allows mixing privileged and unprivileged Pods sharing the same volume on the same node. + /// + /// "MountOption" mounts all eligible Pod volumes with `-o context` mount option. + /// This requires all Pods that share the same volume to use the same SELinux label. + /// It is not possible to share the same volume among privileged and unprivileged Pods. + /// Eligible volumes are in-tree FibreChannel and iSCSI volumes, and all CSI volumes + /// whose CSI driver announces SELinux support by setting spec.seLinuxMount: true in their + /// CSIDriver instance. Other volumes are always re-labelled recursively. + /// "MountOption" value is allowed only when SELinuxMount feature gate is enabled. + /// + /// If not specified and SELinuxMount feature gate is enabled, "MountOption" is used. + /// If not specified and SELinuxMount feature gate is disabled, "MountOption" is used for ReadWriteOncePod volumes + /// and "Recursive" for all other volumes. + /// + /// This field affects only Pods that have SELinux label set, either in PodSecurityContext or in SecurityContext of all containers. + /// + /// All Pods that use the same volume should use the same seLinuxChangePolicy, otherwise some pods can get stuck in ContainerCreating state. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seLinuxChangePolicy")] + public string? SeLinuxChangePolicy { get; set; } + + /// + /// The SELinux context to be applied to all containers. + /// If unspecified, the container runtime will allocate a random SELinux context for each + /// container. May also be set in SecurityContext. If set in + /// both SecurityContext and PodSecurityContext, the value specified in SecurityContext + /// takes precedence for that container. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seLinuxOptions")] + public V1PoolerSpecTemplateSpecSecurityContextSeLinuxOptions? SeLinuxOptions { get; set; } + + /// + /// The seccomp options to use by the containers in this pod. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("seccompProfile")] + public V1PoolerSpecTemplateSpecSecurityContextSeccompProfile? SeccompProfile { get; set; } + + /// + /// A list of groups applied to the first process run in each container, in + /// addition to the container's primary GID and fsGroup (if specified). If + /// the SupplementalGroupsPolicy feature is enabled, the + /// supplementalGroupsPolicy field determines whether these are in addition + /// to or instead of any group memberships defined in the container image. + /// If unspecified, no additional groups are added, though group memberships + /// defined in the container image may still be used, depending on the + /// supplementalGroupsPolicy field. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("supplementalGroups")] + public IList? SupplementalGroups { get; set; } + + /// + /// Defines how supplemental groups of the first container processes are calculated. + /// Valid values are "Merge" and "Strict". If not specified, "Merge" is used. + /// (Alpha) Using the field requires the SupplementalGroupsPolicy feature gate to be enabled + /// and the container runtime must implement support for this feature. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("supplementalGroupsPolicy")] + public string? SupplementalGroupsPolicy { get; set; } + + /// + /// Sysctls hold a list of namespaced sysctls used for the pod. Pods with unsupported + /// sysctls (by the container runtime) might fail to launch. + /// Note that this field cannot be set when spec.os.name is windows. + /// + [JsonPropertyName("sysctls")] + public IList? Sysctls { get; set; } + + /// + /// The Windows specific settings applied to all containers. + /// If unspecified, the options within a container's SecurityContext will be used. + /// If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. + /// Note that this field cannot be set when spec.os.name is linux. + /// + [JsonPropertyName("windowsOptions")] + public V1PoolerSpecTemplateSpecSecurityContextWindowsOptions? WindowsOptions { get; set; } +} + +/// +/// The pod this Toleration is attached to tolerates any taint that matches +/// the triple <key,value,effect> using the matching operator <operator>. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecTolerations +{ + /// + /// Effect indicates the taint effect to match. Empty means match all taint effects. + /// When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. + /// + [JsonPropertyName("effect")] + public string? Effect { get; set; } + + /// + /// Key is the taint key that the toleration applies to. Empty means match all taint keys. + /// If the key is empty, operator must be Exists; this combination means to match all values and all keys. + /// + [JsonPropertyName("key")] + public string? Key { get; set; } + + /// + /// Operator represents a key's relationship to the value. + /// Valid operators are Exists, Equal, Lt, and Gt. Defaults to Equal. + /// Exists is equivalent to wildcard for value, so that a pod can + /// tolerate all taints of a particular category. + /// Lt and Gt perform numeric comparisons (requires feature gate TaintTolerationComparisonOperators). + /// + [JsonPropertyName("operator")] + public string? Operator { get; set; } + + /// + /// TolerationSeconds represents the period of time the toleration (which must be + /// of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, + /// it is not set, which means tolerate the taint forever (do not evict). Zero and + /// negative values will be treated as 0 (evict immediately) by the system. + /// + [JsonPropertyName("tolerationSeconds")] + public long? TolerationSeconds { get; set; } + + /// + /// Value is the taint value the toleration matches to. + /// If the operator is Exists, the value should be empty, otherwise just a regular string. + /// + [JsonPropertyName("value")] + public string? Value { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecTopologySpreadConstraintsLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// LabelSelector is used to find matching pods. +/// Pods that match this label selector are counted to determine the number of pods +/// in their corresponding topology domain. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecTopologySpreadConstraintsLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// TopologySpreadConstraint specifies how to spread matching pods among the given topology. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecTopologySpreadConstraints +{ + /// + /// LabelSelector is used to find matching pods. + /// Pods that match this label selector are counted to determine the number of pods + /// in their corresponding topology domain. + /// + [JsonPropertyName("labelSelector")] + public V1PoolerSpecTemplateSpecTopologySpreadConstraintsLabelSelector? LabelSelector { get; set; } + + /// + /// MatchLabelKeys is a set of pod label keys to select the pods over which + /// spreading will be calculated. The keys are used to lookup values from the + /// incoming pod labels, those key-value labels are ANDed with labelSelector + /// to select the group of existing pods over which spreading will be calculated + /// for the incoming pod. The same key is forbidden to exist in both MatchLabelKeys and LabelSelector. + /// MatchLabelKeys cannot be set when LabelSelector isn't set. + /// Keys that don't exist in the incoming pod labels will + /// be ignored. A null or empty list means only match against labelSelector. + /// + /// This is a beta field and requires the MatchLabelKeysInPodTopologySpread feature gate to be enabled (enabled by default). + /// + [JsonPropertyName("matchLabelKeys")] + public IList? MatchLabelKeys { get; set; } + + /// + /// MaxSkew describes the degree to which pods may be unevenly distributed. + /// When `whenUnsatisfiable=DoNotSchedule`, it is the maximum permitted difference + /// between the number of matching pods in the target topology and the global minimum. + /// The global minimum is the minimum number of matching pods in an eligible domain + /// or zero if the number of eligible domains is less than MinDomains. + /// For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + /// labelSelector spread as 2/2/1: + /// In this case, the global minimum is 1. + /// | zone1 | zone2 | zone3 | + /// | P P | P P | P | + /// - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; + /// scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) + /// violate MaxSkew(1). + /// - if MaxSkew is 2, incoming pod can be scheduled onto any zone. + /// When `whenUnsatisfiable=ScheduleAnyway`, it is used to give higher precedence + /// to topologies that satisfy it. + /// It's a required field. Default value is 1 and 0 is not allowed. + /// + [JsonPropertyName("maxSkew")] + public required int MaxSkew { get; set; } + + /// + /// MinDomains indicates a minimum number of eligible domains. + /// When the number of eligible domains with matching topology keys is less than minDomains, + /// Pod Topology Spread treats "global minimum" as 0, and then the calculation of Skew is performed. + /// And when the number of eligible domains with matching topology keys equals or greater than minDomains, + /// this value has no effect on scheduling. + /// As a result, when the number of eligible domains is less than minDomains, + /// scheduler won't schedule more than maxSkew Pods to those domains. + /// If value is nil, the constraint behaves as if MinDomains is equal to 1. + /// Valid values are integers greater than 0. + /// When value is not nil, WhenUnsatisfiable must be DoNotSchedule. + /// + /// For example, in a 3-zone cluster, MaxSkew is set to 2, MinDomains is set to 5 and pods with the same + /// labelSelector spread as 2/2/2: + /// | zone1 | zone2 | zone3 | + /// | P P | P P | P P | + /// The number of domains is less than 5(MinDomains), so "global minimum" is treated as 0. + /// In this situation, new pod with the same labelSelector cannot be scheduled, + /// because computed skew will be 3(3 - 0) if new Pod is scheduled to any of the three zones, + /// it will violate MaxSkew. + /// + [JsonPropertyName("minDomains")] + public int? MinDomains { get; set; } + + /// + /// NodeAffinityPolicy indicates how we will treat Pod's nodeAffinity/nodeSelector + /// when calculating pod topology spread skew. Options are: + /// - Honor: only nodes matching nodeAffinity/nodeSelector are included in the calculations. + /// - Ignore: nodeAffinity/nodeSelector are ignored. All nodes are included in the calculations. + /// + /// If this value is nil, the behavior is equivalent to the Honor policy. + /// + [JsonPropertyName("nodeAffinityPolicy")] + public string? NodeAffinityPolicy { get; set; } + + /// + /// NodeTaintsPolicy indicates how we will treat node taints when calculating + /// pod topology spread skew. Options are: + /// - Honor: nodes without taints, along with tainted nodes for which the incoming pod + /// has a toleration, are included. + /// - Ignore: node taints are ignored. All nodes are included. + /// + /// If this value is nil, the behavior is equivalent to the Ignore policy. + /// + [JsonPropertyName("nodeTaintsPolicy")] + public string? NodeTaintsPolicy { get; set; } + + /// + /// TopologyKey is the key of node labels. Nodes that have a label with this key + /// and identical values are considered to be in the same topology. + /// We consider each <key, value> as a "bucket", and try to put balanced number + /// of pods into each bucket. + /// We define a domain as a particular instance of a topology. + /// Also, we define an eligible domain as a domain whose nodes meet the requirements of + /// nodeAffinityPolicy and nodeTaintsPolicy. + /// e.g. If TopologyKey is "kubernetes.io/hostname", each Node is a domain of that topology. + /// And, if TopologyKey is "topology.kubernetes.io/zone", each zone is a domain of that topology. + /// It's a required field. + /// + [JsonPropertyName("topologyKey")] + public required string TopologyKey { get; set; } + + /// + /// WhenUnsatisfiable indicates how to deal with a pod if it doesn't satisfy + /// the spread constraint. + /// - DoNotSchedule (default) tells the scheduler not to schedule it. + /// - ScheduleAnyway tells the scheduler to schedule the pod in any location, + /// but giving higher precedence to topologies that would help reduce the + /// skew. + /// A constraint is considered "Unsatisfiable" for an incoming pod + /// if and only if every possible node assignment for that pod would violate + /// "MaxSkew" on some topology. + /// For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same + /// labelSelector spread as 3/1/1: + /// | zone1 | zone2 | zone3 | + /// | P P P | P | P | + /// If WhenUnsatisfiable is set to DoNotSchedule, incoming pod can only be scheduled + /// to zone2(zone3) to become 3/2/1(3/1/2) as ActualSkew(2-1) on zone2(zone3) satisfies + /// MaxSkew(1). In other words, the cluster can still be imbalanced, but scheduler + /// won't make it *more* imbalanced. + /// It's a required field. + /// + [JsonPropertyName("whenUnsatisfiable")] + public required string WhenUnsatisfiable { get; set; } +} + +/// +/// awsElasticBlockStore represents an AWS Disk resource that is attached to a +/// kubelet's host machine and then exposed to the pod. +/// Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree +/// awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver. +/// More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesAwsElasticBlockStore +{ + /// + /// fsType is the filesystem type of the volume that you want to mount. + /// Tip: Ensure that the filesystem type is supported by the host operating system. + /// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// + /// partition is the partition in the volume that you want to mount. + /// If omitted, the default is to mount by volume name. + /// Examples: For volume /dev/sda1, you specify the partition as "1". + /// Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). + /// + [JsonPropertyName("partition")] + public int? Partition { get; set; } + + /// + /// readOnly value true will force the readOnly setting in VolumeMounts. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume). + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + /// + [JsonPropertyName("volumeID")] + public required string VolumeID { get; set; } +} + +/// +/// azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. +/// Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type +/// are redirected to the disk.csi.azure.com CSI driver. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesAzureDisk +{ + /// cachingMode is the Host Caching mode: None, Read Only, Read Write. + [JsonPropertyName("cachingMode")] + public string? CachingMode { get; set; } + + /// diskName is the Name of the data disk in the blob storage + [JsonPropertyName("diskName")] + public required string DiskName { get; set; } + + /// diskURI is the URI of data disk in the blob storage + [JsonPropertyName("diskURI")] + public required string DiskURI { get; set; } + + /// + /// fsType is Filesystem type to mount. + /// Must be a filesystem type supported by the host operating system. + /// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// kind expected values are Shared: multiple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared + [JsonPropertyName("kind")] + public string? Kind { get; set; } + + /// + /// readOnly Defaults to false (read/write). ReadOnly here will force + /// the ReadOnly setting in VolumeMounts. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } +} + +/// +/// azureFile represents an Azure File Service mount on the host and bind mount to the pod. +/// Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type +/// are redirected to the file.csi.azure.com CSI driver. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesAzureFile +{ + /// + /// readOnly defaults to false (read/write). ReadOnly here will force + /// the ReadOnly setting in VolumeMounts. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// secretName is the name of secret that contains Azure Storage Account Name and Key + [JsonPropertyName("secretName")] + public required string SecretName { get; set; } + + /// shareName is the azure share Name + [JsonPropertyName("shareName")] + public required string ShareName { get; set; } +} + +/// +/// secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. +/// More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesCephfsSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// +/// cephFS represents a Ceph FS mount on the host that shares a pod's lifetime. +/// Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesCephfs +{ + /// + /// monitors is Required: Monitors is a collection of Ceph monitors + /// More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + /// + [JsonPropertyName("monitors")] + public required IList Monitors { get; set; } + + /// path is Optional: Used as the mounted root, rather than the full Ceph tree, default is / + [JsonPropertyName("path")] + public string? Path { get; set; } + + /// + /// readOnly is Optional: Defaults to false (read/write). ReadOnly here will force + /// the ReadOnly setting in VolumeMounts. + /// More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// secretFile is Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret + /// More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + /// + [JsonPropertyName("secretFile")] + public string? SecretFile { get; set; } + + /// + /// secretRef is Optional: SecretRef is reference to the authentication secret for User, default is empty. + /// More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + /// + [JsonPropertyName("secretRef")] + public V1PoolerSpecTemplateSpecVolumesCephfsSecretRef? SecretRef { get; set; } + + /// + /// user is optional: User is the rados user name, default is admin + /// More info: https://examples.k8s.io/volumes/cephfs/README.md#how-to-use-it + /// + [JsonPropertyName("user")] + public string? User { get; set; } +} + +/// +/// secretRef is optional: points to a secret object containing parameters used to connect +/// to OpenStack. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesCinderSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// +/// cinder represents a cinder volume attached and mounted on kubelets host machine. +/// Deprecated: Cinder is deprecated. All operations for the in-tree cinder type +/// are redirected to the cinder.csi.openstack.org CSI driver. +/// More info: https://examples.k8s.io/mysql-cinder-pd/README.md +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesCinder +{ + /// + /// fsType is the filesystem type to mount. + /// Must be a filesystem type supported by the host operating system. + /// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// More info: https://examples.k8s.io/mysql-cinder-pd/README.md + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// + /// readOnly defaults to false (read/write). ReadOnly here will force + /// the ReadOnly setting in VolumeMounts. + /// More info: https://examples.k8s.io/mysql-cinder-pd/README.md + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// secretRef is optional: points to a secret object containing parameters used to connect + /// to OpenStack. + /// + [JsonPropertyName("secretRef")] + public V1PoolerSpecTemplateSpecVolumesCinderSecretRef? SecretRef { get; set; } + + /// + /// volumeID used to identify the volume in cinder. + /// More info: https://examples.k8s.io/mysql-cinder-pd/README.md + /// + [JsonPropertyName("volumeID")] + public required string VolumeID { get; set; } +} + +/// Maps a string key to a path within a volume. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesConfigMapItems +{ + /// key is the key to project. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// mode is Optional: mode bits used to set permissions on this file. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// If not specified, the volume defaultMode will be used. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("mode")] + public int? Mode { get; set; } + + /// + /// path is the relative path of the file to map the key to. + /// May not be an absolute path. + /// May not contain the path element '..'. + /// May not start with the string '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } +} + +/// configMap represents a configMap that should populate this volume +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesConfigMap +{ + /// + /// defaultMode is optional: mode bits used to set permissions on created files by default. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// Defaults to 0644. + /// Directories within the path are not affected by this setting. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("defaultMode")] + public int? DefaultMode { get; set; } + + /// + /// items if unspecified, each key-value pair in the Data field of the referenced + /// ConfigMap will be projected into the volume as a file whose name is the + /// key and content is the value. If specified, the listed keys will be + /// projected into the specified paths, and unlisted keys will not be + /// present. If a key is specified which is not present in the ConfigMap, + /// the volume setup will error unless it is marked optional. Paths must be + /// relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("items")] + public IList? Items { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// optional specify whether the ConfigMap or its keys must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// +/// nodePublishSecretRef is a reference to the secret object containing +/// sensitive information to pass to the CSI driver to complete the CSI +/// NodePublishVolume and NodeUnpublishVolume calls. +/// This field is optional, and may be empty if no secret is required. If the +/// secret object contains more than one secret, all secret references are passed. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesCsiNodePublishSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesCsi +{ + /// + /// driver is the name of the CSI driver that handles this volume. + /// Consult with your admin for the correct name as registered in the cluster. + /// + [JsonPropertyName("driver")] + public required string Driver { get; set; } + + /// + /// fsType to mount. Ex. "ext4", "xfs", "ntfs". + /// If not provided, the empty value is passed to the associated CSI driver + /// which will determine the default filesystem to apply. + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// + /// nodePublishSecretRef is a reference to the secret object containing + /// sensitive information to pass to the CSI driver to complete the CSI + /// NodePublishVolume and NodeUnpublishVolume calls. + /// This field is optional, and may be empty if no secret is required. If the + /// secret object contains more than one secret, all secret references are passed. + /// + [JsonPropertyName("nodePublishSecretRef")] + public V1PoolerSpecTemplateSpecVolumesCsiNodePublishSecretRef? NodePublishSecretRef { get; set; } + + /// + /// readOnly specifies a read-only configuration for the volume. + /// Defaults to false (read/write). + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// volumeAttributes stores driver-specific properties that are passed to the CSI + /// driver. Consult your driver's documentation for supported values. + /// + [JsonPropertyName("volumeAttributes")] + public IDictionary? VolumeAttributes { get; set; } +} + +/// Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesDownwardAPIItemsFieldRef +{ + /// Version of the schema the FieldPath is written in terms of, defaults to "v1". + [JsonPropertyName("apiVersion")] + public string? ApiVersion { get; set; } + + /// Path of the field to select in the specified API version. + [JsonPropertyName("fieldPath")] + public required string FieldPath { get; set; } +} + +/// +/// Selects a resource of the container: only resources limits and requests +/// (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesDownwardAPIItemsResourceFieldRef +{ + /// Container name: required for volumes, optional for env vars + [JsonPropertyName("containerName")] + public string? ContainerName { get; set; } + + /// Specifies the output format of the exposed resources, defaults to "1" + [JsonPropertyName("divisor")] + public IntOrString? Divisor { get; set; } + + /// Required: resource to select + [JsonPropertyName("resource")] + public required string Resource { get; set; } +} + +/// DownwardAPIVolumeFile represents information to create the file containing the pod field +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesDownwardAPIItems +{ + /// Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported. + [JsonPropertyName("fieldRef")] + public V1PoolerSpecTemplateSpecVolumesDownwardAPIItemsFieldRef? FieldRef { get; set; } + + /// + /// Optional: mode bits used to set permissions on this file, must be an octal value + /// between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// If not specified, the volume defaultMode will be used. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("mode")] + public int? Mode { get; set; } + + /// Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..' + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// + /// Selects a resource of the container: only resources limits and requests + /// (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + /// + [JsonPropertyName("resourceFieldRef")] + public V1PoolerSpecTemplateSpecVolumesDownwardAPIItemsResourceFieldRef? ResourceFieldRef { get; set; } +} + +/// downwardAPI represents downward API about the pod that should populate this volume +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesDownwardAPI +{ + /// + /// Optional: mode bits to use on created files by default. Must be a + /// Optional: mode bits used to set permissions on created files by default. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// Defaults to 0644. + /// Directories within the path are not affected by this setting. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("defaultMode")] + public int? DefaultMode { get; set; } + + /// Items is a list of downward API volume file + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// +/// emptyDir represents a temporary directory that shares a pod's lifetime. +/// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEmptyDir +{ + /// + /// medium represents what type of storage medium should back this directory. + /// The default is " " which means to use the node's default medium. + /// Must be an empty string (default) or Memory. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir + /// + [JsonPropertyName("medium")] + public string? Medium { get; set; } + + /// + /// sizeLimit is the total amount of local storage required for this EmptyDir volume. + /// The size limit is also applicable for memory medium. + /// The maximum usage on memory medium EmptyDir would be the minimum value between + /// the SizeLimit specified here and the sum of memory limits of all containers in a pod. + /// The default is nil which means that the limit is undefined. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir + /// + [JsonPropertyName("sizeLimit")] + public IntOrString? SizeLimit { get; set; } +} + +/// +/// May contain labels and annotations that will be copied into the PVC +/// when creating it. No other fields are allowed and will be rejected during +/// validation. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateMetadata +{ +} + +/// +/// dataSource field can be used to specify either: +/// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) +/// * An existing PVC (PersistentVolumeClaim) +/// If the provisioner or an external controller can support the specified data source, +/// it will create a new volume based on the contents of the specified data source. +/// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, +/// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. +/// If the namespace is specified, then dataSourceRef will not be copied to dataSource. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpecDataSource +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty +/// volume is desired. This may be any object from a non-empty API group (non +/// core object) or a PersistentVolumeClaim object. +/// When this field is specified, volume binding will only succeed if the type of +/// the specified object matches some installed volume populator or dynamic +/// provisioner. +/// This field will replace the functionality of the dataSource field and as such +/// if both fields are non-empty, they must have the same value. For backwards +/// compatibility, when namespace isn't specified in dataSourceRef, +/// both fields (dataSource and dataSourceRef) will be set to the same +/// value automatically if one of them is empty and the other is non-empty. +/// When namespace is specified in dataSourceRef, +/// dataSource isn't set to the same value and must be empty. +/// There are three important differences between dataSource and dataSourceRef: +/// * While dataSource only allows two specific types of objects, dataSourceRef +/// allows any non-core object, as well as PersistentVolumeClaim objects. +/// * While dataSource ignores disallowed values (dropping them), dataSourceRef +/// preserves all values, and generates an error if a disallowed value is +/// specified. +/// * While dataSource only allows local objects, dataSourceRef allows objects +/// in any namespaces. +/// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. +/// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpecDataSourceRef +{ + /// + /// APIGroup is the group for the resource being referenced. + /// If APIGroup is not specified, the specified Kind must be in the core API group. + /// For any other third-party types, APIGroup is required. + /// + [JsonPropertyName("apiGroup")] + public string? ApiGroup { get; set; } + + /// Kind is the type of resource being referenced + [JsonPropertyName("kind")] + public required string Kind { get; set; } + + /// Name is the name of resource being referenced + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Namespace is the namespace of resource being referenced + /// Note that when a namespace is specified, a gateway.networking.k8s.io/ReferenceGrant object is required in the referent namespace to allow that namespace's owner to accept the reference. See the ReferenceGrant documentation for details. + /// (Alpha) This field requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("namespace")] + public string? Namespace { get; set; } +} + +/// +/// resources represents the minimum resources the volume should have. +/// Users are allowed to specify resource requirements +/// that are lower than previous value but must still be higher than capacity recorded in the +/// status field of the claim. +/// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpecResources +{ + /// + /// Limits describes the maximum amount of compute resources allowed. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("limits")] + public IDictionary? Limits { get; set; } + + /// + /// Requests describes the minimum amount of compute resources required. + /// If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, + /// otherwise to an implementation-defined value. Requests cannot exceed Limits. + /// More info: https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/ + /// + [JsonPropertyName("requests")] + public IDictionary? Requests { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpecSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// selector is a label query over volumes to consider for binding. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpecSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// The specification for the PersistentVolumeClaim. The entire content is +/// copied unchanged into the PVC that gets created from this +/// template. The same fields as in a PersistentVolumeClaim +/// are also valid here. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpec +{ + /// + /// accessModes contains the desired access modes the volume should have. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1 + /// + [JsonPropertyName("accessModes")] + public IList? AccessModes { get; set; } + + /// + /// dataSource field can be used to specify either: + /// * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) + /// * An existing PVC (PersistentVolumeClaim) + /// If the provisioner or an external controller can support the specified data source, + /// it will create a new volume based on the contents of the specified data source. + /// When the AnyVolumeDataSource feature gate is enabled, dataSource contents will be copied to dataSourceRef, + /// and dataSourceRef contents will be copied to dataSource when dataSourceRef.namespace is not specified. + /// If the namespace is specified, then dataSourceRef will not be copied to dataSource. + /// + [JsonPropertyName("dataSource")] + public V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpecDataSource? DataSource { get; set; } + + /// + /// dataSourceRef specifies the object from which to populate the volume with data, if a non-empty + /// volume is desired. This may be any object from a non-empty API group (non + /// core object) or a PersistentVolumeClaim object. + /// When this field is specified, volume binding will only succeed if the type of + /// the specified object matches some installed volume populator or dynamic + /// provisioner. + /// This field will replace the functionality of the dataSource field and as such + /// if both fields are non-empty, they must have the same value. For backwards + /// compatibility, when namespace isn't specified in dataSourceRef, + /// both fields (dataSource and dataSourceRef) will be set to the same + /// value automatically if one of them is empty and the other is non-empty. + /// When namespace is specified in dataSourceRef, + /// dataSource isn't set to the same value and must be empty. + /// There are three important differences between dataSource and dataSourceRef: + /// * While dataSource only allows two specific types of objects, dataSourceRef + /// allows any non-core object, as well as PersistentVolumeClaim objects. + /// * While dataSource ignores disallowed values (dropping them), dataSourceRef + /// preserves all values, and generates an error if a disallowed value is + /// specified. + /// * While dataSource only allows local objects, dataSourceRef allows objects + /// in any namespaces. + /// (Beta) Using this field requires the AnyVolumeDataSource feature gate to be enabled. + /// (Alpha) Using the namespace field of dataSourceRef requires the CrossNamespaceVolumeDataSource feature gate to be enabled. + /// + [JsonPropertyName("dataSourceRef")] + public V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpecDataSourceRef? DataSourceRef { get; set; } + + /// + /// resources represents the minimum resources the volume should have. + /// Users are allowed to specify resource requirements + /// that are lower than previous value but must still be higher than capacity recorded in the + /// status field of the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources + /// + [JsonPropertyName("resources")] + public V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpecResources? Resources { get; set; } + + /// selector is a label query over volumes to consider for binding. + [JsonPropertyName("selector")] + public V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpecSelector? Selector { get; set; } + + /// + /// storageClassName is the name of the StorageClass required by the claim. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1 + /// + [JsonPropertyName("storageClassName")] + public string? StorageClassName { get; set; } + + /// + /// volumeAttributesClassName may be used to set the VolumeAttributesClass used by this claim. + /// If specified, the CSI driver will create or update the volume with the attributes defined + /// in the corresponding VolumeAttributesClass. This has a different purpose than storageClassName, + /// it can be changed after the claim is created. An empty string or nil value indicates that no + /// VolumeAttributesClass will be applied to the claim. If the claim enters an Infeasible error state, + /// this field can be reset to its previous value (including nil) to cancel the modification. + /// If the resource referred to by volumeAttributesClass does not exist, this PersistentVolumeClaim will be + /// set to a Pending state, as reflected by the modifyVolumeStatus field, until such as a resource + /// exists. + /// More info: https://kubernetes.io/docs/concepts/storage/volume-attributes-classes/ + /// + [JsonPropertyName("volumeAttributesClassName")] + public string? VolumeAttributesClassName { get; set; } + + /// + /// volumeMode defines what type of volume is required by the claim. + /// Value of Filesystem is implied when not included in claim spec. + /// + [JsonPropertyName("volumeMode")] + public string? VolumeMode { get; set; } + + /// volumeName is the binding reference to the PersistentVolume backing this claim. + [JsonPropertyName("volumeName")] + public string? VolumeName { get; set; } +} + +/// +/// Will be used to create a stand-alone PVC to provision the volume. +/// The pod in which this EphemeralVolumeSource is embedded will be the +/// owner of the PVC, i.e. the PVC will be deleted together with the +/// pod. The name of the PVC will be `<pod name>-<volume name>` where +/// `<volume name>` is the name from the `PodSpec.Volumes` array +/// entry. Pod validation will reject the pod if the concatenated name +/// is not valid for a PVC (for example, too long). +/// +/// An existing PVC with that name that is not owned by the pod +/// will *not* be used for the pod to avoid using an unrelated +/// volume by mistake. Starting the pod is then blocked until +/// the unrelated PVC is removed. If such a pre-created PVC is +/// meant to be used by the pod, the PVC has to updated with an +/// owner reference to the pod once the pod exists. Normally +/// this should not be necessary, but it may be useful when +/// manually reconstructing a broken cluster. +/// +/// This field is read-only and no changes will be made by Kubernetes +/// to the PVC after it has been created. +/// +/// Required, must not be nil. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplate +{ + /// + /// May contain labels and annotations that will be copied into the PVC + /// when creating it. No other fields are allowed and will be rejected during + /// validation. + /// + [JsonPropertyName("metadata")] + public V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateMetadata? Metadata { get; set; } + + /// + /// The specification for the PersistentVolumeClaim. The entire content is + /// copied unchanged into the PVC that gets created from this + /// template. The same fields as in a PersistentVolumeClaim + /// are also valid here. + /// + [JsonPropertyName("spec")] + public required V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplateSpec Spec { get; set; } +} + +/// +/// ephemeral represents a volume that is handled by a cluster storage driver. +/// The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, +/// and deleted when the pod is removed. +/// +/// Use this if: +/// a) the volume is only needed while the pod runs, +/// b) features of normal volumes like restoring from snapshot or capacity +/// tracking are needed, +/// c) the storage driver is specified through a storage class, and +/// d) the storage driver supports dynamic volume provisioning through +/// a PersistentVolumeClaim (see EphemeralVolumeSource for more +/// information on the connection between this volume type +/// and PersistentVolumeClaim). +/// +/// Use PersistentVolumeClaim or one of the vendor-specific +/// APIs for volumes that persist for longer than the lifecycle +/// of an individual pod. +/// +/// Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to +/// be used that way - see the documentation of the driver for +/// more information. +/// +/// A pod can use both types of ephemeral volumes and +/// persistent volumes at the same time. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesEphemeral +{ + /// + /// Will be used to create a stand-alone PVC to provision the volume. + /// The pod in which this EphemeralVolumeSource is embedded will be the + /// owner of the PVC, i.e. the PVC will be deleted together with the + /// pod. The name of the PVC will be `<pod name>-<volume name>` where + /// `<volume name>` is the name from the `PodSpec.Volumes` array + /// entry. Pod validation will reject the pod if the concatenated name + /// is not valid for a PVC (for example, too long). + /// + /// An existing PVC with that name that is not owned by the pod + /// will *not* be used for the pod to avoid using an unrelated + /// volume by mistake. Starting the pod is then blocked until + /// the unrelated PVC is removed. If such a pre-created PVC is + /// meant to be used by the pod, the PVC has to updated with an + /// owner reference to the pod once the pod exists. Normally + /// this should not be necessary, but it may be useful when + /// manually reconstructing a broken cluster. + /// + /// This field is read-only and no changes will be made by Kubernetes + /// to the PVC after it has been created. + /// + /// Required, must not be nil. + /// + [JsonPropertyName("volumeClaimTemplate")] + public V1PoolerSpecTemplateSpecVolumesEphemeralVolumeClaimTemplate? VolumeClaimTemplate { get; set; } +} + +/// fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesFc +{ + /// + /// fsType is the filesystem type to mount. + /// Must be a filesystem type supported by the host operating system. + /// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// lun is Optional: FC target lun number + [JsonPropertyName("lun")] + public int? Lun { get; set; } + + /// + /// readOnly is Optional: Defaults to false (read/write). ReadOnly here will force + /// the ReadOnly setting in VolumeMounts. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// targetWWNs is Optional: FC target worldwide names (WWNs) + [JsonPropertyName("targetWWNs")] + public IList? TargetWWNs { get; set; } + + /// + /// wwids Optional: FC volume world wide identifiers (wwids) + /// Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously. + /// + [JsonPropertyName("wwids")] + public IList? Wwids { get; set; } +} + +/// +/// secretRef is Optional: secretRef is reference to the secret object containing +/// sensitive information to pass to the plugin scripts. This may be +/// empty if no secret object is specified. If the secret object +/// contains more than one secret, all secrets are passed to the plugin +/// scripts. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesFlexVolumeSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// +/// flexVolume represents a generic volume resource that is +/// provisioned/attached using an exec based plugin. +/// Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesFlexVolume +{ + /// driver is the name of the driver to use for this volume. + [JsonPropertyName("driver")] + public required string Driver { get; set; } + + /// + /// fsType is the filesystem type to mount. + /// Must be a filesystem type supported by the host operating system. + /// Ex. "ext4", "xfs", "ntfs". The default filesystem depends on FlexVolume script. + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// options is Optional: this field holds extra command options if any. + [JsonPropertyName("options")] + public IDictionary? Options { get; set; } + + /// + /// readOnly is Optional: defaults to false (read/write). ReadOnly here will force + /// the ReadOnly setting in VolumeMounts. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// secretRef is Optional: secretRef is reference to the secret object containing + /// sensitive information to pass to the plugin scripts. This may be + /// empty if no secret object is specified. If the secret object + /// contains more than one secret, all secrets are passed to the plugin + /// scripts. + /// + [JsonPropertyName("secretRef")] + public V1PoolerSpecTemplateSpecVolumesFlexVolumeSecretRef? SecretRef { get; set; } +} + +/// +/// flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running. +/// Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesFlocker +{ + /// + /// datasetName is Name of the dataset stored as metadata -> name on the dataset for Flocker + /// should be considered as deprecated + /// + [JsonPropertyName("datasetName")] + public string? DatasetName { get; set; } + + /// datasetUUID is the UUID of the dataset. This is unique identifier of a Flocker dataset + [JsonPropertyName("datasetUUID")] + public string? DatasetUUID { get; set; } +} + +/// +/// gcePersistentDisk represents a GCE Disk resource that is attached to a +/// kubelet's host machine and then exposed to the pod. +/// Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree +/// gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver. +/// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesGcePersistentDisk +{ + /// + /// fsType is filesystem type of the volume that you want to mount. + /// Tip: Ensure that the filesystem type is supported by the host operating system. + /// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// + /// partition is the partition in the volume that you want to mount. + /// If omitted, the default is to mount by volume name. + /// Examples: For volume /dev/sda1, you specify the partition as "1". + /// Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty). + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + /// + [JsonPropertyName("partition")] + public int? Partition { get; set; } + + /// + /// pdName is unique name of the PD resource in GCE. Used to identify the disk in GCE. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + /// + [JsonPropertyName("pdName")] + public required string PdName { get; set; } + + /// + /// readOnly here will force the ReadOnly setting in VolumeMounts. + /// Defaults to false. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } +} + +/// +/// gitRepo represents a git repository at a particular revision. +/// Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an +/// EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir +/// into the Pod's container. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesGitRepo +{ + /// + /// directory is the target directory name. + /// Must not contain or start with '..'. If '.' is supplied, the volume directory will be the + /// git repository. Otherwise, if specified, the volume will contain the git repository in + /// the subdirectory with the given name. + /// + [JsonPropertyName("directory")] + public string? Directory { get; set; } + + /// repository is the URL + [JsonPropertyName("repository")] + public required string Repository { get; set; } + + /// revision is the commit hash for the specified revision. + [JsonPropertyName("revision")] + public string? Revision { get; set; } +} + +/// +/// glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. +/// Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesGlusterfs +{ + /// endpoints is the endpoint name that details Glusterfs topology. + [JsonPropertyName("endpoints")] + public required string Endpoints { get; set; } + + /// + /// path is the Glusterfs volume path. + /// More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + /// + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// + /// readOnly here will force the Glusterfs volume to be mounted with read-only permissions. + /// Defaults to false. + /// More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } +} + +/// +/// hostPath represents a pre-existing file or directory on the host +/// machine that is directly exposed to the container. This is generally +/// used for system agents or other privileged things that are allowed +/// to see the host machine. Most containers will NOT need this. +/// More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesHostPath +{ + /// + /// path of the directory on the host. + /// If the path is a symlink, it will follow the link to the real path. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + /// + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// + /// type for HostPath Volume + /// Defaults to " " + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + /// + [JsonPropertyName("type")] + public string? Type { get; set; } +} + +/// +/// image represents an OCI object (a container image or artifact) pulled and mounted on the kubelet's host machine. +/// The volume is resolved at pod startup depending on which PullPolicy value is provided: +/// +/// - Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. +/// - Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. +/// - IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. +/// +/// The volume gets re-resolved if the pod gets deleted and recreated, which means that new remote content will become available on pod recreation. +/// A failure to resolve or pull the image during pod startup will block containers from starting and may add significant latency. Failures will be retried using normal volume backoff and will be reported on the pod reason and message. +/// The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field. +/// The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images. +/// The volume will be mounted read-only (ro) and non-executable files (noexec). +/// Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33. +/// The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesImage +{ + /// + /// Policy for pulling OCI objects. Possible values are: + /// Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. + /// Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. + /// IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. + /// Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. + /// + [JsonPropertyName("pullPolicy")] + public string? PullPolicy { get; set; } + + /// + /// Required: Image or artifact reference to be used. + /// Behaves in the same way as pod.spec.containers[*].image. + /// Pull secrets will be assembled in the same way as for the container image by looking up node credentials, SA image pull secrets, and pod spec image pull secrets. + /// More info: https://kubernetes.io/docs/concepts/containers/images + /// This field is optional to allow higher level config management to default or override + /// container images in workload controllers like Deployments and StatefulSets. + /// + [JsonPropertyName("reference")] + public string? Reference { get; set; } +} + +/// secretRef is the CHAP Secret for iSCSI target and initiator authentication +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesIscsiSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// +/// iscsi represents an ISCSI Disk resource that is attached to a +/// kubelet's host machine and then exposed to the pod. +/// More info: https://kubernetes.io/docs/concepts/storage/volumes/#iscsi +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesIscsi +{ + /// chapAuthDiscovery defines whether support iSCSI Discovery CHAP authentication + [JsonPropertyName("chapAuthDiscovery")] + public bool? ChapAuthDiscovery { get; set; } + + /// chapAuthSession defines whether support iSCSI Session CHAP authentication + [JsonPropertyName("chapAuthSession")] + public bool? ChapAuthSession { get; set; } + + /// + /// fsType is the filesystem type of the volume that you want to mount. + /// Tip: Ensure that the filesystem type is supported by the host operating system. + /// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// + /// initiatorName is the custom iSCSI Initiator Name. + /// If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface + /// <target portal>:<volume name> will be created for the connection. + /// + [JsonPropertyName("initiatorName")] + public string? InitiatorName { get; set; } + + /// iqn is the target iSCSI Qualified Name. + [JsonPropertyName("iqn")] + public required string Iqn { get; set; } + + /// + /// iscsiInterface is the interface Name that uses an iSCSI transport. + /// Defaults to 'default' (tcp). + /// + [JsonPropertyName("iscsiInterface")] + public string? IscsiInterface { get; set; } + + /// lun represents iSCSI Target Lun number. + [JsonPropertyName("lun")] + public required int Lun { get; set; } + + /// + /// portals is the iSCSI Target Portal List. The portal is either an IP or ip_addr:port if the port + /// is other than default (typically TCP ports 860 and 3260). + /// + [JsonPropertyName("portals")] + public IList? Portals { get; set; } + + /// + /// readOnly here will force the ReadOnly setting in VolumeMounts. + /// Defaults to false. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// secretRef is the CHAP Secret for iSCSI target and initiator authentication + [JsonPropertyName("secretRef")] + public V1PoolerSpecTemplateSpecVolumesIscsiSecretRef? SecretRef { get; set; } + + /// + /// targetPortal is iSCSI Target Portal. The Portal is either an IP or ip_addr:port if the port + /// is other than default (typically TCP ports 860 and 3260). + /// + [JsonPropertyName("targetPortal")] + public required string TargetPortal { get; set; } +} + +/// +/// nfs represents an NFS mount on the host that shares a pod's lifetime +/// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesNfs +{ + /// + /// path that is exported by the NFS server. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + /// + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// + /// readOnly here will force the NFS export to be mounted with read-only permissions. + /// Defaults to false. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// server is the hostname or IP address of the NFS server. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + /// + [JsonPropertyName("server")] + public required string Server { get; set; } +} + +/// +/// persistentVolumeClaimVolumeSource represents a reference to a +/// PersistentVolumeClaim in the same namespace. +/// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesPersistentVolumeClaim +{ + /// + /// claimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + /// + [JsonPropertyName("claimName")] + public required string ClaimName { get; set; } + + /// + /// readOnly Will force the ReadOnly setting in VolumeMounts. + /// Default false. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } +} + +/// +/// photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine. +/// Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesPhotonPersistentDisk +{ + /// + /// fsType is the filesystem type to mount. + /// Must be a filesystem type supported by the host operating system. + /// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// pdID is the ID that identifies Photon Controller persistent disk + [JsonPropertyName("pdID")] + public required string PdID { get; set; } +} + +/// +/// portworxVolume represents a portworx volume attached and mounted on kubelets host machine. +/// Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type +/// are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate +/// is on. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesPortworxVolume +{ + /// + /// fSType represents the filesystem type to mount + /// Must be a filesystem type supported by the host operating system. + /// Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified. + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// + /// readOnly defaults to false (read/write). ReadOnly here will force + /// the ReadOnly setting in VolumeMounts. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// volumeID uniquely identifies a Portworx volume + [JsonPropertyName("volumeID")] + public required string VolumeID { get; set; } +} + +/// +/// A label selector requirement is a selector that contains values, a key, and an operator that +/// relates the key and values. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesClusterTrustBundleLabelSelectorMatchExpressions +{ + /// key is the label key that the selector applies to. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// operator represents a key's relationship to a set of values. + /// Valid operators are In, NotIn, Exists and DoesNotExist. + /// + [JsonPropertyName("operator")] + public required string Operator { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("values")] + public IList? Values { get; set; } +} + +/// +/// Select all ClusterTrustBundles that match this label selector. Only has +/// effect if signerName is set. Mutually-exclusive with name. If unset, +/// interpreted as "match nothing". If set but empty, interpreted as "match +/// everything". +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesClusterTrustBundleLabelSelector +{ + /// matchExpressions is a list of label selector requirements. The requirements are ANDed. + [JsonPropertyName("matchExpressions")] + public IList? MatchExpressions { get; set; } + + /// + /// 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. + /// + [JsonPropertyName("matchLabels")] + public IDictionary? MatchLabels { get; set; } +} + +/// +/// ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field +/// of ClusterTrustBundle objects in an auto-updating file. +/// +/// Alpha, gated by the ClusterTrustBundleProjection feature gate. +/// +/// ClusterTrustBundle objects can either be selected by name, or by the +/// combination of signer name and a label selector. +/// +/// Kubelet performs aggressive normalization of the PEM contents written +/// into the pod filesystem. Esoteric PEM features such as inter-block +/// comments and block headers are stripped. Certificates are deduplicated. +/// The ordering of certificates within the file is arbitrary, and Kubelet +/// may change the order over time. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesClusterTrustBundle +{ + /// + /// Select all ClusterTrustBundles that match this label selector. Only has + /// effect if signerName is set. Mutually-exclusive with name. If unset, + /// interpreted as "match nothing". If set but empty, interpreted as "match + /// everything". + /// + [JsonPropertyName("labelSelector")] + public V1PoolerSpecTemplateSpecVolumesProjectedSourcesClusterTrustBundleLabelSelector? LabelSelector { get; set; } + + /// + /// Select a single ClusterTrustBundle by object name. Mutually-exclusive + /// with signerName and labelSelector. + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// + /// If true, don't block pod startup if the referenced ClusterTrustBundle(s) + /// aren't available. If using name, then the named ClusterTrustBundle is + /// allowed not to exist. If using signerName, then the combination of + /// signerName and labelSelector is allowed to match zero + /// ClusterTrustBundles. + /// + [JsonPropertyName("optional")] + public bool? Optional { get; set; } + + /// Relative path from the volume root to write the bundle. + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// + /// Select all ClusterTrustBundles that match this signer name. + /// Mutually-exclusive with name. The contents of all selected + /// ClusterTrustBundles will be unified and deduplicated. + /// + [JsonPropertyName("signerName")] + public string? SignerName { get; set; } +} + +/// Maps a string key to a path within a volume. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesConfigMapItems +{ + /// key is the key to project. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// mode is Optional: mode bits used to set permissions on this file. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// If not specified, the volume defaultMode will be used. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("mode")] + public int? Mode { get; set; } + + /// + /// path is the relative path of the file to map the key to. + /// May not be an absolute path. + /// May not contain the path element '..'. + /// May not start with the string '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } +} + +/// configMap information about the configMap data to project +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesConfigMap +{ + /// + /// items if unspecified, each key-value pair in the Data field of the referenced + /// ConfigMap will be projected into the volume as a file whose name is the + /// key and content is the value. If specified, the listed keys will be + /// projected into the specified paths, and unlisted keys will not be + /// present. If a key is specified which is not present in the ConfigMap, + /// the volume setup will error unless it is marked optional. Paths must be + /// relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("items")] + public IList? Items { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// optional specify whether the ConfigMap or its keys must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesDownwardAPIItemsFieldRef +{ + /// Version of the schema the FieldPath is written in terms of, defaults to "v1". + [JsonPropertyName("apiVersion")] + public string? ApiVersion { get; set; } + + /// Path of the field to select in the specified API version. + [JsonPropertyName("fieldPath")] + public required string FieldPath { get; set; } +} + +/// +/// Selects a resource of the container: only resources limits and requests +/// (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesDownwardAPIItemsResourceFieldRef +{ + /// Container name: required for volumes, optional for env vars + [JsonPropertyName("containerName")] + public string? ContainerName { get; set; } + + /// Specifies the output format of the exposed resources, defaults to "1" + [JsonPropertyName("divisor")] + public IntOrString? Divisor { get; set; } + + /// Required: resource to select + [JsonPropertyName("resource")] + public required string Resource { get; set; } +} + +/// DownwardAPIVolumeFile represents information to create the file containing the pod field +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesDownwardAPIItems +{ + /// Required: Selects a field of the pod: only annotations, labels, name, namespace and uid are supported. + [JsonPropertyName("fieldRef")] + public V1PoolerSpecTemplateSpecVolumesProjectedSourcesDownwardAPIItemsFieldRef? FieldRef { get; set; } + + /// + /// Optional: mode bits used to set permissions on this file, must be an octal value + /// between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// If not specified, the volume defaultMode will be used. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("mode")] + public int? Mode { get; set; } + + /// Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..' + [JsonPropertyName("path")] + public required string Path { get; set; } + + /// + /// Selects a resource of the container: only resources limits and requests + /// (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported. + /// + [JsonPropertyName("resourceFieldRef")] + public V1PoolerSpecTemplateSpecVolumesProjectedSourcesDownwardAPIItemsResourceFieldRef? ResourceFieldRef { get; set; } +} + +/// downwardAPI information about the downwardAPI data to project +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesDownwardAPI +{ + /// Items is a list of DownwardAPIVolume file + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// +/// Projects an auto-rotating credential bundle (private key and certificate +/// chain) that the pod can use either as a TLS client or server. +/// +/// Kubelet generates a private key and uses it to send a +/// PodCertificateRequest to the named signer. Once the signer approves the +/// request and issues a certificate chain, Kubelet writes the key and +/// certificate chain to the pod filesystem. The pod does not start until +/// certificates have been issued for each podCertificate projected volume +/// source in its spec. +/// +/// Kubelet will begin trying to rotate the certificate at the time indicated +/// by the signer using the PodCertificateRequest.Status.BeginRefreshAt +/// timestamp. +/// +/// Kubelet can write a single file, indicated by the credentialBundlePath +/// field, or separate files, indicated by the keyPath and +/// certificateChainPath fields. +/// +/// The credential bundle is a single file in PEM format. The first PEM +/// entry is the private key (in PKCS#8 format), and the remaining PEM +/// entries are the certificate chain issued by the signer (typically, +/// signers will return their certificate chain in leaf-to-root order). +/// +/// Prefer using the credential bundle format, since your application code +/// can read it atomically. If you use keyPath and certificateChainPath, +/// your application must make two separate file reads. If these coincide +/// with a certificate rotation, it is possible that the private key and leaf +/// certificate you read may not correspond to each other. Your application +/// will need to check for this condition, and re-read until they are +/// consistent. +/// +/// The named signer controls chooses the format of the certificate it +/// issues; consult the signer implementation's documentation to learn how to +/// use the certificates it issues. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesPodCertificate +{ + /// + /// Write the certificate chain at this path in the projected volume. + /// + /// Most applications should use credentialBundlePath. When using keyPath + /// and certificateChainPath, your application needs to check that the key + /// and leaf certificate are consistent, because it is possible to read the + /// files mid-rotation. + /// + [JsonPropertyName("certificateChainPath")] + public string? CertificateChainPath { get; set; } + + /// + /// Write the credential bundle at this path in the projected volume. + /// + /// The credential bundle is a single file that contains multiple PEM blocks. + /// The first PEM block is a PRIVATE KEY block, containing a PKCS#8 private + /// key. + /// + /// The remaining blocks are CERTIFICATE blocks, containing the issued + /// certificate chain from the signer (leaf and any intermediates). + /// + /// Using credentialBundlePath lets your Pod's application code make a single + /// atomic read that retrieves a consistent key and certificate chain. If you + /// project them to separate files, your application code will need to + /// additionally check that the leaf certificate was issued to the key. + /// + [JsonPropertyName("credentialBundlePath")] + public string? CredentialBundlePath { get; set; } + + /// + /// Write the key at this path in the projected volume. + /// + /// Most applications should use credentialBundlePath. When using keyPath + /// and certificateChainPath, your application needs to check that the key + /// and leaf certificate are consistent, because it is possible to read the + /// files mid-rotation. + /// + [JsonPropertyName("keyPath")] + public string? KeyPath { get; set; } + + /// + /// The type of keypair Kubelet will generate for the pod. + /// + /// Valid values are "RSA3072", "RSA4096", "ECDSAP256", "ECDSAP384", + /// "ECDSAP521", and "ED25519". + /// + [JsonPropertyName("keyType")] + public required string KeyType { get; set; } + + /// + /// maxExpirationSeconds is the maximum lifetime permitted for the + /// certificate. + /// + /// Kubelet copies this value verbatim into the PodCertificateRequests it + /// generates for this projection. + /// + /// If omitted, kube-apiserver will set it to 86400(24 hours). kube-apiserver + /// will reject values shorter than 3600 (1 hour). The maximum allowable + /// value is 7862400 (91 days). + /// + /// The signer implementation is then free to issue a certificate with any + /// lifetime *shorter* than MaxExpirationSeconds, but no shorter than 3600 + /// seconds (1 hour). This constraint is enforced by kube-apiserver. + /// `kubernetes.io` signers will never issue certificates with a lifetime + /// longer than 24 hours. + /// + [JsonPropertyName("maxExpirationSeconds")] + public int? MaxExpirationSeconds { get; set; } + + /// Kubelet's generated CSRs will be addressed to this signer. + [JsonPropertyName("signerName")] + public required string SignerName { get; set; } + + /// + /// userAnnotations allow pod authors to pass additional information to + /// the signer implementation. Kubernetes does not restrict or validate this + /// metadata in any way. + /// + /// These values are copied verbatim into the `spec.unverifiedUserAnnotations` field of + /// the PodCertificateRequest objects that Kubelet creates. + /// + /// Entries are subject to the same validation as object metadata annotations, + /// with the addition that all keys must be domain-prefixed. No restrictions + /// are placed on values, except an overall size limitation on the entire field. + /// + /// Signers should document the keys and values they support. Signers should + /// deny requests that contain keys they do not recognize. + /// + [JsonPropertyName("userAnnotations")] + public IDictionary? UserAnnotations { get; set; } +} + +/// Maps a string key to a path within a volume. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesSecretItems +{ + /// key is the key to project. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// mode is Optional: mode bits used to set permissions on this file. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// If not specified, the volume defaultMode will be used. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("mode")] + public int? Mode { get; set; } + + /// + /// path is the relative path of the file to map the key to. + /// May not be an absolute path. + /// May not contain the path element '..'. + /// May not start with the string '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } +} + +/// secret information about the secret data to project +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesSecret +{ + /// + /// items if unspecified, each key-value pair in the Data field of the referenced + /// Secret will be projected into the volume as a file whose name is the + /// key and content is the value. If specified, the listed keys will be + /// projected into the specified paths, and unlisted keys will not be + /// present. If a key is specified which is not present in the Secret, + /// the volume setup will error unless it is marked optional. Paths must be + /// relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("items")] + public IList? Items { get; set; } + + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// optional field specify whether the Secret or its key must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } +} + +/// serviceAccountToken is information about the serviceAccountToken data to project +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSourcesServiceAccountToken +{ + /// + /// audience is the intended audience of the token. A recipient of a token + /// must identify itself with an identifier specified in the audience of the + /// token, and otherwise should reject the token. The audience defaults to the + /// identifier of the apiserver. + /// + [JsonPropertyName("audience")] + public string? Audience { get; set; } + + /// + /// expirationSeconds is the requested duration of validity of the service + /// account token. As the token approaches expiration, the kubelet volume + /// plugin will proactively rotate the service account token. The kubelet will + /// start trying to rotate the token if the token is older than 80 percent of + /// its time to live or if the token is older than 24 hours.Defaults to 1 hour + /// and must be at least 10 minutes. + /// + [JsonPropertyName("expirationSeconds")] + public long? ExpirationSeconds { get; set; } + + /// + /// path is the path relative to the mount point of the file to project the + /// token into. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } +} + +/// +/// Projection that may be projected along with other supported volume types. +/// Exactly one of these fields must be set. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjectedSources +{ + /// + /// ClusterTrustBundle allows a pod to access the `.spec.trustBundle` field + /// of ClusterTrustBundle objects in an auto-updating file. + /// + /// Alpha, gated by the ClusterTrustBundleProjection feature gate. + /// + /// ClusterTrustBundle objects can either be selected by name, or by the + /// combination of signer name and a label selector. + /// + /// Kubelet performs aggressive normalization of the PEM contents written + /// into the pod filesystem. Esoteric PEM features such as inter-block + /// comments and block headers are stripped. Certificates are deduplicated. + /// The ordering of certificates within the file is arbitrary, and Kubelet + /// may change the order over time. + /// + [JsonPropertyName("clusterTrustBundle")] + public V1PoolerSpecTemplateSpecVolumesProjectedSourcesClusterTrustBundle? ClusterTrustBundle { get; set; } + + /// configMap information about the configMap data to project + [JsonPropertyName("configMap")] + public V1PoolerSpecTemplateSpecVolumesProjectedSourcesConfigMap? ConfigMap { get; set; } + + /// downwardAPI information about the downwardAPI data to project + [JsonPropertyName("downwardAPI")] + public V1PoolerSpecTemplateSpecVolumesProjectedSourcesDownwardAPI? DownwardAPI { get; set; } + + /// + /// Projects an auto-rotating credential bundle (private key and certificate + /// chain) that the pod can use either as a TLS client or server. + /// + /// Kubelet generates a private key and uses it to send a + /// PodCertificateRequest to the named signer. Once the signer approves the + /// request and issues a certificate chain, Kubelet writes the key and + /// certificate chain to the pod filesystem. The pod does not start until + /// certificates have been issued for each podCertificate projected volume + /// source in its spec. + /// + /// Kubelet will begin trying to rotate the certificate at the time indicated + /// by the signer using the PodCertificateRequest.Status.BeginRefreshAt + /// timestamp. + /// + /// Kubelet can write a single file, indicated by the credentialBundlePath + /// field, or separate files, indicated by the keyPath and + /// certificateChainPath fields. + /// + /// The credential bundle is a single file in PEM format. The first PEM + /// entry is the private key (in PKCS#8 format), and the remaining PEM + /// entries are the certificate chain issued by the signer (typically, + /// signers will return their certificate chain in leaf-to-root order). + /// + /// Prefer using the credential bundle format, since your application code + /// can read it atomically. If you use keyPath and certificateChainPath, + /// your application must make two separate file reads. If these coincide + /// with a certificate rotation, it is possible that the private key and leaf + /// certificate you read may not correspond to each other. Your application + /// will need to check for this condition, and re-read until they are + /// consistent. + /// + /// The named signer controls chooses the format of the certificate it + /// issues; consult the signer implementation's documentation to learn how to + /// use the certificates it issues. + /// + [JsonPropertyName("podCertificate")] + public V1PoolerSpecTemplateSpecVolumesProjectedSourcesPodCertificate? PodCertificate { get; set; } + + /// secret information about the secret data to project + [JsonPropertyName("secret")] + public V1PoolerSpecTemplateSpecVolumesProjectedSourcesSecret? Secret { get; set; } + + /// serviceAccountToken is information about the serviceAccountToken data to project + [JsonPropertyName("serviceAccountToken")] + public V1PoolerSpecTemplateSpecVolumesProjectedSourcesServiceAccountToken? ServiceAccountToken { get; set; } +} + +/// projected items for all in one resources secrets, configmaps, and downward API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesProjected +{ + /// + /// defaultMode are the mode bits used to set permissions on created files by default. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// Directories within the path are not affected by this setting. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("defaultMode")] + public int? DefaultMode { get; set; } + + /// + /// sources is the list of volume projections. Each entry in this list + /// handles one source. + /// + [JsonPropertyName("sources")] + public IList? Sources { get; set; } +} + +/// +/// quobyte represents a Quobyte mount on the host that shares a pod's lifetime. +/// Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesQuobyte +{ + /// + /// group to map volume access to + /// Default is no group + /// + [JsonPropertyName("group")] + public string? Group { get; set; } + + /// + /// readOnly here will force the Quobyte volume to be mounted with read-only permissions. + /// Defaults to false. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// registry represents a single or multiple Quobyte Registry services + /// specified as a string as host:port pair (multiple entries are separated with commas) + /// which acts as the central registry for volumes + /// + [JsonPropertyName("registry")] + public required string Registry { get; set; } + + /// + /// tenant owning the given Quobyte volume in the Backend + /// Used with dynamically provisioned Quobyte volumes, value is set by the plugin + /// + [JsonPropertyName("tenant")] + public string? Tenant { get; set; } + + /// + /// user to map volume access to + /// Defaults to serivceaccount user + /// + [JsonPropertyName("user")] + public string? User { get; set; } + + /// volume is a string that references an already created Quobyte volume by name. + [JsonPropertyName("volume")] + public required string Volume { get; set; } +} + +/// +/// secretRef is name of the authentication secret for RBDUser. If provided +/// overrides keyring. +/// Default is nil. +/// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesRbdSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// +/// rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. +/// Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesRbd +{ + /// + /// fsType is the filesystem type of the volume that you want to mount. + /// Tip: Ensure that the filesystem type is supported by the host operating system. + /// Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// + /// image is the rados image name. + /// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + /// + [JsonPropertyName("image")] + public required string Image { get; set; } + + /// + /// keyring is the path to key ring for RBDUser. + /// Default is /etc/ceph/keyring. + /// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + /// + [JsonPropertyName("keyring")] + public string? Keyring { get; set; } + + /// + /// monitors is a collection of Ceph monitors. + /// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + /// + [JsonPropertyName("monitors")] + public required IList Monitors { get; set; } + + /// + /// pool is the rados pool name. + /// Default is rbd. + /// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + /// + [JsonPropertyName("pool")] + public string? Pool { get; set; } + + /// + /// readOnly here will force the ReadOnly setting in VolumeMounts. + /// Defaults to false. + /// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// secretRef is name of the authentication secret for RBDUser. If provided + /// overrides keyring. + /// Default is nil. + /// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + /// + [JsonPropertyName("secretRef")] + public V1PoolerSpecTemplateSpecVolumesRbdSecretRef? SecretRef { get; set; } + + /// + /// user is the rados user name. + /// Default is admin. + /// More info: https://examples.k8s.io/volumes/rbd/README.md#how-to-use-it + /// + [JsonPropertyName("user")] + public string? User { get; set; } +} + +/// +/// secretRef references to the secret for ScaleIO user and other +/// sensitive information. If this is not provided, Login operation will fail. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesScaleIOSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// +/// scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. +/// Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesScaleIO +{ + /// + /// fsType is the filesystem type to mount. + /// Must be a filesystem type supported by the host operating system. + /// Ex. "ext4", "xfs", "ntfs". + /// Default is "xfs". + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// gateway is the host address of the ScaleIO API Gateway. + [JsonPropertyName("gateway")] + public required string Gateway { get; set; } + + /// protectionDomain is the name of the ScaleIO Protection Domain for the configured storage. + [JsonPropertyName("protectionDomain")] + public string? ProtectionDomain { get; set; } + + /// + /// readOnly Defaults to false (read/write). ReadOnly here will force + /// the ReadOnly setting in VolumeMounts. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// secretRef references to the secret for ScaleIO user and other + /// sensitive information. If this is not provided, Login operation will fail. + /// + [JsonPropertyName("secretRef")] + public required V1PoolerSpecTemplateSpecVolumesScaleIOSecretRef SecretRef { get; set; } + + /// sslEnabled Flag enable/disable SSL communication with Gateway, default false + [JsonPropertyName("sslEnabled")] + public bool? SslEnabled { get; set; } + + /// + /// storageMode indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned. + /// Default is ThinProvisioned. + /// + [JsonPropertyName("storageMode")] + public string? StorageMode { get; set; } + + /// storagePool is the ScaleIO Storage Pool associated with the protection domain. + [JsonPropertyName("storagePool")] + public string? StoragePool { get; set; } + + /// system is the name of the storage system as configured in ScaleIO. + [JsonPropertyName("system")] + public required string System { get; set; } + + /// + /// volumeName is the name of a volume already created in the ScaleIO system + /// that is associated with this volume source. + /// + [JsonPropertyName("volumeName")] + public string? VolumeName { get; set; } +} + +/// Maps a string key to a path within a volume. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesSecretItems +{ + /// key is the key to project. + [JsonPropertyName("key")] + public required string Key { get; set; } + + /// + /// mode is Optional: mode bits used to set permissions on this file. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values for mode bits. + /// If not specified, the volume defaultMode will be used. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("mode")] + public int? Mode { get; set; } + + /// + /// path is the relative path of the file to map the key to. + /// May not be an absolute path. + /// May not contain the path element '..'. + /// May not start with the string '..'. + /// + [JsonPropertyName("path")] + public required string Path { get; set; } +} + +/// +/// secret represents a secret that should populate this volume. +/// More info: https://kubernetes.io/docs/concepts/storage/volumes#secret +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesSecret +{ + /// + /// defaultMode is Optional: mode bits used to set permissions on created files by default. + /// Must be an octal value between 0000 and 0777 or a decimal value between 0 and 511. + /// YAML accepts both octal and decimal values, JSON requires decimal values + /// for mode bits. Defaults to 0644. + /// Directories within the path are not affected by this setting. + /// This might be in conflict with other options that affect the file + /// mode, like fsGroup, and the result can be other mode bits set. + /// + [JsonPropertyName("defaultMode")] + public int? DefaultMode { get; set; } + + /// + /// items If unspecified, each key-value pair in the Data field of the referenced + /// Secret will be projected into the volume as a file whose name is the + /// key and content is the value. If specified, the listed keys will be + /// projected into the specified paths, and unlisted keys will not be + /// present. If a key is specified which is not present in the Secret, + /// the volume setup will error unless it is marked optional. Paths must be + /// relative and may not contain the '..' path or start with '..'. + /// + [JsonPropertyName("items")] + public IList? Items { get; set; } + + /// optional field specify whether the Secret or its keys must be defined + [JsonPropertyName("optional")] + public bool? Optional { get; set; } + + /// + /// secretName is the name of the secret in the pod's namespace to use. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#secret + /// + [JsonPropertyName("secretName")] + public string? SecretName { get; set; } +} + +/// +/// secretRef specifies the secret to use for obtaining the StorageOS API +/// credentials. If not specified, default values will be attempted. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesStorageosSecretRef +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// +/// storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. +/// Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesStorageos +{ + /// + /// fsType is the filesystem type to mount. + /// Must be a filesystem type supported by the host operating system. + /// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// + /// readOnly defaults to false (read/write). ReadOnly here will force + /// the ReadOnly setting in VolumeMounts. + /// + [JsonPropertyName("readOnly")] + public bool? ReadOnly { get; set; } + + /// + /// secretRef specifies the secret to use for obtaining the StorageOS API + /// credentials. If not specified, default values will be attempted. + /// + [JsonPropertyName("secretRef")] + public V1PoolerSpecTemplateSpecVolumesStorageosSecretRef? SecretRef { get; set; } + + /// + /// volumeName is the human-readable name of the StorageOS volume. Volume + /// names are only unique within a namespace. + /// + [JsonPropertyName("volumeName")] + public string? VolumeName { get; set; } + + /// + /// volumeNamespace specifies the scope of the volume within StorageOS. If no + /// namespace is specified then the Pod's namespace will be used. This allows the + /// Kubernetes name scoping to be mirrored within StorageOS for tighter integration. + /// Set VolumeName to any name to override the default behaviour. + /// Set to "default" if you are not using namespaces within StorageOS. + /// Namespaces that do not pre-exist within StorageOS will be created. + /// + [JsonPropertyName("volumeNamespace")] + public string? VolumeNamespace { get; set; } +} + +/// +/// vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine. +/// Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type +/// are redirected to the csi.vsphere.vmware.com CSI driver. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumesVsphereVolume +{ + /// + /// fsType is filesystem type to mount. + /// Must be a filesystem type supported by the host operating system. + /// Ex. "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified. + /// + [JsonPropertyName("fsType")] + public string? FsType { get; set; } + + /// storagePolicyID is the storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName. + [JsonPropertyName("storagePolicyID")] + public string? StoragePolicyID { get; set; } + + /// storagePolicyName is the storage Policy Based Management (SPBM) profile name. + [JsonPropertyName("storagePolicyName")] + public string? StoragePolicyName { get; set; } + + /// volumePath is the path that identifies vSphere volume vmdk + [JsonPropertyName("volumePath")] + public required string VolumePath { get; set; } +} + +/// Volume represents a named volume in a pod that may be accessed by any container in the pod. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecVolumes +{ + /// + /// awsElasticBlockStore represents an AWS Disk resource that is attached to a + /// kubelet's host machine and then exposed to the pod. + /// Deprecated: AWSElasticBlockStore is deprecated. All operations for the in-tree + /// awsElasticBlockStore type are redirected to the ebs.csi.aws.com CSI driver. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore + /// + [JsonPropertyName("awsElasticBlockStore")] + public V1PoolerSpecTemplateSpecVolumesAwsElasticBlockStore? AwsElasticBlockStore { get; set; } + + /// + /// azureDisk represents an Azure Data Disk mount on the host and bind mount to the pod. + /// Deprecated: AzureDisk is deprecated. All operations for the in-tree azureDisk type + /// are redirected to the disk.csi.azure.com CSI driver. + /// + [JsonPropertyName("azureDisk")] + public V1PoolerSpecTemplateSpecVolumesAzureDisk? AzureDisk { get; set; } + + /// + /// azureFile represents an Azure File Service mount on the host and bind mount to the pod. + /// Deprecated: AzureFile is deprecated. All operations for the in-tree azureFile type + /// are redirected to the file.csi.azure.com CSI driver. + /// + [JsonPropertyName("azureFile")] + public V1PoolerSpecTemplateSpecVolumesAzureFile? AzureFile { get; set; } + + /// + /// cephFS represents a Ceph FS mount on the host that shares a pod's lifetime. + /// Deprecated: CephFS is deprecated and the in-tree cephfs type is no longer supported. + /// + [JsonPropertyName("cephfs")] + public V1PoolerSpecTemplateSpecVolumesCephfs? Cephfs { get; set; } + + /// + /// cinder represents a cinder volume attached and mounted on kubelets host machine. + /// Deprecated: Cinder is deprecated. All operations for the in-tree cinder type + /// are redirected to the cinder.csi.openstack.org CSI driver. + /// More info: https://examples.k8s.io/mysql-cinder-pd/README.md + /// + [JsonPropertyName("cinder")] + public V1PoolerSpecTemplateSpecVolumesCinder? Cinder { get; set; } + + /// configMap represents a configMap that should populate this volume + [JsonPropertyName("configMap")] + public V1PoolerSpecTemplateSpecVolumesConfigMap? ConfigMap { get; set; } + + /// csi (Container Storage Interface) represents ephemeral storage that is handled by certain external CSI drivers. + [JsonPropertyName("csi")] + public V1PoolerSpecTemplateSpecVolumesCsi? Csi { get; set; } + + /// downwardAPI represents downward API about the pod that should populate this volume + [JsonPropertyName("downwardAPI")] + public V1PoolerSpecTemplateSpecVolumesDownwardAPI? DownwardAPI { get; set; } + + /// + /// emptyDir represents a temporary directory that shares a pod's lifetime. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir + /// + [JsonPropertyName("emptyDir")] + public V1PoolerSpecTemplateSpecVolumesEmptyDir? EmptyDir { get; set; } + + /// + /// ephemeral represents a volume that is handled by a cluster storage driver. + /// The volume's lifecycle is tied to the pod that defines it - it will be created before the pod starts, + /// and deleted when the pod is removed. + /// + /// Use this if: + /// a) the volume is only needed while the pod runs, + /// b) features of normal volumes like restoring from snapshot or capacity + /// tracking are needed, + /// c) the storage driver is specified through a storage class, and + /// d) the storage driver supports dynamic volume provisioning through + /// a PersistentVolumeClaim (see EphemeralVolumeSource for more + /// information on the connection between this volume type + /// and PersistentVolumeClaim). + /// + /// Use PersistentVolumeClaim or one of the vendor-specific + /// APIs for volumes that persist for longer than the lifecycle + /// of an individual pod. + /// + /// Use CSI for light-weight local ephemeral volumes if the CSI driver is meant to + /// be used that way - see the documentation of the driver for + /// more information. + /// + /// A pod can use both types of ephemeral volumes and + /// persistent volumes at the same time. + /// + [JsonPropertyName("ephemeral")] + public V1PoolerSpecTemplateSpecVolumesEphemeral? Ephemeral { get; set; } + + /// fc represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod. + [JsonPropertyName("fc")] + public V1PoolerSpecTemplateSpecVolumesFc? Fc { get; set; } + + /// + /// flexVolume represents a generic volume resource that is + /// provisioned/attached using an exec based plugin. + /// Deprecated: FlexVolume is deprecated. Consider using a CSIDriver instead. + /// + [JsonPropertyName("flexVolume")] + public V1PoolerSpecTemplateSpecVolumesFlexVolume? FlexVolume { get; set; } + + /// + /// flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running. + /// Deprecated: Flocker is deprecated and the in-tree flocker type is no longer supported. + /// + [JsonPropertyName("flocker")] + public V1PoolerSpecTemplateSpecVolumesFlocker? Flocker { get; set; } + + /// + /// gcePersistentDisk represents a GCE Disk resource that is attached to a + /// kubelet's host machine and then exposed to the pod. + /// Deprecated: GCEPersistentDisk is deprecated. All operations for the in-tree + /// gcePersistentDisk type are redirected to the pd.csi.storage.gke.io CSI driver. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk + /// + [JsonPropertyName("gcePersistentDisk")] + public V1PoolerSpecTemplateSpecVolumesGcePersistentDisk? GcePersistentDisk { get; set; } + + /// + /// gitRepo represents a git repository at a particular revision. + /// Deprecated: GitRepo is deprecated. To provision a container with a git repo, mount an + /// EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir + /// into the Pod's container. + /// + [JsonPropertyName("gitRepo")] + public V1PoolerSpecTemplateSpecVolumesGitRepo? GitRepo { get; set; } + + /// + /// glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. + /// Deprecated: Glusterfs is deprecated and the in-tree glusterfs type is no longer supported. + /// + [JsonPropertyName("glusterfs")] + public V1PoolerSpecTemplateSpecVolumesGlusterfs? Glusterfs { get; set; } + + /// + /// hostPath represents a pre-existing file or directory on the host + /// machine that is directly exposed to the container. This is generally + /// used for system agents or other privileged things that are allowed + /// to see the host machine. Most containers will NOT need this. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath + /// + [JsonPropertyName("hostPath")] + public V1PoolerSpecTemplateSpecVolumesHostPath? HostPath { get; set; } + + /// + /// image represents an OCI object (a container image or artifact) pulled and mounted on the kubelet's host machine. + /// The volume is resolved at pod startup depending on which PullPolicy value is provided: + /// + /// - Always: the kubelet always attempts to pull the reference. Container creation will fail If the pull fails. + /// - Never: the kubelet never pulls the reference and only uses a local image or artifact. Container creation will fail if the reference isn't present. + /// - IfNotPresent: the kubelet pulls if the reference isn't already present on disk. Container creation will fail if the reference isn't present and the pull fails. + /// + /// The volume gets re-resolved if the pod gets deleted and recreated, which means that new remote content will become available on pod recreation. + /// A failure to resolve or pull the image during pod startup will block containers from starting and may add significant latency. Failures will be retried using normal volume backoff and will be reported on the pod reason and message. + /// The types of objects that may be mounted by this volume are defined by the container runtime implementation on a host machine and at minimum must include all valid types supported by the container image field. + /// The OCI object gets mounted in a single directory (spec.containers[*].volumeMounts.mountPath) by merging the manifest layers in the same way as for container images. + /// The volume will be mounted read-only (ro) and non-executable files (noexec). + /// Sub path mounts for containers are not supported (spec.containers[*].volumeMounts.subpath) before 1.33. + /// The field spec.securityContext.fsGroupChangePolicy has no effect on this volume type. + /// + [JsonPropertyName("image")] + public V1PoolerSpecTemplateSpecVolumesImage? Image { get; set; } + + /// + /// iscsi represents an ISCSI Disk resource that is attached to a + /// kubelet's host machine and then exposed to the pod. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes/#iscsi + /// + [JsonPropertyName("iscsi")] + public V1PoolerSpecTemplateSpecVolumesIscsi? Iscsi { get; set; } + + /// + /// name of the volume. + /// Must be a DNS_LABEL and unique within the pod. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// nfs represents an NFS mount on the host that shares a pod's lifetime + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs + /// + [JsonPropertyName("nfs")] + public V1PoolerSpecTemplateSpecVolumesNfs? Nfs { get; set; } + + /// + /// persistentVolumeClaimVolumeSource represents a reference to a + /// PersistentVolumeClaim in the same namespace. + /// More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims + /// + [JsonPropertyName("persistentVolumeClaim")] + public V1PoolerSpecTemplateSpecVolumesPersistentVolumeClaim? PersistentVolumeClaim { get; set; } + + /// + /// photonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine. + /// Deprecated: PhotonPersistentDisk is deprecated and the in-tree photonPersistentDisk type is no longer supported. + /// + [JsonPropertyName("photonPersistentDisk")] + public V1PoolerSpecTemplateSpecVolumesPhotonPersistentDisk? PhotonPersistentDisk { get; set; } + + /// + /// portworxVolume represents a portworx volume attached and mounted on kubelets host machine. + /// Deprecated: PortworxVolume is deprecated. All operations for the in-tree portworxVolume type + /// are redirected to the pxd.portworx.com CSI driver when the CSIMigrationPortworx feature-gate + /// is on. + /// + [JsonPropertyName("portworxVolume")] + public V1PoolerSpecTemplateSpecVolumesPortworxVolume? PortworxVolume { get; set; } + + /// projected items for all in one resources secrets, configmaps, and downward API + [JsonPropertyName("projected")] + public V1PoolerSpecTemplateSpecVolumesProjected? Projected { get; set; } + + /// + /// quobyte represents a Quobyte mount on the host that shares a pod's lifetime. + /// Deprecated: Quobyte is deprecated and the in-tree quobyte type is no longer supported. + /// + [JsonPropertyName("quobyte")] + public V1PoolerSpecTemplateSpecVolumesQuobyte? Quobyte { get; set; } + + /// + /// rbd represents a Rados Block Device mount on the host that shares a pod's lifetime. + /// Deprecated: RBD is deprecated and the in-tree rbd type is no longer supported. + /// + [JsonPropertyName("rbd")] + public V1PoolerSpecTemplateSpecVolumesRbd? Rbd { get; set; } + + /// + /// scaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes. + /// Deprecated: ScaleIO is deprecated and the in-tree scaleIO type is no longer supported. + /// + [JsonPropertyName("scaleIO")] + public V1PoolerSpecTemplateSpecVolumesScaleIO? ScaleIO { get; set; } + + /// + /// secret represents a secret that should populate this volume. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes#secret + /// + [JsonPropertyName("secret")] + public V1PoolerSpecTemplateSpecVolumesSecret? Secret { get; set; } + + /// + /// storageOS represents a StorageOS volume attached and mounted on Kubernetes nodes. + /// Deprecated: StorageOS is deprecated and the in-tree storageos type is no longer supported. + /// + [JsonPropertyName("storageos")] + public V1PoolerSpecTemplateSpecVolumesStorageos? Storageos { get; set; } + + /// + /// vsphereVolume represents a vSphere volume attached and mounted on kubelets host machine. + /// Deprecated: VsphereVolume is deprecated. All operations for the in-tree vsphereVolume type + /// are redirected to the csi.vsphere.vmware.com CSI driver. + /// + [JsonPropertyName("vsphereVolume")] + public V1PoolerSpecTemplateSpecVolumesVsphereVolume? VsphereVolume { get; set; } +} + +/// +/// WorkloadRef provides a reference to the Workload object that this Pod belongs to. +/// This field is used by the scheduler to identify the PodGroup and apply the +/// correct group scheduling policies. The Workload object referenced +/// by this field may not exist at the time the Pod is created. +/// This field is immutable, but a Workload object with the same name +/// may be recreated with different policies. Doing this during pod scheduling +/// may result in the placement not conforming to the expected policies. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpecWorkloadRef +{ + /// + /// Name defines the name of the Workload object this Pod belongs to. + /// Workload must be in the same namespace as the Pod. + /// If it doesn't match any existing Workload, the Pod will remain unschedulable + /// until a Workload object is created and observed by the kube-scheduler. + /// It must be a DNS subdomain. + /// + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// PodGroup is the name of the PodGroup within the Workload that this Pod + /// belongs to. If it doesn't match any existing PodGroup within the Workload, + /// the Pod will remain unschedulable until the Workload object is recreated + /// and observed by the kube-scheduler. It must be a DNS label. + /// + [JsonPropertyName("podGroup")] + public required string PodGroup { get; set; } + + /// + /// PodGroupReplicaKey specifies the replica key of the PodGroup to which this + /// Pod belongs. It is used to distinguish pods belonging to different replicas + /// of the same pod group. The pod group policy is applied separately to each replica. + /// When set, it must be a DNS label. + /// + [JsonPropertyName("podGroupReplicaKey")] + public string? PodGroupReplicaKey { get; set; } +} + +/// +/// Specification of the desired behavior of the pod. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplateSpec +{ + /// + /// Optional duration in seconds the pod may be active on the node relative to + /// StartTime before the system will actively try to mark it failed and kill associated containers. + /// Value must be a positive integer. + /// + [JsonPropertyName("activeDeadlineSeconds")] + public long? ActiveDeadlineSeconds { get; set; } + + /// If specified, the pod's scheduling constraints + [JsonPropertyName("affinity")] + public V1PoolerSpecTemplateSpecAffinity? Affinity { get; set; } + + /// AutomountServiceAccountToken indicates whether a service account token should be automatically mounted. + [JsonPropertyName("automountServiceAccountToken")] + public bool? AutomountServiceAccountToken { get; set; } + + /// + /// List of containers belonging to the pod. + /// Containers cannot currently be added or removed. + /// There must be at least one container in a Pod. + /// Cannot be updated. + /// + [JsonPropertyName("containers")] + public required IList Containers { get; set; } + + /// + /// Specifies the DNS parameters of a pod. + /// Parameters specified here will be merged to the generated DNS + /// configuration based on DNSPolicy. + /// + [JsonPropertyName("dnsConfig")] + public V1PoolerSpecTemplateSpecDnsConfig? DnsConfig { get; set; } + + /// + /// Set DNS policy for the pod. + /// Defaults to "ClusterFirst". + /// Valid values are 'ClusterFirstWithHostNet', 'ClusterFirst', 'Default' or 'None'. + /// DNS parameters given in DNSConfig will be merged with the policy selected with DNSPolicy. + /// To have DNS options set along with hostNetwork, you have to specify DNS policy + /// explicitly to 'ClusterFirstWithHostNet'. + /// + [JsonPropertyName("dnsPolicy")] + public string? DnsPolicy { get; set; } + + /// + /// EnableServiceLinks indicates whether information about services should be injected into pod's + /// environment variables, matching the syntax of Docker links. + /// Optional: Defaults to true. + /// + [JsonPropertyName("enableServiceLinks")] + public bool? EnableServiceLinks { get; set; } + + /// + /// List of ephemeral containers run in this pod. Ephemeral containers may be run in an existing + /// pod to perform user-initiated actions such as debugging. This list cannot be specified when + /// creating a pod, and it cannot be modified by updating the pod spec. In order to add an + /// ephemeral container to an existing pod, use the pod's ephemeralcontainers subresource. + /// + [JsonPropertyName("ephemeralContainers")] + public IList? EphemeralContainers { get; set; } + + /// + /// HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts + /// file if specified. + /// + [JsonPropertyName("hostAliases")] + public IList? HostAliases { get; set; } + + /// + /// Use the host's ipc namespace. + /// Optional: Default to false. + /// + [JsonPropertyName("hostIPC")] + public bool? HostIPC { get; set; } + + /// + /// Host networking requested for this pod. Use the host's network namespace. + /// When using HostNetwork you should specify ports so the scheduler is aware. + /// When `hostNetwork` is true, specified `hostPort` fields in port definitions must match `containerPort`, + /// and unspecified `hostPort` fields in port definitions are defaulted to match `containerPort`. + /// Default to false. + /// + [JsonPropertyName("hostNetwork")] + public bool? HostNetwork { get; set; } + + /// + /// Use the host's pid namespace. + /// Optional: Default to false. + /// + [JsonPropertyName("hostPID")] + public bool? HostPID { get; set; } + + /// + /// Use the host's user namespace. + /// Optional: Default to true. + /// If set to true or not present, the pod will be run in the host user namespace, useful + /// for when the pod needs a feature only available to the host user namespace, such as + /// loading a kernel module with CAP_SYS_MODULE. + /// When set to false, a new userns is created for the pod. Setting false is useful for + /// mitigating container breakout vulnerabilities even allowing users to run their + /// containers as root without actually having root privileges on the host. + /// This field is alpha-level and is only honored by servers that enable the UserNamespacesSupport feature. + /// + [JsonPropertyName("hostUsers")] + public bool? HostUsers { get; set; } + + /// + /// Specifies the hostname of the Pod + /// If not specified, the pod's hostname will be set to a system-defined value. + /// + [JsonPropertyName("hostname")] + public string? Hostname { get; set; } + + /// + /// HostnameOverride specifies an explicit override for the pod's hostname as perceived by the pod. + /// This field only specifies the pod's hostname and does not affect its DNS records. + /// When this field is set to a non-empty string: + /// - It takes precedence over the values set in `hostname` and `subdomain`. + /// - The Pod's hostname will be set to this value. + /// - `setHostnameAsFQDN` must be nil or set to false. + /// - `hostNetwork` must be set to false. + /// + /// This field must be a valid DNS subdomain as defined in RFC 1123 and contain at most 64 characters. + /// Requires the HostnameOverride feature gate to be enabled. + /// + [JsonPropertyName("hostnameOverride")] + public string? HostnameOverride { get; set; } + + /// + /// ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. + /// If specified, these secrets will be passed to individual puller implementations for them to use. + /// More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod + /// + [JsonPropertyName("imagePullSecrets")] + public IList? ImagePullSecrets { get; set; } + + /// + /// List of initialization containers belonging to the pod. + /// Init containers are executed in order prior to containers being started. If any + /// init container fails, the pod is considered to have failed and is handled according + /// to its restartPolicy. The name for an init container or normal container must be + /// unique among all containers. + /// Init containers may not have Lifecycle actions, Readiness probes, Liveness probes, or Startup probes. + /// The resourceRequirements of an init container are taken into account during scheduling + /// by finding the highest request/limit for each resource type, and then using the max of + /// that value or the sum of the normal containers. Limits are applied to init containers + /// in a similar fashion. + /// Init containers cannot currently be added or removed. + /// Cannot be updated. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ + /// + [JsonPropertyName("initContainers")] + public IList? InitContainers { get; set; } + + /// + /// NodeName indicates in which node this pod is scheduled. + /// If empty, this pod is a candidate for scheduling by the scheduler defined in schedulerName. + /// Once this field is set, the kubelet for this node becomes responsible for the lifecycle of this pod. + /// This field should not be used to express a desire for the pod to be scheduled on a specific node. + /// https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/#nodename + /// + [JsonPropertyName("nodeName")] + public string? NodeName { get; set; } + + /// + /// NodeSelector is a selector which must be true for the pod to fit on a node. + /// Selector which must match a node's labels for the pod to be scheduled on that node. + /// More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/ + /// + [JsonPropertyName("nodeSelector")] + public IDictionary? NodeSelector { get; set; } + + /// + /// Specifies the OS of the containers in the pod. + /// Some pod and container fields are restricted if this is set. + /// + /// If the OS field is set to linux, the following fields must be unset: + /// -securityContext.windowsOptions + /// + /// If the OS field is set to windows, following fields must be unset: + /// - spec.hostPID + /// - spec.hostIPC + /// - spec.hostUsers + /// - spec.resources + /// - spec.securityContext.appArmorProfile + /// - spec.securityContext.seLinuxOptions + /// - spec.securityContext.seccompProfile + /// - spec.securityContext.fsGroup + /// - spec.securityContext.fsGroupChangePolicy + /// - spec.securityContext.sysctls + /// - spec.shareProcessNamespace + /// - spec.securityContext.runAsUser + /// - spec.securityContext.runAsGroup + /// - spec.securityContext.supplementalGroups + /// - spec.securityContext.supplementalGroupsPolicy + /// - spec.containers[*].securityContext.appArmorProfile + /// - spec.containers[*].securityContext.seLinuxOptions + /// - spec.containers[*].securityContext.seccompProfile + /// - spec.containers[*].securityContext.capabilities + /// - spec.containers[*].securityContext.readOnlyRootFilesystem + /// - spec.containers[*].securityContext.privileged + /// - spec.containers[*].securityContext.allowPrivilegeEscalation + /// - spec.containers[*].securityContext.procMount + /// - spec.containers[*].securityContext.runAsUser + /// - spec.containers[*].securityContext.runAsGroup + /// + [JsonPropertyName("os")] + public V1PoolerSpecTemplateSpecOs? Os { get; set; } + + /// + /// Overhead represents the resource overhead associated with running a pod for a given RuntimeClass. + /// This field will be autopopulated at admission time by the RuntimeClass admission controller. If + /// the RuntimeClass admission controller is enabled, overhead must not be set in Pod create requests. + /// The RuntimeClass admission controller will reject Pod create requests which have the overhead already + /// set. If RuntimeClass is configured and selected in the PodSpec, Overhead will be set to the value + /// defined in the corresponding RuntimeClass, otherwise it will remain unset and treated as zero. + /// More info: https://git.k8s.io/enhancements/keps/sig-node/688-pod-overhead/README.md + /// + [JsonPropertyName("overhead")] + public IDictionary? Overhead { get; set; } + + /// + /// PreemptionPolicy is the Policy for preempting pods with lower priority. + /// One of Never, PreemptLowerPriority. + /// Defaults to PreemptLowerPriority if unset. + /// + [JsonPropertyName("preemptionPolicy")] + public string? PreemptionPolicy { get; set; } + + /// + /// The priority value. Various system components use this field to find the + /// priority of the pod. When Priority Admission Controller is enabled, it + /// prevents users from setting this field. The admission controller populates + /// this field from PriorityClassName. + /// The higher the value, the higher the priority. + /// + [JsonPropertyName("priority")] + public int? Priority { get; set; } + + /// + /// If specified, indicates the pod's priority. "system-node-critical" and + /// "system-cluster-critical" are two special keywords which indicate the + /// highest priorities with the former being the highest priority. Any other + /// name must be defined by creating a PriorityClass object with that name. + /// If not specified, the pod priority will be default or zero if there is no + /// default. + /// + [JsonPropertyName("priorityClassName")] + public string? PriorityClassName { get; set; } + + /// + /// If specified, all readiness gates will be evaluated for pod readiness. + /// A pod is ready when all its containers are ready AND + /// all conditions specified in the readiness gates have status equal to "True" + /// More info: https://git.k8s.io/enhancements/keps/sig-network/580-pod-readiness-gates + /// + [JsonPropertyName("readinessGates")] + public IList? ReadinessGates { get; set; } + + /// + /// ResourceClaims defines which ResourceClaims must be allocated + /// and reserved before the Pod is allowed to start. The resources + /// will be made available to those containers which consume them + /// by name. + /// + /// This is a stable field but requires that the + /// DynamicResourceAllocation feature gate is enabled. + /// + /// This field is immutable. + /// + [JsonPropertyName("resourceClaims")] + public IList? ResourceClaims { get; set; } + + /// + /// Resources is the total amount of CPU and Memory resources required by all + /// containers in the pod. It supports specifying Requests and Limits for + /// "cpu", "memory" and "hugepages-" resource names only. ResourceClaims are not supported. + /// + /// This field enables fine-grained control over resource allocation for the + /// entire pod, allowing resource sharing among containers in a pod. + /// + /// This is an alpha field and requires enabling the PodLevelResources feature + /// gate. + /// + [JsonPropertyName("resources")] + public V1PoolerSpecTemplateSpecResources? Resources { get; set; } + + /// + /// Restart policy for all containers within the pod. + /// One of Always, OnFailure, Never. In some contexts, only a subset of those values may be permitted. + /// Default to Always. + /// More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy + /// + [JsonPropertyName("restartPolicy")] + public string? RestartPolicy { get; set; } + + /// + /// RuntimeClassName refers to a RuntimeClass object in the node.k8s.io group, which should be used + /// to run this pod. If no RuntimeClass resource matches the named class, the pod will not be run. + /// If unset or empty, the "legacy" RuntimeClass will be used, which is an implicit class with an + /// empty definition that uses the default runtime handler. + /// More info: https://git.k8s.io/enhancements/keps/sig-node/585-runtime-class + /// + [JsonPropertyName("runtimeClassName")] + public string? RuntimeClassName { get; set; } + + /// + /// If specified, the pod will be dispatched by specified scheduler. + /// If not specified, the pod will be dispatched by default scheduler. + /// + [JsonPropertyName("schedulerName")] + public string? SchedulerName { get; set; } + + /// + /// SchedulingGates is an opaque list of values that if specified will block scheduling the pod. + /// If schedulingGates is not empty, the pod will stay in the SchedulingGated state and the + /// scheduler will not attempt to schedule the pod. + /// + /// SchedulingGates can only be set at pod creation time, and be removed only afterwards. + /// + [JsonPropertyName("schedulingGates")] + public IList? SchedulingGates { get; set; } + + /// + /// SecurityContext holds pod-level security attributes and common container settings. + /// Optional: Defaults to empty. See type description for default values of each field. + /// + [JsonPropertyName("securityContext")] + public V1PoolerSpecTemplateSpecSecurityContext? SecurityContext { get; set; } + + /// + /// DeprecatedServiceAccount is a deprecated alias for ServiceAccountName. + /// Deprecated: Use serviceAccountName instead. + /// + [JsonPropertyName("serviceAccount")] + public string? ServiceAccount { get; set; } + + /// + /// ServiceAccountName is the name of the ServiceAccount to use to run this pod. + /// More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/ + /// + [JsonPropertyName("serviceAccountName")] + public string? ServiceAccountName { get; set; } + + /// + /// If true the pod's hostname will be configured as the pod's FQDN, rather than the leaf name (the default). + /// In Linux containers, this means setting the FQDN in the hostname field of the kernel (the nodename field of struct utsname). + /// In Windows containers, this means setting the registry value of hostname for the registry key HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters to FQDN. + /// If a pod does not have FQDN, this has no effect. + /// Default to false. + /// + [JsonPropertyName("setHostnameAsFQDN")] + public bool? SetHostnameAsFQDN { get; set; } + + /// + /// Share a single process namespace between all of the containers in a pod. + /// When this is set containers will be able to view and signal processes from other containers + /// in the same pod, and the first process in each container will not be assigned PID 1. + /// HostPID and ShareProcessNamespace cannot both be set. + /// Optional: Default to false. + /// + [JsonPropertyName("shareProcessNamespace")] + public bool? ShareProcessNamespace { get; set; } + + /// + /// If specified, the fully qualified Pod hostname will be " <hostname>.<subdomain>.<pod namespace>.svc.<cluster domain> ". + /// If not specified, the pod will not have a domainname at all. + /// + [JsonPropertyName("subdomain")] + public string? Subdomain { get; set; } + + /// + /// Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. + /// Value must be non-negative integer. The value zero indicates stop immediately via + /// the kill signal (no opportunity to shut down). + /// If this value is nil, the default grace period will be used instead. + /// The grace period is the duration in seconds after the processes running in the pod are sent + /// a termination signal and the time when the processes are forcibly halted with a kill signal. + /// Set this value longer than the expected cleanup time for your process. + /// Defaults to 30 seconds. + /// + [JsonPropertyName("terminationGracePeriodSeconds")] + public long? TerminationGracePeriodSeconds { get; set; } + + /// If specified, the pod's tolerations. + [JsonPropertyName("tolerations")] + public IList? Tolerations { get; set; } + + /// + /// TopologySpreadConstraints describes how a group of pods ought to spread across topology + /// domains. Scheduler will schedule pods in a way which abides by the constraints. + /// All topologySpreadConstraints are ANDed. + /// + [JsonPropertyName("topologySpreadConstraints")] + public IList? TopologySpreadConstraints { get; set; } + + /// + /// List of volumes that can be mounted by containers belonging to the pod. + /// More info: https://kubernetes.io/docs/concepts/storage/volumes + /// + [JsonPropertyName("volumes")] + public IList? Volumes { get; set; } + + /// + /// WorkloadRef provides a reference to the Workload object that this Pod belongs to. + /// This field is used by the scheduler to identify the PodGroup and apply the + /// correct group scheduling policies. The Workload object referenced + /// by this field may not exist at the time the Pod is created. + /// This field is immutable, but a Workload object with the same name + /// may be recreated with different policies. Doing this during pod scheduling + /// may result in the placement not conforming to the expected policies. + /// + [JsonPropertyName("workloadRef")] + public V1PoolerSpecTemplateSpecWorkloadRef? WorkloadRef { get; set; } +} + +/// The template of the Pod to be created +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpecTemplate +{ + /// + /// Standard object's metadata. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + /// + [JsonPropertyName("metadata")] + public V1PoolerSpecTemplateMetadata? Metadata { get; set; } + + /// + /// Specification of the desired behavior of the pod. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public V1PoolerSpecTemplateSpec? Spec { get; set; } +} + +/// Type of service to forward traffic to. Default: `rw`. +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1PoolerSpecTypeEnum +{ + [EnumMember(Value = "rw"), JsonStringEnumMemberName("rw")] + Rw, + [EnumMember(Value = "ro"), JsonStringEnumMemberName("ro")] + Ro, + [EnumMember(Value = "r"), JsonStringEnumMemberName("r")] + R +} + +/// +/// Specification of the desired behavior of the Pooler. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerSpec +{ + /// + /// This is the cluster reference on which the Pooler will work. + /// Pooler name should never match with any cluster name within the same namespace. + /// + [JsonPropertyName("cluster")] + public required V1PoolerSpecCluster Cluster { get; set; } + + /// The deployment strategy to use for pgbouncer to replace existing pods with new ones + [JsonPropertyName("deploymentStrategy")] + public V1PoolerSpecDeploymentStrategy? DeploymentStrategy { get; set; } + + /// The number of replicas we want. Default: 1. + [JsonPropertyName("instances")] + public int? Instances { get; set; } + + /// + /// The configuration of the monitoring infrastructure of this pooler. + /// + /// Deprecated: This feature will be removed in an upcoming release. If + /// you need this functionality, you can create a PodMonitor manually. + /// + [JsonPropertyName("monitoring")] + public V1PoolerSpecMonitoring? Monitoring { get; set; } + + /// The PgBouncer configuration + [JsonPropertyName("pgbouncer")] + public required V1PoolerSpecPgbouncer Pgbouncer { get; set; } + + /// + /// Name of an existing ServiceAccount in the same namespace to use for the pooler. + /// When specified, the operator will not create a new ServiceAccount + /// but will use the provided one. This is useful for sharing a single + /// ServiceAccount across multiple poolers (e.g., for cloud IAM configurations). + /// If not specified, a ServiceAccount will be created with the pooler name. + /// + [JsonPropertyName("serviceAccountName")] + public string? ServiceAccountName { get; set; } + + /// Template for the Service to be created + [JsonPropertyName("serviceTemplate")] + public V1PoolerSpecServiceTemplate? ServiceTemplate { get; set; } + + /// The template of the Pod to be created + [JsonPropertyName("template")] + public V1PoolerSpecTemplate? Template { get; set; } + + /// Type of service to forward traffic to. Default: `rw`. + [JsonPropertyName("type")] + public V1PoolerSpecTypeEnum? Type { get; set; } +} + +/// The client CA secret version +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerStatusSecretsClientCA +{ + /// The name of the secret + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// The ResourceVersion of the secret + [JsonPropertyName("version")] + public string? Version { get; set; } +} + +/// The client TLS secret version +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerStatusSecretsClientTLS +{ + /// The name of the secret + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// The ResourceVersion of the secret + [JsonPropertyName("version")] + public string? Version { get; set; } +} + +/// The auth query secret version +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerStatusSecretsPgBouncerSecretsAuthQuery +{ + /// The name of the secret + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// The ResourceVersion of the secret + [JsonPropertyName("version")] + public string? Version { get; set; } +} + +/// The version of the secrets used by PgBouncer +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerStatusSecretsPgBouncerSecrets +{ + /// The auth query secret version + [JsonPropertyName("authQuery")] + public V1PoolerStatusSecretsPgBouncerSecretsAuthQuery? AuthQuery { get; set; } +} + +/// The server CA secret version +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerStatusSecretsServerCA +{ + /// The name of the secret + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// The ResourceVersion of the secret + [JsonPropertyName("version")] + public string? Version { get; set; } +} + +/// The server TLS secret version +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerStatusSecretsServerTLS +{ + /// The name of the secret + [JsonPropertyName("name")] + public string? Name { get; set; } + + /// The ResourceVersion of the secret + [JsonPropertyName("version")] + public string? Version { get; set; } +} + +/// The resource version of the config object +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerStatusSecrets +{ + /// The client CA secret version + [JsonPropertyName("clientCA")] + public V1PoolerStatusSecretsClientCA? ClientCA { get; set; } + + /// The client TLS secret version + [JsonPropertyName("clientTLS")] + public V1PoolerStatusSecretsClientTLS? ClientTLS { get; set; } + + /// The version of the secrets used by PgBouncer + [JsonPropertyName("pgBouncerSecrets")] + public V1PoolerStatusSecretsPgBouncerSecrets? PgBouncerSecrets { get; set; } + + /// The server CA secret version + [JsonPropertyName("serverCA")] + public V1PoolerStatusSecretsServerCA? ServerCA { get; set; } + + /// The server TLS secret version + [JsonPropertyName("serverTLS")] + public V1PoolerStatusSecretsServerTLS? ServerTLS { get; set; } +} + +/// +/// Most recently observed status of the Pooler. This data may not be up to +/// date. Populated by the system. Read-only. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PoolerStatus +{ + /// The number of pods trying to be scheduled + [JsonPropertyName("instances")] + public int? Instances { get; set; } + + /// The resource version of the config object + [JsonPropertyName("secrets")] + public V1PoolerStatusSecrets? Secrets { get; set; } +} + +/// Pooler is the Schema for the poolers API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1Pooler : IKubernetesObject, ISpec, IStatus +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "Pooler"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "poolers"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "Pooler"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// + /// Specification of the desired behavior of the Pooler. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public required V1PoolerSpec Spec { get; set; } + + /// + /// Most recently observed status of the Pooler. This data may not be up to + /// date. Populated by the system. Read-only. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("status")] + public V1PoolerStatus? Status { get; set; } +} \ No newline at end of file diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.publications.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.publications.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..c1da20d --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.publications.postgresql.cnpg.io.g.cs @@ -0,0 +1,216 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// Publication is the Schema for the publications API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1PublicationList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "PublicationList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "publications"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "PublicationList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1Publication objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// The name of the PostgreSQL cluster that identifies the "publisher" +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PublicationSpecCluster +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// The policy for end-of-life maintenance of this publication +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1PublicationSpecPublicationReclaimPolicyEnum +{ + [EnumMember(Value = "delete"), JsonStringEnumMemberName("delete")] + Delete, + [EnumMember(Value = "retain"), JsonStringEnumMemberName("retain")] + Retain +} + +/// +/// Specifies a list of tables to add to the publication. Corresponding +/// to `FOR TABLE` in PostgreSQL. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PublicationSpecTargetObjectsTable +{ + /// The columns to publish + [JsonPropertyName("columns")] + public IList? Columns { get; set; } + + /// The table name + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// Whether to limit to the table only or include all its descendants + [JsonPropertyName("only")] + public bool? Only { get; set; } + + /// The schema name + [JsonPropertyName("schema")] + public string? Schema { get; set; } +} + +/// PublicationTargetObject is an object to publish +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PublicationSpecTargetObjects +{ + /// + /// Specifies a list of tables to add to the publication. Corresponding + /// to `FOR TABLE` in PostgreSQL. + /// + [JsonPropertyName("table")] + public V1PublicationSpecTargetObjectsTable? Table { get; set; } + + /// + /// Marks the publication as one that replicates changes for all tables + /// in the specified list of schemas, including tables created in the + /// future. Corresponding to `FOR TABLES IN SCHEMA` in PostgreSQL. + /// + [JsonPropertyName("tablesInSchema")] + public string? TablesInSchema { get; set; } +} + +/// Target of the publication as expected by PostgreSQL `CREATE PUBLICATION` command +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PublicationSpecTarget +{ + /// + /// Marks the publication as one that replicates changes for all tables + /// in the database, including tables created in the future. + /// Corresponding to `FOR ALL TABLES` in PostgreSQL. + /// + [JsonPropertyName("allTables")] + public bool? AllTables { get; set; } + + /// Just the following schema objects + [JsonPropertyName("objects")] + public IList? Objects { get; set; } +} + +/// PublicationSpec defines the desired state of Publication +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PublicationSpec +{ + /// The name of the PostgreSQL cluster that identifies the "publisher" + [JsonPropertyName("cluster")] + public required V1PublicationSpecCluster Cluster { get; set; } + + /// + /// The name of the database where the publication will be installed in + /// the "publisher" cluster + /// + [JsonPropertyName("dbname")] + public required string Dbname { get; set; } + + /// The name of the publication inside PostgreSQL + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Publication parameters part of the `WITH` clause as expected by + /// PostgreSQL `CREATE PUBLICATION` command + /// + [JsonPropertyName("parameters")] + public IDictionary? Parameters { get; set; } + + /// The policy for end-of-life maintenance of this publication + [JsonPropertyName("publicationReclaimPolicy")] + public V1PublicationSpecPublicationReclaimPolicyEnum? PublicationReclaimPolicy { get; set; } + + /// Target of the publication as expected by PostgreSQL `CREATE PUBLICATION` command + [JsonPropertyName("target")] + public required V1PublicationSpecTarget Target { get; set; } +} + +/// PublicationStatus defines the observed state of Publication +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1PublicationStatus +{ + /// Applied is true if the publication was reconciled correctly + [JsonPropertyName("applied")] + public bool? Applied { get; set; } + + /// Message is the reconciliation output message + [JsonPropertyName("message")] + public string? Message { get; set; } + + /// + /// A sequence number representing the latest + /// desired state that was synchronized + /// + [JsonPropertyName("observedGeneration")] + public long? ObservedGeneration { get; set; } +} + +/// Publication is the Schema for the publications API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1Publication : IKubernetesObject, ISpec, IStatus +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "Publication"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "publications"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "Publication"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// PublicationSpec defines the desired state of Publication + [JsonPropertyName("spec")] + public required V1PublicationSpec Spec { get; set; } + + /// PublicationStatus defines the observed state of Publication + [JsonPropertyName("status")] + public V1PublicationStatus? Status { get; set; } +} \ No newline at end of file diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.scheduledbackups.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.scheduledbackups.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..c537a1d --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.scheduledbackups.postgresql.cnpg.io.g.cs @@ -0,0 +1,284 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// ScheduledBackup is the Schema for the scheduledbackups API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1ScheduledBackupList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "ScheduledBackupList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "scheduledbackups"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "ScheduledBackupList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1ScheduledBackup objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// +/// Indicates which ownerReference should be put inside the created backup resources.<br /> +/// - none: no owner reference for created backup objects (same behavior as before the field was introduced)<br /> +/// - self: sets the Scheduled backup object as owner of the backup<br /> +/// - cluster: set the cluster as owner of the backup<br /> +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ScheduledBackupSpecBackupOwnerReferenceEnum +{ + [EnumMember(Value = "none"), JsonStringEnumMemberName("none")] + None, + [EnumMember(Value = "self"), JsonStringEnumMemberName("self")] + Self, + [EnumMember(Value = "cluster"), JsonStringEnumMemberName("cluster")] + Cluster +} + +/// The cluster to backup +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ScheduledBackupSpecCluster +{ + /// Name of the referent. + [JsonPropertyName("name")] + public required string Name { get; set; } +} + +/// +/// The backup method to be used, possible options are `barmanObjectStore`, +/// `volumeSnapshot` or `plugin`. Defaults to: `barmanObjectStore`. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ScheduledBackupSpecMethodEnum +{ + [EnumMember(Value = "barmanObjectStore"), JsonStringEnumMemberName("barmanObjectStore")] + BarmanObjectStore, + [EnumMember(Value = "volumeSnapshot"), JsonStringEnumMemberName("volumeSnapshot")] + VolumeSnapshot, + [EnumMember(Value = "plugin"), JsonStringEnumMemberName("plugin")] + Plugin +} + +/// +/// Configuration parameters to control the online/hot backup with volume snapshots +/// Overrides the default settings specified in the cluster '.backup.volumeSnapshot.onlineConfiguration' stanza +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ScheduledBackupSpecOnlineConfiguration +{ + /// + /// Control whether the I/O workload for the backup initial checkpoint will + /// be limited, according to the `checkpoint_completion_target` setting on + /// the PostgreSQL server. If set to true, an immediate checkpoint will be + /// used, meaning PostgreSQL will complete the checkpoint as soon as + /// possible. `false` by default. + /// + [JsonPropertyName("immediateCheckpoint")] + public bool? ImmediateCheckpoint { get; set; } + + /// + /// If false, the function will return immediately after the backup is completed, + /// without waiting for WAL to be archived. + /// This behavior is only useful with backup software that independently monitors WAL archiving. + /// Otherwise, WAL required to make the backup consistent might be missing and make the backup useless. + /// By default, or when this parameter is true, pg_backup_stop will wait for WAL to be archived when archiving is + /// enabled. + /// On a standby, this means that it will wait only when archive_mode = always. + /// If write activity on the primary is low, it may be useful to run pg_switch_wal on the primary in order to trigger + /// an immediate segment switch. + /// + [JsonPropertyName("waitForArchive")] + public bool? WaitForArchive { get; set; } +} + +/// Configuration parameters passed to the plugin managing this backup +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ScheduledBackupSpecPluginConfiguration +{ + /// Name is the name of the plugin managing this backup + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Parameters are the configuration parameters passed to the backup + /// plugin for this backup + /// + [JsonPropertyName("parameters")] + public IDictionary? Parameters { get; set; } +} + +/// +/// The policy to decide which instance should perform this backup. If empty, +/// it defaults to `cluster.spec.backup.target`. +/// Available options are empty string, `primary` and `prefer-standby`. +/// `primary` to have backups run always on primary instances, +/// `prefer-standby` to have backups run preferably on the most updated +/// standby, if available. +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1ScheduledBackupSpecTargetEnum +{ + [EnumMember(Value = "primary"), JsonStringEnumMemberName("primary")] + Primary, + [EnumMember(Value = "prefer-standby"), JsonStringEnumMemberName("prefer-standby")] + PreferStandby +} + +/// +/// Specification of the desired behavior of the ScheduledBackup. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ScheduledBackupSpec +{ + /// + /// Indicates which ownerReference should be put inside the created backup resources.<br /> + /// - none: no owner reference for created backup objects (same behavior as before the field was introduced)<br /> + /// - self: sets the Scheduled backup object as owner of the backup<br /> + /// - cluster: set the cluster as owner of the backup<br /> + /// + [JsonPropertyName("backupOwnerReference")] + public V1ScheduledBackupSpecBackupOwnerReferenceEnum? BackupOwnerReference { get; set; } + + /// The cluster to backup + [JsonPropertyName("cluster")] + public required V1ScheduledBackupSpecCluster Cluster { get; set; } + + /// If the first backup has to be immediately start after creation or not + [JsonPropertyName("immediate")] + public bool? Immediate { get; set; } + + /// + /// The backup method to be used, possible options are `barmanObjectStore`, + /// `volumeSnapshot` or `plugin`. Defaults to: `barmanObjectStore`. + /// + [JsonPropertyName("method")] + public V1ScheduledBackupSpecMethodEnum? Method { get; set; } + + /// + /// Whether the default type of backup with volume snapshots is + /// online/hot (`true`, default) or offline/cold (`false`) + /// Overrides the default setting specified in the cluster field '.spec.backup.volumeSnapshot.online' + /// + [JsonPropertyName("online")] + public bool? Online { get; set; } + + /// + /// Configuration parameters to control the online/hot backup with volume snapshots + /// Overrides the default settings specified in the cluster '.backup.volumeSnapshot.onlineConfiguration' stanza + /// + [JsonPropertyName("onlineConfiguration")] + public V1ScheduledBackupSpecOnlineConfiguration? OnlineConfiguration { get; set; } + + /// Configuration parameters passed to the plugin managing this backup + [JsonPropertyName("pluginConfiguration")] + public V1ScheduledBackupSpecPluginConfiguration? PluginConfiguration { get; set; } + + /// + /// The schedule does not follow the same format used in Kubernetes CronJobs + /// as it includes an additional seconds specifier, + /// see https://pkg.go.dev/github.com/robfig/cron#hdr-CRON_Expression_Format + /// + [JsonPropertyName("schedule")] + public required string Schedule { get; set; } + + /// If this backup is suspended or not + [JsonPropertyName("suspend")] + public bool? Suspend { get; set; } + + /// + /// The policy to decide which instance should perform this backup. If empty, + /// it defaults to `cluster.spec.backup.target`. + /// Available options are empty string, `primary` and `prefer-standby`. + /// `primary` to have backups run always on primary instances, + /// `prefer-standby` to have backups run preferably on the most updated + /// standby, if available. + /// + [JsonPropertyName("target")] + public V1ScheduledBackupSpecTargetEnum? Target { get; set; } +} + +/// +/// Most recently observed status of the ScheduledBackup. This data may not be up +/// to date. Populated by the system. Read-only. +/// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status +/// +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1ScheduledBackupStatus +{ + /// The latest time the schedule + [JsonPropertyName("lastCheckTime")] + public DateTime? LastCheckTime { get; set; } + + /// Information when was the last time that backup was successfully scheduled. + [JsonPropertyName("lastScheduleTime")] + public DateTime? LastScheduleTime { get; set; } + + /// Next time we will run a backup + [JsonPropertyName("nextScheduleTime")] + public DateTime? NextScheduleTime { get; set; } +} + +/// ScheduledBackup is the Schema for the scheduledbackups API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1ScheduledBackup : IKubernetesObject, ISpec, IStatus +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "ScheduledBackup"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "scheduledbackups"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "ScheduledBackup"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// + /// Specification of the desired behavior of the ScheduledBackup. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("spec")] + public required V1ScheduledBackupSpec Spec { get; set; } + + /// + /// Most recently observed status of the ScheduledBackup. This data may not be up + /// to date. Populated by the system. Read-only. + /// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status + /// + [JsonPropertyName("status")] + public V1ScheduledBackupStatus? Status { get; set; } +} \ No newline at end of file diff --git a/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.subscriptions.postgresql.cnpg.io.g.cs b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.subscriptions.postgresql.cnpg.io.g.cs new file mode 100644 index 0000000..9654c0b --- /dev/null +++ b/Generated/KubernetesCRDModelGen.SourceGenerator/KubernetesCRDModelGen.SourceGenerator.SourceGenerator/v1.subscriptions.postgresql.cnpg.io.g.cs @@ -0,0 +1,169 @@ +#nullable enable +using k8s; +using k8s.Models; +using System; +using System.Collections.Generic; +using System.Runtime.Serialization; +using System.Text.Json; +using System.Text.Json.Nodes; +using System.Text.Json.Serialization; + +namespace KubernetesCRDModelGen.Models.postgresql.cnpg.io; +/// Subscription is the Schema for the subscriptions API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1SubscriptionList : IKubernetesObject, IItems +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "SubscriptionList"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "subscriptions"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "SubscriptionList"; + + /// ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}. + [JsonPropertyName("metadata")] + public V1ListMeta? Metadata { get; set; } + + /// List of V1Subscription objects. + [JsonPropertyName("items")] + public IList? Items { get; set; } +} + +/// The name of the PostgreSQL cluster that identifies the "subscriber" +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1SubscriptionSpecCluster +{ + /// + /// Name of the referent. + /// This field is effectively required, but due to backwards compatibility is + /// allowed to be empty. Instances of this type with an empty value here are + /// almost certainly wrong. + /// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + /// + [JsonPropertyName("name")] + public string? Name { get; set; } +} + +/// The policy for end-of-life maintenance of this subscription +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[JsonConverter(typeof(JsonStringEnumConverter))] +public enum V1SubscriptionSpecSubscriptionReclaimPolicyEnum +{ + [EnumMember(Value = "delete"), JsonStringEnumMemberName("delete")] + Delete, + [EnumMember(Value = "retain"), JsonStringEnumMemberName("retain")] + Retain +} + +/// SubscriptionSpec defines the desired state of Subscription +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1SubscriptionSpec +{ + /// The name of the PostgreSQL cluster that identifies the "subscriber" + [JsonPropertyName("cluster")] + public required V1SubscriptionSpecCluster Cluster { get; set; } + + /// + /// The name of the database where the publication will be installed in + /// the "subscriber" cluster + /// + [JsonPropertyName("dbname")] + public required string Dbname { get; set; } + + /// The name of the external cluster with the publication ("publisher") + [JsonPropertyName("externalClusterName")] + public required string ExternalClusterName { get; set; } + + /// The name of the subscription inside PostgreSQL + [JsonPropertyName("name")] + public required string Name { get; set; } + + /// + /// Subscription parameters included in the `WITH` clause of the PostgreSQL + /// `CREATE SUBSCRIPTION` command. Most parameters cannot be changed + /// after the subscription is created and will be ignored if modified + /// later, except for a limited set documented at: + /// https://www.postgresql.org/docs/current/sql-altersubscription.html#SQL-ALTERSUBSCRIPTION-PARAMS-SET + /// + [JsonPropertyName("parameters")] + public IDictionary? Parameters { get; set; } + + /// + /// The name of the database containing the publication on the external + /// cluster. Defaults to the one in the external cluster definition. + /// + [JsonPropertyName("publicationDBName")] + public string? PublicationDBName { get; set; } + + /// + /// The name of the publication inside the PostgreSQL database in the + /// "publisher" + /// + [JsonPropertyName("publicationName")] + public required string PublicationName { get; set; } + + /// The policy for end-of-life maintenance of this subscription + [JsonPropertyName("subscriptionReclaimPolicy")] + public V1SubscriptionSpecSubscriptionReclaimPolicyEnum? SubscriptionReclaimPolicy { get; set; } +} + +/// SubscriptionStatus defines the observed state of Subscription +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +public partial class V1SubscriptionStatus +{ + /// Applied is true if the subscription was reconciled correctly + [JsonPropertyName("applied")] + public bool? Applied { get; set; } + + /// Message is the reconciliation output message + [JsonPropertyName("message")] + public string? Message { get; set; } + + /// + /// A sequence number representing the latest + /// desired state that was synchronized + /// + [JsonPropertyName("observedGeneration")] + public long? ObservedGeneration { get; set; } +} + +/// Subscription is the Schema for the subscriptions API +[global::System.CodeDom.Compiler.GeneratedCode("KubernetesCRDModelGen", "1.5.2+8c7b4a3647c1e77cd3e3152af5701ec2357dafe9")] +[global::System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage] +[KubernetesEntity(Group = KubeGroup, Kind = KubeKind, ApiVersion = KubeApiVersion, PluralName = KubePluralName)] +public partial class V1Subscription : IKubernetesObject, ISpec, IStatus +{ + public const string KubeApiVersion = "v1"; + public const string KubeKind = "Subscription"; + public const string KubeGroup = "postgresql.cnpg.io"; + public const string KubePluralName = "subscriptions"; + /// 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 + [JsonPropertyName("apiVersion")] + public string ApiVersion { get; set; } = "postgresql.cnpg.io/v1"; + + /// 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 + [JsonPropertyName("kind")] + public string Kind { get; set; } = "Subscription"; + + /// Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata + [JsonPropertyName("metadata")] + public V1ObjectMeta Metadata { get; set; } + + /// SubscriptionSpec defines the desired state of Subscription + [JsonPropertyName("spec")] + public required V1SubscriptionSpec Spec { get; set; } + + /// SubscriptionStatus defines the observed state of Subscription + [JsonPropertyName("status")] + public V1SubscriptionStatus? Status { get; set; } +} \ No newline at end of file