@huaweicloudos/pulumi
Version:
A Pulumi package for creating and managing Huaweicloud cloud resources.
282 lines (281 loc) • 12.5 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Manages a dedicated microservice resource within HuaweiCloud.
*
* > 1. Before creating a configuration, make sure the engine has enabled the rules shown in the appendix
* > table.
* > <br/> 2. When deleting a microservice, all instances under it will also be deleted together.
*
* ## Example Usage
* ## Appendix
*
* <a name="microserviceDefaultEngineAccessRules"></a>
* Security group rules required to access the engine:
* (Remote is not the minimum range and can be adjusted according to business needs)
*
* | Direction | Priority | Action | Protocol | Ports | Ethertype | Remote |
* | --------- | -------- | ------ | -------- | ------------- | --------- | --------------------- |
* | Ingress | 1 | Allow | ICMP | All | Ipv6 | ::/0 |
* | Ingress | 1 | Allow | TCP | 30100-30130 | Ipv6 | ::/0 |
* | Ingress | 1 | Allow | All | All | Ipv6 | cse-engine-default-sg |
* | Ingress | 1 | Allow | ICMP | All | Ipv4 | 0.0.0.0/0 |
* | Ingress | 1 | Allow | TCP | 30100-30130 | Ipv4 | 0.0.0.0/0 |
* | Ingress | 1 | Allow | All | All | Ipv4 | cse-engine-default-sg |
* | Egress | 100 | Allow | All | All | Ipv6 | ::/0 |
* | Egress | 100 | Allow | All | All | Ipv4 | 0.0.0.0/0 |
*
* ## Import
*
* Microservices can be imported using related `auth_address`, `connect_address` and their `id`, separated by the slashes (/), e.g. bash
*
* ```sh
* $ pulumi import huaweicloud:Cse/microservice:Microservice test <auth_address>/<connect_address>/<id>
* ```
*
* If you enabled the **RBAC** authorization, you also need to provide the account name (`admin_user`) and password (`admin_pass`) of the microservice engine. All fields separated by the slashes (/), e.g. bash
*
* ```sh
* $ pulumi import huaweicloud:Cse/microservice:Microservice test <auth_address>/<connect_address>/<id>/<admin_user>/<admin_pass>
* ```
*
* The single quotes (') or backslashes (\\) can help you solve the problem of special characters reporting errors on bash. bash
*
* ```sh
* $ pulumi import huaweicloud:Cse/microservice:Microservice test https://124.70.26.32:30100/https://124.70.26.32:30100/f14960ba495e03f59f85aacaaafbdef3fbff3f0d/root/Test\!123
* ```
*
* bash
*
* ```sh
* $ pulumi import huaweicloud:Cse/microservice:Microservice test 'https://124.70.26.32:30100/https://124.70.26.32:30100/f14960ba495e03f59f85aacaaafbdef3fbff3f0d/root/Test!123'
* ```
*/
export declare class Microservice extends pulumi.CustomResource {
/**
* Get an existing Microservice 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: string, id: pulumi.Input<pulumi.ID>, state?: MicroserviceState, opts?: pulumi.CustomResourceOptions): Microservice;
/**
* Returns true if the given object is an instance of Microservice. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is Microservice;
/**
* Specifies the account password for **RBAC** login.
* The password format must meet the following conditions:
* + Must be `8` to `32` characters long.
* + A password must contain at least one digit, one uppercase letter, one lowercase letter, and one special character
* (-~!@#%^*_=+?$&()|<>{}[]).
* + Cannot be the account name or account name spelled backwards.
* + The password can only start with a letter.
*/
readonly adminPass: pulumi.Output<string | undefined>;
/**
* Specifies the account name for **RBAC** login.
* Changing this will create a new resource.
*/
readonly adminUser: pulumi.Output<string | undefined>;
/**
* Specifies the name of the dedicated microservice application.
* Changing this will create a new microservice.
*/
readonly appName: pulumi.Output<string>;
/**
* Specifies the address that used to request the access token.
* Usually is the connection address of service center.
* Changing this will create a new resource.
*/
readonly authAddress: pulumi.Output<string>;
/**
* Specifies the address that used to access engine and manages
* microservice.
* Usually is the connection address of service center.
* Changing this will create a new resource.
*/
readonly connectAddress: pulumi.Output<string>;
/**
* Specifies the description of the dedicated microservice.
* The description can contain a maximum of `256` characters.
* Changing this will create a new microservice.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* Specifies the environment (stage) type.
* The valid values are **development**, **testing**, **acceptance** and **production**.
* If omitted, the microservice will be deployed in an empty environment.
* Changing this will create a new microservice.
*/
readonly environment: pulumi.Output<string | undefined>;
/**
* Specifies the microservice level.
* The valid values are **FRONT**, **MIDDLE**, and **BACK**. Changing this will create a new microservice.
*/
readonly level: pulumi.Output<string | undefined>;
/**
* Specifies the name of the dedicated microservice.
* The name can contain `1` to `128` characters, only letters, digits, underscore (_), hyphens (-) and dots (.) are
* allowed. The name must start and end with a letter or digit. Changing this will create a new microservice.
*/
readonly name: pulumi.Output<string>;
/**
* The microservice status. The values supports **UP** and **DOWN**.
*/
readonly status: pulumi.Output<string>;
/**
* Specifies the version of the dedicated microservice.
* Changing this will create a new microservice.
*/
readonly version: pulumi.Output<string>;
/**
* Create a Microservice resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: MicroserviceArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering Microservice resources.
*/
export interface MicroserviceState {
/**
* Specifies the account password for **RBAC** login.
* The password format must meet the following conditions:
* + Must be `8` to `32` characters long.
* + A password must contain at least one digit, one uppercase letter, one lowercase letter, and one special character
* (-~!@#%^*_=+?$&()|<>{}[]).
* + Cannot be the account name or account name spelled backwards.
* + The password can only start with a letter.
*/
adminPass?: pulumi.Input<string>;
/**
* Specifies the account name for **RBAC** login.
* Changing this will create a new resource.
*/
adminUser?: pulumi.Input<string>;
/**
* Specifies the name of the dedicated microservice application.
* Changing this will create a new microservice.
*/
appName?: pulumi.Input<string>;
/**
* Specifies the address that used to request the access token.
* Usually is the connection address of service center.
* Changing this will create a new resource.
*/
authAddress?: pulumi.Input<string>;
/**
* Specifies the address that used to access engine and manages
* microservice.
* Usually is the connection address of service center.
* Changing this will create a new resource.
*/
connectAddress?: pulumi.Input<string>;
/**
* Specifies the description of the dedicated microservice.
* The description can contain a maximum of `256` characters.
* Changing this will create a new microservice.
*/
description?: pulumi.Input<string>;
/**
* Specifies the environment (stage) type.
* The valid values are **development**, **testing**, **acceptance** and **production**.
* If omitted, the microservice will be deployed in an empty environment.
* Changing this will create a new microservice.
*/
environment?: pulumi.Input<string>;
/**
* Specifies the microservice level.
* The valid values are **FRONT**, **MIDDLE**, and **BACK**. Changing this will create a new microservice.
*/
level?: pulumi.Input<string>;
/**
* Specifies the name of the dedicated microservice.
* The name can contain `1` to `128` characters, only letters, digits, underscore (_), hyphens (-) and dots (.) are
* allowed. The name must start and end with a letter or digit. Changing this will create a new microservice.
*/
name?: pulumi.Input<string>;
/**
* The microservice status. The values supports **UP** and **DOWN**.
*/
status?: pulumi.Input<string>;
/**
* Specifies the version of the dedicated microservice.
* Changing this will create a new microservice.
*/
version?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a Microservice resource.
*/
export interface MicroserviceArgs {
/**
* Specifies the account password for **RBAC** login.
* The password format must meet the following conditions:
* + Must be `8` to `32` characters long.
* + A password must contain at least one digit, one uppercase letter, one lowercase letter, and one special character
* (-~!@#%^*_=+?$&()|<>{}[]).
* + Cannot be the account name or account name spelled backwards.
* + The password can only start with a letter.
*/
adminPass?: pulumi.Input<string>;
/**
* Specifies the account name for **RBAC** login.
* Changing this will create a new resource.
*/
adminUser?: pulumi.Input<string>;
/**
* Specifies the name of the dedicated microservice application.
* Changing this will create a new microservice.
*/
appName: pulumi.Input<string>;
/**
* Specifies the address that used to request the access token.
* Usually is the connection address of service center.
* Changing this will create a new resource.
*/
authAddress?: pulumi.Input<string>;
/**
* Specifies the address that used to access engine and manages
* microservice.
* Usually is the connection address of service center.
* Changing this will create a new resource.
*/
connectAddress: pulumi.Input<string>;
/**
* Specifies the description of the dedicated microservice.
* The description can contain a maximum of `256` characters.
* Changing this will create a new microservice.
*/
description?: pulumi.Input<string>;
/**
* Specifies the environment (stage) type.
* The valid values are **development**, **testing**, **acceptance** and **production**.
* If omitted, the microservice will be deployed in an empty environment.
* Changing this will create a new microservice.
*/
environment?: pulumi.Input<string>;
/**
* Specifies the microservice level.
* The valid values are **FRONT**, **MIDDLE**, and **BACK**. Changing this will create a new microservice.
*/
level?: pulumi.Input<string>;
/**
* Specifies the name of the dedicated microservice.
* The name can contain `1` to `128` characters, only letters, digits, underscore (_), hyphens (-) and dots (.) are
* allowed. The name must start and end with a letter or digit. Changing this will create a new microservice.
*/
name?: pulumi.Input<string>;
/**
* Specifies the version of the dedicated microservice.
* Changing this will create a new microservice.
*/
version: pulumi.Input<string>;
}