@@ -318,11 +318,6 @@ export interface BlueprintBuildParameters {
318318 */
319319 build_args ?: { [ key : string ] : string } | null ;
320320
321- /**
322- * A build context backed by an Object.
323- */
324- build_context ?: BlueprintBuildParameters . BuildContext | null ;
325-
326321 /**
327322 * A list of code mounts to be included in the Blueprint.
328323 */
@@ -348,14 +343,6 @@ export interface BlueprintBuildParameters {
348343 */
349344 metadata ?: { [ key : string ] : string } | null ;
350345
351- /**
352- * (Optional) Map of named build contexts to attach to the Blueprint build, where
353- * the keys are the name used when referencing the contexts in a Dockerfile. See
354- * Docker buildx additional contexts for details:
355- * https://docs.docker.com/reference/cli/docker/buildx/build/#build-context
356- */
357- named_build_contexts ?: { [ key : string ] : BlueprintBuildParameters . NamedBuildContexts } | null ;
358-
359346 /**
360347 * (Optional) Map of mount IDs/environment variable names to secret names. Secrets
361348 * will be available to commands during the build. Secrets are NOT stored in the
@@ -378,30 +365,6 @@ export interface BlueprintBuildParameters {
378365}
379366
380367export namespace BlueprintBuildParameters {
381- /**
382- * A build context backed by an Object.
383- */
384- export interface BuildContext {
385- /**
386- * The ID of an object, whose contents are to be used as a build context.
387- */
388- object_id : string ;
389-
390- type : 'object' ;
391- }
392-
393- /**
394- * A build context backed by an Object.
395- */
396- export interface NamedBuildContexts {
397- /**
398- * The ID of an object, whose contents are to be used as a build context.
399- */
400- object_id : string ;
401-
402- type : 'object' ;
403- }
404-
405368 export interface Service {
406369 /**
407370 * The image of the container service.
@@ -640,11 +603,6 @@ export interface BlueprintCreateParams {
640603 */
641604 build_args ?: { [ key : string ] : string } | null ;
642605
643- /**
644- * A build context backed by an Object.
645- */
646- build_context ?: BlueprintCreateParams . BuildContext | null ;
647-
648606 /**
649607 * A list of code mounts to be included in the Blueprint.
650608 */
@@ -670,14 +628,6 @@ export interface BlueprintCreateParams {
670628 */
671629 metadata ?: { [ key : string ] : string } | null ;
672630
673- /**
674- * (Optional) Map of named build contexts to attach to the Blueprint build, where
675- * the keys are the name used when referencing the contexts in a Dockerfile. See
676- * Docker buildx additional contexts for details:
677- * https://docs.docker.com/reference/cli/docker/buildx/build/#build-context
678- */
679- named_build_contexts ?: { [ key : string ] : BlueprintCreateParams . NamedBuildContexts } | null ;
680-
681631 /**
682632 * (Optional) Map of mount IDs/environment variable names to secret names. Secrets
683633 * will be available to commands during the build. Secrets are NOT stored in the
@@ -700,30 +650,6 @@ export interface BlueprintCreateParams {
700650}
701651
702652export namespace BlueprintCreateParams {
703- /**
704- * A build context backed by an Object.
705- */
706- export interface BuildContext {
707- /**
708- * The ID of an object, whose contents are to be used as a build context.
709- */
710- object_id : string ;
711-
712- type : 'object' ;
713- }
714-
715- /**
716- * A build context backed by an Object.
717- */
718- export interface NamedBuildContexts {
719- /**
720- * The ID of an object, whose contents are to be used as a build context.
721- */
722- object_id : string ;
723-
724- type : 'object' ;
725- }
726-
727653 export interface Service {
728654 /**
729655 * The image of the container service.
@@ -855,11 +781,6 @@ export interface BlueprintPreviewParams {
855781 */
856782 build_args ?: { [ key : string ] : string } | null ;
857783
858- /**
859- * A build context backed by an Object.
860- */
861- build_context ?: BlueprintPreviewParams . BuildContext | null ;
862-
863784 /**
864785 * A list of code mounts to be included in the Blueprint.
865786 */
@@ -885,14 +806,6 @@ export interface BlueprintPreviewParams {
885806 */
886807 metadata ?: { [ key : string ] : string } | null ;
887808
888- /**
889- * (Optional) Map of named build contexts to attach to the Blueprint build, where
890- * the keys are the name used when referencing the contexts in a Dockerfile. See
891- * Docker buildx additional contexts for details:
892- * https://docs.docker.com/reference/cli/docker/buildx/build/#build-context
893- */
894- named_build_contexts ?: { [ key : string ] : BlueprintPreviewParams . NamedBuildContexts } | null ;
895-
896809 /**
897810 * (Optional) Map of mount IDs/environment variable names to secret names. Secrets
898811 * will be available to commands during the build. Secrets are NOT stored in the
@@ -915,30 +828,6 @@ export interface BlueprintPreviewParams {
915828}
916829
917830export namespace BlueprintPreviewParams {
918- /**
919- * A build context backed by an Object.
920- */
921- export interface BuildContext {
922- /**
923- * The ID of an object, whose contents are to be used as a build context.
924- */
925- object_id : string ;
926-
927- type : 'object' ;
928- }
929-
930- /**
931- * A build context backed by an Object.
932- */
933- export interface NamedBuildContexts {
934- /**
935- * The ID of an object, whose contents are to be used as a build context.
936- */
937- object_id : string ;
938-
939- type : 'object' ;
940- }
941-
942831 export interface Service {
943832 /**
944833 * The image of the container service.
0 commit comments