@catladder/pipeline 1.80.3 → 1.81.0
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/dist/bundles/catladder-gitlab/index.js +1 -1
- package/dist/constants.js +1 -1
- package/dist/deploy/cloudRun/deployJob.js +55 -27
- package/dist/deploy/cloudRun/utils/createArgsString.d.ts +11 -0
- package/dist/deploy/cloudRun/utils/createArgsString.js +50 -0
- package/dist/deploy/types/googleCloudRun.d.ts +4 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/examples/__snapshots__/cloud-run-non-public.ts.snap +1572 -0
- package/examples/__snapshots__/cloud-run-with-sql.ts.snap +56 -56
- package/examples/__snapshots__/custom-build-job.ts.snap +8 -8
- package/examples/cloud-run-non-public.ts +27 -0
- package/package.json +1 -1
- package/src/deploy/cloudRun/deployJob.ts +57 -34
- package/src/deploy/cloudRun/utils/createArgsString.ts +19 -0
- package/src/deploy/types/googleCloudRun.ts +5 -0
|
@@ -88,6 +88,11 @@ export type DeployConfigCloudRunService = {
|
|
|
88
88
|
* set to true for workers
|
|
89
89
|
*/
|
|
90
90
|
noCpuThrottling?: true;
|
|
91
|
+
|
|
92
|
+
/**
|
|
93
|
+
* whether to allow public access (defaults to true)
|
|
94
|
+
*/
|
|
95
|
+
allowUnauthenticated?: boolean;
|
|
91
96
|
};
|
|
92
97
|
|
|
93
98
|
export type DeployConfigCloudRunJobBase = {
|