@kilic.dev/pulumi-k8s-crds 1.7.0 → 1.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/dist/types/input.d.ts +0 -296
  2. package/dist/types/output.d.ts +0 -394
  3. package/dist/velero/v1/index.d.ts +0 -36
  4. package/dist/velero/v1/index.js +1 -49
  5. package/package.json +1 -1
  6. package/dist/velero/v1/backupRepository.d.ts +0 -62
  7. package/dist/velero/v1/backupRepository.js +0 -107
  8. package/dist/velero/v1/backupRepositoryList.d.ts +0 -69
  9. package/dist/velero/v1/backupRepositoryList.js +0 -113
  10. package/dist/velero/v1/backupRepositoryPatch.d.ts +0 -70
  11. package/dist/velero/v1/backupRepositoryPatch.js +0 -115
  12. package/dist/velero/v1/deleteBackupRequest.d.ts +0 -65
  13. package/dist/velero/v1/deleteBackupRequest.js +0 -110
  14. package/dist/velero/v1/deleteBackupRequestList.d.ts +0 -69
  15. package/dist/velero/v1/deleteBackupRequestList.js +0 -113
  16. package/dist/velero/v1/deleteBackupRequestPatch.d.ts +0 -71
  17. package/dist/velero/v1/deleteBackupRequestPatch.js +0 -116
  18. package/dist/velero/v1/downloadRequest.d.ts +0 -66
  19. package/dist/velero/v1/downloadRequest.js +0 -111
  20. package/dist/velero/v1/downloadRequestList.d.ts +0 -69
  21. package/dist/velero/v1/downloadRequestList.js +0 -113
  22. package/dist/velero/v1/downloadRequestPatch.d.ts +0 -72
  23. package/dist/velero/v1/downloadRequestPatch.js +0 -117
  24. package/dist/velero/v1/serverStatusRequest.d.ts +0 -75
  25. package/dist/velero/v1/serverStatusRequest.js +0 -114
  26. package/dist/velero/v1/serverStatusRequestList.d.ts +0 -69
  27. package/dist/velero/v1/serverStatusRequestList.js +0 -113
  28. package/dist/velero/v1/serverStatusRequestPatch.d.ts +0 -81
  29. package/dist/velero/v1/serverStatusRequestPatch.js +0 -120
@@ -243820,129 +243820,6 @@ export declare namespace velero {
243820
243820
  spec?: pulumi.Input<inputs.velero.v1.BackupSpec>;
243821
243821
  status?: pulumi.Input<inputs.velero.v1.BackupStatus>;
243822
243822
  }
243823
- interface BackupRepository {
243824
- /**
243825
- * 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
243826
- */
243827
- apiVersion?: pulumi.Input<"velero.io/v1">;
243828
- /**
243829
- * 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
243830
- */
243831
- kind?: pulumi.Input<"BackupRepository">;
243832
- /**
243833
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
243834
- */
243835
- metadata?: pulumi.Input<ObjectMeta>;
243836
- spec?: pulumi.Input<inputs.velero.v1.BackupRepositorySpec>;
243837
- status?: pulumi.Input<inputs.velero.v1.BackupRepositoryStatus>;
243838
- }
243839
- /**
243840
- * BackupRepositorySpec is the specification for a BackupRepository.
243841
- */
243842
- interface BackupRepositorySpec {
243843
- /**
243844
- * BackupStorageLocation is the name of the BackupStorageLocation
243845
- * that should contain this repository.
243846
- */
243847
- backupStorageLocation?: pulumi.Input<string>;
243848
- /**
243849
- * MaintenanceFrequency is how often maintenance should be run.
243850
- */
243851
- maintenanceFrequency?: pulumi.Input<string>;
243852
- /**
243853
- * RepositoryConfig is for repository-specific configuration fields.
243854
- */
243855
- repositoryConfig?: pulumi.Input<{
243856
- [key: string]: pulumi.Input<string>;
243857
- }>;
243858
- /**
243859
- * RepositoryType indicates the type of the backend repository
243860
- */
243861
- repositoryType?: pulumi.Input<string>;
243862
- /**
243863
- * ResticIdentifier is the full restic-compatible string for identifying
243864
- * this repository.
243865
- */
243866
- resticIdentifier?: pulumi.Input<string>;
243867
- /**
243868
- * VolumeNamespace is the namespace this backup repository contains
243869
- * pod volume backups for.
243870
- */
243871
- volumeNamespace?: pulumi.Input<string>;
243872
- }
243873
- /**
243874
- * BackupRepositorySpec is the specification for a BackupRepository.
243875
- */
243876
- interface BackupRepositorySpecPatch {
243877
- /**
243878
- * BackupStorageLocation is the name of the BackupStorageLocation
243879
- * that should contain this repository.
243880
- */
243881
- backupStorageLocation?: pulumi.Input<string>;
243882
- /**
243883
- * MaintenanceFrequency is how often maintenance should be run.
243884
- */
243885
- maintenanceFrequency?: pulumi.Input<string>;
243886
- /**
243887
- * RepositoryConfig is for repository-specific configuration fields.
243888
- */
243889
- repositoryConfig?: pulumi.Input<{
243890
- [key: string]: pulumi.Input<string>;
243891
- }>;
243892
- /**
243893
- * RepositoryType indicates the type of the backend repository
243894
- */
243895
- repositoryType?: pulumi.Input<string>;
243896
- /**
243897
- * ResticIdentifier is the full restic-compatible string for identifying
243898
- * this repository.
243899
- */
243900
- resticIdentifier?: pulumi.Input<string>;
243901
- /**
243902
- * VolumeNamespace is the namespace this backup repository contains
243903
- * pod volume backups for.
243904
- */
243905
- volumeNamespace?: pulumi.Input<string>;
243906
- }
243907
- /**
243908
- * BackupRepositoryStatus is the current status of a BackupRepository.
243909
- */
243910
- interface BackupRepositoryStatus {
243911
- /**
243912
- * LastMaintenanceTime is the last time repo maintenance succeeded.
243913
- */
243914
- lastMaintenanceTime?: pulumi.Input<string>;
243915
- /**
243916
- * Message is a message about the current status of the BackupRepository.
243917
- */
243918
- message?: pulumi.Input<string>;
243919
- /**
243920
- * Phase is the current state of the BackupRepository.
243921
- */
243922
- phase?: pulumi.Input<string>;
243923
- /**
243924
- * RecentMaintenance is status of the recent repo maintenance.
243925
- */
243926
- recentMaintenance?: pulumi.Input<pulumi.Input<inputs.velero.v1.BackupRepositoryStatusRecentMaintenance>[]>;
243927
- }
243928
- interface BackupRepositoryStatusRecentMaintenance {
243929
- /**
243930
- * CompleteTimestamp is the completion time of the repo maintenance.
243931
- */
243932
- completeTimestamp?: pulumi.Input<string>;
243933
- /**
243934
- * Message is a message about the current status of the repo maintenance.
243935
- */
243936
- message?: pulumi.Input<string>;
243937
- /**
243938
- * Result is the result of the repo maintenance.
243939
- */
243940
- result?: pulumi.Input<string>;
243941
- /**
243942
- * StartTimestamp is the start time of the repo maintenance.
243943
- */
243944
- startTimestamp?: pulumi.Input<string>;
243945
- }
243946
243823
  /**
243947
243824
  * BackupSpec defines the specification for a Velero backup.
243948
243825
  */
@@ -245058,125 +244935,6 @@ export declare namespace velero {
245058
244935
  */
245059
244936
  phase?: pulumi.Input<string>;
245060
244937
  }
245061
- /**
245062
- * DeleteBackupRequest is a request to delete one or more backups.
245063
- */
245064
- interface DeleteBackupRequest {
245065
- /**
245066
- * 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
245067
- */
245068
- apiVersion?: pulumi.Input<"velero.io/v1">;
245069
- /**
245070
- * 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
245071
- */
245072
- kind?: pulumi.Input<"DeleteBackupRequest">;
245073
- /**
245074
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
245075
- */
245076
- metadata?: pulumi.Input<ObjectMeta>;
245077
- spec?: pulumi.Input<inputs.velero.v1.DeleteBackupRequestSpec>;
245078
- status?: pulumi.Input<inputs.velero.v1.DeleteBackupRequestStatus>;
245079
- }
245080
- /**
245081
- * DeleteBackupRequestSpec is the specification for which backups to delete.
245082
- */
245083
- interface DeleteBackupRequestSpec {
245084
- backupName?: pulumi.Input<string>;
245085
- }
245086
- /**
245087
- * DeleteBackupRequestSpec is the specification for which backups to delete.
245088
- */
245089
- interface DeleteBackupRequestSpecPatch {
245090
- backupName?: pulumi.Input<string>;
245091
- }
245092
- /**
245093
- * DeleteBackupRequestStatus is the current status of a DeleteBackupRequest.
245094
- */
245095
- interface DeleteBackupRequestStatus {
245096
- /**
245097
- * Errors contains any errors that were encountered during the deletion process.
245098
- */
245099
- errors?: pulumi.Input<pulumi.Input<string>[]>;
245100
- /**
245101
- * Phase is the current state of the DeleteBackupRequest.
245102
- */
245103
- phase?: pulumi.Input<string>;
245104
- }
245105
- /**
245106
- * DownloadRequest is a request to download an artifact from backup object storage, such as a backup
245107
- * log file.
245108
- */
245109
- interface DownloadRequest {
245110
- /**
245111
- * 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
245112
- */
245113
- apiVersion?: pulumi.Input<"velero.io/v1">;
245114
- /**
245115
- * 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
245116
- */
245117
- kind?: pulumi.Input<"DownloadRequest">;
245118
- /**
245119
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
245120
- */
245121
- metadata?: pulumi.Input<ObjectMeta>;
245122
- spec?: pulumi.Input<inputs.velero.v1.DownloadRequestSpec>;
245123
- status?: pulumi.Input<inputs.velero.v1.DownloadRequestStatus>;
245124
- }
245125
- /**
245126
- * DownloadRequestSpec is the specification for a download request.
245127
- */
245128
- interface DownloadRequestSpec {
245129
- target?: pulumi.Input<inputs.velero.v1.DownloadRequestSpecTarget>;
245130
- }
245131
- /**
245132
- * DownloadRequestSpec is the specification for a download request.
245133
- */
245134
- interface DownloadRequestSpecPatch {
245135
- target?: pulumi.Input<inputs.velero.v1.DownloadRequestSpecTargetPatch>;
245136
- }
245137
- /**
245138
- * Target is what to download (e.g. logs for a backup).
245139
- */
245140
- interface DownloadRequestSpecTarget {
245141
- /**
245142
- * Kind is the type of file to download.
245143
- */
245144
- kind?: pulumi.Input<string>;
245145
- /**
245146
- * Name is the name of the Kubernetes resource with which the file is associated.
245147
- */
245148
- name?: pulumi.Input<string>;
245149
- }
245150
- /**
245151
- * Target is what to download (e.g. logs for a backup).
245152
- */
245153
- interface DownloadRequestSpecTargetPatch {
245154
- /**
245155
- * Kind is the type of file to download.
245156
- */
245157
- kind?: pulumi.Input<string>;
245158
- /**
245159
- * Name is the name of the Kubernetes resource with which the file is associated.
245160
- */
245161
- name?: pulumi.Input<string>;
245162
- }
245163
- /**
245164
- * DownloadRequestStatus is the current status of a DownloadRequest.
245165
- */
245166
- interface DownloadRequestStatus {
245167
- /**
245168
- * DownloadURL contains the pre-signed URL for the target file.
245169
- */
245170
- downloadURL?: pulumi.Input<string>;
245171
- /**
245172
- * Expiration is when this DownloadRequest expires and can be deleted by the system.
245173
- */
245174
- expiration?: pulumi.Input<string>;
245175
- /**
245176
- * Phase is the current state of the DownloadRequest.
245177
- */
245178
- phase?: pulumi.Input<string>;
245179
- }
245180
244938
  interface PodVolumeBackup {
245181
244939
  /**
245182
244940
  * 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
@@ -247305,60 +247063,6 @@ export declare namespace velero {
247305
247063
  */
247306
247064
  validationErrors?: pulumi.Input<pulumi.Input<string>[]>;
247307
247065
  }
247308
- /**
247309
- * ServerStatusRequest is a request to access current status information about
247310
- * the Velero server.
247311
- */
247312
- interface ServerStatusRequest {
247313
- /**
247314
- * 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
247315
- */
247316
- apiVersion?: pulumi.Input<"velero.io/v1">;
247317
- /**
247318
- * 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
247319
- */
247320
- kind?: pulumi.Input<"ServerStatusRequest">;
247321
- /**
247322
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
247323
- */
247324
- metadata?: pulumi.Input<ObjectMeta>;
247325
- /**
247326
- * ServerStatusRequestSpec is the specification for a ServerStatusRequest.
247327
- */
247328
- spec?: pulumi.Input<{
247329
- [key: string]: pulumi.Input<string>;
247330
- }>;
247331
- status?: pulumi.Input<inputs.velero.v1.ServerStatusRequestStatus>;
247332
- }
247333
- /**
247334
- * ServerStatusRequestStatus is the current status of a ServerStatusRequest.
247335
- */
247336
- interface ServerStatusRequestStatus {
247337
- /**
247338
- * Phase is the current lifecycle phase of the ServerStatusRequest.
247339
- */
247340
- phase?: pulumi.Input<string>;
247341
- /**
247342
- * Plugins list information about the plugins running on the Velero server
247343
- */
247344
- plugins?: pulumi.Input<pulumi.Input<inputs.velero.v1.ServerStatusRequestStatusPlugins>[]>;
247345
- /**
247346
- * ProcessedTimestamp is when the ServerStatusRequest was processed
247347
- * by the ServerStatusRequestController.
247348
- */
247349
- processedTimestamp?: pulumi.Input<string>;
247350
- /**
247351
- * ServerVersion is the Velero server version.
247352
- */
247353
- serverVersion?: pulumi.Input<string>;
247354
- }
247355
- /**
247356
- * PluginInfo contains attributes of a Velero plugin
247357
- */
247358
- interface ServerStatusRequestStatusPlugins {
247359
- kind?: pulumi.Input<string>;
247360
- name?: pulumi.Input<string>;
247361
- }
247362
247066
  /**
247363
247067
  * VolumeSnapshotLocation is a location where Velero stores volume snapshots.
247364
247068
  */