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

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 +2 -2
  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
@@ -269196,168 +269196,6 @@ export declare namespace velero {
269196
269196
  spec: outputs.velero.v1.BackupSpec;
269197
269197
  status: outputs.velero.v1.BackupStatus;
269198
269198
  }
269199
- interface BackupRepository {
269200
- /**
269201
- * 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
269202
- */
269203
- apiVersion: "velero.io/v1";
269204
- /**
269205
- * 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
269206
- */
269207
- kind: "BackupRepository";
269208
- /**
269209
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
269210
- */
269211
- metadata: ObjectMeta;
269212
- spec: outputs.velero.v1.BackupRepositorySpec;
269213
- status: outputs.velero.v1.BackupRepositoryStatus;
269214
- }
269215
- /**
269216
- * BackupRepositorySpec is the specification for a BackupRepository.
269217
- */
269218
- interface BackupRepositorySpec {
269219
- /**
269220
- * BackupStorageLocation is the name of the BackupStorageLocation
269221
- * that should contain this repository.
269222
- */
269223
- backupStorageLocation: string;
269224
- /**
269225
- * MaintenanceFrequency is how often maintenance should be run.
269226
- */
269227
- maintenanceFrequency: string;
269228
- /**
269229
- * RepositoryConfig is for repository-specific configuration fields.
269230
- */
269231
- repositoryConfig: {
269232
- [key: string]: string;
269233
- };
269234
- /**
269235
- * RepositoryType indicates the type of the backend repository
269236
- */
269237
- repositoryType: string;
269238
- /**
269239
- * ResticIdentifier is the full restic-compatible string for identifying
269240
- * this repository.
269241
- */
269242
- resticIdentifier: string;
269243
- /**
269244
- * VolumeNamespace is the namespace this backup repository contains
269245
- * pod volume backups for.
269246
- */
269247
- volumeNamespace: string;
269248
- }
269249
- /**
269250
- * BackupRepositorySpec is the specification for a BackupRepository.
269251
- */
269252
- interface BackupRepositorySpecPatch {
269253
- /**
269254
- * BackupStorageLocation is the name of the BackupStorageLocation
269255
- * that should contain this repository.
269256
- */
269257
- backupStorageLocation: string;
269258
- /**
269259
- * MaintenanceFrequency is how often maintenance should be run.
269260
- */
269261
- maintenanceFrequency: string;
269262
- /**
269263
- * RepositoryConfig is for repository-specific configuration fields.
269264
- */
269265
- repositoryConfig: {
269266
- [key: string]: string;
269267
- };
269268
- /**
269269
- * RepositoryType indicates the type of the backend repository
269270
- */
269271
- repositoryType: string;
269272
- /**
269273
- * ResticIdentifier is the full restic-compatible string for identifying
269274
- * this repository.
269275
- */
269276
- resticIdentifier: string;
269277
- /**
269278
- * VolumeNamespace is the namespace this backup repository contains
269279
- * pod volume backups for.
269280
- */
269281
- volumeNamespace: string;
269282
- }
269283
- /**
269284
- * BackupRepositoryStatus is the current status of a BackupRepository.
269285
- */
269286
- interface BackupRepositoryStatus {
269287
- /**
269288
- * LastMaintenanceTime is the last time repo maintenance succeeded.
269289
- */
269290
- lastMaintenanceTime: string;
269291
- /**
269292
- * Message is a message about the current status of the BackupRepository.
269293
- */
269294
- message: string;
269295
- /**
269296
- * Phase is the current state of the BackupRepository.
269297
- */
269298
- phase: string;
269299
- /**
269300
- * RecentMaintenance is status of the recent repo maintenance.
269301
- */
269302
- recentMaintenance: outputs.velero.v1.BackupRepositoryStatusRecentMaintenance[];
269303
- }
269304
- /**
269305
- * BackupRepositoryStatus is the current status of a BackupRepository.
269306
- */
269307
- interface BackupRepositoryStatusPatch {
269308
- /**
269309
- * LastMaintenanceTime is the last time repo maintenance succeeded.
269310
- */
269311
- lastMaintenanceTime: string;
269312
- /**
269313
- * Message is a message about the current status of the BackupRepository.
269314
- */
269315
- message: string;
269316
- /**
269317
- * Phase is the current state of the BackupRepository.
269318
- */
269319
- phase: string;
269320
- /**
269321
- * RecentMaintenance is status of the recent repo maintenance.
269322
- */
269323
- recentMaintenance: outputs.velero.v1.BackupRepositoryStatusRecentMaintenancePatch[];
269324
- }
269325
- interface BackupRepositoryStatusRecentMaintenance {
269326
- /**
269327
- * CompleteTimestamp is the completion time of the repo maintenance.
269328
- */
269329
- completeTimestamp: string;
269330
- /**
269331
- * Message is a message about the current status of the repo maintenance.
269332
- */
269333
- message: string;
269334
- /**
269335
- * Result is the result of the repo maintenance.
269336
- */
269337
- result: string;
269338
- /**
269339
- * StartTimestamp is the start time of the repo maintenance.
269340
- */
269341
- startTimestamp: string;
269342
- }
269343
- interface BackupRepositoryStatusRecentMaintenancePatch {
269344
- /**
269345
- * CompleteTimestamp is the completion time of the repo maintenance.
269346
- */
269347
- completeTimestamp: string;
269348
- /**
269349
- * Message is a message about the current status of the repo maintenance.
269350
- */
269351
- message: string;
269352
- /**
269353
- * Result is the result of the repo maintenance.
269354
- */
269355
- result: string;
269356
- /**
269357
- * StartTimestamp is the start time of the repo maintenance.
269358
- */
269359
- startTimestamp: string;
269360
- }
269361
269199
  /**
269362
269200
  * BackupSpec defines the specification for a Velero backup.
269363
269201
  */
@@ -270639,155 +270477,6 @@ export declare namespace velero {
270639
270477
  */
270640
270478
  phase: string;
270641
270479
  }
270642
- /**
270643
- * DeleteBackupRequest is a request to delete one or more backups.
270644
- */
270645
- interface DeleteBackupRequest {
270646
- /**
270647
- * 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
270648
- */
270649
- apiVersion: "velero.io/v1";
270650
- /**
270651
- * 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
270652
- */
270653
- kind: "DeleteBackupRequest";
270654
- /**
270655
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
270656
- */
270657
- metadata: ObjectMeta;
270658
- spec: outputs.velero.v1.DeleteBackupRequestSpec;
270659
- status: outputs.velero.v1.DeleteBackupRequestStatus;
270660
- }
270661
- /**
270662
- * DeleteBackupRequestSpec is the specification for which backups to delete.
270663
- */
270664
- interface DeleteBackupRequestSpec {
270665
- backupName: string;
270666
- }
270667
- /**
270668
- * DeleteBackupRequestSpec is the specification for which backups to delete.
270669
- */
270670
- interface DeleteBackupRequestSpecPatch {
270671
- backupName: string;
270672
- }
270673
- /**
270674
- * DeleteBackupRequestStatus is the current status of a DeleteBackupRequest.
270675
- */
270676
- interface DeleteBackupRequestStatus {
270677
- /**
270678
- * Errors contains any errors that were encountered during the deletion process.
270679
- */
270680
- errors: string[];
270681
- /**
270682
- * Phase is the current state of the DeleteBackupRequest.
270683
- */
270684
- phase: string;
270685
- }
270686
- /**
270687
- * DeleteBackupRequestStatus is the current status of a DeleteBackupRequest.
270688
- */
270689
- interface DeleteBackupRequestStatusPatch {
270690
- /**
270691
- * Errors contains any errors that were encountered during the deletion process.
270692
- */
270693
- errors: string[];
270694
- /**
270695
- * Phase is the current state of the DeleteBackupRequest.
270696
- */
270697
- phase: string;
270698
- }
270699
- /**
270700
- * DownloadRequest is a request to download an artifact from backup object storage, such as a backup
270701
- * log file.
270702
- */
270703
- interface DownloadRequest {
270704
- /**
270705
- * 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
270706
- */
270707
- apiVersion: "velero.io/v1";
270708
- /**
270709
- * 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
270710
- */
270711
- kind: "DownloadRequest";
270712
- /**
270713
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
270714
- */
270715
- metadata: ObjectMeta;
270716
- spec: outputs.velero.v1.DownloadRequestSpec;
270717
- status: outputs.velero.v1.DownloadRequestStatus;
270718
- }
270719
- /**
270720
- * DownloadRequestSpec is the specification for a download request.
270721
- */
270722
- interface DownloadRequestSpec {
270723
- target: outputs.velero.v1.DownloadRequestSpecTarget;
270724
- }
270725
- /**
270726
- * DownloadRequestSpec is the specification for a download request.
270727
- */
270728
- interface DownloadRequestSpecPatch {
270729
- target: outputs.velero.v1.DownloadRequestSpecTargetPatch;
270730
- }
270731
- /**
270732
- * Target is what to download (e.g. logs for a backup).
270733
- */
270734
- interface DownloadRequestSpecTarget {
270735
- /**
270736
- * Kind is the type of file to download.
270737
- */
270738
- kind: string;
270739
- /**
270740
- * Name is the name of the Kubernetes resource with which the file is associated.
270741
- */
270742
- name: string;
270743
- }
270744
- /**
270745
- * Target is what to download (e.g. logs for a backup).
270746
- */
270747
- interface DownloadRequestSpecTargetPatch {
270748
- /**
270749
- * Kind is the type of file to download.
270750
- */
270751
- kind: string;
270752
- /**
270753
- * Name is the name of the Kubernetes resource with which the file is associated.
270754
- */
270755
- name: string;
270756
- }
270757
- /**
270758
- * DownloadRequestStatus is the current status of a DownloadRequest.
270759
- */
270760
- interface DownloadRequestStatus {
270761
- /**
270762
- * DownloadURL contains the pre-signed URL for the target file.
270763
- */
270764
- downloadURL: string;
270765
- /**
270766
- * Expiration is when this DownloadRequest expires and can be deleted by the system.
270767
- */
270768
- expiration: string;
270769
- /**
270770
- * Phase is the current state of the DownloadRequest.
270771
- */
270772
- phase: string;
270773
- }
270774
- /**
270775
- * DownloadRequestStatus is the current status of a DownloadRequest.
270776
- */
270777
- interface DownloadRequestStatusPatch {
270778
- /**
270779
- * DownloadURL contains the pre-signed URL for the target file.
270780
- */
270781
- downloadURL: string;
270782
- /**
270783
- * Expiration is when this DownloadRequest expires and can be deleted by the system.
270784
- */
270785
- expiration: string;
270786
- /**
270787
- * Phase is the current state of the DownloadRequest.
270788
- */
270789
- phase: string;
270790
- }
270791
270480
  interface PodVolumeBackup {
270792
270481
  /**
270793
270482
  * 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
@@ -273106,89 +272795,6 @@ export declare namespace velero {
273106
272795
  */
273107
272796
  validationErrors: string[];
273108
272797
  }
273109
- /**
273110
- * ServerStatusRequest is a request to access current status information about
273111
- * the Velero server.
273112
- */
273113
- interface ServerStatusRequest {
273114
- /**
273115
- * 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
273116
- */
273117
- apiVersion: "velero.io/v1";
273118
- /**
273119
- * 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
273120
- */
273121
- kind: "ServerStatusRequest";
273122
- /**
273123
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
273124
- */
273125
- metadata: ObjectMeta;
273126
- /**
273127
- * ServerStatusRequestSpec is the specification for a ServerStatusRequest.
273128
- */
273129
- spec: {
273130
- [key: string]: string;
273131
- };
273132
- status: outputs.velero.v1.ServerStatusRequestStatus;
273133
- }
273134
- /**
273135
- * ServerStatusRequestStatus is the current status of a ServerStatusRequest.
273136
- */
273137
- interface ServerStatusRequestStatus {
273138
- /**
273139
- * Phase is the current lifecycle phase of the ServerStatusRequest.
273140
- */
273141
- phase: string;
273142
- /**
273143
- * Plugins list information about the plugins running on the Velero server
273144
- */
273145
- plugins: outputs.velero.v1.ServerStatusRequestStatusPlugins[];
273146
- /**
273147
- * ProcessedTimestamp is when the ServerStatusRequest was processed
273148
- * by the ServerStatusRequestController.
273149
- */
273150
- processedTimestamp: string;
273151
- /**
273152
- * ServerVersion is the Velero server version.
273153
- */
273154
- serverVersion: string;
273155
- }
273156
- /**
273157
- * ServerStatusRequestStatus is the current status of a ServerStatusRequest.
273158
- */
273159
- interface ServerStatusRequestStatusPatch {
273160
- /**
273161
- * Phase is the current lifecycle phase of the ServerStatusRequest.
273162
- */
273163
- phase: string;
273164
- /**
273165
- * Plugins list information about the plugins running on the Velero server
273166
- */
273167
- plugins: outputs.velero.v1.ServerStatusRequestStatusPluginsPatch[];
273168
- /**
273169
- * ProcessedTimestamp is when the ServerStatusRequest was processed
273170
- * by the ServerStatusRequestController.
273171
- */
273172
- processedTimestamp: string;
273173
- /**
273174
- * ServerVersion is the Velero server version.
273175
- */
273176
- serverVersion: string;
273177
- }
273178
- /**
273179
- * PluginInfo contains attributes of a Velero plugin
273180
- */
273181
- interface ServerStatusRequestStatusPlugins {
273182
- kind: string;
273183
- name: string;
273184
- }
273185
- /**
273186
- * PluginInfo contains attributes of a Velero plugin
273187
- */
273188
- interface ServerStatusRequestStatusPluginsPatch {
273189
- kind: string;
273190
- name: string;
273191
- }
273192
272798
  /**
273193
272799
  * VolumeSnapshotLocation is a location where Velero stores volume snapshots.
273194
272800
  */
@@ -7,15 +7,6 @@ export declare const BackupList: typeof import("./backupList").BackupList;
7
7
  export { BackupPatchArgs } from "./backupPatch";
8
8
  export type BackupPatch = import("./backupPatch").BackupPatch;
9
9
  export declare const BackupPatch: typeof import("./backupPatch").BackupPatch;
10
- export { BackupRepositoryArgs } from "./backupRepository";
11
- export type BackupRepository = import("./backupRepository").BackupRepository;
12
- export declare const BackupRepository: typeof import("./backupRepository").BackupRepository;
13
- export { BackupRepositoryListArgs } from "./backupRepositoryList";
14
- export type BackupRepositoryList = import("./backupRepositoryList").BackupRepositoryList;
15
- export declare const BackupRepositoryList: typeof import("./backupRepositoryList").BackupRepositoryList;
16
- export { BackupRepositoryPatchArgs } from "./backupRepositoryPatch";
17
- export type BackupRepositoryPatch = import("./backupRepositoryPatch").BackupRepositoryPatch;
18
- export declare const BackupRepositoryPatch: typeof import("./backupRepositoryPatch").BackupRepositoryPatch;
19
10
  export { BackupStorageLocationArgs } from "./backupStorageLocation";
20
11
  export type BackupStorageLocation = import("./backupStorageLocation").BackupStorageLocation;
21
12
  export declare const BackupStorageLocation: typeof import("./backupStorageLocation").BackupStorageLocation;
@@ -25,24 +16,6 @@ export declare const BackupStorageLocationList: typeof import("./backupStorageLo
25
16
  export { BackupStorageLocationPatchArgs } from "./backupStorageLocationPatch";
26
17
  export type BackupStorageLocationPatch = import("./backupStorageLocationPatch").BackupStorageLocationPatch;
27
18
  export declare const BackupStorageLocationPatch: typeof import("./backupStorageLocationPatch").BackupStorageLocationPatch;
28
- export { DeleteBackupRequestArgs } from "./deleteBackupRequest";
29
- export type DeleteBackupRequest = import("./deleteBackupRequest").DeleteBackupRequest;
30
- export declare const DeleteBackupRequest: typeof import("./deleteBackupRequest").DeleteBackupRequest;
31
- export { DeleteBackupRequestListArgs } from "./deleteBackupRequestList";
32
- export type DeleteBackupRequestList = import("./deleteBackupRequestList").DeleteBackupRequestList;
33
- export declare const DeleteBackupRequestList: typeof import("./deleteBackupRequestList").DeleteBackupRequestList;
34
- export { DeleteBackupRequestPatchArgs } from "./deleteBackupRequestPatch";
35
- export type DeleteBackupRequestPatch = import("./deleteBackupRequestPatch").DeleteBackupRequestPatch;
36
- export declare const DeleteBackupRequestPatch: typeof import("./deleteBackupRequestPatch").DeleteBackupRequestPatch;
37
- export { DownloadRequestArgs } from "./downloadRequest";
38
- export type DownloadRequest = import("./downloadRequest").DownloadRequest;
39
- export declare const DownloadRequest: typeof import("./downloadRequest").DownloadRequest;
40
- export { DownloadRequestListArgs } from "./downloadRequestList";
41
- export type DownloadRequestList = import("./downloadRequestList").DownloadRequestList;
42
- export declare const DownloadRequestList: typeof import("./downloadRequestList").DownloadRequestList;
43
- export { DownloadRequestPatchArgs } from "./downloadRequestPatch";
44
- export type DownloadRequestPatch = import("./downloadRequestPatch").DownloadRequestPatch;
45
- export declare const DownloadRequestPatch: typeof import("./downloadRequestPatch").DownloadRequestPatch;
46
19
  export { PodVolumeBackupArgs } from "./podVolumeBackup";
47
20
  export type PodVolumeBackup = import("./podVolumeBackup").PodVolumeBackup;
48
21
  export declare const PodVolumeBackup: typeof import("./podVolumeBackup").PodVolumeBackup;
@@ -79,15 +52,6 @@ export declare const ScheduleList: typeof import("./scheduleList").ScheduleList;
79
52
  export { SchedulePatchArgs } from "./schedulePatch";
80
53
  export type SchedulePatch = import("./schedulePatch").SchedulePatch;
81
54
  export declare const SchedulePatch: typeof import("./schedulePatch").SchedulePatch;
82
- export { ServerStatusRequestArgs } from "./serverStatusRequest";
83
- export type ServerStatusRequest = import("./serverStatusRequest").ServerStatusRequest;
84
- export declare const ServerStatusRequest: typeof import("./serverStatusRequest").ServerStatusRequest;
85
- export { ServerStatusRequestListArgs } from "./serverStatusRequestList";
86
- export type ServerStatusRequestList = import("./serverStatusRequestList").ServerStatusRequestList;
87
- export declare const ServerStatusRequestList: typeof import("./serverStatusRequestList").ServerStatusRequestList;
88
- export { ServerStatusRequestPatchArgs } from "./serverStatusRequestPatch";
89
- export type ServerStatusRequestPatch = import("./serverStatusRequestPatch").ServerStatusRequestPatch;
90
- export declare const ServerStatusRequestPatch: typeof import("./serverStatusRequestPatch").ServerStatusRequestPatch;
91
55
  export { VolumeSnapshotLocationArgs } from "./volumeSnapshotLocation";
92
56
  export type VolumeSnapshotLocation = import("./volumeSnapshotLocation").VolumeSnapshotLocation;
93
57
  export declare const VolumeSnapshotLocation: typeof import("./volumeSnapshotLocation").VolumeSnapshotLocation;
@@ -35,7 +35,7 @@ var __importStar = (this && this.__importStar) || (function () {
35
35
  };
36
36
  })();
37
37
  Object.defineProperty(exports, "__esModule", { value: true });
38
- exports.VolumeSnapshotLocationPatch = exports.VolumeSnapshotLocationList = exports.VolumeSnapshotLocation = exports.ServerStatusRequestPatch = exports.ServerStatusRequestList = exports.ServerStatusRequest = exports.SchedulePatch = exports.ScheduleList = exports.Schedule = exports.RestorePatch = exports.RestoreList = exports.Restore = exports.PodVolumeRestorePatch = exports.PodVolumeRestoreList = exports.PodVolumeRestore = exports.PodVolumeBackupPatch = exports.PodVolumeBackupList = exports.PodVolumeBackup = exports.DownloadRequestPatch = exports.DownloadRequestList = exports.DownloadRequest = exports.DeleteBackupRequestPatch = exports.DeleteBackupRequestList = exports.DeleteBackupRequest = exports.BackupStorageLocationPatch = exports.BackupStorageLocationList = exports.BackupStorageLocation = exports.BackupRepositoryPatch = exports.BackupRepositoryList = exports.BackupRepository = exports.BackupPatch = exports.BackupList = exports.Backup = void 0;
38
+ exports.VolumeSnapshotLocationPatch = exports.VolumeSnapshotLocationList = exports.VolumeSnapshotLocation = exports.SchedulePatch = exports.ScheduleList = exports.Schedule = exports.RestorePatch = exports.RestoreList = exports.Restore = exports.PodVolumeRestorePatch = exports.PodVolumeRestoreList = exports.PodVolumeRestore = exports.PodVolumeBackupPatch = exports.PodVolumeBackupList = exports.PodVolumeBackup = exports.BackupStorageLocationPatch = exports.BackupStorageLocationList = exports.BackupStorageLocation = exports.BackupPatch = exports.BackupList = exports.Backup = void 0;
39
39
  const pulumi = __importStar(require("@pulumi/pulumi"));
40
40
  const utilities = __importStar(require("../../utilities"));
41
41
  exports.Backup = null;
@@ -44,30 +44,12 @@ exports.BackupList = null;
44
44
  utilities.lazyLoad(exports, ["BackupList"], () => require("./backupList"));
45
45
  exports.BackupPatch = null;
46
46
  utilities.lazyLoad(exports, ["BackupPatch"], () => require("./backupPatch"));
47
- exports.BackupRepository = null;
48
- utilities.lazyLoad(exports, ["BackupRepository"], () => require("./backupRepository"));
49
- exports.BackupRepositoryList = null;
50
- utilities.lazyLoad(exports, ["BackupRepositoryList"], () => require("./backupRepositoryList"));
51
- exports.BackupRepositoryPatch = null;
52
- utilities.lazyLoad(exports, ["BackupRepositoryPatch"], () => require("./backupRepositoryPatch"));
53
47
  exports.BackupStorageLocation = null;
54
48
  utilities.lazyLoad(exports, ["BackupStorageLocation"], () => require("./backupStorageLocation"));
55
49
  exports.BackupStorageLocationList = null;
56
50
  utilities.lazyLoad(exports, ["BackupStorageLocationList"], () => require("./backupStorageLocationList"));
57
51
  exports.BackupStorageLocationPatch = null;
58
52
  utilities.lazyLoad(exports, ["BackupStorageLocationPatch"], () => require("./backupStorageLocationPatch"));
59
- exports.DeleteBackupRequest = null;
60
- utilities.lazyLoad(exports, ["DeleteBackupRequest"], () => require("./deleteBackupRequest"));
61
- exports.DeleteBackupRequestList = null;
62
- utilities.lazyLoad(exports, ["DeleteBackupRequestList"], () => require("./deleteBackupRequestList"));
63
- exports.DeleteBackupRequestPatch = null;
64
- utilities.lazyLoad(exports, ["DeleteBackupRequestPatch"], () => require("./deleteBackupRequestPatch"));
65
- exports.DownloadRequest = null;
66
- utilities.lazyLoad(exports, ["DownloadRequest"], () => require("./downloadRequest"));
67
- exports.DownloadRequestList = null;
68
- utilities.lazyLoad(exports, ["DownloadRequestList"], () => require("./downloadRequestList"));
69
- exports.DownloadRequestPatch = null;
70
- utilities.lazyLoad(exports, ["DownloadRequestPatch"], () => require("./downloadRequestPatch"));
71
53
  exports.PodVolumeBackup = null;
72
54
  utilities.lazyLoad(exports, ["PodVolumeBackup"], () => require("./podVolumeBackup"));
73
55
  exports.PodVolumeBackupList = null;
@@ -92,12 +74,6 @@ exports.ScheduleList = null;
92
74
  utilities.lazyLoad(exports, ["ScheduleList"], () => require("./scheduleList"));
93
75
  exports.SchedulePatch = null;
94
76
  utilities.lazyLoad(exports, ["SchedulePatch"], () => require("./schedulePatch"));
95
- exports.ServerStatusRequest = null;
96
- utilities.lazyLoad(exports, ["ServerStatusRequest"], () => require("./serverStatusRequest"));
97
- exports.ServerStatusRequestList = null;
98
- utilities.lazyLoad(exports, ["ServerStatusRequestList"], () => require("./serverStatusRequestList"));
99
- exports.ServerStatusRequestPatch = null;
100
- utilities.lazyLoad(exports, ["ServerStatusRequestPatch"], () => require("./serverStatusRequestPatch"));
101
77
  exports.VolumeSnapshotLocation = null;
102
78
  utilities.lazyLoad(exports, ["VolumeSnapshotLocation"], () => require("./volumeSnapshotLocation"));
103
79
  exports.VolumeSnapshotLocationList = null;
@@ -114,30 +90,12 @@ const _module = {
114
90
  return new exports.BackupList(name, undefined, { urn });
115
91
  case "kubernetes:velero.io/v1:BackupPatch":
116
92
  return new exports.BackupPatch(name, undefined, { urn });
117
- case "kubernetes:velero.io/v1:BackupRepository":
118
- return new exports.BackupRepository(name, undefined, { urn });
119
- case "kubernetes:velero.io/v1:BackupRepositoryList":
120
- return new exports.BackupRepositoryList(name, undefined, { urn });
121
- case "kubernetes:velero.io/v1:BackupRepositoryPatch":
122
- return new exports.BackupRepositoryPatch(name, undefined, { urn });
123
93
  case "kubernetes:velero.io/v1:BackupStorageLocation":
124
94
  return new exports.BackupStorageLocation(name, undefined, { urn });
125
95
  case "kubernetes:velero.io/v1:BackupStorageLocationList":
126
96
  return new exports.BackupStorageLocationList(name, undefined, { urn });
127
97
  case "kubernetes:velero.io/v1:BackupStorageLocationPatch":
128
98
  return new exports.BackupStorageLocationPatch(name, undefined, { urn });
129
- case "kubernetes:velero.io/v1:DeleteBackupRequest":
130
- return new exports.DeleteBackupRequest(name, undefined, { urn });
131
- case "kubernetes:velero.io/v1:DeleteBackupRequestList":
132
- return new exports.DeleteBackupRequestList(name, undefined, { urn });
133
- case "kubernetes:velero.io/v1:DeleteBackupRequestPatch":
134
- return new exports.DeleteBackupRequestPatch(name, undefined, { urn });
135
- case "kubernetes:velero.io/v1:DownloadRequest":
136
- return new exports.DownloadRequest(name, undefined, { urn });
137
- case "kubernetes:velero.io/v1:DownloadRequestList":
138
- return new exports.DownloadRequestList(name, undefined, { urn });
139
- case "kubernetes:velero.io/v1:DownloadRequestPatch":
140
- return new exports.DownloadRequestPatch(name, undefined, { urn });
141
99
  case "kubernetes:velero.io/v1:PodVolumeBackup":
142
100
  return new exports.PodVolumeBackup(name, undefined, { urn });
143
101
  case "kubernetes:velero.io/v1:PodVolumeBackupList":
@@ -162,12 +120,6 @@ const _module = {
162
120
  return new exports.ScheduleList(name, undefined, { urn });
163
121
  case "kubernetes:velero.io/v1:SchedulePatch":
164
122
  return new exports.SchedulePatch(name, undefined, { urn });
165
- case "kubernetes:velero.io/v1:ServerStatusRequest":
166
- return new exports.ServerStatusRequest(name, undefined, { urn });
167
- case "kubernetes:velero.io/v1:ServerStatusRequestList":
168
- return new exports.ServerStatusRequestList(name, undefined, { urn });
169
- case "kubernetes:velero.io/v1:ServerStatusRequestPatch":
170
- return new exports.ServerStatusRequestPatch(name, undefined, { urn });
171
123
  case "kubernetes:velero.io/v1:VolumeSnapshotLocation":
172
124
  return new exports.VolumeSnapshotLocation(name, undefined, { urn });
173
125
  case "kubernetes:velero.io/v1:VolumeSnapshotLocationList":
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "resource": true,
5
5
  "name": "pulumi-k8s-crds"
6
6
  },
7
- "version": "1.7.0",
7
+ "version": "1.7.2",
8
8
  "description": "CRD definitions for k8s.",
9
9
  "repository": "https://gitlab.kilic.dev/devops/pulumi/pulumi-libs",
10
10
  "author": {
@@ -38,7 +38,7 @@
38
38
  "dependencies": {},
39
39
  "devDependencies": {
40
40
  "@pulumi/kubernetes": "^4.23.0",
41
- "@pulumi/pulumi": "^3.173.0"
41
+ "@pulumi/pulumi": "^3.175.0"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "@pulumi/pulumi": ">= 3",
@@ -1,62 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as inputs from "../../types/input";
3
- import * as outputs from "../../types/output";
4
- import { ObjectMeta } from "../../meta/v1";
5
- export declare class BackupRepository extends pulumi.CustomResource {
6
- /**
7
- * Get an existing BackupRepository resource's state with the given name, ID, and optional extra
8
- * properties used to qualify the lookup.
9
- *
10
- * @param name The _unique_ name of the resulting resource.
11
- * @param id The _unique_ provider ID of the resource to lookup.
12
- * @param opts Optional settings to control the behavior of the CustomResource.
13
- */
14
- static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): BackupRepository;
15
- /** @internal */
16
- static readonly __pulumiType = "kubernetes:velero.io/v1:BackupRepository";
17
- /**
18
- * Returns true if the given object is an instance of BackupRepository. This is designed to work even
19
- * when multiple copies of the Pulumi SDK have been loaded into the same process.
20
- */
21
- static isInstance(obj: any): obj is BackupRepository;
22
- /**
23
- * 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
24
- */
25
- readonly apiVersion: pulumi.Output<"velero.io/v1">;
26
- /**
27
- * 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
28
- */
29
- readonly kind: pulumi.Output<"BackupRepository">;
30
- /**
31
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
32
- */
33
- readonly metadata: pulumi.Output<ObjectMeta>;
34
- readonly spec: pulumi.Output<outputs.velero.v1.BackupRepositorySpec>;
35
- readonly status: pulumi.Output<outputs.velero.v1.BackupRepositoryStatus>;
36
- /**
37
- * Create a BackupRepository resource with the given unique name, arguments, and options.
38
- *
39
- * @param name The _unique_ name of the resource.
40
- * @param args The arguments to use to populate this resource's properties.
41
- * @param opts A bag of options that control this resource's behavior.
42
- */
43
- constructor(name: string, args?: BackupRepositoryArgs, opts?: pulumi.CustomResourceOptions);
44
- }
45
- /**
46
- * The set of arguments for constructing a BackupRepository resource.
47
- */
48
- export interface BackupRepositoryArgs {
49
- /**
50
- * 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
51
- */
52
- apiVersion?: pulumi.Input<"velero.io/v1">;
53
- /**
54
- * 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
55
- */
56
- kind?: pulumi.Input<"BackupRepository">;
57
- /**
58
- * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
59
- */
60
- metadata?: pulumi.Input<ObjectMeta>;
61
- spec?: pulumi.Input<inputs.velero.v1.BackupRepositorySpec>;
62
- }