@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
118 lines • 5.83 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.DomainTrust = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Adds a trust between Active Directory domains
*
* To get more information about DomainTrust, see:
*
* * [API documentation](https://cloud.google.com/managed-microsoft-ad/reference/rest/v1/projects.locations.global.domains/attachTrust)
* * How-to Guides
* * [Active Directory Trust](https://cloud.google.com/managed-microsoft-ad/docs/create-one-way-trust)
*
* ## Example Usage
*
* ## Import
*
* DomainTrust can be imported using any of these accepted formats:
*
* * `projects/{{project}}/locations/global/domains/{{domain}}/{{target_domain_name}}`
*
* * `{{project}}/{{domain}}/{{target_domain_name}}`
*
* * `{{domain}}/{{target_domain_name}}`
*
* When using the `pulumi import` command, DomainTrust can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:activedirectory/domainTrust:DomainTrust default projects/{{project}}/locations/global/domains/{{domain}}/{{target_domain_name}}
* ```
*
* ```sh
* $ pulumi import gcp:activedirectory/domainTrust:DomainTrust default {{project}}/{{domain}}/{{target_domain_name}}
* ```
*
* ```sh
* $ pulumi import gcp:activedirectory/domainTrust:DomainTrust default {{domain}}/{{target_domain_name}}
* ```
*/
class DomainTrust extends pulumi.CustomResource {
/**
* Get an existing DomainTrust resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new DomainTrust(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of DomainTrust. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === DomainTrust.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["domain"] = state ? state.domain : undefined;
resourceInputs["project"] = state ? state.project : undefined;
resourceInputs["selectiveAuthentication"] = state ? state.selectiveAuthentication : undefined;
resourceInputs["targetDnsIpAddresses"] = state ? state.targetDnsIpAddresses : undefined;
resourceInputs["targetDomainName"] = state ? state.targetDomainName : undefined;
resourceInputs["trustDirection"] = state ? state.trustDirection : undefined;
resourceInputs["trustHandshakeSecret"] = state ? state.trustHandshakeSecret : undefined;
resourceInputs["trustType"] = state ? state.trustType : undefined;
}
else {
const args = argsOrState;
if ((!args || args.domain === undefined) && !opts.urn) {
throw new Error("Missing required property 'domain'");
}
if ((!args || args.targetDnsIpAddresses === undefined) && !opts.urn) {
throw new Error("Missing required property 'targetDnsIpAddresses'");
}
if ((!args || args.targetDomainName === undefined) && !opts.urn) {
throw new Error("Missing required property 'targetDomainName'");
}
if ((!args || args.trustDirection === undefined) && !opts.urn) {
throw new Error("Missing required property 'trustDirection'");
}
if ((!args || args.trustHandshakeSecret === undefined) && !opts.urn) {
throw new Error("Missing required property 'trustHandshakeSecret'");
}
if ((!args || args.trustType === undefined) && !opts.urn) {
throw new Error("Missing required property 'trustType'");
}
resourceInputs["domain"] = args ? args.domain : undefined;
resourceInputs["project"] = args ? args.project : undefined;
resourceInputs["selectiveAuthentication"] = args ? args.selectiveAuthentication : undefined;
resourceInputs["targetDnsIpAddresses"] = args ? args.targetDnsIpAddresses : undefined;
resourceInputs["targetDomainName"] = args ? args.targetDomainName : undefined;
resourceInputs["trustDirection"] = args ? args.trustDirection : undefined;
resourceInputs["trustHandshakeSecret"] = (args === null || args === void 0 ? void 0 : args.trustHandshakeSecret) ? pulumi.secret(args.trustHandshakeSecret) : undefined;
resourceInputs["trustType"] = args ? args.trustType : undefined;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["trustHandshakeSecret"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(DomainTrust.__pulumiType, name, resourceInputs, opts);
}
}
exports.DomainTrust = DomainTrust;
/** @internal */
DomainTrust.__pulumiType = 'gcp:activedirectory/domainTrust:DomainTrust';
//# sourceMappingURL=domainTrust.js.map