@punks/backend-entity-manager 0.0.475 → 0.0.476

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.
@@ -8,6 +8,7 @@ export type AwsBatchInfrastructureParams = {
8
8
  vcpu: number;
9
9
  memory: number;
10
10
  gpu?: number;
11
+ ephemeralStorageGB?: number;
11
12
  dockerImage: string;
12
13
  environmentVariables?: AwsJobEnvironmentVariable[];
13
14
  computePlatformType?: AwsJobComputePlatformType;
package/dist/esm/index.js CHANGED
@@ -41657,6 +41657,11 @@ let AwsBatchService = AwsBatchService_1 = class AwsBatchService {
41657
41657
  command: definition.invocationParams.startCommand,
41658
41658
  image: definition.infrastructureParams.dockerImage,
41659
41659
  executionRoleArn: this.awsSettings.batchExecutionRole,
41660
+ ephemeralStorage: definition.infrastructureParams.ephemeralStorageGB
41661
+ ? {
41662
+ sizeInGiB: definition.infrastructureParams.ephemeralStorageGB,
41663
+ }
41664
+ : undefined,
41660
41665
  resourceRequirements: [
41661
41666
  {
41662
41667
  type: ResourceType.MEMORY,