@highstate/cert-manager 0.9.16 → 0.9.19

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 (59) hide show
  1. package/CHANGELOG.md +3 -40
  2. package/acme/v1/challenge.ts +2 -4
  3. package/acme/v1/challengeList.ts +0 -2
  4. package/acme/v1/challengePatch.ts +2 -4
  5. package/acme/v1/order.ts +2 -4
  6. package/acme/v1/orderList.ts +0 -2
  7. package/acme/v1/orderPatch.ts +2 -4
  8. package/bin/acme/v1/challenge.d.ts +2 -3
  9. package/bin/acme/v1/challenge.js.map +1 -1
  10. package/bin/acme/v1/challengeList.js.map +1 -1
  11. package/bin/acme/v1/challengePatch.d.ts +2 -3
  12. package/bin/acme/v1/challengePatch.js.map +1 -1
  13. package/bin/acme/v1/order.d.ts +2 -3
  14. package/bin/acme/v1/order.js.map +1 -1
  15. package/bin/acme/v1/orderList.js.map +1 -1
  16. package/bin/acme/v1/orderPatch.d.ts +2 -3
  17. package/bin/acme/v1/orderPatch.js.map +1 -1
  18. package/bin/cert_manager/v1/certificate.d.ts +2 -3
  19. package/bin/cert_manager/v1/certificate.js.map +1 -1
  20. package/bin/cert_manager/v1/certificateList.js.map +1 -1
  21. package/bin/cert_manager/v1/certificatePatch.d.ts +2 -3
  22. package/bin/cert_manager/v1/certificatePatch.js.map +1 -1
  23. package/bin/cert_manager/v1/certificateRequest.d.ts +2 -3
  24. package/bin/cert_manager/v1/certificateRequest.js.map +1 -1
  25. package/bin/cert_manager/v1/certificateRequestList.js.map +1 -1
  26. package/bin/cert_manager/v1/certificateRequestPatch.d.ts +2 -3
  27. package/bin/cert_manager/v1/certificateRequestPatch.js.map +1 -1
  28. package/bin/cert_manager/v1/clusterIssuer.d.ts +2 -3
  29. package/bin/cert_manager/v1/clusterIssuer.js.map +1 -1
  30. package/bin/cert_manager/v1/clusterIssuerList.js.map +1 -1
  31. package/bin/cert_manager/v1/clusterIssuerPatch.d.ts +2 -3
  32. package/bin/cert_manager/v1/clusterIssuerPatch.js.map +1 -1
  33. package/bin/cert_manager/v1/issuer.d.ts +2 -3
  34. package/bin/cert_manager/v1/issuer.js.map +1 -1
  35. package/bin/cert_manager/v1/issuerList.js.map +1 -1
  36. package/bin/cert_manager/v1/issuerPatch.d.ts +2 -3
  37. package/bin/cert_manager/v1/issuerPatch.js.map +1 -1
  38. package/bin/package.json +9 -8
  39. package/bin/types/input.d.ts +423 -72
  40. package/bin/types/output.d.ts +424 -73
  41. package/cert_manager/v1/certificate.ts +2 -4
  42. package/cert_manager/v1/certificateList.ts +0 -2
  43. package/cert_manager/v1/certificatePatch.ts +2 -4
  44. package/cert_manager/v1/certificateRequest.ts +2 -4
  45. package/cert_manager/v1/certificateRequestList.ts +0 -2
  46. package/cert_manager/v1/certificateRequestPatch.ts +2 -4
  47. package/cert_manager/v1/clusterIssuer.ts +2 -4
  48. package/cert_manager/v1/clusterIssuerList.ts +0 -2
  49. package/cert_manager/v1/clusterIssuerPatch.ts +2 -4
  50. package/cert_manager/v1/issuer.ts +2 -4
  51. package/cert_manager/v1/issuerList.ts +0 -2
  52. package/cert_manager/v1/issuerPatch.ts +2 -4
  53. package/package.json +10 -9
  54. package/tsconfig.json +44 -43
  55. package/types/input.ts +421 -73
  56. package/types/output.ts +422 -74
  57. package/bin/meta/v1.d.ts +0 -3
  58. package/bin/meta/v1.js +0 -3
  59. package/bin/meta/v1.js.map +0 -1
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMeta} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * A Certificate resource should be created to ensure an up to date and signed
13
11
  * X.509 certificate is stored in the Kubernetes Secret resource named in `spec.secretName`.
@@ -52,7 +50,7 @@ export class Certificate extends pulumi.CustomResource {
52
50
  /**
53
51
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
54
52
  */
55
- public readonly metadata!: pulumi.Output<ObjectMeta>;
53
+ public readonly metadata!: pulumi.Output<outputs.meta.v1.ObjectMeta>;
56
54
  public readonly spec!: pulumi.Output<outputs.cert_manager.v1.CertificateSpec>;
57
55
  public /*out*/ readonly status!: pulumi.Output<outputs.cert_manager.v1.CertificateStatus>;
58
56
 
@@ -99,6 +97,6 @@ export interface CertificateArgs {
99
97
  /**
100
98
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
101
99
  */
102
- metadata?: pulumi.Input<ObjectMeta>;
100
+ metadata?: pulumi.Input<inputs.meta.v1.ObjectMeta>;
103
101
  spec?: pulumi.Input<inputs.cert_manager.v1.CertificateSpec>;
104
102
  }
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMeta} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * CertificateList is a list of Certificate
13
11
  */
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMetaPatch} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * Patch resources are used to modify existing Kubernetes resources by using
13
11
  * Server-Side Apply updates. The name of the resource must be specified, but all other properties are optional. More than
@@ -58,7 +56,7 @@ export class CertificatePatch extends pulumi.CustomResource {
58
56
  /**
59
57
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
60
58
  */
61
- public readonly metadata!: pulumi.Output<ObjectMetaPatch>;
59
+ public readonly metadata!: pulumi.Output<outputs.meta.v1.ObjectMetaPatch>;
62
60
  public readonly spec!: pulumi.Output<outputs.cert_manager.v1.CertificateSpecPatch>;
63
61
  public /*out*/ readonly status!: pulumi.Output<outputs.cert_manager.v1.CertificateStatusPatch>;
64
62
 
@@ -105,6 +103,6 @@ export interface CertificatePatchArgs {
105
103
  /**
106
104
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
107
105
  */
108
- metadata?: pulumi.Input<ObjectMetaPatch>;
106
+ metadata?: pulumi.Input<inputs.meta.v1.ObjectMetaPatch>;
109
107
  spec?: pulumi.Input<inputs.cert_manager.v1.CertificateSpecPatch>;
110
108
  }
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMeta} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * A CertificateRequest is used to request a signed certificate from one of the
13
11
  * configured issuers.
@@ -57,7 +55,7 @@ export class CertificateRequest extends pulumi.CustomResource {
57
55
  /**
58
56
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
59
57
  */
60
- public readonly metadata!: pulumi.Output<ObjectMeta>;
58
+ public readonly metadata!: pulumi.Output<outputs.meta.v1.ObjectMeta>;
61
59
  public readonly spec!: pulumi.Output<outputs.cert_manager.v1.CertificateRequestSpec>;
62
60
  public /*out*/ readonly status!: pulumi.Output<outputs.cert_manager.v1.CertificateRequestStatus>;
63
61
 
@@ -104,6 +102,6 @@ export interface CertificateRequestArgs {
104
102
  /**
105
103
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
106
104
  */
107
- metadata?: pulumi.Input<ObjectMeta>;
105
+ metadata?: pulumi.Input<inputs.meta.v1.ObjectMeta>;
108
106
  spec?: pulumi.Input<inputs.cert_manager.v1.CertificateRequestSpec>;
109
107
  }
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMeta} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * CertificateRequestList is a list of CertificateRequest
13
11
  */
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMetaPatch} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * Patch resources are used to modify existing Kubernetes resources by using
13
11
  * Server-Side Apply updates. The name of the resource must be specified, but all other properties are optional. More than
@@ -63,7 +61,7 @@ export class CertificateRequestPatch extends pulumi.CustomResource {
63
61
  /**
64
62
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
65
63
  */
66
- public readonly metadata!: pulumi.Output<ObjectMetaPatch>;
64
+ public readonly metadata!: pulumi.Output<outputs.meta.v1.ObjectMetaPatch>;
67
65
  public readonly spec!: pulumi.Output<outputs.cert_manager.v1.CertificateRequestSpecPatch>;
68
66
  public /*out*/ readonly status!: pulumi.Output<outputs.cert_manager.v1.CertificateRequestStatusPatch>;
69
67
 
@@ -110,6 +108,6 @@ export interface CertificateRequestPatchArgs {
110
108
  /**
111
109
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
112
110
  */
113
- metadata?: pulumi.Input<ObjectMetaPatch>;
111
+ metadata?: pulumi.Input<inputs.meta.v1.ObjectMetaPatch>;
114
112
  spec?: pulumi.Input<inputs.cert_manager.v1.CertificateRequestSpecPatch>;
115
113
  }
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMeta} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * A ClusterIssuer represents a certificate issuing authority which can be
13
11
  * referenced as part of `issuerRef` fields.
@@ -53,7 +51,7 @@ export class ClusterIssuer extends pulumi.CustomResource {
53
51
  /**
54
52
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
55
53
  */
56
- public readonly metadata!: pulumi.Output<ObjectMeta>;
54
+ public readonly metadata!: pulumi.Output<outputs.meta.v1.ObjectMeta>;
57
55
  public readonly spec!: pulumi.Output<outputs.cert_manager.v1.ClusterIssuerSpec>;
58
56
  public /*out*/ readonly status!: pulumi.Output<outputs.cert_manager.v1.ClusterIssuerStatus>;
59
57
 
@@ -100,6 +98,6 @@ export interface ClusterIssuerArgs {
100
98
  /**
101
99
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
102
100
  */
103
- metadata?: pulumi.Input<ObjectMeta>;
101
+ metadata?: pulumi.Input<inputs.meta.v1.ObjectMeta>;
104
102
  spec?: pulumi.Input<inputs.cert_manager.v1.ClusterIssuerSpec>;
105
103
  }
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMeta} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * ClusterIssuerList is a list of ClusterIssuer
13
11
  */
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMetaPatch} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * Patch resources are used to modify existing Kubernetes resources by using
13
11
  * Server-Side Apply updates. The name of the resource must be specified, but all other properties are optional. More than
@@ -59,7 +57,7 @@ export class ClusterIssuerPatch extends pulumi.CustomResource {
59
57
  /**
60
58
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
61
59
  */
62
- public readonly metadata!: pulumi.Output<ObjectMetaPatch>;
60
+ public readonly metadata!: pulumi.Output<outputs.meta.v1.ObjectMetaPatch>;
63
61
  public readonly spec!: pulumi.Output<outputs.cert_manager.v1.ClusterIssuerSpecPatch>;
64
62
  public /*out*/ readonly status!: pulumi.Output<outputs.cert_manager.v1.ClusterIssuerStatusPatch>;
65
63
 
@@ -106,6 +104,6 @@ export interface ClusterIssuerPatchArgs {
106
104
  /**
107
105
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
108
106
  */
109
- metadata?: pulumi.Input<ObjectMetaPatch>;
107
+ metadata?: pulumi.Input<inputs.meta.v1.ObjectMetaPatch>;
110
108
  spec?: pulumi.Input<inputs.cert_manager.v1.ClusterIssuerSpecPatch>;
111
109
  }
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMeta} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * An Issuer represents a certificate issuing authority which can be
13
11
  * referenced as part of `issuerRef` fields.
@@ -52,7 +50,7 @@ export class Issuer extends pulumi.CustomResource {
52
50
  /**
53
51
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
54
52
  */
55
- public readonly metadata!: pulumi.Output<ObjectMeta>;
53
+ public readonly metadata!: pulumi.Output<outputs.meta.v1.ObjectMeta>;
56
54
  public readonly spec!: pulumi.Output<outputs.cert_manager.v1.IssuerSpec>;
57
55
  public /*out*/ readonly status!: pulumi.Output<outputs.cert_manager.v1.IssuerStatus>;
58
56
 
@@ -99,6 +97,6 @@ export interface IssuerArgs {
99
97
  /**
100
98
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
101
99
  */
102
- metadata?: pulumi.Input<ObjectMeta>;
100
+ metadata?: pulumi.Input<inputs.meta.v1.ObjectMeta>;
103
101
  spec?: pulumi.Input<inputs.cert_manager.v1.IssuerSpec>;
104
102
  }
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMeta} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * IssuerList is a list of Issuer
13
11
  */
@@ -6,8 +6,6 @@ import * as inputs from "../../types/input";
6
6
  import * as outputs from "../../types/output";
7
7
  import * as utilities from "../../utilities";
8
8
 
9
- import {ObjectMetaPatch} from "../../meta/v1";
10
-
11
9
  /**
12
10
  * Patch resources are used to modify existing Kubernetes resources by using
13
11
  * Server-Side Apply updates. The name of the resource must be specified, but all other properties are optional. More than
@@ -58,7 +56,7 @@ export class IssuerPatch extends pulumi.CustomResource {
58
56
  /**
59
57
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
60
58
  */
61
- public readonly metadata!: pulumi.Output<ObjectMetaPatch>;
59
+ public readonly metadata!: pulumi.Output<outputs.meta.v1.ObjectMetaPatch>;
62
60
  public readonly spec!: pulumi.Output<outputs.cert_manager.v1.IssuerSpecPatch>;
63
61
  public /*out*/ readonly status!: pulumi.Output<outputs.cert_manager.v1.IssuerStatusPatch>;
64
62
 
@@ -105,6 +103,6 @@ export interface IssuerPatchArgs {
105
103
  /**
106
104
  * Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
107
105
  */
108
- metadata?: pulumi.Input<ObjectMetaPatch>;
106
+ metadata?: pulumi.Input<inputs.meta.v1.ObjectMetaPatch>;
109
107
  spec?: pulumi.Input<inputs.cert_manager.v1.IssuerSpecPatch>;
110
108
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highstate/cert-manager",
3
- "version": "0.9.16",
3
+ "version": "0.9.19",
4
4
  "keywords": [
5
5
  "pulumi",
6
6
  "kubernetes",
@@ -12,14 +12,12 @@
12
12
  "license": "Apache-2.0",
13
13
  "main": "bin/index.js",
14
14
  "scripts": {
15
- "build": "tsc --noCheck && cp package.json bin/package.json"
16
- },
17
- "publishConfig": {
18
- "access": "public"
15
+ "build": "tsc",
16
+ "postinstall": "node ./scripts/postinstall.js"
19
17
  },
20
18
  "dependencies": {
21
19
  "@pulumi/kubernetes": "4.18.0",
22
- "@pulumi/pulumi": "^3.181.0",
20
+ "@pulumi/pulumi": "^3.25.0",
23
21
  "@types/node-fetch": "^2.1.4",
24
22
  "@types/tmp": "^0.0.33",
25
23
  "glob": "^10.3.10",
@@ -36,8 +34,11 @@
36
34
  },
37
35
  "pulumi": {
38
36
  "resource": true,
39
- "name": "@highstate/cert-manager",
40
- "version": "0.6.1"
37
+ "name": "crds",
38
+ "version": "0.0.0-dev"
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
41
42
  },
42
- "gitHead": "458d6f1f9f6d4aec0ba75a2b2c4c01408cb9c8df"
43
+ "gitHead": "e77d292335556c6e5b6275acda1a3d1609d786a1"
43
44
  }
package/tsconfig.json CHANGED
@@ -1,45 +1,46 @@
1
1
  {
2
- "compilerOptions": {
3
- "outDir": "bin",
4
- "target": "es2016",
5
- "module": "commonjs",
6
- "moduleResolution": "node",
7
- "declaration": true,
8
- "sourceMap": true,
9
- "stripInternal": true,
10
- "experimentalDecorators": true,
11
- "noFallthroughCasesInSwitch": true,
12
- "forceConsistentCasingInFileNames": true,
13
- "strict": true
14
- },
15
- "files": [
16
- "acme/index.ts",
17
- "acme/v1/challenge.ts",
18
- "acme/v1/challengeList.ts",
19
- "acme/v1/challengePatch.ts",
20
- "acme/v1/index.ts",
21
- "acme/v1/order.ts",
22
- "acme/v1/orderList.ts",
23
- "acme/v1/orderPatch.ts",
24
- "cert_manager/index.ts",
25
- "cert_manager/v1/certificate.ts",
26
- "cert_manager/v1/certificateList.ts",
27
- "cert_manager/v1/certificatePatch.ts",
28
- "cert_manager/v1/certificateRequest.ts",
29
- "cert_manager/v1/certificateRequestList.ts",
30
- "cert_manager/v1/certificateRequestPatch.ts",
31
- "cert_manager/v1/clusterIssuer.ts",
32
- "cert_manager/v1/clusterIssuerList.ts",
33
- "cert_manager/v1/clusterIssuerPatch.ts",
34
- "cert_manager/v1/index.ts",
35
- "cert_manager/v1/issuer.ts",
36
- "cert_manager/v1/issuerList.ts",
37
- "cert_manager/v1/issuerPatch.ts",
38
- "index.ts",
39
- "provider.ts",
40
- "types/index.ts",
41
- "types/input.ts",
42
- "types/output.ts",
43
- "utilities.ts"
44
- ]
2
+ "compilerOptions": {
3
+ "outDir": "bin",
4
+ "target": "es2016",
5
+ "module": "commonjs",
6
+ "moduleResolution": "node",
7
+ "declaration": true,
8
+ "sourceMap": true,
9
+ "stripInternal": true,
10
+ "experimentalDecorators": true,
11
+ "noFallthroughCasesInSwitch": true,
12
+ "forceConsistentCasingInFileNames": true,
13
+ "strict": true,
14
+ "noCheck": true
15
+ },
16
+ "files": [
17
+ "acme/index.ts",
18
+ "acme/v1/challenge.ts",
19
+ "acme/v1/challengeList.ts",
20
+ "acme/v1/challengePatch.ts",
21
+ "acme/v1/index.ts",
22
+ "acme/v1/order.ts",
23
+ "acme/v1/orderList.ts",
24
+ "acme/v1/orderPatch.ts",
25
+ "cert_manager/index.ts",
26
+ "cert_manager/v1/certificate.ts",
27
+ "cert_manager/v1/certificateList.ts",
28
+ "cert_manager/v1/certificatePatch.ts",
29
+ "cert_manager/v1/certificateRequest.ts",
30
+ "cert_manager/v1/certificateRequestList.ts",
31
+ "cert_manager/v1/certificateRequestPatch.ts",
32
+ "cert_manager/v1/clusterIssuer.ts",
33
+ "cert_manager/v1/clusterIssuerList.ts",
34
+ "cert_manager/v1/clusterIssuerPatch.ts",
35
+ "cert_manager/v1/index.ts",
36
+ "cert_manager/v1/issuer.ts",
37
+ "cert_manager/v1/issuerList.ts",
38
+ "cert_manager/v1/issuerPatch.ts",
39
+ "index.ts",
40
+ "provider.ts",
41
+ "types/index.ts",
42
+ "types/input.ts",
43
+ "types/output.ts",
44
+ "utilities.ts"
45
+ ]
45
46
  }