constellix.DnsCheck
Explore with Pulumi AI
Create DnsCheck Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DnsCheck(name: string, args: DnsCheckArgs, opts?: CustomResourceOptions);
@overload
def DnsCheck(resource_name: str,
args: DnsCheckArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DnsCheck(resource_name: str,
opts: Optional[ResourceOptions] = None,
check_sites: Optional[Sequence[float]] = None,
fqdn: Optional[str] = None,
resolver: Optional[str] = None,
dns_check_id: Optional[str] = None,
expected_response: Optional[str] = None,
interval: Optional[str] = None,
interval_policy: Optional[str] = None,
name: Optional[str] = None,
notification_groups: Optional[Sequence[float]] = None,
notification_report_timeout: Optional[float] = None,
verification_policy: Optional[str] = None)
func NewDnsCheck(ctx *Context, name string, args DnsCheckArgs, opts ...ResourceOption) (*DnsCheck, error)
public DnsCheck(string name, DnsCheckArgs args, CustomResourceOptions? opts = null)
public DnsCheck(String name, DnsCheckArgs args)
public DnsCheck(String name, DnsCheckArgs args, CustomResourceOptions options)
type: constellix:DnsCheck
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 DnsCheckArgs
- 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 DnsCheckArgs
- 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 DnsCheckArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DnsCheckArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DnsCheckArgs
- 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 dnsCheckResource = new Constellix.DnsCheck("dnsCheckResource", new()
{
CheckSites = new[]
{
0,
},
Fqdn = "string",
Resolver = "string",
DnsCheckId = "string",
ExpectedResponse = "string",
Interval = "string",
IntervalPolicy = "string",
Name = "string",
NotificationGroups = new[]
{
0,
},
NotificationReportTimeout = 0,
VerificationPolicy = "string",
});
example, err := constellix.NewDnsCheck(ctx, "dnsCheckResource", &constellix.DnsCheckArgs{
CheckSites: pulumi.Float64Array{
pulumi.Float64(0),
},
Fqdn: pulumi.String("string"),
Resolver: pulumi.String("string"),
DnsCheckId: pulumi.String("string"),
ExpectedResponse: pulumi.String("string"),
Interval: pulumi.String("string"),
IntervalPolicy: pulumi.String("string"),
Name: pulumi.String("string"),
NotificationGroups: pulumi.Float64Array{
pulumi.Float64(0),
},
NotificationReportTimeout: pulumi.Float64(0),
VerificationPolicy: pulumi.String("string"),
})
var dnsCheckResource = new DnsCheck("dnsCheckResource", DnsCheckArgs.builder()
.checkSites(0)
.fqdn("string")
.resolver("string")
.dnsCheckId("string")
.expectedResponse("string")
.interval("string")
.intervalPolicy("string")
.name("string")
.notificationGroups(0)
.notificationReportTimeout(0)
.verificationPolicy("string")
.build());
dns_check_resource = constellix.DnsCheck("dnsCheckResource",
check_sites=[0],
fqdn="string",
resolver="string",
dns_check_id="string",
expected_response="string",
interval="string",
interval_policy="string",
name="string",
notification_groups=[0],
notification_report_timeout=0,
verification_policy="string")
const dnsCheckResource = new constellix.DnsCheck("dnsCheckResource", {
checkSites: [0],
fqdn: "string",
resolver: "string",
dnsCheckId: "string",
expectedResponse: "string",
interval: "string",
intervalPolicy: "string",
name: "string",
notificationGroups: [0],
notificationReportTimeout: 0,
verificationPolicy: "string",
});
type: constellix:DnsCheck
properties:
checkSites:
- 0
dnsCheckId: string
expectedResponse: string
fqdn: string
interval: string
intervalPolicy: string
name: string
notificationGroups:
- 0
notificationReportTimeout: 0
resolver: string
verificationPolicy: string
DnsCheck 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 DnsCheck resource accepts the following input properties:
- Check
Sites List<double> - Fqdn string
- Resolver string
- Dns
Check stringId - Expected
Response string - Interval string
- Interval
Policy string - Name string
- Notification
Groups List<double> - Notification
Report doubleTimeout - Verification
Policy string
- Check
Sites []float64 - Fqdn string
- Resolver string
- Dns
Check stringId - Expected
Response string - Interval string
- Interval
Policy string - Name string
- Notification
Groups []float64 - Notification
Report float64Timeout - Verification
Policy string
- check
Sites List<Double> - fqdn String
- resolver String
- dns
Check StringId - expected
Response String - interval String
- interval
Policy String - name String
- notification
Groups List<Double> - notification
Report DoubleTimeout - verification
Policy String
- check
Sites number[] - fqdn string
- resolver string
- dns
Check stringId - expected
Response string - interval string
- interval
Policy string - name string
- notification
Groups number[] - notification
Report numberTimeout - verification
Policy string
- check_
sites Sequence[float] - fqdn str
- resolver str
- dns_
check_ strid - expected_
response str - interval str
- interval_
policy str - name str
- notification_
groups Sequence[float] - notification_
report_ floattimeout - verification_
policy str
- check
Sites List<Number> - fqdn String
- resolver String
- dns
Check StringId - expected
Response String - interval String
- interval
Policy String - name String
- notification
Groups List<Number> - notification
Report NumberTimeout - verification
Policy String
Outputs
All input properties are implicitly available as output properties. Additionally, the DnsCheck 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 DnsCheck Resource
Get an existing DnsCheck 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?: DnsCheckState, opts?: CustomResourceOptions): DnsCheck
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
check_sites: Optional[Sequence[float]] = None,
dns_check_id: Optional[str] = None,
expected_response: Optional[str] = None,
fqdn: Optional[str] = None,
interval: Optional[str] = None,
interval_policy: Optional[str] = None,
name: Optional[str] = None,
notification_groups: Optional[Sequence[float]] = None,
notification_report_timeout: Optional[float] = None,
resolver: Optional[str] = None,
verification_policy: Optional[str] = None) -> DnsCheck
func GetDnsCheck(ctx *Context, name string, id IDInput, state *DnsCheckState, opts ...ResourceOption) (*DnsCheck, error)
public static DnsCheck Get(string name, Input<string> id, DnsCheckState? state, CustomResourceOptions? opts = null)
public static DnsCheck get(String name, Output<String> id, DnsCheckState state, CustomResourceOptions options)
resources: _: type: constellix:DnsCheck 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.
- Check
Sites List<double> - Dns
Check stringId - Expected
Response string - Fqdn string
- Interval string
- Interval
Policy string - Name string
- Notification
Groups List<double> - Notification
Report doubleTimeout - Resolver string
- Verification
Policy string
- Check
Sites []float64 - Dns
Check stringId - Expected
Response string - Fqdn string
- Interval string
- Interval
Policy string - Name string
- Notification
Groups []float64 - Notification
Report float64Timeout - Resolver string
- Verification
Policy string
- check
Sites List<Double> - dns
Check StringId - expected
Response String - fqdn String
- interval String
- interval
Policy String - name String
- notification
Groups List<Double> - notification
Report DoubleTimeout - resolver String
- verification
Policy String
- check
Sites number[] - dns
Check stringId - expected
Response string - fqdn string
- interval string
- interval
Policy string - name string
- notification
Groups number[] - notification
Report numberTimeout - resolver string
- verification
Policy string
- check_
sites Sequence[float] - dns_
check_ strid - expected_
response str - fqdn str
- interval str
- interval_
policy str - name str
- notification_
groups Sequence[float] - notification_
report_ floattimeout - resolver str
- verification_
policy str
- check
Sites List<Number> - dns
Check StringId - expected
Response String - fqdn String
- interval String
- interval
Policy String - name String
- notification
Groups List<Number> - notification
Report NumberTimeout - resolver String
- verification
Policy String
Package Details
- Repository
- constellix constellix/terraform-provider-constellix
- License
- Notes
- This Pulumi package is based on the
constellix
Terraform Provider.