@pulumi/digitalocean
Version:
A Pulumi package for creating and managing DigitalOcean cloud resources.
107 lines (106 loc) • 3.58 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "./types/input";
import * as outputs from "./types/output";
/**
* Get information on domains for use in other resources, with the ability to filter and sort the results.
* If no filters are specified, all domains will be returned.
*
* This data source is useful if the domains in question are not managed by this provider or you need to
* utilize any of the domains' data.
*
* Note: You can use the `digitalocean.Domain` data source to obtain metadata
* about a single domain if you already know the `name`.
*
* ## Example Usage
*
* Use the `filter` block with a `key` string and `values` list to filter domains. (This example
* also uses the regular expression `matchBy` mode in order to match domains by suffix.)
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as digitalocean from "@pulumi/digitalocean";
*
* const examples = digitalocean.getDomains({
* filters: [{
* key: "name",
* values: ["example\\.com$"],
* matchBy: "re",
* }],
* });
* ```
*/
export declare function getDomains(args?: GetDomainsArgs, opts?: pulumi.InvokeOptions): Promise<GetDomainsResult>;
/**
* A collection of arguments for invoking getDomains.
*/
export interface GetDomainsArgs {
/**
* Filter the results.
* The `filter` block is documented below.
*/
filters?: inputs.GetDomainsFilter[];
/**
* Sort the results.
* The `sort` block is documented below.
*/
sorts?: inputs.GetDomainsSort[];
}
/**
* A collection of values returned by getDomains.
*/
export interface GetDomainsResult {
/**
* A list of domains satisfying any `filter` and `sort` criteria. Each domain has the following attributes:
*/
readonly domains: outputs.GetDomainsDomain[];
readonly filters?: outputs.GetDomainsFilter[];
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly sorts?: outputs.GetDomainsSort[];
}
/**
* Get information on domains for use in other resources, with the ability to filter and sort the results.
* If no filters are specified, all domains will be returned.
*
* This data source is useful if the domains in question are not managed by this provider or you need to
* utilize any of the domains' data.
*
* Note: You can use the `digitalocean.Domain` data source to obtain metadata
* about a single domain if you already know the `name`.
*
* ## Example Usage
*
* Use the `filter` block with a `key` string and `values` list to filter domains. (This example
* also uses the regular expression `matchBy` mode in order to match domains by suffix.)
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as digitalocean from "@pulumi/digitalocean";
*
* const examples = digitalocean.getDomains({
* filters: [{
* key: "name",
* values: ["example\\.com$"],
* matchBy: "re",
* }],
* });
* ```
*/
export declare function getDomainsOutput(args?: GetDomainsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDomainsResult>;
/**
* A collection of arguments for invoking getDomains.
*/
export interface GetDomainsOutputArgs {
/**
* Filter the results.
* The `filter` block is documented below.
*/
filters?: pulumi.Input<pulumi.Input<inputs.GetDomainsFilterArgs>[]>;
/**
* Sort the results.
* The `sort` block is documented below.
*/
sorts?: pulumi.Input<pulumi.Input<inputs.GetDomainsSortArgs>[]>;
}