@pulumiverse/cpln
Version:
A Pulumi package for creating and managing Control Plane (cpln) resources.
79 lines • 4.04 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, { ...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?.cloudWatchLoggings;
resourceInputs["coralogixLoggings"] = state?.coralogixLoggings;
resourceInputs["cplnId"] = state?.cplnId;
resourceInputs["datadogLoggings"] = state?.datadogLoggings;
resourceInputs["description"] = state?.description;
resourceInputs["elasticLoggings"] = state?.elasticLoggings;
resourceInputs["fluentdLoggings"] = state?.fluentdLoggings;
resourceInputs["logzioLoggings"] = state?.logzioLoggings;
resourceInputs["lokiLoggings"] = state?.lokiLoggings;
resourceInputs["name"] = state?.name;
resourceInputs["opentelemetryLoggings"] = state?.opentelemetryLoggings;
resourceInputs["s3Loggings"] = state?.s3Loggings;
resourceInputs["selfLink"] = state?.selfLink;
resourceInputs["stackdriverLoggings"] = state?.stackdriverLoggings;
resourceInputs["syslogLoggings"] = state?.syslogLoggings;
resourceInputs["tags"] = state?.tags;
}
else {
const args = argsOrState;
resourceInputs["cloudWatchLoggings"] = args?.cloudWatchLoggings;
resourceInputs["coralogixLoggings"] = args?.coralogixLoggings;
resourceInputs["datadogLoggings"] = args?.datadogLoggings;
resourceInputs["elasticLoggings"] = args?.elasticLoggings;
resourceInputs["fluentdLoggings"] = args?.fluentdLoggings;
resourceInputs["logzioLoggings"] = args?.logzioLoggings;
resourceInputs["lokiLoggings"] = args?.lokiLoggings;
resourceInputs["opentelemetryLoggings"] = args?.opentelemetryLoggings;
resourceInputs["s3Loggings"] = args?.s3Loggings;
resourceInputs["stackdriverLoggings"] = args?.stackdriverLoggings;
resourceInputs["syslogLoggings"] = args?.syslogLoggings;
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