1. Packages
  2. Control Plane (cpln)
  3. API Docs
  4. Workload
Control Plane v0.0.55 published on Thursday, Mar 27, 2025 by pulumiverse

cpln.Workload

Explore with Pulumi AI

cpln logo
Control Plane v0.0.55 published on Thursday, Mar 27, 2025 by pulumiverse

    Create Workload Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Workload(name: string, args: WorkloadArgs, opts?: CustomResourceOptions);
    @overload
    def Workload(resource_name: str,
                 args: WorkloadArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Workload(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 gvc: Optional[str] = None,
                 type: Optional[str] = None,
                 containers: Optional[Sequence[WorkloadContainerArgs]] = None,
                 local_options: Optional[Sequence[WorkloadLocalOptionArgs]] = None,
                 options: Optional[WorkloadOptionsArgs] = None,
                 identity_link: Optional[str] = None,
                 job: Optional[WorkloadJobArgs] = None,
                 load_balancer: Optional[WorkloadLoadBalancerArgs] = None,
                 extras: Optional[str] = None,
                 name: Optional[str] = None,
                 firewall_spec: Optional[WorkloadFirewallSpecArgs] = None,
                 rollout_options: Optional[WorkloadRolloutOptionsArgs] = None,
                 security_options: Optional[WorkloadSecurityOptionsArgs] = None,
                 sidecar: Optional[WorkloadSidecarArgs] = None,
                 support_dynamic_tags: Optional[bool] = None,
                 tags: Optional[Mapping[str, str]] = None,
                 description: Optional[str] = None)
    func NewWorkload(ctx *Context, name string, args WorkloadArgs, opts ...ResourceOption) (*Workload, error)
    public Workload(string name, WorkloadArgs args, CustomResourceOptions? opts = null)
    public Workload(String name, WorkloadArgs args)
    public Workload(String name, WorkloadArgs args, CustomResourceOptions options)
    
    type: cpln:Workload
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args WorkloadArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args WorkloadArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args WorkloadArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkloadArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkloadArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var workloadResource = new Cpln.Workload("workloadResource", new()
    {
        Gvc = "string",
        Type = "string",
        Containers = new[]
        {
            new Cpln.Inputs.WorkloadContainerArgs
            {
                Image = "string",
                Name = "string",
                LivenessProbe = new Cpln.Inputs.WorkloadContainerLivenessProbeArgs
                {
                    Exec = new Cpln.Inputs.WorkloadContainerLivenessProbeExecArgs
                    {
                        Commands = new[]
                        {
                            "string",
                        },
                    },
                    FailureThreshold = 0,
                    Grpc = new Cpln.Inputs.WorkloadContainerLivenessProbeGrpcArgs
                    {
                        PlaceholderAttribute = false,
                        Port = 0,
                    },
                    HttpGet = new Cpln.Inputs.WorkloadContainerLivenessProbeHttpGetArgs
                    {
                        HttpHeaders = 
                        {
                            { "string", "string" },
                        },
                        Path = "string",
                        Port = 0,
                        Scheme = "string",
                    },
                    InitialDelaySeconds = 0,
                    PeriodSeconds = 0,
                    SuccessThreshold = 0,
                    TcpSocket = new Cpln.Inputs.WorkloadContainerLivenessProbeTcpSocketArgs
                    {
                        PlaceholderAttribute = false,
                        Port = 0,
                    },
                    TimeoutSeconds = 0,
                },
                MinCpu = "string",
                GpuNvidia = new Cpln.Inputs.WorkloadContainerGpuNvidiaArgs
                {
                    Model = "string",
                    Quantity = 0,
                },
                Cpu = "string",
                InheritEnv = false,
                Lifecycle = new Cpln.Inputs.WorkloadContainerLifecycleArgs
                {
                    PlaceholderAttribute = false,
                    PostStart = new Cpln.Inputs.WorkloadContainerLifecyclePostStartArgs
                    {
                        Exec = new Cpln.Inputs.WorkloadContainerLifecyclePostStartExecArgs
                        {
                            Commands = new[]
                            {
                                "string",
                            },
                        },
                    },
                    PreStop = new Cpln.Inputs.WorkloadContainerLifecyclePreStopArgs
                    {
                        Exec = new Cpln.Inputs.WorkloadContainerLifecyclePreStopExecArgs
                        {
                            Commands = new[]
                            {
                                "string",
                            },
                        },
                    },
                },
                Args = new[]
                {
                    "string",
                },
                Memory = "string",
                Metrics = new Cpln.Inputs.WorkloadContainerMetricsArgs
                {
                    Path = "string",
                    Port = 0,
                },
                Env = 
                {
                    { "string", "string" },
                },
                MinMemory = "string",
                Command = "string",
                Ports = new[]
                {
                    new Cpln.Inputs.WorkloadContainerPortArgs
                    {
                        Number = 0,
                        Protocol = "string",
                    },
                },
                ReadinessProbe = new Cpln.Inputs.WorkloadContainerReadinessProbeArgs
                {
                    Exec = new Cpln.Inputs.WorkloadContainerReadinessProbeExecArgs
                    {
                        Commands = new[]
                        {
                            "string",
                        },
                    },
                    FailureThreshold = 0,
                    Grpc = new Cpln.Inputs.WorkloadContainerReadinessProbeGrpcArgs
                    {
                        PlaceholderAttribute = false,
                        Port = 0,
                    },
                    HttpGet = new Cpln.Inputs.WorkloadContainerReadinessProbeHttpGetArgs
                    {
                        HttpHeaders = 
                        {
                            { "string", "string" },
                        },
                        Path = "string",
                        Port = 0,
                        Scheme = "string",
                    },
                    InitialDelaySeconds = 0,
                    PeriodSeconds = 0,
                    SuccessThreshold = 0,
                    TcpSocket = new Cpln.Inputs.WorkloadContainerReadinessProbeTcpSocketArgs
                    {
                        PlaceholderAttribute = false,
                        Port = 0,
                    },
                    TimeoutSeconds = 0,
                },
                Volumes = new[]
                {
                    new Cpln.Inputs.WorkloadContainerVolumeArgs
                    {
                        Path = "string",
                        Uri = "string",
                        RecoveryPolicy = "string",
                    },
                },
                WorkingDirectory = "string",
            },
        },
        LocalOptions = new[]
        {
            new Cpln.Inputs.WorkloadLocalOptionArgs
            {
                Location = "string",
                Autoscaling = new Cpln.Inputs.WorkloadLocalOptionAutoscalingArgs
                {
                    MaxConcurrency = 0,
                    MaxScale = 0,
                    Metric = "string",
                    MetricPercentile = "string",
                    MinScale = 0,
                    Multis = new[]
                    {
                        new Cpln.Inputs.WorkloadLocalOptionAutoscalingMultiArgs
                        {
                            Metric = "string",
                            Target = 0,
                        },
                    },
                    ScaleToZeroDelay = 0,
                    Target = 0,
                },
                CapacityAi = false,
                Debug = false,
                Suspend = false,
                TimeoutSeconds = 0,
            },
        },
        Options = new Cpln.Inputs.WorkloadOptionsArgs
        {
            Autoscaling = new Cpln.Inputs.WorkloadOptionsAutoscalingArgs
            {
                MaxConcurrency = 0,
                MaxScale = 0,
                Metric = "string",
                MetricPercentile = "string",
                MinScale = 0,
                Multis = new[]
                {
                    new Cpln.Inputs.WorkloadOptionsAutoscalingMultiArgs
                    {
                        Metric = "string",
                        Target = 0,
                    },
                },
                ScaleToZeroDelay = 0,
                Target = 0,
            },
            CapacityAi = false,
            Debug = false,
            Suspend = false,
            TimeoutSeconds = 0,
        },
        IdentityLink = "string",
        Job = new Cpln.Inputs.WorkloadJobArgs
        {
            Schedule = "string",
            ActiveDeadlineSeconds = 0,
            ConcurrencyPolicy = "string",
            HistoryLimit = 0,
            RestartPolicy = "string",
        },
        LoadBalancer = new Cpln.Inputs.WorkloadLoadBalancerArgs
        {
            Direct = new Cpln.Inputs.WorkloadLoadBalancerDirectArgs
            {
                Enabled = false,
                Ports = new[]
                {
                    new Cpln.Inputs.WorkloadLoadBalancerDirectPortArgs
                    {
                        ExternalPort = 0,
                        Protocol = "string",
                        ContainerPort = 0,
                        Scheme = "string",
                    },
                },
            },
            GeoLocation = new Cpln.Inputs.WorkloadLoadBalancerGeoLocationArgs
            {
                Enabled = false,
                Headers = new Cpln.Inputs.WorkloadLoadBalancerGeoLocationHeadersArgs
                {
                    Asn = "string",
                    City = "string",
                    Country = "string",
                    Region = "string",
                },
            },
            PlaceholderAttribute = false,
        },
        Extras = "string",
        Name = "string",
        FirewallSpec = new Cpln.Inputs.WorkloadFirewallSpecArgs
        {
            External = new Cpln.Inputs.WorkloadFirewallSpecExternalArgs
            {
                InboundAllowCidrs = new[]
                {
                    "string",
                },
                OutboundAllowCidrs = new[]
                {
                    "string",
                },
                OutboundAllowHostnames = new[]
                {
                    "string",
                },
                OutboundAllowPorts = new[]
                {
                    new Cpln.Inputs.WorkloadFirewallSpecExternalOutboundAllowPortArgs
                    {
                        Number = 0,
                        Protocol = "string",
                    },
                },
            },
            Internal = new Cpln.Inputs.WorkloadFirewallSpecInternalArgs
            {
                InboundAllowType = "string",
                InboundAllowWorkloads = new[]
                {
                    "string",
                },
            },
            PlaceholderAttribute = false,
        },
        RolloutOptions = new Cpln.Inputs.WorkloadRolloutOptionsArgs
        {
            MaxSurgeReplicas = "string",
            MaxUnavailableReplicas = "string",
            MinReadySeconds = 0,
            ScalingPolicy = "string",
        },
        SecurityOptions = new Cpln.Inputs.WorkloadSecurityOptionsArgs
        {
            FileSystemGroupId = 0,
            PlaceholderAttribute = false,
        },
        Sidecar = new Cpln.Inputs.WorkloadSidecarArgs
        {
            Envoy = "string",
        },
        SupportDynamicTags = false,
        Tags = 
        {
            { "string", "string" },
        },
        Description = "string",
    });
    
    example, err := cpln.NewWorkload(ctx, "workloadResource", &cpln.WorkloadArgs{
    	Gvc:  pulumi.String("string"),
    	Type: pulumi.String("string"),
    	Containers: cpln.WorkloadContainerArray{
    		&cpln.WorkloadContainerArgs{
    			Image: pulumi.String("string"),
    			Name:  pulumi.String("string"),
    			LivenessProbe: &cpln.WorkloadContainerLivenessProbeArgs{
    				Exec: &cpln.WorkloadContainerLivenessProbeExecArgs{
    					Commands: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    				FailureThreshold: pulumi.Int(0),
    				Grpc: &cpln.WorkloadContainerLivenessProbeGrpcArgs{
    					PlaceholderAttribute: pulumi.Bool(false),
    					Port:                 pulumi.Int(0),
    				},
    				HttpGet: &cpln.WorkloadContainerLivenessProbeHttpGetArgs{
    					HttpHeaders: pulumi.StringMap{
    						"string": pulumi.String("string"),
    					},
    					Path:   pulumi.String("string"),
    					Port:   pulumi.Int(0),
    					Scheme: pulumi.String("string"),
    				},
    				InitialDelaySeconds: pulumi.Int(0),
    				PeriodSeconds:       pulumi.Int(0),
    				SuccessThreshold:    pulumi.Int(0),
    				TcpSocket: &cpln.WorkloadContainerLivenessProbeTcpSocketArgs{
    					PlaceholderAttribute: pulumi.Bool(false),
    					Port:                 pulumi.Int(0),
    				},
    				TimeoutSeconds: pulumi.Int(0),
    			},
    			MinCpu: pulumi.String("string"),
    			GpuNvidia: &cpln.WorkloadContainerGpuNvidiaArgs{
    				Model:    pulumi.String("string"),
    				Quantity: pulumi.Int(0),
    			},
    			Cpu:        pulumi.String("string"),
    			InheritEnv: pulumi.Bool(false),
    			Lifecycle: &cpln.WorkloadContainerLifecycleArgs{
    				PlaceholderAttribute: pulumi.Bool(false),
    				PostStart: &cpln.WorkloadContainerLifecyclePostStartArgs{
    					Exec: &cpln.WorkloadContainerLifecyclePostStartExecArgs{
    						Commands: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    					},
    				},
    				PreStop: &cpln.WorkloadContainerLifecyclePreStopArgs{
    					Exec: &cpln.WorkloadContainerLifecyclePreStopExecArgs{
    						Commands: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    					},
    				},
    			},
    			Args: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Memory: pulumi.String("string"),
    			Metrics: &cpln.WorkloadContainerMetricsArgs{
    				Path: pulumi.String("string"),
    				Port: pulumi.Int(0),
    			},
    			Env: pulumi.StringMap{
    				"string": pulumi.String("string"),
    			},
    			MinMemory: pulumi.String("string"),
    			Command:   pulumi.String("string"),
    			Ports: cpln.WorkloadContainerPortArray{
    				&cpln.WorkloadContainerPortArgs{
    					Number:   pulumi.Int(0),
    					Protocol: pulumi.String("string"),
    				},
    			},
    			ReadinessProbe: &cpln.WorkloadContainerReadinessProbeArgs{
    				Exec: &cpln.WorkloadContainerReadinessProbeExecArgs{
    					Commands: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    				FailureThreshold: pulumi.Int(0),
    				Grpc: &cpln.WorkloadContainerReadinessProbeGrpcArgs{
    					PlaceholderAttribute: pulumi.Bool(false),
    					Port:                 pulumi.Int(0),
    				},
    				HttpGet: &cpln.WorkloadContainerReadinessProbeHttpGetArgs{
    					HttpHeaders: pulumi.StringMap{
    						"string": pulumi.String("string"),
    					},
    					Path:   pulumi.String("string"),
    					Port:   pulumi.Int(0),
    					Scheme: pulumi.String("string"),
    				},
    				InitialDelaySeconds: pulumi.Int(0),
    				PeriodSeconds:       pulumi.Int(0),
    				SuccessThreshold:    pulumi.Int(0),
    				TcpSocket: &cpln.WorkloadContainerReadinessProbeTcpSocketArgs{
    					PlaceholderAttribute: pulumi.Bool(false),
    					Port:                 pulumi.Int(0),
    				},
    				TimeoutSeconds: pulumi.Int(0),
    			},
    			Volumes: cpln.WorkloadContainerVolumeArray{
    				&cpln.WorkloadContainerVolumeArgs{
    					Path:           pulumi.String("string"),
    					Uri:            pulumi.String("string"),
    					RecoveryPolicy: pulumi.String("string"),
    				},
    			},
    			WorkingDirectory: pulumi.String("string"),
    		},
    	},
    	LocalOptions: cpln.WorkloadLocalOptionArray{
    		&cpln.WorkloadLocalOptionArgs{
    			Location: pulumi.String("string"),
    			Autoscaling: &cpln.WorkloadLocalOptionAutoscalingArgs{
    				MaxConcurrency:   pulumi.Int(0),
    				MaxScale:         pulumi.Int(0),
    				Metric:           pulumi.String("string"),
    				MetricPercentile: pulumi.String("string"),
    				MinScale:         pulumi.Int(0),
    				Multis: cpln.WorkloadLocalOptionAutoscalingMultiArray{
    					&cpln.WorkloadLocalOptionAutoscalingMultiArgs{
    						Metric: pulumi.String("string"),
    						Target: pulumi.Int(0),
    					},
    				},
    				ScaleToZeroDelay: pulumi.Int(0),
    				Target:           pulumi.Int(0),
    			},
    			CapacityAi:     pulumi.Bool(false),
    			Debug:          pulumi.Bool(false),
    			Suspend:        pulumi.Bool(false),
    			TimeoutSeconds: pulumi.Int(0),
    		},
    	},
    	Options: &cpln.WorkloadOptionsArgs{
    		Autoscaling: &cpln.WorkloadOptionsAutoscalingArgs{
    			MaxConcurrency:   pulumi.Int(0),
    			MaxScale:         pulumi.Int(0),
    			Metric:           pulumi.String("string"),
    			MetricPercentile: pulumi.String("string"),
    			MinScale:         pulumi.Int(0),
    			Multis: cpln.WorkloadOptionsAutoscalingMultiArray{
    				&cpln.WorkloadOptionsAutoscalingMultiArgs{
    					Metric: pulumi.String("string"),
    					Target: pulumi.Int(0),
    				},
    			},
    			ScaleToZeroDelay: pulumi.Int(0),
    			Target:           pulumi.Int(0),
    		},
    		CapacityAi:     pulumi.Bool(false),
    		Debug:          pulumi.Bool(false),
    		Suspend:        pulumi.Bool(false),
    		TimeoutSeconds: pulumi.Int(0),
    	},
    	IdentityLink: pulumi.String("string"),
    	Job: &cpln.WorkloadJobArgs{
    		Schedule:              pulumi.String("string"),
    		ActiveDeadlineSeconds: pulumi.Int(0),
    		ConcurrencyPolicy:     pulumi.String("string"),
    		HistoryLimit:          pulumi.Int(0),
    		RestartPolicy:         pulumi.String("string"),
    	},
    	LoadBalancer: &cpln.WorkloadLoadBalancerArgs{
    		Direct: &cpln.WorkloadLoadBalancerDirectArgs{
    			Enabled: pulumi.Bool(false),
    			Ports: cpln.WorkloadLoadBalancerDirectPortArray{
    				&cpln.WorkloadLoadBalancerDirectPortArgs{
    					ExternalPort:  pulumi.Int(0),
    					Protocol:      pulumi.String("string"),
    					ContainerPort: pulumi.Int(0),
    					Scheme:        pulumi.String("string"),
    				},
    			},
    		},
    		GeoLocation: &cpln.WorkloadLoadBalancerGeoLocationArgs{
    			Enabled: pulumi.Bool(false),
    			Headers: &cpln.WorkloadLoadBalancerGeoLocationHeadersArgs{
    				Asn:     pulumi.String("string"),
    				City:    pulumi.String("string"),
    				Country: pulumi.String("string"),
    				Region:  pulumi.String("string"),
    			},
    		},
    		PlaceholderAttribute: pulumi.Bool(false),
    	},
    	Extras: pulumi.String("string"),
    	Name:   pulumi.String("string"),
    	FirewallSpec: &cpln.WorkloadFirewallSpecArgs{
    		External: &cpln.WorkloadFirewallSpecExternalArgs{
    			InboundAllowCidrs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			OutboundAllowCidrs: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			OutboundAllowHostnames: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			OutboundAllowPorts: cpln.WorkloadFirewallSpecExternalOutboundAllowPortArray{
    				&cpln.WorkloadFirewallSpecExternalOutboundAllowPortArgs{
    					Number:   pulumi.Int(0),
    					Protocol: pulumi.String("string"),
    				},
    			},
    		},
    		Internal: &cpln.WorkloadFirewallSpecInternalArgs{
    			InboundAllowType: pulumi.String("string"),
    			InboundAllowWorkloads: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    		PlaceholderAttribute: pulumi.Bool(false),
    	},
    	RolloutOptions: &cpln.WorkloadRolloutOptionsArgs{
    		MaxSurgeReplicas:       pulumi.String("string"),
    		MaxUnavailableReplicas: pulumi.String("string"),
    		MinReadySeconds:        pulumi.Int(0),
    		ScalingPolicy:          pulumi.String("string"),
    	},
    	SecurityOptions: &cpln.WorkloadSecurityOptionsArgs{
    		FileSystemGroupId:    pulumi.Int(0),
    		PlaceholderAttribute: pulumi.Bool(false),
    	},
    	Sidecar: &cpln.WorkloadSidecarArgs{
    		Envoy: pulumi.String("string"),
    	},
    	SupportDynamicTags: pulumi.Bool(false),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Description: pulumi.String("string"),
    })
    
    var workloadResource = new Workload("workloadResource", WorkloadArgs.builder()
        .gvc("string")
        .type("string")
        .containers(WorkloadContainerArgs.builder()
            .image("string")
            .name("string")
            .livenessProbe(WorkloadContainerLivenessProbeArgs.builder()
                .exec(WorkloadContainerLivenessProbeExecArgs.builder()
                    .commands("string")
                    .build())
                .failureThreshold(0)
                .grpc(WorkloadContainerLivenessProbeGrpcArgs.builder()
                    .placeholderAttribute(false)
                    .port(0)
                    .build())
                .httpGet(WorkloadContainerLivenessProbeHttpGetArgs.builder()
                    .httpHeaders(Map.of("string", "string"))
                    .path("string")
                    .port(0)
                    .scheme("string")
                    .build())
                .initialDelaySeconds(0)
                .periodSeconds(0)
                .successThreshold(0)
                .tcpSocket(WorkloadContainerLivenessProbeTcpSocketArgs.builder()
                    .placeholderAttribute(false)
                    .port(0)
                    .build())
                .timeoutSeconds(0)
                .build())
            .minCpu("string")
            .gpuNvidia(WorkloadContainerGpuNvidiaArgs.builder()
                .model("string")
                .quantity(0)
                .build())
            .cpu("string")
            .inheritEnv(false)
            .lifecycle(WorkloadContainerLifecycleArgs.builder()
                .placeholderAttribute(false)
                .postStart(WorkloadContainerLifecyclePostStartArgs.builder()
                    .exec(WorkloadContainerLifecyclePostStartExecArgs.builder()
                        .commands("string")
                        .build())
                    .build())
                .preStop(WorkloadContainerLifecyclePreStopArgs.builder()
                    .exec(WorkloadContainerLifecyclePreStopExecArgs.builder()
                        .commands("string")
                        .build())
                    .build())
                .build())
            .args("string")
            .memory("string")
            .metrics(WorkloadContainerMetricsArgs.builder()
                .path("string")
                .port(0)
                .build())
            .env(Map.of("string", "string"))
            .minMemory("string")
            .command("string")
            .ports(WorkloadContainerPortArgs.builder()
                .number(0)
                .protocol("string")
                .build())
            .readinessProbe(WorkloadContainerReadinessProbeArgs.builder()
                .exec(WorkloadContainerReadinessProbeExecArgs.builder()
                    .commands("string")
                    .build())
                .failureThreshold(0)
                .grpc(WorkloadContainerReadinessProbeGrpcArgs.builder()
                    .placeholderAttribute(false)
                    .port(0)
                    .build())
                .httpGet(WorkloadContainerReadinessProbeHttpGetArgs.builder()
                    .httpHeaders(Map.of("string", "string"))
                    .path("string")
                    .port(0)
                    .scheme("string")
                    .build())
                .initialDelaySeconds(0)
                .periodSeconds(0)
                .successThreshold(0)
                .tcpSocket(WorkloadContainerReadinessProbeTcpSocketArgs.builder()
                    .placeholderAttribute(false)
                    .port(0)
                    .build())
                .timeoutSeconds(0)
                .build())
            .volumes(WorkloadContainerVolumeArgs.builder()
                .path("string")
                .uri("string")
                .recoveryPolicy("string")
                .build())
            .workingDirectory("string")
            .build())
        .localOptions(WorkloadLocalOptionArgs.builder()
            .location("string")
            .autoscaling(WorkloadLocalOptionAutoscalingArgs.builder()
                .maxConcurrency(0)
                .maxScale(0)
                .metric("string")
                .metricPercentile("string")
                .minScale(0)
                .multis(WorkloadLocalOptionAutoscalingMultiArgs.builder()
                    .metric("string")
                    .target(0)
                    .build())
                .scaleToZeroDelay(0)
                .target(0)
                .build())
            .capacityAi(false)
            .debug(false)
            .suspend(false)
            .timeoutSeconds(0)
            .build())
        .options(WorkloadOptionsArgs.builder()
            .autoscaling(WorkloadOptionsAutoscalingArgs.builder()
                .maxConcurrency(0)
                .maxScale(0)
                .metric("string")
                .metricPercentile("string")
                .minScale(0)
                .multis(WorkloadOptionsAutoscalingMultiArgs.builder()
                    .metric("string")
                    .target(0)
                    .build())
                .scaleToZeroDelay(0)
                .target(0)
                .build())
            .capacityAi(false)
            .debug(false)
            .suspend(false)
            .timeoutSeconds(0)
            .build())
        .identityLink("string")
        .job(WorkloadJobArgs.builder()
            .schedule("string")
            .activeDeadlineSeconds(0)
            .concurrencyPolicy("string")
            .historyLimit(0)
            .restartPolicy("string")
            .build())
        .loadBalancer(WorkloadLoadBalancerArgs.builder()
            .direct(WorkloadLoadBalancerDirectArgs.builder()
                .enabled(false)
                .ports(WorkloadLoadBalancerDirectPortArgs.builder()
                    .externalPort(0)
                    .protocol("string")
                    .containerPort(0)
                    .scheme("string")
                    .build())
                .build())
            .geoLocation(WorkloadLoadBalancerGeoLocationArgs.builder()
                .enabled(false)
                .headers(WorkloadLoadBalancerGeoLocationHeadersArgs.builder()
                    .asn("string")
                    .city("string")
                    .country("string")
                    .region("string")
                    .build())
                .build())
            .placeholderAttribute(false)
            .build())
        .extras("string")
        .name("string")
        .firewallSpec(WorkloadFirewallSpecArgs.builder()
            .external(WorkloadFirewallSpecExternalArgs.builder()
                .inboundAllowCidrs("string")
                .outboundAllowCidrs("string")
                .outboundAllowHostnames("string")
                .outboundAllowPorts(WorkloadFirewallSpecExternalOutboundAllowPortArgs.builder()
                    .number(0)
                    .protocol("string")
                    .build())
                .build())
            .internal(WorkloadFirewallSpecInternalArgs.builder()
                .inboundAllowType("string")
                .inboundAllowWorkloads("string")
                .build())
            .placeholderAttribute(false)
            .build())
        .rolloutOptions(WorkloadRolloutOptionsArgs.builder()
            .maxSurgeReplicas("string")
            .maxUnavailableReplicas("string")
            .minReadySeconds(0)
            .scalingPolicy("string")
            .build())
        .securityOptions(WorkloadSecurityOptionsArgs.builder()
            .fileSystemGroupId(0)
            .placeholderAttribute(false)
            .build())
        .sidecar(WorkloadSidecarArgs.builder()
            .envoy("string")
            .build())
        .supportDynamicTags(false)
        .tags(Map.of("string", "string"))
        .description("string")
        .build());
    
    workload_resource = cpln.Workload("workloadResource",
        gvc="string",
        type="string",
        containers=[{
            "image": "string",
            "name": "string",
            "liveness_probe": {
                "exec_": {
                    "commands": ["string"],
                },
                "failure_threshold": 0,
                "grpc": {
                    "placeholder_attribute": False,
                    "port": 0,
                },
                "http_get": {
                    "http_headers": {
                        "string": "string",
                    },
                    "path": "string",
                    "port": 0,
                    "scheme": "string",
                },
                "initial_delay_seconds": 0,
                "period_seconds": 0,
                "success_threshold": 0,
                "tcp_socket": {
                    "placeholder_attribute": False,
                    "port": 0,
                },
                "timeout_seconds": 0,
            },
            "min_cpu": "string",
            "gpu_nvidia": {
                "model": "string",
                "quantity": 0,
            },
            "cpu": "string",
            "inherit_env": False,
            "lifecycle": {
                "placeholder_attribute": False,
                "post_start": {
                    "exec_": {
                        "commands": ["string"],
                    },
                },
                "pre_stop": {
                    "exec_": {
                        "commands": ["string"],
                    },
                },
            },
            "args": ["string"],
            "memory": "string",
            "metrics": {
                "path": "string",
                "port": 0,
            },
            "env": {
                "string": "string",
            },
            "min_memory": "string",
            "command": "string",
            "ports": [{
                "number": 0,
                "protocol": "string",
            }],
            "readiness_probe": {
                "exec_": {
                    "commands": ["string"],
                },
                "failure_threshold": 0,
                "grpc": {
                    "placeholder_attribute": False,
                    "port": 0,
                },
                "http_get": {
                    "http_headers": {
                        "string": "string",
                    },
                    "path": "string",
                    "port": 0,
                    "scheme": "string",
                },
                "initial_delay_seconds": 0,
                "period_seconds": 0,
                "success_threshold": 0,
                "tcp_socket": {
                    "placeholder_attribute": False,
                    "port": 0,
                },
                "timeout_seconds": 0,
            },
            "volumes": [{
                "path": "string",
                "uri": "string",
                "recovery_policy": "string",
            }],
            "working_directory": "string",
        }],
        local_options=[{
            "location": "string",
            "autoscaling": {
                "max_concurrency": 0,
                "max_scale": 0,
                "metric": "string",
                "metric_percentile": "string",
                "min_scale": 0,
                "multis": [{
                    "metric": "string",
                    "target": 0,
                }],
                "scale_to_zero_delay": 0,
                "target": 0,
            },
            "capacity_ai": False,
            "debug": False,
            "suspend": False,
            "timeout_seconds": 0,
        }],
        options={
            "autoscaling": {
                "max_concurrency": 0,
                "max_scale": 0,
                "metric": "string",
                "metric_percentile": "string",
                "min_scale": 0,
                "multis": [{
                    "metric": "string",
                    "target": 0,
                }],
                "scale_to_zero_delay": 0,
                "target": 0,
            },
            "capacity_ai": False,
            "debug": False,
            "suspend": False,
            "timeout_seconds": 0,
        },
        identity_link="string",
        job={
            "schedule": "string",
            "active_deadline_seconds": 0,
            "concurrency_policy": "string",
            "history_limit": 0,
            "restart_policy": "string",
        },
        load_balancer={
            "direct": {
                "enabled": False,
                "ports": [{
                    "external_port": 0,
                    "protocol": "string",
                    "container_port": 0,
                    "scheme": "string",
                }],
            },
            "geo_location": {
                "enabled": False,
                "headers": {
                    "asn": "string",
                    "city": "string",
                    "country": "string",
                    "region": "string",
                },
            },
            "placeholder_attribute": False,
        },
        extras="string",
        name="string",
        firewall_spec={
            "external": {
                "inbound_allow_cidrs": ["string"],
                "outbound_allow_cidrs": ["string"],
                "outbound_allow_hostnames": ["string"],
                "outbound_allow_ports": [{
                    "number": 0,
                    "protocol": "string",
                }],
            },
            "internal": {
                "inbound_allow_type": "string",
                "inbound_allow_workloads": ["string"],
            },
            "placeholder_attribute": False,
        },
        rollout_options={
            "max_surge_replicas": "string",
            "max_unavailable_replicas": "string",
            "min_ready_seconds": 0,
            "scaling_policy": "string",
        },
        security_options={
            "file_system_group_id": 0,
            "placeholder_attribute": False,
        },
        sidecar={
            "envoy": "string",
        },
        support_dynamic_tags=False,
        tags={
            "string": "string",
        },
        description="string")
    
    const workloadResource = new cpln.Workload("workloadResource", {
        gvc: "string",
        type: "string",
        containers: [{
            image: "string",
            name: "string",
            livenessProbe: {
                exec: {
                    commands: ["string"],
                },
                failureThreshold: 0,
                grpc: {
                    placeholderAttribute: false,
                    port: 0,
                },
                httpGet: {
                    httpHeaders: {
                        string: "string",
                    },
                    path: "string",
                    port: 0,
                    scheme: "string",
                },
                initialDelaySeconds: 0,
                periodSeconds: 0,
                successThreshold: 0,
                tcpSocket: {
                    placeholderAttribute: false,
                    port: 0,
                },
                timeoutSeconds: 0,
            },
            minCpu: "string",
            gpuNvidia: {
                model: "string",
                quantity: 0,
            },
            cpu: "string",
            inheritEnv: false,
            lifecycle: {
                placeholderAttribute: false,
                postStart: {
                    exec: {
                        commands: ["string"],
                    },
                },
                preStop: {
                    exec: {
                        commands: ["string"],
                    },
                },
            },
            args: ["string"],
            memory: "string",
            metrics: {
                path: "string",
                port: 0,
            },
            env: {
                string: "string",
            },
            minMemory: "string",
            command: "string",
            ports: [{
                number: 0,
                protocol: "string",
            }],
            readinessProbe: {
                exec: {
                    commands: ["string"],
                },
                failureThreshold: 0,
                grpc: {
                    placeholderAttribute: false,
                    port: 0,
                },
                httpGet: {
                    httpHeaders: {
                        string: "string",
                    },
                    path: "string",
                    port: 0,
                    scheme: "string",
                },
                initialDelaySeconds: 0,
                periodSeconds: 0,
                successThreshold: 0,
                tcpSocket: {
                    placeholderAttribute: false,
                    port: 0,
                },
                timeoutSeconds: 0,
            },
            volumes: [{
                path: "string",
                uri: "string",
                recoveryPolicy: "string",
            }],
            workingDirectory: "string",
        }],
        localOptions: [{
            location: "string",
            autoscaling: {
                maxConcurrency: 0,
                maxScale: 0,
                metric: "string",
                metricPercentile: "string",
                minScale: 0,
                multis: [{
                    metric: "string",
                    target: 0,
                }],
                scaleToZeroDelay: 0,
                target: 0,
            },
            capacityAi: false,
            debug: false,
            suspend: false,
            timeoutSeconds: 0,
        }],
        options: {
            autoscaling: {
                maxConcurrency: 0,
                maxScale: 0,
                metric: "string",
                metricPercentile: "string",
                minScale: 0,
                multis: [{
                    metric: "string",
                    target: 0,
                }],
                scaleToZeroDelay: 0,
                target: 0,
            },
            capacityAi: false,
            debug: false,
            suspend: false,
            timeoutSeconds: 0,
        },
        identityLink: "string",
        job: {
            schedule: "string",
            activeDeadlineSeconds: 0,
            concurrencyPolicy: "string",
            historyLimit: 0,
            restartPolicy: "string",
        },
        loadBalancer: {
            direct: {
                enabled: false,
                ports: [{
                    externalPort: 0,
                    protocol: "string",
                    containerPort: 0,
                    scheme: "string",
                }],
            },
            geoLocation: {
                enabled: false,
                headers: {
                    asn: "string",
                    city: "string",
                    country: "string",
                    region: "string",
                },
            },
            placeholderAttribute: false,
        },
        extras: "string",
        name: "string",
        firewallSpec: {
            external: {
                inboundAllowCidrs: ["string"],
                outboundAllowCidrs: ["string"],
                outboundAllowHostnames: ["string"],
                outboundAllowPorts: [{
                    number: 0,
                    protocol: "string",
                }],
            },
            internal: {
                inboundAllowType: "string",
                inboundAllowWorkloads: ["string"],
            },
            placeholderAttribute: false,
        },
        rolloutOptions: {
            maxSurgeReplicas: "string",
            maxUnavailableReplicas: "string",
            minReadySeconds: 0,
            scalingPolicy: "string",
        },
        securityOptions: {
            fileSystemGroupId: 0,
            placeholderAttribute: false,
        },
        sidecar: {
            envoy: "string",
        },
        supportDynamicTags: false,
        tags: {
            string: "string",
        },
        description: "string",
    });
    
    type: cpln:Workload
    properties:
        containers:
            - args:
                - string
              command: string
              cpu: string
              env:
                string: string
              gpuNvidia:
                model: string
                quantity: 0
              image: string
              inheritEnv: false
              lifecycle:
                placeholderAttribute: false
                postStart:
                    exec:
                        commands:
                            - string
                preStop:
                    exec:
                        commands:
                            - string
              livenessProbe:
                exec:
                    commands:
                        - string
                failureThreshold: 0
                grpc:
                    placeholderAttribute: false
                    port: 0
                httpGet:
                    httpHeaders:
                        string: string
                    path: string
                    port: 0
                    scheme: string
                initialDelaySeconds: 0
                periodSeconds: 0
                successThreshold: 0
                tcpSocket:
                    placeholderAttribute: false
                    port: 0
                timeoutSeconds: 0
              memory: string
              metrics:
                path: string
                port: 0
              minCpu: string
              minMemory: string
              name: string
              ports:
                - number: 0
                  protocol: string
              readinessProbe:
                exec:
                    commands:
                        - string
                failureThreshold: 0
                grpc:
                    placeholderAttribute: false
                    port: 0
                httpGet:
                    httpHeaders:
                        string: string
                    path: string
                    port: 0
                    scheme: string
                initialDelaySeconds: 0
                periodSeconds: 0
                successThreshold: 0
                tcpSocket:
                    placeholderAttribute: false
                    port: 0
                timeoutSeconds: 0
              volumes:
                - path: string
                  recoveryPolicy: string
                  uri: string
              workingDirectory: string
        description: string
        extras: string
        firewallSpec:
            external:
                inboundAllowCidrs:
                    - string
                outboundAllowCidrs:
                    - string
                outboundAllowHostnames:
                    - string
                outboundAllowPorts:
                    - number: 0
                      protocol: string
            internal:
                inboundAllowType: string
                inboundAllowWorkloads:
                    - string
            placeholderAttribute: false
        gvc: string
        identityLink: string
        job:
            activeDeadlineSeconds: 0
            concurrencyPolicy: string
            historyLimit: 0
            restartPolicy: string
            schedule: string
        loadBalancer:
            direct:
                enabled: false
                ports:
                    - containerPort: 0
                      externalPort: 0
                      protocol: string
                      scheme: string
            geoLocation:
                enabled: false
                headers:
                    asn: string
                    city: string
                    country: string
                    region: string
            placeholderAttribute: false
        localOptions:
            - autoscaling:
                maxConcurrency: 0
                maxScale: 0
                metric: string
                metricPercentile: string
                minScale: 0
                multis:
                    - metric: string
                      target: 0
                scaleToZeroDelay: 0
                target: 0
              capacityAi: false
              debug: false
              location: string
              suspend: false
              timeoutSeconds: 0
        name: string
        options:
            autoscaling:
                maxConcurrency: 0
                maxScale: 0
                metric: string
                metricPercentile: string
                minScale: 0
                multis:
                    - metric: string
                      target: 0
                scaleToZeroDelay: 0
                target: 0
            capacityAi: false
            debug: false
            suspend: false
            timeoutSeconds: 0
        rolloutOptions:
            maxSurgeReplicas: string
            maxUnavailableReplicas: string
            minReadySeconds: 0
            scalingPolicy: string
        securityOptions:
            fileSystemGroupId: 0
            placeholderAttribute: false
        sidecar:
            envoy: string
        supportDynamicTags: false
        tags:
            string: string
        type: string
    

    Workload Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Workload resource accepts the following input properties:

    Containers List<Pulumiverse.Cpln.Inputs.WorkloadContainer>
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    Gvc string
    Name of the associated GVC.
    Type string
    Workload Type. Either serverless, standard, stateful, or cron.
    Description string
    Description of the Workload.
    Extras string
    Extra Kubernetes modifications. Only used for BYOK.
    FirewallSpec Pulumiverse.Cpln.Inputs.WorkloadFirewallSpec
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    IdentityLink string
    Full link to an Identity.
    Job Pulumiverse.Cpln.Inputs.WorkloadJob
    Cron Job Reference Page.
    LoadBalancer Pulumiverse.Cpln.Inputs.WorkloadLoadBalancer
    LocalOptions List<Pulumiverse.Cpln.Inputs.WorkloadLocalOption>
    Name string
    Name of the Workload.
    Options Pulumiverse.Cpln.Inputs.WorkloadOptions
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    RolloutOptions Pulumiverse.Cpln.Inputs.WorkloadRolloutOptions
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    SecurityOptions Pulumiverse.Cpln.Inputs.WorkloadSecurityOptions
    Allows for the configuration of the file system group id and geo location
    Sidecar Pulumiverse.Cpln.Inputs.WorkloadSidecar
    SupportDynamicTags bool
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    Tags Dictionary<string, string>
    Key-value map of resource tags.
    Containers []WorkloadContainerArgs
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    Gvc string
    Name of the associated GVC.
    Type string
    Workload Type. Either serverless, standard, stateful, or cron.
    Description string
    Description of the Workload.
    Extras string
    Extra Kubernetes modifications. Only used for BYOK.
    FirewallSpec WorkloadFirewallSpecArgs
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    IdentityLink string
    Full link to an Identity.
    Job WorkloadJobArgs
    Cron Job Reference Page.
    LoadBalancer WorkloadLoadBalancerArgs
    LocalOptions []WorkloadLocalOptionArgs
    Name string
    Name of the Workload.
    Options WorkloadOptionsArgs
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    RolloutOptions WorkloadRolloutOptionsArgs
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    SecurityOptions WorkloadSecurityOptionsArgs
    Allows for the configuration of the file system group id and geo location
    Sidecar WorkloadSidecarArgs
    SupportDynamicTags bool
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    Tags map[string]string
    Key-value map of resource tags.
    containers List<WorkloadContainer>
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    gvc String
    Name of the associated GVC.
    type String
    Workload Type. Either serverless, standard, stateful, or cron.
    description String
    Description of the Workload.
    extras String
    Extra Kubernetes modifications. Only used for BYOK.
    firewallSpec WorkloadFirewallSpec
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    identityLink String
    Full link to an Identity.
    job WorkloadJob
    Cron Job Reference Page.
    loadBalancer WorkloadLoadBalancer
    localOptions List<WorkloadLocalOption>
    name String
    Name of the Workload.
    options WorkloadOptions
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    rolloutOptions WorkloadRolloutOptions
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    securityOptions WorkloadSecurityOptions
    Allows for the configuration of the file system group id and geo location
    sidecar WorkloadSidecar
    supportDynamicTags Boolean
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    tags Map<String,String>
    Key-value map of resource tags.
    containers WorkloadContainer[]
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    gvc string
    Name of the associated GVC.
    type string
    Workload Type. Either serverless, standard, stateful, or cron.
    description string
    Description of the Workload.
    extras string
    Extra Kubernetes modifications. Only used for BYOK.
    firewallSpec WorkloadFirewallSpec
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    identityLink string
    Full link to an Identity.
    job WorkloadJob
    Cron Job Reference Page.
    loadBalancer WorkloadLoadBalancer
    localOptions WorkloadLocalOption[]
    name string
    Name of the Workload.
    options WorkloadOptions
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    rolloutOptions WorkloadRolloutOptions
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    securityOptions WorkloadSecurityOptions
    Allows for the configuration of the file system group id and geo location
    sidecar WorkloadSidecar
    supportDynamicTags boolean
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    tags {[key: string]: string}
    Key-value map of resource tags.
    containers Sequence[WorkloadContainerArgs]
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    gvc str
    Name of the associated GVC.
    type str
    Workload Type. Either serverless, standard, stateful, or cron.
    description str
    Description of the Workload.
    extras str
    Extra Kubernetes modifications. Only used for BYOK.
    firewall_spec WorkloadFirewallSpecArgs
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    identity_link str
    Full link to an Identity.
    job WorkloadJobArgs
    Cron Job Reference Page.
    load_balancer WorkloadLoadBalancerArgs
    local_options Sequence[WorkloadLocalOptionArgs]
    name str
    Name of the Workload.
    options WorkloadOptionsArgs
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    rollout_options WorkloadRolloutOptionsArgs
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    security_options WorkloadSecurityOptionsArgs
    Allows for the configuration of the file system group id and geo location
    sidecar WorkloadSidecarArgs
    support_dynamic_tags bool
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    tags Mapping[str, str]
    Key-value map of resource tags.
    containers List<Property Map>
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    gvc String
    Name of the associated GVC.
    type String
    Workload Type. Either serverless, standard, stateful, or cron.
    description String
    Description of the Workload.
    extras String
    Extra Kubernetes modifications. Only used for BYOK.
    firewallSpec Property Map
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    identityLink String
    Full link to an Identity.
    job Property Map
    Cron Job Reference Page.
    loadBalancer Property Map
    localOptions List<Property Map>
    name String
    Name of the Workload.
    options Property Map
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    rolloutOptions Property Map
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    securityOptions Property Map
    Allows for the configuration of the file system group id and geo location
    sidecar Property Map
    supportDynamicTags Boolean
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    tags Map<String>
    Key-value map of resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Workload resource produces the following output properties:

    CplnId string
    The ID, in GUID format, of the Workload.
    Id string
    The provider-assigned unique ID for this managed resource.
    SelfLink string
    Full link to this resource. Can be referenced by other resources.
    Statuses List<Pulumiverse.Cpln.Outputs.WorkloadStatus>
    Status of the workload.
    CplnId string
    The ID, in GUID format, of the Workload.
    Id string
    The provider-assigned unique ID for this managed resource.
    SelfLink string
    Full link to this resource. Can be referenced by other resources.
    Statuses []WorkloadStatus
    Status of the workload.
    cplnId String
    The ID, in GUID format, of the Workload.
    id String
    The provider-assigned unique ID for this managed resource.
    selfLink String
    Full link to this resource. Can be referenced by other resources.
    statuses List<WorkloadStatus>
    Status of the workload.
    cplnId string
    The ID, in GUID format, of the Workload.
    id string
    The provider-assigned unique ID for this managed resource.
    selfLink string
    Full link to this resource. Can be referenced by other resources.
    statuses WorkloadStatus[]
    Status of the workload.
    cpln_id str
    The ID, in GUID format, of the Workload.
    id str
    The provider-assigned unique ID for this managed resource.
    self_link str
    Full link to this resource. Can be referenced by other resources.
    statuses Sequence[WorkloadStatus]
    Status of the workload.
    cplnId String
    The ID, in GUID format, of the Workload.
    id String
    The provider-assigned unique ID for this managed resource.
    selfLink String
    Full link to this resource. Can be referenced by other resources.
    statuses List<Property Map>
    Status of the workload.

    Look up Existing Workload Resource

    Get an existing Workload resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: WorkloadState, opts?: CustomResourceOptions): Workload
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            containers: Optional[Sequence[WorkloadContainerArgs]] = None,
            cpln_id: Optional[str] = None,
            description: Optional[str] = None,
            extras: Optional[str] = None,
            firewall_spec: Optional[WorkloadFirewallSpecArgs] = None,
            gvc: Optional[str] = None,
            identity_link: Optional[str] = None,
            job: Optional[WorkloadJobArgs] = None,
            load_balancer: Optional[WorkloadLoadBalancerArgs] = None,
            local_options: Optional[Sequence[WorkloadLocalOptionArgs]] = None,
            name: Optional[str] = None,
            options: Optional[WorkloadOptionsArgs] = None,
            rollout_options: Optional[WorkloadRolloutOptionsArgs] = None,
            security_options: Optional[WorkloadSecurityOptionsArgs] = None,
            self_link: Optional[str] = None,
            sidecar: Optional[WorkloadSidecarArgs] = None,
            statuses: Optional[Sequence[WorkloadStatusArgs]] = None,
            support_dynamic_tags: Optional[bool] = None,
            tags: Optional[Mapping[str, str]] = None,
            type: Optional[str] = None) -> Workload
    func GetWorkload(ctx *Context, name string, id IDInput, state *WorkloadState, opts ...ResourceOption) (*Workload, error)
    public static Workload Get(string name, Input<string> id, WorkloadState? state, CustomResourceOptions? opts = null)
    public static Workload get(String name, Output<String> id, WorkloadState state, CustomResourceOptions options)
    resources:  _:    type: cpln:Workload    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Containers List<Pulumiverse.Cpln.Inputs.WorkloadContainer>
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    CplnId string
    The ID, in GUID format, of the Workload.
    Description string
    Description of the Workload.
    Extras string
    Extra Kubernetes modifications. Only used for BYOK.
    FirewallSpec Pulumiverse.Cpln.Inputs.WorkloadFirewallSpec
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    Gvc string
    Name of the associated GVC.
    IdentityLink string
    Full link to an Identity.
    Job Pulumiverse.Cpln.Inputs.WorkloadJob
    Cron Job Reference Page.
    LoadBalancer Pulumiverse.Cpln.Inputs.WorkloadLoadBalancer
    LocalOptions List<Pulumiverse.Cpln.Inputs.WorkloadLocalOption>
    Name string
    Name of the Workload.
    Options Pulumiverse.Cpln.Inputs.WorkloadOptions
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    RolloutOptions Pulumiverse.Cpln.Inputs.WorkloadRolloutOptions
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    SecurityOptions Pulumiverse.Cpln.Inputs.WorkloadSecurityOptions
    Allows for the configuration of the file system group id and geo location
    SelfLink string
    Full link to this resource. Can be referenced by other resources.
    Sidecar Pulumiverse.Cpln.Inputs.WorkloadSidecar
    Statuses List<Pulumiverse.Cpln.Inputs.WorkloadStatus>
    Status of the workload.
    SupportDynamicTags bool
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    Tags Dictionary<string, string>
    Key-value map of resource tags.
    Type string
    Workload Type. Either serverless, standard, stateful, or cron.
    Containers []WorkloadContainerArgs
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    CplnId string
    The ID, in GUID format, of the Workload.
    Description string
    Description of the Workload.
    Extras string
    Extra Kubernetes modifications. Only used for BYOK.
    FirewallSpec WorkloadFirewallSpecArgs
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    Gvc string
    Name of the associated GVC.
    IdentityLink string
    Full link to an Identity.
    Job WorkloadJobArgs
    Cron Job Reference Page.
    LoadBalancer WorkloadLoadBalancerArgs
    LocalOptions []WorkloadLocalOptionArgs
    Name string
    Name of the Workload.
    Options WorkloadOptionsArgs
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    RolloutOptions WorkloadRolloutOptionsArgs
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    SecurityOptions WorkloadSecurityOptionsArgs
    Allows for the configuration of the file system group id and geo location
    SelfLink string
    Full link to this resource. Can be referenced by other resources.
    Sidecar WorkloadSidecarArgs
    Statuses []WorkloadStatusArgs
    Status of the workload.
    SupportDynamicTags bool
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    Tags map[string]string
    Key-value map of resource tags.
    Type string
    Workload Type. Either serverless, standard, stateful, or cron.
    containers List<WorkloadContainer>
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    cplnId String
    The ID, in GUID format, of the Workload.
    description String
    Description of the Workload.
    extras String
    Extra Kubernetes modifications. Only used for BYOK.
    firewallSpec WorkloadFirewallSpec
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    gvc String
    Name of the associated GVC.
    identityLink String
    Full link to an Identity.
    job WorkloadJob
    Cron Job Reference Page.
    loadBalancer WorkloadLoadBalancer
    localOptions List<WorkloadLocalOption>
    name String
    Name of the Workload.
    options WorkloadOptions
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    rolloutOptions WorkloadRolloutOptions
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    securityOptions WorkloadSecurityOptions
    Allows for the configuration of the file system group id and geo location
    selfLink String
    Full link to this resource. Can be referenced by other resources.
    sidecar WorkloadSidecar
    statuses List<WorkloadStatus>
    Status of the workload.
    supportDynamicTags Boolean
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    tags Map<String,String>
    Key-value map of resource tags.
    type String
    Workload Type. Either serverless, standard, stateful, or cron.
    containers WorkloadContainer[]
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    cplnId string
    The ID, in GUID format, of the Workload.
    description string
    Description of the Workload.
    extras string
    Extra Kubernetes modifications. Only used for BYOK.
    firewallSpec WorkloadFirewallSpec
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    gvc string
    Name of the associated GVC.
    identityLink string
    Full link to an Identity.
    job WorkloadJob
    Cron Job Reference Page.
    loadBalancer WorkloadLoadBalancer
    localOptions WorkloadLocalOption[]
    name string
    Name of the Workload.
    options WorkloadOptions
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    rolloutOptions WorkloadRolloutOptions
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    securityOptions WorkloadSecurityOptions
    Allows for the configuration of the file system group id and geo location
    selfLink string
    Full link to this resource. Can be referenced by other resources.
    sidecar WorkloadSidecar
    statuses WorkloadStatus[]
    Status of the workload.
    supportDynamicTags boolean
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    tags {[key: string]: string}
    Key-value map of resource tags.
    type string
    Workload Type. Either serverless, standard, stateful, or cron.
    containers Sequence[WorkloadContainerArgs]
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    cpln_id str
    The ID, in GUID format, of the Workload.
    description str
    Description of the Workload.
    extras str
    Extra Kubernetes modifications. Only used for BYOK.
    firewall_spec WorkloadFirewallSpecArgs
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    gvc str
    Name of the associated GVC.
    identity_link str
    Full link to an Identity.
    job WorkloadJobArgs
    Cron Job Reference Page.
    load_balancer WorkloadLoadBalancerArgs
    local_options Sequence[WorkloadLocalOptionArgs]
    name str
    Name of the Workload.
    options WorkloadOptionsArgs
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    rollout_options WorkloadRolloutOptionsArgs
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    security_options WorkloadSecurityOptionsArgs
    Allows for the configuration of the file system group id and geo location
    self_link str
    Full link to this resource. Can be referenced by other resources.
    sidecar WorkloadSidecarArgs
    statuses Sequence[WorkloadStatusArgs]
    Status of the workload.
    support_dynamic_tags bool
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    tags Mapping[str, str]
    Key-value map of resource tags.
    type str
    Workload Type. Either serverless, standard, stateful, or cron.
    containers List<Property Map>
    An isolated and lightweight runtime environment that encapsulates an application and its dependencies.
    cplnId String
    The ID, in GUID format, of the Workload.
    description String
    Description of the Workload.
    extras String
    Extra Kubernetes modifications. Only used for BYOK.
    firewallSpec Property Map
    Control of inbound and outbound access to the workload for external (public) and internal (service to service) traffic. Access is restricted by default.
    gvc String
    Name of the associated GVC.
    identityLink String
    Full link to an Identity.
    job Property Map
    Cron Job Reference Page.
    loadBalancer Property Map
    localOptions List<Property Map>
    name String
    Name of the Workload.
    options Property Map
    Configurable settings or parameters that allow fine-tuning and customization of the behavior, performance, and characteristics of the workload.
    rolloutOptions Property Map
    Defines the parameters for updating applications and services, including settings for minimum readiness, unavailable replicas, surge replicas, and scaling policies.
    securityOptions Property Map
    Allows for the configuration of the file system group id and geo location
    selfLink String
    Full link to this resource. Can be referenced by other resources.
    sidecar Property Map
    statuses List<Property Map>
    Status of the workload.
    supportDynamicTags Boolean
    Workload will automatically redeploy when one of the container images is updated in the container registry. Default: false.
    tags Map<String>
    Key-value map of resource tags.
    type String
    Workload Type. Either serverless, standard, stateful, or cron.

    Supporting Types

    WorkloadContainer, WorkloadContainerArgs

    Image string
    The full image and tag path.
    Name string
    Name of the container.
    Args List<string>
    Command line arguments passed to the container at runtime.
    Command string
    Override the entry point.
    Cpu string
    Reserved CPU of the workload when capacityAI is disabled. Maximum CPU when CapacityAI is enabled. Default: "50m".
    Env Dictionary<string, string>
    Name-Value list of environment variables.
    GpuNvidia Pulumiverse.Cpln.Inputs.WorkloadContainerGpuNvidia
    GPUs manufactured by NVIDIA, which are specialized hardware accelerators used to offload and accelerate computationally intensive tasks within the workload.
    InheritEnv bool
    Enables inheritance of GVC environment variables. A variable in spec.env will override a GVC variable with the same name.
    Lifecycle Pulumiverse.Cpln.Inputs.WorkloadContainerLifecycle
    Lifecycle Reference Page.
    LivenessProbe Pulumiverse.Cpln.Inputs.WorkloadContainerLivenessProbe
    Liveness Probe
    Memory string
    Reserved memory of the workload when capacityAI is disabled. Maximum memory when CapacityAI is enabled. Default: "128Mi".
    Metrics Pulumiverse.Cpln.Inputs.WorkloadContainerMetrics
    Reference Page.
    MinCpu string
    Minimum CPU when capacity AI is enabled.
    MinMemory string
    Minimum memory when capacity AI is enabled.
    Port int
    The port the container exposes. Only one container is allowed to specify a port. Min: 80. Max: 65535. Used by serverless Workload type. DEPRECATED - Use ports.

    Deprecated: The 'port' attribute will be deprecated in the next major version. Use the 'ports' attribute instead.

    Ports List<Pulumiverse.Cpln.Inputs.WorkloadContainerPort>
    Communication endpoints used by the workload to send and receive network traffic.
    ReadinessProbe Pulumiverse.Cpln.Inputs.WorkloadContainerReadinessProbe
    Readiness Probe
    Volumes List<Pulumiverse.Cpln.Inputs.WorkloadContainerVolume>
    Reference Page.
    WorkingDirectory string
    Override the working directory. Must be an absolute path.
    Image string
    The full image and tag path.
    Name string
    Name of the container.
    Args []string
    Command line arguments passed to the container at runtime.
    Command string
    Override the entry point.
    Cpu string
    Reserved CPU of the workload when capacityAI is disabled. Maximum CPU when CapacityAI is enabled. Default: "50m".
    Env map[string]string
    Name-Value list of environment variables.
    GpuNvidia WorkloadContainerGpuNvidia
    GPUs manufactured by NVIDIA, which are specialized hardware accelerators used to offload and accelerate computationally intensive tasks within the workload.
    InheritEnv bool
    Enables inheritance of GVC environment variables. A variable in spec.env will override a GVC variable with the same name.
    Lifecycle WorkloadContainerLifecycle
    Lifecycle Reference Page.
    LivenessProbe WorkloadContainerLivenessProbe
    Liveness Probe
    Memory string
    Reserved memory of the workload when capacityAI is disabled. Maximum memory when CapacityAI is enabled. Default: "128Mi".
    Metrics WorkloadContainerMetrics
    Reference Page.
    MinCpu string
    Minimum CPU when capacity AI is enabled.
    MinMemory string
    Minimum memory when capacity AI is enabled.
    Port int
    The port the container exposes. Only one container is allowed to specify a port. Min: 80. Max: 65535. Used by serverless Workload type. DEPRECATED - Use ports.

    Deprecated: The 'port' attribute will be deprecated in the next major version. Use the 'ports' attribute instead.

    Ports []WorkloadContainerPort
    Communication endpoints used by the workload to send and receive network traffic.
    ReadinessProbe WorkloadContainerReadinessProbe
    Readiness Probe
    Volumes []WorkloadContainerVolume
    Reference Page.
    WorkingDirectory string
    Override the working directory. Must be an absolute path.
    image String
    The full image and tag path.
    name String
    Name of the container.
    args List<String>
    Command line arguments passed to the container at runtime.
    command String
    Override the entry point.
    cpu String
    Reserved CPU of the workload when capacityAI is disabled. Maximum CPU when CapacityAI is enabled. Default: "50m".
    env Map<String,String>
    Name-Value list of environment variables.
    gpuNvidia WorkloadContainerGpuNvidia
    GPUs manufactured by NVIDIA, which are specialized hardware accelerators used to offload and accelerate computationally intensive tasks within the workload.
    inheritEnv Boolean
    Enables inheritance of GVC environment variables. A variable in spec.env will override a GVC variable with the same name.
    lifecycle WorkloadContainerLifecycle
    Lifecycle Reference Page.
    livenessProbe WorkloadContainerLivenessProbe
    Liveness Probe
    memory String
    Reserved memory of the workload when capacityAI is disabled. Maximum memory when CapacityAI is enabled. Default: "128Mi".
    metrics WorkloadContainerMetrics
    Reference Page.
    minCpu String
    Minimum CPU when capacity AI is enabled.
    minMemory String
    Minimum memory when capacity AI is enabled.
    port Integer
    The port the container exposes. Only one container is allowed to specify a port. Min: 80. Max: 65535. Used by serverless Workload type. DEPRECATED - Use ports.

    Deprecated: The 'port' attribute will be deprecated in the next major version. Use the 'ports' attribute instead.

    ports List<WorkloadContainerPort>
    Communication endpoints used by the workload to send and receive network traffic.
    readinessProbe WorkloadContainerReadinessProbe
    Readiness Probe
    volumes List<WorkloadContainerVolume>
    Reference Page.
    workingDirectory String
    Override the working directory. Must be an absolute path.
    image string
    The full image and tag path.
    name string
    Name of the container.
    args string[]
    Command line arguments passed to the container at runtime.
    command string
    Override the entry point.
    cpu string
    Reserved CPU of the workload when capacityAI is disabled. Maximum CPU when CapacityAI is enabled. Default: "50m".
    env {[key: string]: string}
    Name-Value list of environment variables.
    gpuNvidia WorkloadContainerGpuNvidia
    GPUs manufactured by NVIDIA, which are specialized hardware accelerators used to offload and accelerate computationally intensive tasks within the workload.
    inheritEnv boolean
    Enables inheritance of GVC environment variables. A variable in spec.env will override a GVC variable with the same name.
    lifecycle WorkloadContainerLifecycle
    Lifecycle Reference Page.
    livenessProbe WorkloadContainerLivenessProbe
    Liveness Probe
    memory string
    Reserved memory of the workload when capacityAI is disabled. Maximum memory when CapacityAI is enabled. Default: "128Mi".
    metrics WorkloadContainerMetrics
    Reference Page.
    minCpu string
    Minimum CPU when capacity AI is enabled.
    minMemory string
    Minimum memory when capacity AI is enabled.
    port number
    The port the container exposes. Only one container is allowed to specify a port. Min: 80. Max: 65535. Used by serverless Workload type. DEPRECATED - Use ports.

    Deprecated: The 'port' attribute will be deprecated in the next major version. Use the 'ports' attribute instead.

    ports WorkloadContainerPort[]
    Communication endpoints used by the workload to send and receive network traffic.
    readinessProbe WorkloadContainerReadinessProbe
    Readiness Probe
    volumes WorkloadContainerVolume[]
    Reference Page.
    workingDirectory string
    Override the working directory. Must be an absolute path.
    image str
    The full image and tag path.
    name str
    Name of the container.
    args Sequence[str]
    Command line arguments passed to the container at runtime.
    command str
    Override the entry point.
    cpu str
    Reserved CPU of the workload when capacityAI is disabled. Maximum CPU when CapacityAI is enabled. Default: "50m".
    env Mapping[str, str]
    Name-Value list of environment variables.
    gpu_nvidia WorkloadContainerGpuNvidia
    GPUs manufactured by NVIDIA, which are specialized hardware accelerators used to offload and accelerate computationally intensive tasks within the workload.
    inherit_env bool
    Enables inheritance of GVC environment variables. A variable in spec.env will override a GVC variable with the same name.
    lifecycle WorkloadContainerLifecycle
    Lifecycle Reference Page.
    liveness_probe WorkloadContainerLivenessProbe
    Liveness Probe
    memory str
    Reserved memory of the workload when capacityAI is disabled. Maximum memory when CapacityAI is enabled. Default: "128Mi".
    metrics WorkloadContainerMetrics
    Reference Page.
    min_cpu str
    Minimum CPU when capacity AI is enabled.
    min_memory str
    Minimum memory when capacity AI is enabled.
    port int
    The port the container exposes. Only one container is allowed to specify a port. Min: 80. Max: 65535. Used by serverless Workload type. DEPRECATED - Use ports.

    Deprecated: The 'port' attribute will be deprecated in the next major version. Use the 'ports' attribute instead.

    ports Sequence[WorkloadContainerPort]
    Communication endpoints used by the workload to send and receive network traffic.
    readiness_probe WorkloadContainerReadinessProbe
    Readiness Probe
    volumes Sequence[WorkloadContainerVolume]
    Reference Page.
    working_directory str
    Override the working directory. Must be an absolute path.
    image String
    The full image and tag path.
    name String
    Name of the container.
    args List<String>
    Command line arguments passed to the container at runtime.
    command String
    Override the entry point.
    cpu String
    Reserved CPU of the workload when capacityAI is disabled. Maximum CPU when CapacityAI is enabled. Default: "50m".
    env Map<String>
    Name-Value list of environment variables.
    gpuNvidia Property Map
    GPUs manufactured by NVIDIA, which are specialized hardware accelerators used to offload and accelerate computationally intensive tasks within the workload.
    inheritEnv Boolean
    Enables inheritance of GVC environment variables. A variable in spec.env will override a GVC variable with the same name.
    lifecycle Property Map
    Lifecycle Reference Page.
    livenessProbe Property Map
    Liveness Probe
    memory String
    Reserved memory of the workload when capacityAI is disabled. Maximum memory when CapacityAI is enabled. Default: "128Mi".
    metrics Property Map
    Reference Page.
    minCpu String
    Minimum CPU when capacity AI is enabled.
    minMemory String
    Minimum memory when capacity AI is enabled.
    port Number
    The port the container exposes. Only one container is allowed to specify a port. Min: 80. Max: 65535. Used by serverless Workload type. DEPRECATED - Use ports.

    Deprecated: The 'port' attribute will be deprecated in the next major version. Use the 'ports' attribute instead.

    ports List<Property Map>
    Communication endpoints used by the workload to send and receive network traffic.
    readinessProbe Property Map
    Readiness Probe
    volumes List<Property Map>
    Reference Page.
    workingDirectory String
    Override the working directory. Must be an absolute path.

    WorkloadContainerGpuNvidia, WorkloadContainerGpuNvidiaArgs

    Model string
    GPU Model (i.e.: t4)
    Quantity int
    Number of GPUs.
    Model string
    GPU Model (i.e.: t4)
    Quantity int
    Number of GPUs.
    model String
    GPU Model (i.e.: t4)
    quantity Integer
    Number of GPUs.
    model string
    GPU Model (i.e.: t4)
    quantity number
    Number of GPUs.
    model str
    GPU Model (i.e.: t4)
    quantity int
    Number of GPUs.
    model String
    GPU Model (i.e.: t4)
    quantity Number
    Number of GPUs.

    WorkloadContainerLifecycle, WorkloadContainerLifecycleArgs

    WorkloadContainerLifecyclePostStart, WorkloadContainerLifecyclePostStartArgs

    WorkloadContainerLifecyclePostStartExec, WorkloadContainerLifecyclePostStartExecArgs

    Commands List<string>
    Commands []string
    commands List<String>
    commands string[]
    commands Sequence[str]
    commands List<String>

    WorkloadContainerLifecyclePreStop, WorkloadContainerLifecyclePreStopArgs

    WorkloadContainerLifecyclePreStopExec, WorkloadContainerLifecyclePreStopExecArgs

    Commands List<string>
    Commands []string
    commands List<String>
    commands string[]
    commands Sequence[str]
    commands List<String>

    WorkloadContainerLivenessProbe, WorkloadContainerLivenessProbeArgs

    WorkloadContainerLivenessProbeExec, WorkloadContainerLivenessProbeExecArgs

    Commands List<string>
    Commands []string
    commands List<String>
    commands string[]
    commands Sequence[str]
    commands List<String>

    WorkloadContainerLivenessProbeGrpc, WorkloadContainerLivenessProbeGrpcArgs

    placeholderAttribute Boolean
    port Integer

    WorkloadContainerLivenessProbeHttpGet, WorkloadContainerLivenessProbeHttpGetArgs

    HttpHeaders Dictionary<string, string>
    Path string
    Port int
    Scheme string
    HttpHeaders map[string]string
    Path string
    Port int
    Scheme string
    httpHeaders Map<String,String>
    path String
    port Integer
    scheme String
    httpHeaders {[key: string]: string}
    path string
    port number
    scheme string
    http_headers Mapping[str, str]
    path str
    port int
    scheme str
    httpHeaders Map<String>
    path String
    port Number
    scheme String

    WorkloadContainerLivenessProbeTcpSocket, WorkloadContainerLivenessProbeTcpSocketArgs

    placeholderAttribute Boolean
    port Integer

    WorkloadContainerMetrics, WorkloadContainerMetricsArgs

    Path string
    Path from container emitting custom metrics
    Port int
    Port from container emitting custom metrics
    Path string
    Path from container emitting custom metrics
    Port int
    Port from container emitting custom metrics
    path String
    Path from container emitting custom metrics
    port Integer
    Port from container emitting custom metrics
    path string
    Path from container emitting custom metrics
    port number
    Port from container emitting custom metrics
    path str
    Path from container emitting custom metrics
    port int
    Port from container emitting custom metrics
    path String
    Path from container emitting custom metrics
    port Number
    Port from container emitting custom metrics

    WorkloadContainerPort, WorkloadContainerPortArgs

    Number int
    Port to expose.
    Protocol string
    Protocol. Choice of: http, http2, tcp, or grpc.
    Number int
    Port to expose.
    Protocol string
    Protocol. Choice of: http, http2, tcp, or grpc.
    number Integer
    Port to expose.
    protocol String
    Protocol. Choice of: http, http2, tcp, or grpc.
    number number
    Port to expose.
    protocol string
    Protocol. Choice of: http, http2, tcp, or grpc.
    number int
    Port to expose.
    protocol str
    Protocol. Choice of: http, http2, tcp, or grpc.
    number Number
    Port to expose.
    protocol String
    Protocol. Choice of: http, http2, tcp, or grpc.

    WorkloadContainerReadinessProbe, WorkloadContainerReadinessProbeArgs

    WorkloadContainerReadinessProbeExec, WorkloadContainerReadinessProbeExecArgs

    Commands List<string>
    Commands []string
    commands List<String>
    commands string[]
    commands Sequence[str]
    commands List<String>

    WorkloadContainerReadinessProbeGrpc, WorkloadContainerReadinessProbeGrpcArgs

    placeholderAttribute Boolean
    port Integer

    WorkloadContainerReadinessProbeHttpGet, WorkloadContainerReadinessProbeHttpGetArgs

    HttpHeaders Dictionary<string, string>
    Path string
    Port int
    Scheme string
    HttpHeaders map[string]string
    Path string
    Port int
    Scheme string
    httpHeaders Map<String,String>
    path String
    port Integer
    scheme String
    httpHeaders {[key: string]: string}
    path string
    port number
    scheme string
    http_headers Mapping[str, str]
    path str
    port int
    scheme str
    httpHeaders Map<String>
    path String
    port Number
    scheme String

    WorkloadContainerReadinessProbeTcpSocket, WorkloadContainerReadinessProbeTcpSocketArgs

    placeholderAttribute Boolean
    port Integer

    WorkloadContainerVolume, WorkloadContainerVolumeArgs

    Path string
    File path added to workload pointing to the volume.
    Uri string
    URI of a volume hosted at Control Plane (Volume Set) or at a cloud provider (AWS, Azure, GCP).
    RecoveryPolicy string
    Only applicable to persistent volumes, this determines what Control Plane will do when creating a new workload replica if a corresponding volume exists. Available Values: retain, recycle. Default: retain. DEPRECATED - No longer being used.
    Path string
    File path added to workload pointing to the volume.
    Uri string
    URI of a volume hosted at Control Plane (Volume Set) or at a cloud provider (AWS, Azure, GCP).
    RecoveryPolicy string
    Only applicable to persistent volumes, this determines what Control Plane will do when creating a new workload replica if a corresponding volume exists. Available Values: retain, recycle. Default: retain. DEPRECATED - No longer being used.
    path String
    File path added to workload pointing to the volume.
    uri String
    URI of a volume hosted at Control Plane (Volume Set) or at a cloud provider (AWS, Azure, GCP).
    recoveryPolicy String
    Only applicable to persistent volumes, this determines what Control Plane will do when creating a new workload replica if a corresponding volume exists. Available Values: retain, recycle. Default: retain. DEPRECATED - No longer being used.
    path string
    File path added to workload pointing to the volume.
    uri string
    URI of a volume hosted at Control Plane (Volume Set) or at a cloud provider (AWS, Azure, GCP).
    recoveryPolicy string
    Only applicable to persistent volumes, this determines what Control Plane will do when creating a new workload replica if a corresponding volume exists. Available Values: retain, recycle. Default: retain. DEPRECATED - No longer being used.
    path str
    File path added to workload pointing to the volume.
    uri str
    URI of a volume hosted at Control Plane (Volume Set) or at a cloud provider (AWS, Azure, GCP).
    recovery_policy str
    Only applicable to persistent volumes, this determines what Control Plane will do when creating a new workload replica if a corresponding volume exists. Available Values: retain, recycle. Default: retain. DEPRECATED - No longer being used.
    path String
    File path added to workload pointing to the volume.
    uri String
    URI of a volume hosted at Control Plane (Volume Set) or at a cloud provider (AWS, Azure, GCP).
    recoveryPolicy String
    Only applicable to persistent volumes, this determines what Control Plane will do when creating a new workload replica if a corresponding volume exists. Available Values: retain, recycle. Default: retain. DEPRECATED - No longer being used.

    WorkloadFirewallSpec, WorkloadFirewallSpecArgs

    External Pulumiverse.Cpln.Inputs.WorkloadFirewallSpecExternal
    The external firewall is used to control inbound and outbound access to the workload for public-facing traffic.
    Internal Pulumiverse.Cpln.Inputs.WorkloadFirewallSpecInternal
    The internal firewall is used to control access between workloads.
    PlaceholderAttribute bool
    External WorkloadFirewallSpecExternal
    The external firewall is used to control inbound and outbound access to the workload for public-facing traffic.
    Internal WorkloadFirewallSpecInternal
    The internal firewall is used to control access between workloads.
    PlaceholderAttribute bool
    external WorkloadFirewallSpecExternal
    The external firewall is used to control inbound and outbound access to the workload for public-facing traffic.
    internal WorkloadFirewallSpecInternal
    The internal firewall is used to control access between workloads.
    placeholderAttribute Boolean
    external WorkloadFirewallSpecExternal
    The external firewall is used to control inbound and outbound access to the workload for public-facing traffic.
    internal WorkloadFirewallSpecInternal
    The internal firewall is used to control access between workloads.
    placeholderAttribute boolean
    external WorkloadFirewallSpecExternal
    The external firewall is used to control inbound and outbound access to the workload for public-facing traffic.
    internal WorkloadFirewallSpecInternal
    The internal firewall is used to control access between workloads.
    placeholder_attribute bool
    external Property Map
    The external firewall is used to control inbound and outbound access to the workload for public-facing traffic.
    internal Property Map
    The internal firewall is used to control access between workloads.
    placeholderAttribute Boolean

    WorkloadFirewallSpecExternal, WorkloadFirewallSpecExternalArgs

    InboundAllowCidrs List<string>
    The list of ipv4/ipv6 addresses or cidr blocks that are allowed to access this workload. No external access is allowed by default. Specify '0.0.0.0/0' to allow access to the public internet.
    OutboundAllowCidrs List<string>
    The list of ipv4/ipv6 addresses or cidr blocks that this workload is allowed reach. No outbound access is allowed by default. Specify '0.0.0.0/0' to allow outbound access to the public internet.
    OutboundAllowHostnames List<string>
    The list of public hostnames that this workload is allowed to reach. No outbound access is allowed by default. A wildcard * is allowed on the prefix of the hostname only, ex: *.amazonaws.com. Use outboundAllowCIDR to allow access to all external websites.
    OutboundAllowPorts List<Pulumiverse.Cpln.Inputs.WorkloadFirewallSpecExternalOutboundAllowPort>
    Allow outbound access to specific ports and protocols. When not specified, communication to address ranges in outboundAllowCIDR is allowed on all ports and communication to names in outboundAllowHostname is allowed on ports 80/443.
    InboundAllowCidrs []string
    The list of ipv4/ipv6 addresses or cidr blocks that are allowed to access this workload. No external access is allowed by default. Specify '0.0.0.0/0' to allow access to the public internet.
    OutboundAllowCidrs []string
    The list of ipv4/ipv6 addresses or cidr blocks that this workload is allowed reach. No outbound access is allowed by default. Specify '0.0.0.0/0' to allow outbound access to the public internet.
    OutboundAllowHostnames []string
    The list of public hostnames that this workload is allowed to reach. No outbound access is allowed by default. A wildcard * is allowed on the prefix of the hostname only, ex: *.amazonaws.com. Use outboundAllowCIDR to allow access to all external websites.
    OutboundAllowPorts []WorkloadFirewallSpecExternalOutboundAllowPort
    Allow outbound access to specific ports and protocols. When not specified, communication to address ranges in outboundAllowCIDR is allowed on all ports and communication to names in outboundAllowHostname is allowed on ports 80/443.
    inboundAllowCidrs List<String>
    The list of ipv4/ipv6 addresses or cidr blocks that are allowed to access this workload. No external access is allowed by default. Specify '0.0.0.0/0' to allow access to the public internet.
    outboundAllowCidrs List<String>
    The list of ipv4/ipv6 addresses or cidr blocks that this workload is allowed reach. No outbound access is allowed by default. Specify '0.0.0.0/0' to allow outbound access to the public internet.
    outboundAllowHostnames List<String>
    The list of public hostnames that this workload is allowed to reach. No outbound access is allowed by default. A wildcard * is allowed on the prefix of the hostname only, ex: *.amazonaws.com. Use outboundAllowCIDR to allow access to all external websites.
    outboundAllowPorts List<WorkloadFirewallSpecExternalOutboundAllowPort>
    Allow outbound access to specific ports and protocols. When not specified, communication to address ranges in outboundAllowCIDR is allowed on all ports and communication to names in outboundAllowHostname is allowed on ports 80/443.
    inboundAllowCidrs string[]
    The list of ipv4/ipv6 addresses or cidr blocks that are allowed to access this workload. No external access is allowed by default. Specify '0.0.0.0/0' to allow access to the public internet.
    outboundAllowCidrs string[]
    The list of ipv4/ipv6 addresses or cidr blocks that this workload is allowed reach. No outbound access is allowed by default. Specify '0.0.0.0/0' to allow outbound access to the public internet.
    outboundAllowHostnames string[]
    The list of public hostnames that this workload is allowed to reach. No outbound access is allowed by default. A wildcard * is allowed on the prefix of the hostname only, ex: *.amazonaws.com. Use outboundAllowCIDR to allow access to all external websites.
    outboundAllowPorts WorkloadFirewallSpecExternalOutboundAllowPort[]
    Allow outbound access to specific ports and protocols. When not specified, communication to address ranges in outboundAllowCIDR is allowed on all ports and communication to names in outboundAllowHostname is allowed on ports 80/443.
    inbound_allow_cidrs Sequence[str]
    The list of ipv4/ipv6 addresses or cidr blocks that are allowed to access this workload. No external access is allowed by default. Specify '0.0.0.0/0' to allow access to the public internet.
    outbound_allow_cidrs Sequence[str]
    The list of ipv4/ipv6 addresses or cidr blocks that this workload is allowed reach. No outbound access is allowed by default. Specify '0.0.0.0/0' to allow outbound access to the public internet.
    outbound_allow_hostnames Sequence[str]
    The list of public hostnames that this workload is allowed to reach. No outbound access is allowed by default. A wildcard * is allowed on the prefix of the hostname only, ex: *.amazonaws.com. Use outboundAllowCIDR to allow access to all external websites.
    outbound_allow_ports Sequence[WorkloadFirewallSpecExternalOutboundAllowPort]
    Allow outbound access to specific ports and protocols. When not specified, communication to address ranges in outboundAllowCIDR is allowed on all ports and communication to names in outboundAllowHostname is allowed on ports 80/443.
    inboundAllowCidrs List<String>
    The list of ipv4/ipv6 addresses or cidr blocks that are allowed to access this workload. No external access is allowed by default. Specify '0.0.0.0/0' to allow access to the public internet.
    outboundAllowCidrs List<String>
    The list of ipv4/ipv6 addresses or cidr blocks that this workload is allowed reach. No outbound access is allowed by default. Specify '0.0.0.0/0' to allow outbound access to the public internet.
    outboundAllowHostnames List<String>
    The list of public hostnames that this workload is allowed to reach. No outbound access is allowed by default. A wildcard * is allowed on the prefix of the hostname only, ex: *.amazonaws.com. Use outboundAllowCIDR to allow access to all external websites.
    outboundAllowPorts List<Property Map>
    Allow outbound access to specific ports and protocols. When not specified, communication to address ranges in outboundAllowCIDR is allowed on all ports and communication to names in outboundAllowHostname is allowed on ports 80/443.

    WorkloadFirewallSpecExternalOutboundAllowPort, WorkloadFirewallSpecExternalOutboundAllowPortArgs

    Number int
    Port number. Max: 65000
    Protocol string
    Either http, https or tcp. Default: tcp.
    Number int
    Port number. Max: 65000
    Protocol string
    Either http, https or tcp. Default: tcp.
    number Integer
    Port number. Max: 65000
    protocol String
    Either http, https or tcp. Default: tcp.
    number number
    Port number. Max: 65000
    protocol string
    Either http, https or tcp. Default: tcp.
    number int
    Port number. Max: 65000
    protocol str
    Either http, https or tcp. Default: tcp.
    number Number
    Port number. Max: 65000
    protocol String
    Either http, https or tcp. Default: tcp.

    WorkloadFirewallSpecInternal, WorkloadFirewallSpecInternalArgs

    InboundAllowType string
    Used to control the internal firewall configuration and mutual tls. Allowed Values: "none", "same-gvc", "same-org", "workload-list".
    InboundAllowWorkloads List<string>
    A list of specific workloads which are allowed to access this workload internally. This list is only used if the 'inboundAllowType' is set to 'workload-list'.
    InboundAllowType string
    Used to control the internal firewall configuration and mutual tls. Allowed Values: "none", "same-gvc", "same-org", "workload-list".
    InboundAllowWorkloads []string
    A list of specific workloads which are allowed to access this workload internally. This list is only used if the 'inboundAllowType' is set to 'workload-list'.
    inboundAllowType String
    Used to control the internal firewall configuration and mutual tls. Allowed Values: "none", "same-gvc", "same-org", "workload-list".
    inboundAllowWorkloads List<String>
    A list of specific workloads which are allowed to access this workload internally. This list is only used if the 'inboundAllowType' is set to 'workload-list'.
    inboundAllowType string
    Used to control the internal firewall configuration and mutual tls. Allowed Values: "none", "same-gvc", "same-org", "workload-list".
    inboundAllowWorkloads string[]
    A list of specific workloads which are allowed to access this workload internally. This list is only used if the 'inboundAllowType' is set to 'workload-list'.
    inbound_allow_type str
    Used to control the internal firewall configuration and mutual tls. Allowed Values: "none", "same-gvc", "same-org", "workload-list".
    inbound_allow_workloads Sequence[str]
    A list of specific workloads which are allowed to access this workload internally. This list is only used if the 'inboundAllowType' is set to 'workload-list'.
    inboundAllowType String
    Used to control the internal firewall configuration and mutual tls. Allowed Values: "none", "same-gvc", "same-org", "workload-list".
    inboundAllowWorkloads List<String>
    A list of specific workloads which are allowed to access this workload internally. This list is only used if the 'inboundAllowType' is set to 'workload-list'.

    WorkloadJob, WorkloadJobArgs

    Schedule string
    A standard cron schedule expression used to determine when your job should execute.
    ActiveDeadlineSeconds int
    The maximum number of seconds Control Plane will wait for the job to complete. If a job does not succeed or fail in the allotted time, Control Plane will stop the job, moving it into the Removed status.
    ConcurrencyPolicy string
    Either 'Forbid' or 'Replace'. This determines what Control Plane will do when the schedule requires a job to start, while a prior instance of the job is still running. Enum: [ Forbid, Replace ] Default: Forbid
    HistoryLimit int
    The maximum number of completed job instances to display. This should be an integer between 1 and 10. Default: 5
    RestartPolicy string
    Either 'OnFailure' or 'Never'. This determines what Control Plane will do when a job instance fails. Enum: [ OnFailure, Never ] Default: Never
    Schedule string
    A standard cron schedule expression used to determine when your job should execute.
    ActiveDeadlineSeconds int
    The maximum number of seconds Control Plane will wait for the job to complete. If a job does not succeed or fail in the allotted time, Control Plane will stop the job, moving it into the Removed status.
    ConcurrencyPolicy string
    Either 'Forbid' or 'Replace'. This determines what Control Plane will do when the schedule requires a job to start, while a prior instance of the job is still running. Enum: [ Forbid, Replace ] Default: Forbid
    HistoryLimit int
    The maximum number of completed job instances to display. This should be an integer between 1 and 10. Default: 5
    RestartPolicy string
    Either 'OnFailure' or 'Never'. This determines what Control Plane will do when a job instance fails. Enum: [ OnFailure, Never ] Default: Never
    schedule String
    A standard cron schedule expression used to determine when your job should execute.
    activeDeadlineSeconds Integer
    The maximum number of seconds Control Plane will wait for the job to complete. If a job does not succeed or fail in the allotted time, Control Plane will stop the job, moving it into the Removed status.
    concurrencyPolicy String
    Either 'Forbid' or 'Replace'. This determines what Control Plane will do when the schedule requires a job to start, while a prior instance of the job is still running. Enum: [ Forbid, Replace ] Default: Forbid
    historyLimit Integer
    The maximum number of completed job instances to display. This should be an integer between 1 and 10. Default: 5
    restartPolicy String
    Either 'OnFailure' or 'Never'. This determines what Control Plane will do when a job instance fails. Enum: [ OnFailure, Never ] Default: Never
    schedule string
    A standard cron schedule expression used to determine when your job should execute.
    activeDeadlineSeconds number
    The maximum number of seconds Control Plane will wait for the job to complete. If a job does not succeed or fail in the allotted time, Control Plane will stop the job, moving it into the Removed status.
    concurrencyPolicy string
    Either 'Forbid' or 'Replace'. This determines what Control Plane will do when the schedule requires a job to start, while a prior instance of the job is still running. Enum: [ Forbid, Replace ] Default: Forbid
    historyLimit number
    The maximum number of completed job instances to display. This should be an integer between 1 and 10. Default: 5
    restartPolicy string
    Either 'OnFailure' or 'Never'. This determines what Control Plane will do when a job instance fails. Enum: [ OnFailure, Never ] Default: Never
    schedule str
    A standard cron schedule expression used to determine when your job should execute.
    active_deadline_seconds int
    The maximum number of seconds Control Plane will wait for the job to complete. If a job does not succeed or fail in the allotted time, Control Plane will stop the job, moving it into the Removed status.
    concurrency_policy str
    Either 'Forbid' or 'Replace'. This determines what Control Plane will do when the schedule requires a job to start, while a prior instance of the job is still running. Enum: [ Forbid, Replace ] Default: Forbid
    history_limit int
    The maximum number of completed job instances to display. This should be an integer between 1 and 10. Default: 5
    restart_policy str
    Either 'OnFailure' or 'Never'. This determines what Control Plane will do when a job instance fails. Enum: [ OnFailure, Never ] Default: Never
    schedule String
    A standard cron schedule expression used to determine when your job should execute.
    activeDeadlineSeconds Number
    The maximum number of seconds Control Plane will wait for the job to complete. If a job does not succeed or fail in the allotted time, Control Plane will stop the job, moving it into the Removed status.
    concurrencyPolicy String
    Either 'Forbid' or 'Replace'. This determines what Control Plane will do when the schedule requires a job to start, while a prior instance of the job is still running. Enum: [ Forbid, Replace ] Default: Forbid
    historyLimit Number
    The maximum number of completed job instances to display. This should be an integer between 1 and 10. Default: 5
    restartPolicy String
    Either 'OnFailure' or 'Never'. This determines what Control Plane will do when a job instance fails. Enum: [ OnFailure, Never ] Default: Never

    WorkloadLoadBalancer, WorkloadLoadBalancerArgs

    WorkloadLoadBalancerDirect, WorkloadLoadBalancerDirectArgs

    WorkloadLoadBalancerDirectPort, WorkloadLoadBalancerDirectPortArgs

    ExternalPort int
    Protocol string
    ContainerPort int
    Scheme string
    Override the default https url scheme.
    ExternalPort int
    Protocol string
    ContainerPort int
    Scheme string
    Override the default https url scheme.
    externalPort Integer
    protocol String
    containerPort Integer
    scheme String
    Override the default https url scheme.
    externalPort number
    protocol string
    containerPort number
    scheme string
    Override the default https url scheme.
    external_port int
    protocol str
    container_port int
    scheme str
    Override the default https url scheme.
    externalPort Number
    protocol String
    containerPort Number
    scheme String
    Override the default https url scheme.

    WorkloadLoadBalancerGeoLocation, WorkloadLoadBalancerGeoLocationArgs

    Enabled bool
    When enabled, geo location headers will be included on inbound http requests. Existing headers will be replaced.
    Headers Pulumiverse.Cpln.Inputs.WorkloadLoadBalancerGeoLocationHeaders
    Enabled bool
    When enabled, geo location headers will be included on inbound http requests. Existing headers will be replaced.
    Headers WorkloadLoadBalancerGeoLocationHeaders
    enabled Boolean
    When enabled, geo location headers will be included on inbound http requests. Existing headers will be replaced.
    headers WorkloadLoadBalancerGeoLocationHeaders
    enabled boolean
    When enabled, geo location headers will be included on inbound http requests. Existing headers will be replaced.
    headers WorkloadLoadBalancerGeoLocationHeaders
    enabled bool
    When enabled, geo location headers will be included on inbound http requests. Existing headers will be replaced.
    headers WorkloadLoadBalancerGeoLocationHeaders
    enabled Boolean
    When enabled, geo location headers will be included on inbound http requests. Existing headers will be replaced.
    headers Property Map

    WorkloadLoadBalancerGeoLocationHeaders, WorkloadLoadBalancerGeoLocationHeadersArgs

    Asn string
    The geo asn header.
    City string
    The geo city header.
    Country string
    The geo country header.
    Region string
    The geo region header.
    Asn string
    The geo asn header.
    City string
    The geo city header.
    Country string
    The geo country header.
    Region string
    The geo region header.
    asn String
    The geo asn header.
    city String
    The geo city header.
    country String
    The geo country header.
    region String
    The geo region header.
    asn string
    The geo asn header.
    city string
    The geo city header.
    country string
    The geo country header.
    region string
    The geo region header.
    asn str
    The geo asn header.
    city str
    The geo city header.
    country str
    The geo country header.
    region str
    The geo region header.
    asn String
    The geo asn header.
    city String
    The geo city header.
    country String
    The geo country header.
    region String
    The geo region header.

    WorkloadLocalOption, WorkloadLocalOptionArgs

    Location string
    Valid only for local_options. Override options for a specific location.
    Autoscaling Pulumiverse.Cpln.Inputs.WorkloadLocalOptionAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    CapacityAi bool
    Capacity AI. Default: true.
    Debug bool
    Debug mode. Default: false
    Suspend bool
    Workload suspend. Default: false
    TimeoutSeconds int
    Timeout in seconds. Default: 5.
    Location string
    Valid only for local_options. Override options for a specific location.
    Autoscaling WorkloadLocalOptionAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    CapacityAi bool
    Capacity AI. Default: true.
    Debug bool
    Debug mode. Default: false
    Suspend bool
    Workload suspend. Default: false
    TimeoutSeconds int
    Timeout in seconds. Default: 5.
    location String
    Valid only for local_options. Override options for a specific location.
    autoscaling WorkloadLocalOptionAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    capacityAi Boolean
    Capacity AI. Default: true.
    debug Boolean
    Debug mode. Default: false
    suspend Boolean
    Workload suspend. Default: false
    timeoutSeconds Integer
    Timeout in seconds. Default: 5.
    location string
    Valid only for local_options. Override options for a specific location.
    autoscaling WorkloadLocalOptionAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    capacityAi boolean
    Capacity AI. Default: true.
    debug boolean
    Debug mode. Default: false
    suspend boolean
    Workload suspend. Default: false
    timeoutSeconds number
    Timeout in seconds. Default: 5.
    location str
    Valid only for local_options. Override options for a specific location.
    autoscaling WorkloadLocalOptionAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    capacity_ai bool
    Capacity AI. Default: true.
    debug bool
    Debug mode. Default: false
    suspend bool
    Workload suspend. Default: false
    timeout_seconds int
    Timeout in seconds. Default: 5.
    location String
    Valid only for local_options. Override options for a specific location.
    autoscaling Property Map
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    capacityAi Boolean
    Capacity AI. Default: true.
    debug Boolean
    Debug mode. Default: false
    suspend Boolean
    Workload suspend. Default: false
    timeoutSeconds Number
    Timeout in seconds. Default: 5.

    WorkloadLocalOptionAutoscaling, WorkloadLocalOptionAutoscalingArgs

    MaxConcurrency int
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    MaxScale int
    The maximum allowed number of replicas. Min: 0. Default 5.
    Metric string
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    MetricPercentile string
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    MinScale int
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    Multis List<Pulumiverse.Cpln.Inputs.WorkloadLocalOptionAutoscalingMulti>
    ScaleToZeroDelay int
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    Target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    MaxConcurrency int
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    MaxScale int
    The maximum allowed number of replicas. Min: 0. Default 5.
    Metric string
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    MetricPercentile string
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    MinScale int
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    Multis []WorkloadLocalOptionAutoscalingMulti
    ScaleToZeroDelay int
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    Target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    maxConcurrency Integer
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    maxScale Integer
    The maximum allowed number of replicas. Min: 0. Default 5.
    metric String
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    metricPercentile String
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    minScale Integer
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    multis List<WorkloadLocalOptionAutoscalingMulti>
    scaleToZeroDelay Integer
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    target Integer
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    maxConcurrency number
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    maxScale number
    The maximum allowed number of replicas. Min: 0. Default 5.
    metric string
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    metricPercentile string
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    minScale number
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    multis WorkloadLocalOptionAutoscalingMulti[]
    scaleToZeroDelay number
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    target number
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    max_concurrency int
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    max_scale int
    The maximum allowed number of replicas. Min: 0. Default 5.
    metric str
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    metric_percentile str
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    min_scale int
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    multis Sequence[WorkloadLocalOptionAutoscalingMulti]
    scale_to_zero_delay int
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    maxConcurrency Number
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    maxScale Number
    The maximum allowed number of replicas. Min: 0. Default 5.
    metric String
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    metricPercentile String
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    minScale Number
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    multis List<Property Map>
    scaleToZeroDelay Number
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    target Number
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.

    WorkloadLocalOptionAutoscalingMulti, WorkloadLocalOptionAutoscalingMultiArgs

    Metric string
    Valid values: cpu or memory.
    Target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    Metric string
    Valid values: cpu or memory.
    Target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    metric String
    Valid values: cpu or memory.
    target Integer
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    metric string
    Valid values: cpu or memory.
    target number
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    metric str
    Valid values: cpu or memory.
    target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    metric String
    Valid values: cpu or memory.
    target Number
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.

    WorkloadOptions, WorkloadOptionsArgs

    Autoscaling Pulumiverse.Cpln.Inputs.WorkloadOptionsAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    CapacityAi bool
    Capacity AI. Default: true.
    Debug bool
    Debug mode. Default: false
    Suspend bool
    Workload suspend. Default: false
    TimeoutSeconds int
    Timeout in seconds. Default: 5.
    Autoscaling WorkloadOptionsAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    CapacityAi bool
    Capacity AI. Default: true.
    Debug bool
    Debug mode. Default: false
    Suspend bool
    Workload suspend. Default: false
    TimeoutSeconds int
    Timeout in seconds. Default: 5.
    autoscaling WorkloadOptionsAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    capacityAi Boolean
    Capacity AI. Default: true.
    debug Boolean
    Debug mode. Default: false
    suspend Boolean
    Workload suspend. Default: false
    timeoutSeconds Integer
    Timeout in seconds. Default: 5.
    autoscaling WorkloadOptionsAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    capacityAi boolean
    Capacity AI. Default: true.
    debug boolean
    Debug mode. Default: false
    suspend boolean
    Workload suspend. Default: false
    timeoutSeconds number
    Timeout in seconds. Default: 5.
    autoscaling WorkloadOptionsAutoscaling
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    capacity_ai bool
    Capacity AI. Default: true.
    debug bool
    Debug mode. Default: false
    suspend bool
    Workload suspend. Default: false
    timeout_seconds int
    Timeout in seconds. Default: 5.
    autoscaling Property Map
    Auto-scaling adjusts horizontal scaling based on a set strategy, target value, and possibly a metric percentile.
    capacityAi Boolean
    Capacity AI. Default: true.
    debug Boolean
    Debug mode. Default: false
    suspend Boolean
    Workload suspend. Default: false
    timeoutSeconds Number
    Timeout in seconds. Default: 5.

    WorkloadOptionsAutoscaling, WorkloadOptionsAutoscalingArgs

    MaxConcurrency int
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    MaxScale int
    The maximum allowed number of replicas. Min: 0. Default 5.
    Metric string
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    MetricPercentile string
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    MinScale int
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    Multis List<Pulumiverse.Cpln.Inputs.WorkloadOptionsAutoscalingMulti>
    ScaleToZeroDelay int
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    Target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    MaxConcurrency int
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    MaxScale int
    The maximum allowed number of replicas. Min: 0. Default 5.
    Metric string
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    MetricPercentile string
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    MinScale int
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    Multis []WorkloadOptionsAutoscalingMulti
    ScaleToZeroDelay int
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    Target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    maxConcurrency Integer
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    maxScale Integer
    The maximum allowed number of replicas. Min: 0. Default 5.
    metric String
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    metricPercentile String
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    minScale Integer
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    multis List<WorkloadOptionsAutoscalingMulti>
    scaleToZeroDelay Integer
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    target Integer
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    maxConcurrency number
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    maxScale number
    The maximum allowed number of replicas. Min: 0. Default 5.
    metric string
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    metricPercentile string
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    minScale number
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    multis WorkloadOptionsAutoscalingMulti[]
    scaleToZeroDelay number
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    target number
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    max_concurrency int
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    max_scale int
    The maximum allowed number of replicas. Min: 0. Default 5.
    metric str
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    metric_percentile str
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    min_scale int
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    multis Sequence[WorkloadOptionsAutoscalingMulti]
    scale_to_zero_delay int
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    maxConcurrency Number
    A hard maximum for the number of concurrent requests allowed to a replica. If no replicas are available to fulfill the request then it will be queued until a replica with capacity is available and delivered as soon as one is available again. Capacity can be available from requests completing or when a new replica is available from scale out.Min: 0. Max: 1000. Default 0.
    maxScale Number
    The maximum allowed number of replicas. Min: 0. Default 5.
    metric String
    Valid values: disabled, concurrency, cpu, memory, latency, or rps.
    metricPercentile String
    For metrics represented as a distribution (e.g. latency) a percentile within the distribution must be chosen as the target.
    minScale Number
    The minimum allowed number of replicas. Control Plane can scale the workload down to 0 when there is no traffic and scale up immediately to fulfill new requests. Min: 0. Max: max_scale. Default 1.
    multis List<Property Map>
    scaleToZeroDelay Number
    The amount of time (in seconds) with no requests received before a workload is scaled to 0. Min: 30. Max: 3600. Default: 300.
    target Number
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.

    WorkloadOptionsAutoscalingMulti, WorkloadOptionsAutoscalingMultiArgs

    Metric string
    Valid values: cpu or memory.
    Target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    Metric string
    Valid values: cpu or memory.
    Target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    metric String
    Valid values: cpu or memory.
    target Integer
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    metric string
    Valid values: cpu or memory.
    target number
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    metric str
    Valid values: cpu or memory.
    target int
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.
    metric String
    Valid values: cpu or memory.
    target Number
    Control Plane will scale the number of replicas for this deployment up/down in order to be as close as possible to the target metric across all replicas of a deployment. Min: 1. Max: 20000. Default: 95.

    WorkloadRolloutOptions, WorkloadRolloutOptionsArgs

    MaxSurgeReplicas string
    The number of replicas that can be created above the desired amount of replicas during an update.
    MaxUnavailableReplicas string
    The number of replicas that can be unavailable during the update process.
    MinReadySeconds int
    The minimum number of seconds a container must run without crashing to be considered available
    ScalingPolicy string
    The strategies used to update applications and services deployed. Valid values: OrderedReady (Updates workloads in a rolling fashion, taking down old ones and bringing up new ones incrementally, ensuring that the service remains available during the update.), Parallel (Causes all pods affected by a scaling operation to be created or destroyed simultaneously. This does not affect update operations.). Default: OrderedReady.
    MaxSurgeReplicas string
    The number of replicas that can be created above the desired amount of replicas during an update.
    MaxUnavailableReplicas string
    The number of replicas that can be unavailable during the update process.
    MinReadySeconds int
    The minimum number of seconds a container must run without crashing to be considered available
    ScalingPolicy string
    The strategies used to update applications and services deployed. Valid values: OrderedReady (Updates workloads in a rolling fashion, taking down old ones and bringing up new ones incrementally, ensuring that the service remains available during the update.), Parallel (Causes all pods affected by a scaling operation to be created or destroyed simultaneously. This does not affect update operations.). Default: OrderedReady.
    maxSurgeReplicas String
    The number of replicas that can be created above the desired amount of replicas during an update.
    maxUnavailableReplicas String
    The number of replicas that can be unavailable during the update process.
    minReadySeconds Integer
    The minimum number of seconds a container must run without crashing to be considered available
    scalingPolicy String
    The strategies used to update applications and services deployed. Valid values: OrderedReady (Updates workloads in a rolling fashion, taking down old ones and bringing up new ones incrementally, ensuring that the service remains available during the update.), Parallel (Causes all pods affected by a scaling operation to be created or destroyed simultaneously. This does not affect update operations.). Default: OrderedReady.
    maxSurgeReplicas string
    The number of replicas that can be created above the desired amount of replicas during an update.
    maxUnavailableReplicas string
    The number of replicas that can be unavailable during the update process.
    minReadySeconds number
    The minimum number of seconds a container must run without crashing to be considered available
    scalingPolicy string
    The strategies used to update applications and services deployed. Valid values: OrderedReady (Updates workloads in a rolling fashion, taking down old ones and bringing up new ones incrementally, ensuring that the service remains available during the update.), Parallel (Causes all pods affected by a scaling operation to be created or destroyed simultaneously. This does not affect update operations.). Default: OrderedReady.
    max_surge_replicas str
    The number of replicas that can be created above the desired amount of replicas during an update.
    max_unavailable_replicas str
    The number of replicas that can be unavailable during the update process.
    min_ready_seconds int
    The minimum number of seconds a container must run without crashing to be considered available
    scaling_policy str
    The strategies used to update applications and services deployed. Valid values: OrderedReady (Updates workloads in a rolling fashion, taking down old ones and bringing up new ones incrementally, ensuring that the service remains available during the update.), Parallel (Causes all pods affected by a scaling operation to be created or destroyed simultaneously. This does not affect update operations.). Default: OrderedReady.
    maxSurgeReplicas String
    The number of replicas that can be created above the desired amount of replicas during an update.
    maxUnavailableReplicas String
    The number of replicas that can be unavailable during the update process.
    minReadySeconds Number
    The minimum number of seconds a container must run without crashing to be considered available
    scalingPolicy String
    The strategies used to update applications and services deployed. Valid values: OrderedReady (Updates workloads in a rolling fashion, taking down old ones and bringing up new ones incrementally, ensuring that the service remains available during the update.), Parallel (Causes all pods affected by a scaling operation to be created or destroyed simultaneously. This does not affect update operations.). Default: OrderedReady.

    WorkloadSecurityOptions, WorkloadSecurityOptionsArgs

    FileSystemGroupId int
    The group id assigned to any mounted volume.
    PlaceholderAttribute bool
    FileSystemGroupId int
    The group id assigned to any mounted volume.
    PlaceholderAttribute bool
    fileSystemGroupId Integer
    The group id assigned to any mounted volume.
    placeholderAttribute Boolean
    fileSystemGroupId number
    The group id assigned to any mounted volume.
    placeholderAttribute boolean
    file_system_group_id int
    The group id assigned to any mounted volume.
    placeholder_attribute bool
    fileSystemGroupId Number
    The group id assigned to any mounted volume.
    placeholderAttribute Boolean

    WorkloadSidecar, WorkloadSidecarArgs

    Envoy string
    Envoy string
    envoy String
    envoy string
    envoy str
    envoy String

    WorkloadStatus, WorkloadStatusArgs

    CanonicalEndpoint string
    Canonical endpoint for the workload.
    CurrentReplicaCount int
    Current amount of replicas deployed.
    Endpoint string
    Endpoint for the workload.
    HealthChecks List<Pulumiverse.Cpln.Inputs.WorkloadStatusHealthCheck>
    Current health status.
    InternalName string
    Internal hostname for the workload. Used for service-to-service requests.
    LoadBalancers List<Pulumiverse.Cpln.Inputs.WorkloadStatusLoadBalancer>
    ParentId string
    ID of the parent object.
    ResolvedImages List<Pulumiverse.Cpln.Inputs.WorkloadStatusResolvedImage>
    Resolved images for workloads with dynamic tags enabled.
    CanonicalEndpoint string
    Canonical endpoint for the workload.
    CurrentReplicaCount int
    Current amount of replicas deployed.
    Endpoint string
    Endpoint for the workload.
    HealthChecks []WorkloadStatusHealthCheck
    Current health status.
    InternalName string
    Internal hostname for the workload. Used for service-to-service requests.
    LoadBalancers []WorkloadStatusLoadBalancer
    ParentId string
    ID of the parent object.
    ResolvedImages []WorkloadStatusResolvedImage
    Resolved images for workloads with dynamic tags enabled.
    canonicalEndpoint String
    Canonical endpoint for the workload.
    currentReplicaCount Integer
    Current amount of replicas deployed.
    endpoint String
    Endpoint for the workload.
    healthChecks List<WorkloadStatusHealthCheck>
    Current health status.
    internalName String
    Internal hostname for the workload. Used for service-to-service requests.
    loadBalancers List<WorkloadStatusLoadBalancer>
    parentId String
    ID of the parent object.
    resolvedImages List<WorkloadStatusResolvedImage>
    Resolved images for workloads with dynamic tags enabled.
    canonicalEndpoint string
    Canonical endpoint for the workload.
    currentReplicaCount number
    Current amount of replicas deployed.
    endpoint string
    Endpoint for the workload.
    healthChecks WorkloadStatusHealthCheck[]
    Current health status.
    internalName string
    Internal hostname for the workload. Used for service-to-service requests.
    loadBalancers WorkloadStatusLoadBalancer[]
    parentId string
    ID of the parent object.
    resolvedImages WorkloadStatusResolvedImage[]
    Resolved images for workloads with dynamic tags enabled.
    canonical_endpoint str
    Canonical endpoint for the workload.
    current_replica_count int
    Current amount of replicas deployed.
    endpoint str
    Endpoint for the workload.
    health_checks Sequence[WorkloadStatusHealthCheck]
    Current health status.
    internal_name str
    Internal hostname for the workload. Used for service-to-service requests.
    load_balancers Sequence[WorkloadStatusLoadBalancer]
    parent_id str
    ID of the parent object.
    resolved_images Sequence[WorkloadStatusResolvedImage]
    Resolved images for workloads with dynamic tags enabled.
    canonicalEndpoint String
    Canonical endpoint for the workload.
    currentReplicaCount Number
    Current amount of replicas deployed.
    endpoint String
    Endpoint for the workload.
    healthChecks List<Property Map>
    Current health status.
    internalName String
    Internal hostname for the workload. Used for service-to-service requests.
    loadBalancers List<Property Map>
    parentId String
    ID of the parent object.
    resolvedImages List<Property Map>
    Resolved images for workloads with dynamic tags enabled.

    WorkloadStatusHealthCheck, WorkloadStatusHealthCheckArgs

    Active bool
    Active boolean for the associated workload.
    Code int
    Current output code for the associated workload.
    Failures int
    Failure integer for the associated workload.
    LastChecked string
    Timestamp in UTC of the last health check.
    Message string
    Current health status for the associated workload.
    Success bool
    Success boolean for the associated workload.
    Successes int
    Success integer for the associated workload.
    Active bool
    Active boolean for the associated workload.
    Code int
    Current output code for the associated workload.
    Failures int
    Failure integer for the associated workload.
    LastChecked string
    Timestamp in UTC of the last health check.
    Message string
    Current health status for the associated workload.
    Success bool
    Success boolean for the associated workload.
    Successes int
    Success integer for the associated workload.
    active Boolean
    Active boolean for the associated workload.
    code Integer
    Current output code for the associated workload.
    failures Integer
    Failure integer for the associated workload.
    lastChecked String
    Timestamp in UTC of the last health check.
    message String
    Current health status for the associated workload.
    success Boolean
    Success boolean for the associated workload.
    successes Integer
    Success integer for the associated workload.
    active boolean
    Active boolean for the associated workload.
    code number
    Current output code for the associated workload.
    failures number
    Failure integer for the associated workload.
    lastChecked string
    Timestamp in UTC of the last health check.
    message string
    Current health status for the associated workload.
    success boolean
    Success boolean for the associated workload.
    successes number
    Success integer for the associated workload.
    active bool
    Active boolean for the associated workload.
    code int
    Current output code for the associated workload.
    failures int
    Failure integer for the associated workload.
    last_checked str
    Timestamp in UTC of the last health check.
    message str
    Current health status for the associated workload.
    success bool
    Success boolean for the associated workload.
    successes int
    Success integer for the associated workload.
    active Boolean
    Active boolean for the associated workload.
    code Number
    Current output code for the associated workload.
    failures Number
    Failure integer for the associated workload.
    lastChecked String
    Timestamp in UTC of the last health check.
    message String
    Current health status for the associated workload.
    success Boolean
    Success boolean for the associated workload.
    successes Number
    Success integer for the associated workload.

    WorkloadStatusLoadBalancer, WorkloadStatusLoadBalancerArgs

    Origin string
    Url string
    Origin string
    Url string
    origin String
    url String
    origin string
    url string
    origin str
    url str
    origin String
    url String

    WorkloadStatusResolvedImage, WorkloadStatusResolvedImageArgs

    Images List<Pulumiverse.Cpln.Inputs.WorkloadStatusResolvedImageImage>
    A list of images that were resolved.
    ResolvedAt string
    UTC Time when the images were resolved.
    ResolvedForVersion int
    Workload version the images were resolved for.
    Images []WorkloadStatusResolvedImageImage
    A list of images that were resolved.
    ResolvedAt string
    UTC Time when the images were resolved.
    ResolvedForVersion int
    Workload version the images were resolved for.
    images List<WorkloadStatusResolvedImageImage>
    A list of images that were resolved.
    resolvedAt String
    UTC Time when the images were resolved.
    resolvedForVersion Integer
    Workload version the images were resolved for.
    images WorkloadStatusResolvedImageImage[]
    A list of images that were resolved.
    resolvedAt string
    UTC Time when the images were resolved.
    resolvedForVersion number
    Workload version the images were resolved for.
    images Sequence[WorkloadStatusResolvedImageImage]
    A list of images that were resolved.
    resolved_at str
    UTC Time when the images were resolved.
    resolved_for_version int
    Workload version the images were resolved for.
    images List<Property Map>
    A list of images that were resolved.
    resolvedAt String
    UTC Time when the images were resolved.
    resolvedForVersion Number
    Workload version the images were resolved for.

    WorkloadStatusResolvedImageImage, WorkloadStatusResolvedImageImageArgs

    Digest string
    A unique SHA256 hash value that identifies a specific image content. This digest serves as a fingerprint of the image's content, ensuring the image you pull or run is exactly what you expect, without any modifications or corruptions.
    Manifests List<Pulumiverse.Cpln.Inputs.WorkloadStatusResolvedImageImageManifest>
    Digest string
    A unique SHA256 hash value that identifies a specific image content. This digest serves as a fingerprint of the image's content, ensuring the image you pull or run is exactly what you expect, without any modifications or corruptions.
    Manifests []WorkloadStatusResolvedImageImageManifest
    digest String
    A unique SHA256 hash value that identifies a specific image content. This digest serves as a fingerprint of the image's content, ensuring the image you pull or run is exactly what you expect, without any modifications or corruptions.
    manifests List<WorkloadStatusResolvedImageImageManifest>
    digest string
    A unique SHA256 hash value that identifies a specific image content. This digest serves as a fingerprint of the image's content, ensuring the image you pull or run is exactly what you expect, without any modifications or corruptions.
    manifests WorkloadStatusResolvedImageImageManifest[]
    digest str
    A unique SHA256 hash value that identifies a specific image content. This digest serves as a fingerprint of the image's content, ensuring the image you pull or run is exactly what you expect, without any modifications or corruptions.
    manifests Sequence[WorkloadStatusResolvedImageImageManifest]
    digest String
    A unique SHA256 hash value that identifies a specific image content. This digest serves as a fingerprint of the image's content, ensuring the image you pull or run is exactly what you expect, without any modifications or corruptions.
    manifests List<Property Map>

    WorkloadStatusResolvedImageImageManifest, WorkloadStatusResolvedImageImageManifestArgs

    Digest string
    A SHA256 hash that uniquely identifies the specific image manifest.
    Image string
    The name and tag of the resolved image.
    MediaType string
    The MIME type used in the Docker Registry HTTP API to specify the format of the data being sent or received. Docker uses media types to distinguish between different kinds of JSON objects and binary data formats within the registry protocol, enabling the Docker client and registry to understand and process different components of Docker images correctly.
    Platform Dictionary<string, string>
    Key-value map of strings. The combination of the operating system and architecture for which the image is built.
    Digest string
    A SHA256 hash that uniquely identifies the specific image manifest.
    Image string
    The name and tag of the resolved image.
    MediaType string
    The MIME type used in the Docker Registry HTTP API to specify the format of the data being sent or received. Docker uses media types to distinguish between different kinds of JSON objects and binary data formats within the registry protocol, enabling the Docker client and registry to understand and process different components of Docker images correctly.
    Platform map[string]string
    Key-value map of strings. The combination of the operating system and architecture for which the image is built.
    digest String
    A SHA256 hash that uniquely identifies the specific image manifest.
    image String
    The name and tag of the resolved image.
    mediaType String
    The MIME type used in the Docker Registry HTTP API to specify the format of the data being sent or received. Docker uses media types to distinguish between different kinds of JSON objects and binary data formats within the registry protocol, enabling the Docker client and registry to understand and process different components of Docker images correctly.
    platform Map<String,String>
    Key-value map of strings. The combination of the operating system and architecture for which the image is built.
    digest string
    A SHA256 hash that uniquely identifies the specific image manifest.
    image string
    The name and tag of the resolved image.
    mediaType string
    The MIME type used in the Docker Registry HTTP API to specify the format of the data being sent or received. Docker uses media types to distinguish between different kinds of JSON objects and binary data formats within the registry protocol, enabling the Docker client and registry to understand and process different components of Docker images correctly.
    platform {[key: string]: string}
    Key-value map of strings. The combination of the operating system and architecture for which the image is built.
    digest str
    A SHA256 hash that uniquely identifies the specific image manifest.
    image str
    The name and tag of the resolved image.
    media_type str
    The MIME type used in the Docker Registry HTTP API to specify the format of the data being sent or received. Docker uses media types to distinguish between different kinds of JSON objects and binary data formats within the registry protocol, enabling the Docker client and registry to understand and process different components of Docker images correctly.
    platform Mapping[str, str]
    Key-value map of strings. The combination of the operating system and architecture for which the image is built.
    digest String
    A SHA256 hash that uniquely identifies the specific image manifest.
    image String
    The name and tag of the resolved image.
    mediaType String
    The MIME type used in the Docker Registry HTTP API to specify the format of the data being sent or received. Docker uses media types to distinguish between different kinds of JSON objects and binary data formats within the registry protocol, enabling the Docker client and registry to understand and process different components of Docker images correctly.
    platform Map<String>
    Key-value map of strings. The combination of the operating system and architecture for which the image is built.

    Package Details

    Repository
    cpln pulumiverse/pulumi-cpln
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the cpln Terraform Provider.
    cpln logo
    Control Plane v0.0.55 published on Thursday, Mar 27, 2025 by pulumiverse