Spotinst v3.94.0 published on Friday, Sep 20, 2024 by Pulumi
spotinst.HealthCheck
Explore with Pulumi AI
Provides a Spotinst Health Check resource.
Example Usage
resource "spotinst_health_check" "http_check" {
name = "sample_health_check"
resource_id = "sig-123"
check {
protocol = "http"
endpoint = "http://endpoint.com"
port = 1337
interval = 10
timeout = 10
healthy = 1
unhealthy = 1
}
proxy_address = "http://proxy.com"
proxy_port = 80
}
Create HealthCheck Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new HealthCheck(name: string, args: HealthCheckArgs, opts?: CustomResourceOptions);
@overload
def HealthCheck(resource_name: str,
args: HealthCheckArgs,
opts: Optional[ResourceOptions] = None)
@overload
def HealthCheck(resource_name: str,
opts: Optional[ResourceOptions] = None,
proxy_address: Optional[str] = None,
resource_id: Optional[str] = None,
check: Optional[HealthCheckCheckArgs] = None,
name: Optional[str] = None,
proxy_port: Optional[int] = None)
func NewHealthCheck(ctx *Context, name string, args HealthCheckArgs, opts ...ResourceOption) (*HealthCheck, error)
public HealthCheck(string name, HealthCheckArgs args, CustomResourceOptions? opts = null)
public HealthCheck(String name, HealthCheckArgs args)
public HealthCheck(String name, HealthCheckArgs args, CustomResourceOptions options)
type: spotinst:HealthCheck
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 HealthCheckArgs
- 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 HealthCheckArgs
- 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 HealthCheckArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args HealthCheckArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args HealthCheckArgs
- 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 healthCheckResource = new SpotInst.HealthCheck("healthCheckResource", new()
{
ProxyAddress = "string",
ResourceId = "string",
Check = new SpotInst.Inputs.HealthCheckCheckArgs
{
Healthy = 0,
Interval = 0,
Port = 0,
Protocol = "string",
Unhealthy = 0,
EndPoint = "string",
Endpoint = "string",
TimeOut = 0,
Timeout = 0,
},
Name = "string",
ProxyPort = 0,
});
example, err := spotinst.NewHealthCheck(ctx, "healthCheckResource", &spotinst.HealthCheckArgs{
ProxyAddress: pulumi.String("string"),
ResourceId: pulumi.String("string"),
Check: &spotinst.HealthCheckCheckArgs{
Healthy: pulumi.Int(0),
Interval: pulumi.Int(0),
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
Unhealthy: pulumi.Int(0),
EndPoint: pulumi.String("string"),
Endpoint: pulumi.String("string"),
TimeOut: pulumi.Int(0),
Timeout: pulumi.Int(0),
},
Name: pulumi.String("string"),
ProxyPort: pulumi.Int(0),
})
var healthCheckResource = new HealthCheck("healthCheckResource", HealthCheckArgs.builder()
.proxyAddress("string")
.resourceId("string")
.check(HealthCheckCheckArgs.builder()
.healthy(0)
.interval(0)
.port(0)
.protocol("string")
.unhealthy(0)
.endPoint("string")
.endpoint("string")
.timeOut(0)
.timeout(0)
.build())
.name("string")
.proxyPort(0)
.build());
health_check_resource = spotinst.HealthCheck("healthCheckResource",
proxy_address="string",
resource_id="string",
check=spotinst.HealthCheckCheckArgs(
healthy=0,
interval=0,
port=0,
protocol="string",
unhealthy=0,
end_point="string",
endpoint="string",
time_out=0,
timeout=0,
),
name="string",
proxy_port=0)
const healthCheckResource = new spotinst.HealthCheck("healthCheckResource", {
proxyAddress: "string",
resourceId: "string",
check: {
healthy: 0,
interval: 0,
port: 0,
protocol: "string",
unhealthy: 0,
endPoint: "string",
endpoint: "string",
timeOut: 0,
timeout: 0,
},
name: "string",
proxyPort: 0,
});
type: spotinst:HealthCheck
properties:
check:
endPoint: string
endpoint: string
healthy: 0
interval: 0
port: 0
protocol: string
timeOut: 0
timeout: 0
unhealthy: 0
name: string
proxyAddress: string
proxyPort: 0
resourceId: string
HealthCheck Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The HealthCheck resource accepts the following input properties:
- Proxy
Address string - Resource
Id string - The ID of the resource to check.
- Check
Pulumi.
Spot Inst. Inputs. Health Check Check - Describes the check to execute.
- Name string
- The name of the health check.
- Proxy
Port int
- Proxy
Address string - Resource
Id string - The ID of the resource to check.
- Check
Health
Check Check Args - Describes the check to execute.
- Name string
- The name of the health check.
- Proxy
Port int
- proxy
Address String - resource
Id String - The ID of the resource to check.
- check
Health
Check Check - Describes the check to execute.
- name String
- The name of the health check.
- proxy
Port Integer
- proxy
Address string - resource
Id string - The ID of the resource to check.
- check
Health
Check Check - Describes the check to execute.
- name string
- The name of the health check.
- proxy
Port number
- proxy_
address str - resource_
id str - The ID of the resource to check.
- check
Health
Check Check Args - Describes the check to execute.
- name str
- The name of the health check.
- proxy_
port int
- proxy
Address String - resource
Id String - The ID of the resource to check.
- check Property Map
- Describes the check to execute.
- name String
- The name of the health check.
- proxy
Port Number
Outputs
All input properties are implicitly available as output properties. Additionally, the HealthCheck resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing HealthCheck Resource
Get an existing HealthCheck 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?: HealthCheckState, opts?: CustomResourceOptions): HealthCheck
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
check: Optional[HealthCheckCheckArgs] = None,
name: Optional[str] = None,
proxy_address: Optional[str] = None,
proxy_port: Optional[int] = None,
resource_id: Optional[str] = None) -> HealthCheck
func GetHealthCheck(ctx *Context, name string, id IDInput, state *HealthCheckState, opts ...ResourceOption) (*HealthCheck, error)
public static HealthCheck Get(string name, Input<string> id, HealthCheckState? state, CustomResourceOptions? opts = null)
public static HealthCheck get(String name, Output<String> id, HealthCheckState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Check
Pulumi.
Spot Inst. Inputs. Health Check Check - Describes the check to execute.
- Name string
- The name of the health check.
- Proxy
Address string - Proxy
Port int - Resource
Id string - The ID of the resource to check.
- Check
Health
Check Check Args - Describes the check to execute.
- Name string
- The name of the health check.
- Proxy
Address string - Proxy
Port int - Resource
Id string - The ID of the resource to check.
- check
Health
Check Check - Describes the check to execute.
- name String
- The name of the health check.
- proxy
Address String - proxy
Port Integer - resource
Id String - The ID of the resource to check.
- check
Health
Check Check - Describes the check to execute.
- name string
- The name of the health check.
- proxy
Address string - proxy
Port number - resource
Id string - The ID of the resource to check.
- check
Health
Check Check Args - Describes the check to execute.
- name str
- The name of the health check.
- proxy_
address str - proxy_
port int - resource_
id str - The ID of the resource to check.
- check Property Map
- Describes the check to execute.
- name String
- The name of the health check.
- proxy
Address String - proxy
Port Number - resource
Id String - The ID of the resource to check.
Supporting Types
HealthCheckCheck, HealthCheckCheckArgs
- Healthy int
- The number of consecutive successful health checks that must occur before declaring an instance healthy.
- Interval int
- The amount of time (in seconds) between each health check (minimum: 10).
- Port int
- The port to use to connect with the instance.
- Protocol string
- The protocol to use to connect with the instance. Valid values: http, https.
- Unhealthy int
- The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
- End
Point string - Endpoint string
- The destination for the request.
- Time
Out int - Timeout int
- the amount of time (in seconds) to wait when receiving a response from the health check.
- Healthy int
- The number of consecutive successful health checks that must occur before declaring an instance healthy.
- Interval int
- The amount of time (in seconds) between each health check (minimum: 10).
- Port int
- The port to use to connect with the instance.
- Protocol string
- The protocol to use to connect with the instance. Valid values: http, https.
- Unhealthy int
- The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
- End
Point string - Endpoint string
- The destination for the request.
- Time
Out int - Timeout int
- the amount of time (in seconds) to wait when receiving a response from the health check.
- healthy Integer
- The number of consecutive successful health checks that must occur before declaring an instance healthy.
- interval Integer
- The amount of time (in seconds) between each health check (minimum: 10).
- port Integer
- The port to use to connect with the instance.
- protocol String
- The protocol to use to connect with the instance. Valid values: http, https.
- unhealthy Integer
- The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
- end
Point String - endpoint String
- The destination for the request.
- time
Out Integer - timeout Integer
- the amount of time (in seconds) to wait when receiving a response from the health check.
- healthy number
- The number of consecutive successful health checks that must occur before declaring an instance healthy.
- interval number
- The amount of time (in seconds) between each health check (minimum: 10).
- port number
- The port to use to connect with the instance.
- protocol string
- The protocol to use to connect with the instance. Valid values: http, https.
- unhealthy number
- The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
- end
Point string - endpoint string
- The destination for the request.
- time
Out number - timeout number
- the amount of time (in seconds) to wait when receiving a response from the health check.
- healthy int
- The number of consecutive successful health checks that must occur before declaring an instance healthy.
- interval int
- The amount of time (in seconds) between each health check (minimum: 10).
- port int
- The port to use to connect with the instance.
- protocol str
- The protocol to use to connect with the instance. Valid values: http, https.
- unhealthy int
- The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
- end_
point str - endpoint str
- The destination for the request.
- time_
out int - timeout int
- the amount of time (in seconds) to wait when receiving a response from the health check.
- healthy Number
- The number of consecutive successful health checks that must occur before declaring an instance healthy.
- interval Number
- The amount of time (in seconds) between each health check (minimum: 10).
- port Number
- The port to use to connect with the instance.
- protocol String
- The protocol to use to connect with the instance. Valid values: http, https.
- unhealthy Number
- The number of consecutive failed health checks that must occur before declaring an instance unhealthy.
- end
Point String - endpoint String
- The destination for the request.
- time
Out Number - timeout Number
- the amount of time (in seconds) to wait when receiving a response from the health check.
Package Details
- Repository
- Spotinst pulumi/pulumi-spotinst
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
spotinst
Terraform Provider.