@pulumiverse/cpln
Version:
A Pulumi package for creating and managing Control Plane (cpln) resources.
75 lines • 4.2 kB
JavaScript
;
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrgLogging = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("./utilities");
class OrgLogging extends pulumi.CustomResource {
/**
* Get an existing OrgLogging 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 OrgLogging(name, state, Object.assign(Object.assign({}, opts), { id: id }));
}
/**
* Returns true if the given object is an instance of OrgLogging. 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'] === OrgLogging.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["cloudWatchLoggings"] = state ? state.cloudWatchLoggings : undefined;
resourceInputs["coralogixLoggings"] = state ? state.coralogixLoggings : undefined;
resourceInputs["cplnId"] = state ? state.cplnId : undefined;
resourceInputs["datadogLoggings"] = state ? state.datadogLoggings : undefined;
resourceInputs["description"] = state ? state.description : undefined;
resourceInputs["elasticLoggings"] = state ? state.elasticLoggings : undefined;
resourceInputs["fluentdLoggings"] = state ? state.fluentdLoggings : undefined;
resourceInputs["logzioLoggings"] = state ? state.logzioLoggings : undefined;
resourceInputs["name"] = state ? state.name : undefined;
resourceInputs["s3Loggings"] = state ? state.s3Loggings : undefined;
resourceInputs["selfLink"] = state ? state.selfLink : undefined;
resourceInputs["stackdriverLoggings"] = state ? state.stackdriverLoggings : undefined;
resourceInputs["syslogLoggings"] = state ? state.syslogLoggings : undefined;
resourceInputs["tags"] = state ? state.tags : undefined;
}
else {
const args = argsOrState;
resourceInputs["cloudWatchLoggings"] = args ? args.cloudWatchLoggings : undefined;
resourceInputs["coralogixLoggings"] = args ? args.coralogixLoggings : undefined;
resourceInputs["datadogLoggings"] = args ? args.datadogLoggings : undefined;
resourceInputs["elasticLoggings"] = args ? args.elasticLoggings : undefined;
resourceInputs["fluentdLoggings"] = args ? args.fluentdLoggings : undefined;
resourceInputs["logzioLoggings"] = args ? args.logzioLoggings : undefined;
resourceInputs["s3Loggings"] = args ? args.s3Loggings : undefined;
resourceInputs["stackdriverLoggings"] = args ? args.stackdriverLoggings : undefined;
resourceInputs["syslogLoggings"] = args ? args.syslogLoggings : undefined;
resourceInputs["cplnId"] = undefined /*out*/;
resourceInputs["description"] = undefined /*out*/;
resourceInputs["name"] = undefined /*out*/;
resourceInputs["selfLink"] = undefined /*out*/;
resourceInputs["tags"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(OrgLogging.__pulumiType, name, resourceInputs, opts);
}
}
exports.OrgLogging = OrgLogging;
/** @internal */
OrgLogging.__pulumiType = 'cpln:index/orgLogging:OrgLogging';
//# sourceMappingURL=orgLogging.js.map