@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.
- package/CHANGELOG.md +3 -40
- package/acme/v1/challenge.ts +2 -4
- package/acme/v1/challengeList.ts +0 -2
- package/acme/v1/challengePatch.ts +2 -4
- package/acme/v1/order.ts +2 -4
- package/acme/v1/orderList.ts +0 -2
- package/acme/v1/orderPatch.ts +2 -4
- package/bin/acme/v1/challenge.d.ts +2 -3
- package/bin/acme/v1/challenge.js.map +1 -1
- package/bin/acme/v1/challengeList.js.map +1 -1
- package/bin/acme/v1/challengePatch.d.ts +2 -3
- package/bin/acme/v1/challengePatch.js.map +1 -1
- package/bin/acme/v1/order.d.ts +2 -3
- package/bin/acme/v1/order.js.map +1 -1
- package/bin/acme/v1/orderList.js.map +1 -1
- package/bin/acme/v1/orderPatch.d.ts +2 -3
- package/bin/acme/v1/orderPatch.js.map +1 -1
- package/bin/cert_manager/v1/certificate.d.ts +2 -3
- package/bin/cert_manager/v1/certificate.js.map +1 -1
- package/bin/cert_manager/v1/certificateList.js.map +1 -1
- package/bin/cert_manager/v1/certificatePatch.d.ts +2 -3
- package/bin/cert_manager/v1/certificatePatch.js.map +1 -1
- package/bin/cert_manager/v1/certificateRequest.d.ts +2 -3
- package/bin/cert_manager/v1/certificateRequest.js.map +1 -1
- package/bin/cert_manager/v1/certificateRequestList.js.map +1 -1
- package/bin/cert_manager/v1/certificateRequestPatch.d.ts +2 -3
- package/bin/cert_manager/v1/certificateRequestPatch.js.map +1 -1
- package/bin/cert_manager/v1/clusterIssuer.d.ts +2 -3
- package/bin/cert_manager/v1/clusterIssuer.js.map +1 -1
- package/bin/cert_manager/v1/clusterIssuerList.js.map +1 -1
- package/bin/cert_manager/v1/clusterIssuerPatch.d.ts +2 -3
- package/bin/cert_manager/v1/clusterIssuerPatch.js.map +1 -1
- package/bin/cert_manager/v1/issuer.d.ts +2 -3
- package/bin/cert_manager/v1/issuer.js.map +1 -1
- package/bin/cert_manager/v1/issuerList.js.map +1 -1
- package/bin/cert_manager/v1/issuerPatch.d.ts +2 -3
- package/bin/cert_manager/v1/issuerPatch.js.map +1 -1
- package/bin/package.json +9 -8
- package/bin/types/input.d.ts +423 -72
- package/bin/types/output.d.ts +424 -73
- package/cert_manager/v1/certificate.ts +2 -4
- package/cert_manager/v1/certificateList.ts +0 -2
- package/cert_manager/v1/certificatePatch.ts +2 -4
- package/cert_manager/v1/certificateRequest.ts +2 -4
- package/cert_manager/v1/certificateRequestList.ts +0 -2
- package/cert_manager/v1/certificateRequestPatch.ts +2 -4
- package/cert_manager/v1/clusterIssuer.ts +2 -4
- package/cert_manager/v1/clusterIssuerList.ts +0 -2
- package/cert_manager/v1/clusterIssuerPatch.ts +2 -4
- package/cert_manager/v1/issuer.ts +2 -4
- package/cert_manager/v1/issuerList.ts +0 -2
- package/cert_manager/v1/issuerPatch.ts +2 -4
- package/package.json +10 -9
- package/tsconfig.json +44 -43
- package/types/input.ts +421 -73
- package/types/output.ts +422 -74
- package/bin/meta/v1.d.ts +0 -3
- package/bin/meta/v1.js +0 -3
- 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 {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 {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 {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 {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.
|
|
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
|
|
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.
|
|
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": "
|
|
40
|
-
"version": "0.
|
|
37
|
+
"name": "crds",
|
|
38
|
+
"version": "0.0.0-dev"
|
|
39
|
+
},
|
|
40
|
+
"publishConfig": {
|
|
41
|
+
"access": "public"
|
|
41
42
|
},
|
|
42
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "e77d292335556c6e5b6275acda1a3d1609d786a1"
|
|
43
44
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,45 +1,46 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
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
|
}
|