Harness v0.3.2 published on Monday, Sep 16, 2024 by Pulumi
harness.autostopping.RuleVm
Explore with Pulumi AI
Resource for creating a Harness Variables.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as harness from "@pulumi/harness";
const test = new harness.autostopping.RuleVm("test", {
name: "name",
cloudConnectorId: "cloud_connector_id",
idleTimeMins: 10,
filter: {
vmIds: ["/subscriptions/subscription_id/resourceGroups/resource_group/providers/Microsoft.Compute/virtualMachines/virtual_machine"],
regions: ["useast2"],
},
https: [{
proxyId: "proxy_id",
routings: [
{
sourceProtocol: "https",
targetProtocol: "https",
sourcePort: 443,
targetPort: 443,
action: "forward",
},
{
sourceProtocol: "http",
targetProtocol: "http",
sourcePort: 80,
targetPort: 80,
action: "forward",
},
],
healths: [{
protocol: "http",
port: 80,
path: "/",
timeout: 30,
statusCodeFrom: 200,
statusCodeTo: 299,
}],
}],
tcps: [{
proxyId: "proxy_id",
sshes: [{
port: 22,
}],
rdps: [{
port: 3389,
}],
forwardRules: [{
port: 2233,
}],
}],
depends: [{
ruleId: 24576,
delayInSec: 5,
}],
});
import pulumi
import pulumi_harness as harness
test = harness.autostopping.RuleVm("test",
name="name",
cloud_connector_id="cloud_connector_id",
idle_time_mins=10,
filter={
"vm_ids": ["/subscriptions/subscription_id/resourceGroups/resource_group/providers/Microsoft.Compute/virtualMachines/virtual_machine"],
"regions": ["useast2"],
},
https=[{
"proxy_id": "proxy_id",
"routings": [
{
"source_protocol": "https",
"target_protocol": "https",
"source_port": 443,
"target_port": 443,
"action": "forward",
},
{
"source_protocol": "http",
"target_protocol": "http",
"source_port": 80,
"target_port": 80,
"action": "forward",
},
],
"healths": [{
"protocol": "http",
"port": 80,
"path": "/",
"timeout": 30,
"status_code_from": 200,
"status_code_to": 299,
}],
}],
tcps=[{
"proxy_id": "proxy_id",
"sshes": [{
"port": 22,
}],
"rdps": [{
"port": 3389,
}],
"forward_rules": [{
"port": 2233,
}],
}],
depends=[{
"rule_id": 24576,
"delay_in_sec": 5,
}])
package main
import (
"github.com/pulumi/pulumi-harness/sdk/go/harness/autostopping"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := autostopping.NewRuleVm(ctx, "test", &autostopping.RuleVmArgs{
Name: pulumi.String("name"),
CloudConnectorId: pulumi.String("cloud_connector_id"),
IdleTimeMins: pulumi.Int(10),
Filter: &autostopping.RuleVmFilterArgs{
VmIds: pulumi.StringArray{
pulumi.String("/subscriptions/subscription_id/resourceGroups/resource_group/providers/Microsoft.Compute/virtualMachines/virtual_machine"),
},
Regions: pulumi.StringArray{
pulumi.String("useast2"),
},
},
Https: autostopping.RuleVmHttpArray{
&autostopping.RuleVmHttpArgs{
ProxyId: pulumi.String("proxy_id"),
Routings: autostopping.RuleVmHttpRoutingArray{
&autostopping.RuleVmHttpRoutingArgs{
SourceProtocol: pulumi.String("https"),
TargetProtocol: pulumi.String("https"),
SourcePort: pulumi.Int(443),
TargetPort: pulumi.Int(443),
Action: pulumi.String("forward"),
},
&autostopping.RuleVmHttpRoutingArgs{
SourceProtocol: pulumi.String("http"),
TargetProtocol: pulumi.String("http"),
SourcePort: pulumi.Int(80),
TargetPort: pulumi.Int(80),
Action: pulumi.String("forward"),
},
},
Healths: autostopping.RuleVmHttpHealthArray{
&autostopping.RuleVmHttpHealthArgs{
Protocol: pulumi.String("http"),
Port: pulumi.Int(80),
Path: pulumi.String("/"),
Timeout: pulumi.Int(30),
StatusCodeFrom: pulumi.Int(200),
StatusCodeTo: pulumi.Int(299),
},
},
},
},
Tcps: autostopping.RuleVmTcpArray{
&autostopping.RuleVmTcpArgs{
ProxyId: pulumi.String("proxy_id"),
Sshes: autostopping.RuleVmTcpSshArray{
&autostopping.RuleVmTcpSshArgs{
Port: pulumi.Int(22),
},
},
Rdps: autostopping.RuleVmTcpRdpArray{
&autostopping.RuleVmTcpRdpArgs{
Port: pulumi.Int(3389),
},
},
ForwardRules: autostopping.RuleVmTcpForwardRuleArray{
&autostopping.RuleVmTcpForwardRuleArgs{
Port: pulumi.Int(2233),
},
},
},
},
Depends: autostopping.RuleVmDependArray{
&autostopping.RuleVmDependArgs{
RuleId: pulumi.Int(24576),
DelayInSec: pulumi.Int(5),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Harness = Pulumi.Harness;
return await Deployment.RunAsync(() =>
{
var test = new Harness.Autostopping.RuleVm("test", new()
{
Name = "name",
CloudConnectorId = "cloud_connector_id",
IdleTimeMins = 10,
Filter = new Harness.Autostopping.Inputs.RuleVmFilterArgs
{
VmIds = new[]
{
"/subscriptions/subscription_id/resourceGroups/resource_group/providers/Microsoft.Compute/virtualMachines/virtual_machine",
},
Regions = new[]
{
"useast2",
},
},
Https = new[]
{
new Harness.Autostopping.Inputs.RuleVmHttpArgs
{
ProxyId = "proxy_id",
Routings = new[]
{
new Harness.Autostopping.Inputs.RuleVmHttpRoutingArgs
{
SourceProtocol = "https",
TargetProtocol = "https",
SourcePort = 443,
TargetPort = 443,
Action = "forward",
},
new Harness.Autostopping.Inputs.RuleVmHttpRoutingArgs
{
SourceProtocol = "http",
TargetProtocol = "http",
SourcePort = 80,
TargetPort = 80,
Action = "forward",
},
},
Healths = new[]
{
new Harness.Autostopping.Inputs.RuleVmHttpHealthArgs
{
Protocol = "http",
Port = 80,
Path = "/",
Timeout = 30,
StatusCodeFrom = 200,
StatusCodeTo = 299,
},
},
},
},
Tcps = new[]
{
new Harness.Autostopping.Inputs.RuleVmTcpArgs
{
ProxyId = "proxy_id",
Sshes = new[]
{
new Harness.Autostopping.Inputs.RuleVmTcpSshArgs
{
Port = 22,
},
},
Rdps = new[]
{
new Harness.Autostopping.Inputs.RuleVmTcpRdpArgs
{
Port = 3389,
},
},
ForwardRules = new[]
{
new Harness.Autostopping.Inputs.RuleVmTcpForwardRuleArgs
{
Port = 2233,
},
},
},
},
Depends = new[]
{
new Harness.Autostopping.Inputs.RuleVmDependArgs
{
RuleId = 24576,
DelayInSec = 5,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.harness.autostopping.RuleVm;
import com.pulumi.harness.autostopping.RuleVmArgs;
import com.pulumi.harness.autostopping.inputs.RuleVmFilterArgs;
import com.pulumi.harness.autostopping.inputs.RuleVmHttpArgs;
import com.pulumi.harness.autostopping.inputs.RuleVmTcpArgs;
import com.pulumi.harness.autostopping.inputs.RuleVmDependArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new RuleVm("test", RuleVmArgs.builder()
.name("name")
.cloudConnectorId("cloud_connector_id")
.idleTimeMins(10)
.filter(RuleVmFilterArgs.builder()
.vmIds("/subscriptions/subscription_id/resourceGroups/resource_group/providers/Microsoft.Compute/virtualMachines/virtual_machine")
.regions("useast2")
.build())
.https(RuleVmHttpArgs.builder()
.proxyId("proxy_id")
.routings(
RuleVmHttpRoutingArgs.builder()
.sourceProtocol("https")
.targetProtocol("https")
.sourcePort(443)
.targetPort(443)
.action("forward")
.build(),
RuleVmHttpRoutingArgs.builder()
.sourceProtocol("http")
.targetProtocol("http")
.sourcePort(80)
.targetPort(80)
.action("forward")
.build())
.healths(RuleVmHttpHealthArgs.builder()
.protocol("http")
.port(80)
.path("/")
.timeout(30)
.statusCodeFrom(200)
.statusCodeTo(299)
.build())
.build())
.tcps(RuleVmTcpArgs.builder()
.proxyId("proxy_id")
.sshes(RuleVmTcpSshArgs.builder()
.port(22)
.build())
.rdps(RuleVmTcpRdpArgs.builder()
.port(3389)
.build())
.forwardRules(RuleVmTcpForwardRuleArgs.builder()
.port(2233)
.build())
.build())
.depends(RuleVmDependArgs.builder()
.ruleId(24576)
.delayInSec(5)
.build())
.build());
}
}
resources:
test:
type: harness:autostopping:RuleVm
properties:
name: name
cloudConnectorId: cloud_connector_id
idleTimeMins: 10
filter:
vmIds:
- /subscriptions/subscription_id/resourceGroups/resource_group/providers/Microsoft.Compute/virtualMachines/virtual_machine
regions:
- useast2
https:
- proxyId: proxy_id
routings:
- sourceProtocol: https
targetProtocol: https
sourcePort: 443
targetPort: 443
action: forward
- sourceProtocol: http
targetProtocol: http
sourcePort: 80
targetPort: 80
action: forward
healths:
- protocol: http
port: 80
path: /
timeout: 30
statusCodeFrom: 200
statusCodeTo: 299
tcps:
- proxyId: proxy_id
sshes:
- port: 22
rdps:
- port: 3389
forwardRules:
- port: 2233
depends:
- ruleId: 24576
delayInSec: 5
Create RuleVm Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RuleVm(name: string, args: RuleVmArgs, opts?: CustomResourceOptions);
@overload
def RuleVm(resource_name: str,
args: RuleVmArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RuleVm(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloud_connector_id: Optional[str] = None,
filter: Optional[RuleVmFilterArgs] = None,
custom_domains: Optional[Sequence[str]] = None,
depends: Optional[Sequence[RuleVmDependArgs]] = None,
https: Optional[Sequence[RuleVmHttpArgs]] = None,
idle_time_mins: Optional[int] = None,
name: Optional[str] = None,
tcps: Optional[Sequence[RuleVmTcpArgs]] = None,
use_spot: Optional[bool] = None)
func NewRuleVm(ctx *Context, name string, args RuleVmArgs, opts ...ResourceOption) (*RuleVm, error)
public RuleVm(string name, RuleVmArgs args, CustomResourceOptions? opts = null)
public RuleVm(String name, RuleVmArgs args)
public RuleVm(String name, RuleVmArgs args, CustomResourceOptions options)
type: harness:autostopping:RuleVm
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 RuleVmArgs
- 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 RuleVmArgs
- 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 RuleVmArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RuleVmArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RuleVmArgs
- 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 ruleVmResource = new Harness.Autostopping.RuleVm("ruleVmResource", new()
{
CloudConnectorId = "string",
Filter = new Harness.Autostopping.Inputs.RuleVmFilterArgs
{
VmIds = new[]
{
"string",
},
Regions = new[]
{
"string",
},
Tags = new[]
{
new Harness.Autostopping.Inputs.RuleVmFilterTagArgs
{
Key = "string",
Value = "string",
},
},
Zones = new[]
{
"string",
},
},
CustomDomains = new[]
{
"string",
},
Depends = new[]
{
new Harness.Autostopping.Inputs.RuleVmDependArgs
{
RuleId = 0,
DelayInSec = 0,
},
},
Https = new[]
{
new Harness.Autostopping.Inputs.RuleVmHttpArgs
{
ProxyId = "string",
Healths = new[]
{
new Harness.Autostopping.Inputs.RuleVmHttpHealthArgs
{
Port = 0,
Protocol = "string",
Path = "string",
StatusCodeFrom = 0,
StatusCodeTo = 0,
Timeout = 0,
},
},
Routings = new[]
{
new Harness.Autostopping.Inputs.RuleVmHttpRoutingArgs
{
SourceProtocol = "string",
TargetProtocol = "string",
Action = "string",
SourcePort = 0,
TargetPort = 0,
},
},
},
},
IdleTimeMins = 0,
Name = "string",
Tcps = new[]
{
new Harness.Autostopping.Inputs.RuleVmTcpArgs
{
ProxyId = "string",
ForwardRules = new[]
{
new Harness.Autostopping.Inputs.RuleVmTcpForwardRuleArgs
{
Port = 0,
ConnectOn = 0,
},
},
Rdps = new[]
{
new Harness.Autostopping.Inputs.RuleVmTcpRdpArgs
{
ConnectOn = 0,
Port = 0,
},
},
Sshes = new[]
{
new Harness.Autostopping.Inputs.RuleVmTcpSshArgs
{
ConnectOn = 0,
Port = 0,
},
},
},
},
UseSpot = false,
});
example, err := autostopping.NewRuleVm(ctx, "ruleVmResource", &autostopping.RuleVmArgs{
CloudConnectorId: pulumi.String("string"),
Filter: &autostopping.RuleVmFilterArgs{
VmIds: pulumi.StringArray{
pulumi.String("string"),
},
Regions: pulumi.StringArray{
pulumi.String("string"),
},
Tags: autostopping.RuleVmFilterTagArray{
&autostopping.RuleVmFilterTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Zones: pulumi.StringArray{
pulumi.String("string"),
},
},
CustomDomains: pulumi.StringArray{
pulumi.String("string"),
},
Depends: autostopping.RuleVmDependArray{
&autostopping.RuleVmDependArgs{
RuleId: pulumi.Int(0),
DelayInSec: pulumi.Int(0),
},
},
Https: autostopping.RuleVmHttpArray{
&autostopping.RuleVmHttpArgs{
ProxyId: pulumi.String("string"),
Healths: autostopping.RuleVmHttpHealthArray{
&autostopping.RuleVmHttpHealthArgs{
Port: pulumi.Int(0),
Protocol: pulumi.String("string"),
Path: pulumi.String("string"),
StatusCodeFrom: pulumi.Int(0),
StatusCodeTo: pulumi.Int(0),
Timeout: pulumi.Int(0),
},
},
Routings: autostopping.RuleVmHttpRoutingArray{
&autostopping.RuleVmHttpRoutingArgs{
SourceProtocol: pulumi.String("string"),
TargetProtocol: pulumi.String("string"),
Action: pulumi.String("string"),
SourcePort: pulumi.Int(0),
TargetPort: pulumi.Int(0),
},
},
},
},
IdleTimeMins: pulumi.Int(0),
Name: pulumi.String("string"),
Tcps: autostopping.RuleVmTcpArray{
&autostopping.RuleVmTcpArgs{
ProxyId: pulumi.String("string"),
ForwardRules: autostopping.RuleVmTcpForwardRuleArray{
&autostopping.RuleVmTcpForwardRuleArgs{
Port: pulumi.Int(0),
ConnectOn: pulumi.Int(0),
},
},
Rdps: autostopping.RuleVmTcpRdpArray{
&autostopping.RuleVmTcpRdpArgs{
ConnectOn: pulumi.Int(0),
Port: pulumi.Int(0),
},
},
Sshes: autostopping.RuleVmTcpSshArray{
&autostopping.RuleVmTcpSshArgs{
ConnectOn: pulumi.Int(0),
Port: pulumi.Int(0),
},
},
},
},
UseSpot: pulumi.Bool(false),
})
var ruleVmResource = new RuleVm("ruleVmResource", RuleVmArgs.builder()
.cloudConnectorId("string")
.filter(RuleVmFilterArgs.builder()
.vmIds("string")
.regions("string")
.tags(RuleVmFilterTagArgs.builder()
.key("string")
.value("string")
.build())
.zones("string")
.build())
.customDomains("string")
.depends(RuleVmDependArgs.builder()
.ruleId(0)
.delayInSec(0)
.build())
.https(RuleVmHttpArgs.builder()
.proxyId("string")
.healths(RuleVmHttpHealthArgs.builder()
.port(0)
.protocol("string")
.path("string")
.statusCodeFrom(0)
.statusCodeTo(0)
.timeout(0)
.build())
.routings(RuleVmHttpRoutingArgs.builder()
.sourceProtocol("string")
.targetProtocol("string")
.action("string")
.sourcePort(0)
.targetPort(0)
.build())
.build())
.idleTimeMins(0)
.name("string")
.tcps(RuleVmTcpArgs.builder()
.proxyId("string")
.forwardRules(RuleVmTcpForwardRuleArgs.builder()
.port(0)
.connectOn(0)
.build())
.rdps(RuleVmTcpRdpArgs.builder()
.connectOn(0)
.port(0)
.build())
.sshes(RuleVmTcpSshArgs.builder()
.connectOn(0)
.port(0)
.build())
.build())
.useSpot(false)
.build());
rule_vm_resource = harness.autostopping.RuleVm("ruleVmResource",
cloud_connector_id="string",
filter=harness.autostopping.RuleVmFilterArgs(
vm_ids=["string"],
regions=["string"],
tags=[harness.autostopping.RuleVmFilterTagArgs(
key="string",
value="string",
)],
zones=["string"],
),
custom_domains=["string"],
depends=[harness.autostopping.RuleVmDependArgs(
rule_id=0,
delay_in_sec=0,
)],
https=[harness.autostopping.RuleVmHttpArgs(
proxy_id="string",
healths=[harness.autostopping.RuleVmHttpHealthArgs(
port=0,
protocol="string",
path="string",
status_code_from=0,
status_code_to=0,
timeout=0,
)],
routings=[harness.autostopping.RuleVmHttpRoutingArgs(
source_protocol="string",
target_protocol="string",
action="string",
source_port=0,
target_port=0,
)],
)],
idle_time_mins=0,
name="string",
tcps=[harness.autostopping.RuleVmTcpArgs(
proxy_id="string",
forward_rules=[harness.autostopping.RuleVmTcpForwardRuleArgs(
port=0,
connect_on=0,
)],
rdps=[harness.autostopping.RuleVmTcpRdpArgs(
connect_on=0,
port=0,
)],
sshes=[harness.autostopping.RuleVmTcpSshArgs(
connect_on=0,
port=0,
)],
)],
use_spot=False)
const ruleVmResource = new harness.autostopping.RuleVm("ruleVmResource", {
cloudConnectorId: "string",
filter: {
vmIds: ["string"],
regions: ["string"],
tags: [{
key: "string",
value: "string",
}],
zones: ["string"],
},
customDomains: ["string"],
depends: [{
ruleId: 0,
delayInSec: 0,
}],
https: [{
proxyId: "string",
healths: [{
port: 0,
protocol: "string",
path: "string",
statusCodeFrom: 0,
statusCodeTo: 0,
timeout: 0,
}],
routings: [{
sourceProtocol: "string",
targetProtocol: "string",
action: "string",
sourcePort: 0,
targetPort: 0,
}],
}],
idleTimeMins: 0,
name: "string",
tcps: [{
proxyId: "string",
forwardRules: [{
port: 0,
connectOn: 0,
}],
rdps: [{
connectOn: 0,
port: 0,
}],
sshes: [{
connectOn: 0,
port: 0,
}],
}],
useSpot: false,
});
type: harness:autostopping:RuleVm
properties:
cloudConnectorId: string
customDomains:
- string
depends:
- delayInSec: 0
ruleId: 0
filter:
regions:
- string
tags:
- key: string
value: string
vmIds:
- string
zones:
- string
https:
- healths:
- path: string
port: 0
protocol: string
statusCodeFrom: 0
statusCodeTo: 0
timeout: 0
proxyId: string
routings:
- action: string
sourcePort: 0
sourceProtocol: string
targetPort: 0
targetProtocol: string
idleTimeMins: 0
name: string
tcps:
- forwardRules:
- connectOn: 0
port: 0
proxyId: string
rdps:
- connectOn: 0
port: 0
sshes:
- connectOn: 0
port: 0
useSpot: false
RuleVm 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 RuleVm resource accepts the following input properties:
- Cloud
Connector stringId - Id of the cloud connector
- Filter
Rule
Vm Filter - Custom
Domains List<string> - Custom URLs used to access the instances
- Depends
List<Rule
Vm Depend> - Dependent rules
- Https
List<Rule
Vm Http> - Http routing configuration
- Idle
Time intMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- Name string
- Name of the rule
- Tcps
List<Rule
Vm Tcp> - TCP routing configuration
- Use
Spot bool - Boolean that indicates whether the selected instances should be converted to spot vm
- Cloud
Connector stringId - Id of the cloud connector
- Filter
Rule
Vm Filter Args - Custom
Domains []string - Custom URLs used to access the instances
- Depends
[]Rule
Vm Depend Args - Dependent rules
- Https
[]Rule
Vm Http Args - Http routing configuration
- Idle
Time intMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- Name string
- Name of the rule
- Tcps
[]Rule
Vm Tcp Args - TCP routing configuration
- Use
Spot bool - Boolean that indicates whether the selected instances should be converted to spot vm
- cloud
Connector StringId - Id of the cloud connector
- filter
Rule
Vm Filter - custom
Domains List<String> - Custom URLs used to access the instances
- depends
List<Rule
Vm Depend> - Dependent rules
- https
List<Rule
Vm Http> - Http routing configuration
- idle
Time IntegerMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- name String
- Name of the rule
- tcps
List<Rule
Vm Tcp> - TCP routing configuration
- use
Spot Boolean - Boolean that indicates whether the selected instances should be converted to spot vm
- cloud
Connector stringId - Id of the cloud connector
- filter
Rule
Vm Filter - custom
Domains string[] - Custom URLs used to access the instances
- depends
Rule
Vm Depend[] - Dependent rules
- https
Rule
Vm Http[] - Http routing configuration
- idle
Time numberMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- name string
- Name of the rule
- tcps
Rule
Vm Tcp[] - TCP routing configuration
- use
Spot boolean - Boolean that indicates whether the selected instances should be converted to spot vm
- cloud_
connector_ strid - Id of the cloud connector
- filter
Rule
Vm Filter Args - custom_
domains Sequence[str] - Custom URLs used to access the instances
- depends
Sequence[Rule
Vm Depend Args] - Dependent rules
- https
Sequence[Rule
Vm Http Args] - Http routing configuration
- idle_
time_ intmins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- name str
- Name of the rule
- tcps
Sequence[Rule
Vm Tcp Args] - TCP routing configuration
- use_
spot bool - Boolean that indicates whether the selected instances should be converted to spot vm
- cloud
Connector StringId - Id of the cloud connector
- filter Property Map
- custom
Domains List<String> - Custom URLs used to access the instances
- depends List<Property Map>
- Dependent rules
- https List<Property Map>
- Http routing configuration
- idle
Time NumberMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- name String
- Name of the rule
- tcps List<Property Map>
- TCP routing configuration
- use
Spot Boolean - Boolean that indicates whether the selected instances should be converted to spot vm
Outputs
All input properties are implicitly available as output properties. Additionally, the RuleVm resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Identifier double
- Unique identifier of the resource
- Id string
- The provider-assigned unique ID for this managed resource.
- Identifier float64
- Unique identifier of the resource
- id String
- The provider-assigned unique ID for this managed resource.
- identifier Double
- Unique identifier of the resource
- id string
- The provider-assigned unique ID for this managed resource.
- identifier number
- Unique identifier of the resource
- id str
- The provider-assigned unique ID for this managed resource.
- identifier float
- Unique identifier of the resource
- id String
- The provider-assigned unique ID for this managed resource.
- identifier Number
- Unique identifier of the resource
Look up Existing RuleVm Resource
Get an existing RuleVm 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?: RuleVmState, opts?: CustomResourceOptions): RuleVm
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cloud_connector_id: Optional[str] = None,
custom_domains: Optional[Sequence[str]] = None,
depends: Optional[Sequence[RuleVmDependArgs]] = None,
filter: Optional[RuleVmFilterArgs] = None,
https: Optional[Sequence[RuleVmHttpArgs]] = None,
identifier: Optional[float] = None,
idle_time_mins: Optional[int] = None,
name: Optional[str] = None,
tcps: Optional[Sequence[RuleVmTcpArgs]] = None,
use_spot: Optional[bool] = None) -> RuleVm
func GetRuleVm(ctx *Context, name string, id IDInput, state *RuleVmState, opts ...ResourceOption) (*RuleVm, error)
public static RuleVm Get(string name, Input<string> id, RuleVmState? state, CustomResourceOptions? opts = null)
public static RuleVm get(String name, Output<String> id, RuleVmState 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.
- Cloud
Connector stringId - Id of the cloud connector
- Custom
Domains List<string> - Custom URLs used to access the instances
- Depends
List<Rule
Vm Depend> - Dependent rules
- Filter
Rule
Vm Filter - Https
List<Rule
Vm Http> - Http routing configuration
- Identifier double
- Unique identifier of the resource
- Idle
Time intMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- Name string
- Name of the rule
- Tcps
List<Rule
Vm Tcp> - TCP routing configuration
- Use
Spot bool - Boolean that indicates whether the selected instances should be converted to spot vm
- Cloud
Connector stringId - Id of the cloud connector
- Custom
Domains []string - Custom URLs used to access the instances
- Depends
[]Rule
Vm Depend Args - Dependent rules
- Filter
Rule
Vm Filter Args - Https
[]Rule
Vm Http Args - Http routing configuration
- Identifier float64
- Unique identifier of the resource
- Idle
Time intMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- Name string
- Name of the rule
- Tcps
[]Rule
Vm Tcp Args - TCP routing configuration
- Use
Spot bool - Boolean that indicates whether the selected instances should be converted to spot vm
- cloud
Connector StringId - Id of the cloud connector
- custom
Domains List<String> - Custom URLs used to access the instances
- depends
List<Rule
Vm Depend> - Dependent rules
- filter
Rule
Vm Filter - https
List<Rule
Vm Http> - Http routing configuration
- identifier Double
- Unique identifier of the resource
- idle
Time IntegerMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- name String
- Name of the rule
- tcps
List<Rule
Vm Tcp> - TCP routing configuration
- use
Spot Boolean - Boolean that indicates whether the selected instances should be converted to spot vm
- cloud
Connector stringId - Id of the cloud connector
- custom
Domains string[] - Custom URLs used to access the instances
- depends
Rule
Vm Depend[] - Dependent rules
- filter
Rule
Vm Filter - https
Rule
Vm Http[] - Http routing configuration
- identifier number
- Unique identifier of the resource
- idle
Time numberMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- name string
- Name of the rule
- tcps
Rule
Vm Tcp[] - TCP routing configuration
- use
Spot boolean - Boolean that indicates whether the selected instances should be converted to spot vm
- cloud_
connector_ strid - Id of the cloud connector
- custom_
domains Sequence[str] - Custom URLs used to access the instances
- depends
Sequence[Rule
Vm Depend Args] - Dependent rules
- filter
Rule
Vm Filter Args - https
Sequence[Rule
Vm Http Args] - Http routing configuration
- identifier float
- Unique identifier of the resource
- idle_
time_ intmins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- name str
- Name of the rule
- tcps
Sequence[Rule
Vm Tcp Args] - TCP routing configuration
- use_
spot bool - Boolean that indicates whether the selected instances should be converted to spot vm
- cloud
Connector StringId - Id of the cloud connector
- custom
Domains List<String> - Custom URLs used to access the instances
- depends List<Property Map>
- Dependent rules
- filter Property Map
- https List<Property Map>
- Http routing configuration
- identifier Number
- Unique identifier of the resource
- idle
Time NumberMins - Idle time in minutes. This is the time that the AutoStopping rule waits before stopping the idle instances.
- name String
- Name of the rule
- tcps List<Property Map>
- TCP routing configuration
- use
Spot Boolean - Boolean that indicates whether the selected instances should be converted to spot vm
Supporting Types
RuleVmDepend, RuleVmDependArgs
- Rule
Id int - Rule id of the dependent rule
- Delay
In intSec - Number of seconds the rule should wait after warming up the dependent rule
- Rule
Id int - Rule id of the dependent rule
- Delay
In intSec - Number of seconds the rule should wait after warming up the dependent rule
- rule
Id Integer - Rule id of the dependent rule
- delay
In IntegerSec - Number of seconds the rule should wait after warming up the dependent rule
- rule
Id number - Rule id of the dependent rule
- delay
In numberSec - Number of seconds the rule should wait after warming up the dependent rule
- rule_
id int - Rule id of the dependent rule
- delay_
in_ intsec - Number of seconds the rule should wait after warming up the dependent rule
- rule
Id Number - Rule id of the dependent rule
- delay
In NumberSec - Number of seconds the rule should wait after warming up the dependent rule
RuleVmFilter, RuleVmFilterArgs
- Vm
Ids List<string> - Ids of instances that needs to be managed using the AutoStopping rules
- Regions List<string>
- Regions of instances that needs to be managed using the AutoStopping rules
- List<Rule
Vm Filter Tag> - Tags of instances that needs to be managed using the AutoStopping rules
- Zones List<string>
- Zones of instances that needs to be managed using the AutoStopping rules
- Vm
Ids []string - Ids of instances that needs to be managed using the AutoStopping rules
- Regions []string
- Regions of instances that needs to be managed using the AutoStopping rules
- []Rule
Vm Filter Tag - Tags of instances that needs to be managed using the AutoStopping rules
- Zones []string
- Zones of instances that needs to be managed using the AutoStopping rules
- vm
Ids List<String> - Ids of instances that needs to be managed using the AutoStopping rules
- regions List<String>
- Regions of instances that needs to be managed using the AutoStopping rules
- List<Rule
Vm Filter Tag> - Tags of instances that needs to be managed using the AutoStopping rules
- zones List<String>
- Zones of instances that needs to be managed using the AutoStopping rules
- vm
Ids string[] - Ids of instances that needs to be managed using the AutoStopping rules
- regions string[]
- Regions of instances that needs to be managed using the AutoStopping rules
- Rule
Vm Filter Tag[] - Tags of instances that needs to be managed using the AutoStopping rules
- zones string[]
- Zones of instances that needs to be managed using the AutoStopping rules
- vm_
ids Sequence[str] - Ids of instances that needs to be managed using the AutoStopping rules
- regions Sequence[str]
- Regions of instances that needs to be managed using the AutoStopping rules
- Sequence[Rule
Vm Filter Tag] - Tags of instances that needs to be managed using the AutoStopping rules
- zones Sequence[str]
- Zones of instances that needs to be managed using the AutoStopping rules
- vm
Ids List<String> - Ids of instances that needs to be managed using the AutoStopping rules
- regions List<String>
- Regions of instances that needs to be managed using the AutoStopping rules
- List<Property Map>
- Tags of instances that needs to be managed using the AutoStopping rules
- zones List<String>
- Zones of instances that needs to be managed using the AutoStopping rules
RuleVmFilterTag, RuleVmFilterTagArgs
RuleVmHttp, RuleVmHttpArgs
- Proxy
Id string - Id of the proxy
- Healths
List<Rule
Vm Http Health> - Health Check Details
- Routings
List<Rule
Vm Http Routing> - Routing configuration used to access the instances
- Proxy
Id string - Id of the proxy
- Healths
[]Rule
Vm Http Health - Health Check Details
- Routings
[]Rule
Vm Http Routing - Routing configuration used to access the instances
- proxy
Id String - Id of the proxy
- healths
List<Rule
Vm Http Health> - Health Check Details
- routings
List<Rule
Vm Http Routing> - Routing configuration used to access the instances
- proxy
Id string - Id of the proxy
- healths
Rule
Vm Http Health[] - Health Check Details
- routings
Rule
Vm Http Routing[] - Routing configuration used to access the instances
- proxy_
id str - Id of the proxy
- healths
Sequence[Rule
Vm Http Health] - Health Check Details
- routings
Sequence[Rule
Vm Http Routing] - Routing configuration used to access the instances
- proxy
Id String - Id of the proxy
- healths List<Property Map>
- Health Check Details
- routings List<Property Map>
- Routing configuration used to access the instances
RuleVmHttpHealth, RuleVmHttpHealthArgs
- Port int
- Health check port on the VM
- Protocol string
- Protocol can be http or https
- Path string
- API path to use for health check
- Status
Code intFrom - Lower limit for acceptable status code
- Status
Code intTo - Upper limit for acceptable status code
- Timeout int
- Health check timeout
- Port int
- Health check port on the VM
- Protocol string
- Protocol can be http or https
- Path string
- API path to use for health check
- Status
Code intFrom - Lower limit for acceptable status code
- Status
Code intTo - Upper limit for acceptable status code
- Timeout int
- Health check timeout
- port Integer
- Health check port on the VM
- protocol String
- Protocol can be http or https
- path String
- API path to use for health check
- status
Code IntegerFrom - Lower limit for acceptable status code
- status
Code IntegerTo - Upper limit for acceptable status code
- timeout Integer
- Health check timeout
- port number
- Health check port on the VM
- protocol string
- Protocol can be http or https
- path string
- API path to use for health check
- status
Code numberFrom - Lower limit for acceptable status code
- status
Code numberTo - Upper limit for acceptable status code
- timeout number
- Health check timeout
- port int
- Health check port on the VM
- protocol str
- Protocol can be http or https
- path str
- API path to use for health check
- status_
code_ intfrom - Lower limit for acceptable status code
- status_
code_ intto - Upper limit for acceptable status code
- timeout int
- Health check timeout
- port Number
- Health check port on the VM
- protocol String
- Protocol can be http or https
- path String
- API path to use for health check
- status
Code NumberFrom - Lower limit for acceptable status code
- status
Code NumberTo - Upper limit for acceptable status code
- timeout Number
- Health check timeout
RuleVmHttpRouting, RuleVmHttpRoutingArgs
- Source
Protocol string - Source protocol of the proxy can be http or https
- Target
Protocol string - Target protocol of the instance can be http or https
- Action string
- Organization Identifier for the Entity
- Source
Port int - Port on the proxy
- Target
Port int - Port on the VM
- Source
Protocol string - Source protocol of the proxy can be http or https
- Target
Protocol string - Target protocol of the instance can be http or https
- Action string
- Organization Identifier for the Entity
- Source
Port int - Port on the proxy
- Target
Port int - Port on the VM
- source
Protocol String - Source protocol of the proxy can be http or https
- target
Protocol String - Target protocol of the instance can be http or https
- action String
- Organization Identifier for the Entity
- source
Port Integer - Port on the proxy
- target
Port Integer - Port on the VM
- source
Protocol string - Source protocol of the proxy can be http or https
- target
Protocol string - Target protocol of the instance can be http or https
- action string
- Organization Identifier for the Entity
- source
Port number - Port on the proxy
- target
Port number - Port on the VM
- source_
protocol str - Source protocol of the proxy can be http or https
- target_
protocol str - Target protocol of the instance can be http or https
- action str
- Organization Identifier for the Entity
- source_
port int - Port on the proxy
- target_
port int - Port on the VM
- source
Protocol String - Source protocol of the proxy can be http or https
- target
Protocol String - Target protocol of the instance can be http or https
- action String
- Organization Identifier for the Entity
- source
Port Number - Port on the proxy
- target
Port Number - Port on the VM
RuleVmTcp, RuleVmTcpArgs
- Proxy
Id string - Id of the Proxy
- Forward
Rules List<RuleVm Tcp Forward Rule> - Additional tcp forwarding rules
- Rdps
List<Rule
Vm Tcp Rdp> - RDP configuration
- Sshes
List<Rule
Vm Tcp Ssh> - SSH configuration
- Proxy
Id string - Id of the Proxy
- Forward
Rules []RuleVm Tcp Forward Rule - Additional tcp forwarding rules
- Rdps
[]Rule
Vm Tcp Rdp - RDP configuration
- Sshes
[]Rule
Vm Tcp Ssh - SSH configuration
- proxy
Id String - Id of the Proxy
- forward
Rules List<RuleVm Tcp Forward Rule> - Additional tcp forwarding rules
- rdps
List<Rule
Vm Tcp Rdp> - RDP configuration
- sshes
List<Rule
Vm Tcp Ssh> - SSH configuration
- proxy
Id string - Id of the Proxy
- forward
Rules RuleVm Tcp Forward Rule[] - Additional tcp forwarding rules
- rdps
Rule
Vm Tcp Rdp[] - RDP configuration
- sshes
Rule
Vm Tcp Ssh[] - SSH configuration
- proxy_
id str - Id of the Proxy
- forward_
rules Sequence[RuleVm Tcp Forward Rule] - Additional tcp forwarding rules
- rdps
Sequence[Rule
Vm Tcp Rdp] - RDP configuration
- sshes
Sequence[Rule
Vm Tcp Ssh] - SSH configuration
- proxy
Id String - Id of the Proxy
- forward
Rules List<Property Map> - Additional tcp forwarding rules
- rdps List<Property Map>
- RDP configuration
- sshes List<Property Map>
- SSH configuration
RuleVmTcpForwardRule, RuleVmTcpForwardRuleArgs
- port int
- Port to listen on the vm
- connect_
on int - Port to listen on the proxy
RuleVmTcpRdp, RuleVmTcpRdpArgs
- connect_
on int - Port to listen on the proxy
- port int
- Port to listen on the vm
RuleVmTcpSsh, RuleVmTcpSshArgs
- connect_
on int - Port to listen on the proxy
- port int
- Port to listen on the vm
Package Details
- Repository
- harness pulumi/pulumi-harness
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
harness
Terraform Provider.