@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
126 lines • 4.7 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.EngineModel = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* ## Example Usage
*
* ### Ml Model Basic
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const _default = new gcp.ml.EngineModel("default", {
* name: "default",
* description: "My model",
* regions: "us-central1",
* });
* ```
* ### Ml Model Full
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const _default = new gcp.ml.EngineModel("default", {
* name: "default",
* description: "My model",
* regions: "us-central1",
* labels: {
* my_model: "foo",
* },
* onlinePredictionLogging: true,
* onlinePredictionConsoleLogging: true,
* });
* ```
*
* ## Import
*
* Model can be imported using any of these accepted formats:
*
* * `projects/{{project}}/models/{{name}}`
*
* * `{{project}}/{{name}}`
*
* * `{{name}}`
*
* When using the `pulumi import` command, Model can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:ml/engineModel:EngineModel default projects/{{project}}/models/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:ml/engineModel:EngineModel default {{project}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:ml/engineModel:EngineModel default {{name}}
* ```
*/
class EngineModel extends pulumi.CustomResource {
/**
* Get an existing EngineModel 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 EngineModel(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of EngineModel. 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'] === EngineModel.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["defaultVersion"] = state?.defaultVersion;
resourceInputs["description"] = state?.description;
resourceInputs["effectiveLabels"] = state?.effectiveLabels;
resourceInputs["labels"] = state?.labels;
resourceInputs["name"] = state?.name;
resourceInputs["onlinePredictionConsoleLogging"] = state?.onlinePredictionConsoleLogging;
resourceInputs["onlinePredictionLogging"] = state?.onlinePredictionLogging;
resourceInputs["project"] = state?.project;
resourceInputs["pulumiLabels"] = state?.pulumiLabels;
resourceInputs["regions"] = state?.regions;
}
else {
const args = argsOrState;
resourceInputs["defaultVersion"] = args?.defaultVersion;
resourceInputs["description"] = args?.description;
resourceInputs["labels"] = args?.labels;
resourceInputs["name"] = args?.name;
resourceInputs["onlinePredictionConsoleLogging"] = args?.onlinePredictionConsoleLogging;
resourceInputs["onlinePredictionLogging"] = args?.onlinePredictionLogging;
resourceInputs["project"] = args?.project;
resourceInputs["regions"] = args?.regions;
resourceInputs["effectiveLabels"] = undefined /*out*/;
resourceInputs["pulumiLabels"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
const secretOpts = { additionalSecretOutputs: ["effectiveLabels", "pulumiLabels"] };
opts = pulumi.mergeOptions(opts, secretOpts);
super(EngineModel.__pulumiType, name, resourceInputs, opts);
}
}
exports.EngineModel = EngineModel;
/** @internal */
EngineModel.__pulumiType = 'gcp:ml/engineModel:EngineModel';
//# sourceMappingURL=engineModel.js.map
;