alicloud.pai.Service
Explore with Pulumi AI
Provides a PAI Service resource.
Eas service instance.
For information about PAI Service and how to use it, see What is Service.
NOTE: Available since v1.238.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new alicloud.pai.Service("default", {
labels: {
"0": JSON.stringify({
LabelKey: "examplekey",
LabelValue: "examplevalue",
}),
},
develop: "false",
serviceConfig: JSON.stringify({
metadata: {
cpu: 1,
gpu: 0,
instance: 1,
memory: 2000,
name: "tfexample",
rpc: {
keepalive: 70000,
},
},
model_path: "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz",
processor_entry: "libecho.so",
processor_path: "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz",
processor_type: "cpp",
}),
});
import pulumi
import json
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.pai.Service("default",
labels={
"0": json.dumps({
"LabelKey": "examplekey",
"LabelValue": "examplevalue",
}),
},
develop="false",
service_config=json.dumps({
"metadata": {
"cpu": 1,
"gpu": 0,
"instance": 1,
"memory": 2000,
"name": "tfexample",
"rpc": {
"keepalive": 70000,
},
},
"model_path": "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz",
"processor_entry": "libecho.so",
"processor_path": "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz",
"processor_type": "cpp",
}))
package main
import (
"encoding/json"
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/pai"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
tmpJSON0, err := json.Marshal(map[string]interface{}{
"LabelKey": "examplekey",
"LabelValue": "examplevalue",
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
tmpJSON1, err := json.Marshal(map[string]interface{}{
"metadata": map[string]interface{}{
"cpu": 1,
"gpu": 0,
"instance": 1,
"memory": 2000,
"name": "tfexample",
"rpc": map[string]interface{}{
"keepalive": 70000,
},
},
"model_path": "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz",
"processor_entry": "libecho.so",
"processor_path": "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz",
"processor_type": "cpp",
})
if err != nil {
return err
}
json1 := string(tmpJSON1)
_, err = pai.NewService(ctx, "default", &pai.ServiceArgs{
Labels: pulumi.StringMap{
"0": pulumi.String(json0),
},
Develop: pulumi.String("false"),
ServiceConfig: pulumi.String(json1),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = new AliCloud.Pai.Service("default", new()
{
Labels =
{
{ "0", JsonSerializer.Serialize(new Dictionary<string, object?>
{
["LabelKey"] = "examplekey",
["LabelValue"] = "examplevalue",
}) },
},
Develop = "false",
ServiceConfig = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["metadata"] = new Dictionary<string, object?>
{
["cpu"] = 1,
["gpu"] = 0,
["instance"] = 1,
["memory"] = 2000,
["name"] = "tfexample",
["rpc"] = new Dictionary<string, object?>
{
["keepalive"] = 70000,
},
},
["model_path"] = "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz",
["processor_entry"] = "libecho.so",
["processor_path"] = "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz",
["processor_type"] = "cpp",
}),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.pai.Service;
import com.pulumi.alicloud.pai.ServiceArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var default_ = new Service("default", ServiceArgs.builder()
.labels(Map.of("0", serializeJson(
jsonObject(
jsonProperty("LabelKey", "examplekey"),
jsonProperty("LabelValue", "examplevalue")
))))
.develop("false")
.serviceConfig(serializeJson(
jsonObject(
jsonProperty("metadata", jsonObject(
jsonProperty("cpu", 1),
jsonProperty("gpu", 0),
jsonProperty("instance", 1),
jsonProperty("memory", 2000),
jsonProperty("name", "tfexample"),
jsonProperty("rpc", jsonObject(
jsonProperty("keepalive", 70000)
))
)),
jsonProperty("model_path", "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz"),
jsonProperty("processor_entry", "libecho.so"),
jsonProperty("processor_path", "http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz"),
jsonProperty("processor_type", "cpp")
)))
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:pai:Service
properties:
labels:
'0':
fn::toJSON:
LabelKey: examplekey
LabelValue: examplevalue
develop: 'false'
serviceConfig:
fn::toJSON:
metadata:
cpu: 1
gpu: 0
instance: 1
memory: 2000
name: tfexample
rpc:
keepalive: 70000
model_path: http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz
processor_entry: libecho.so
processor_path: http://eas-data.oss-cn-shanghai.aliyuncs.com/processors/echo_processor_release.tar.gz
processor_type: cpp
Create Service Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Service(name: string, args: ServiceArgs, opts?: CustomResourceOptions);
@overload
def Service(resource_name: str,
args: ServiceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Service(resource_name: str,
opts: Optional[ResourceOptions] = None,
service_config: Optional[str] = None,
develop: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
status: Optional[str] = None,
workspace_id: Optional[str] = None)
func NewService(ctx *Context, name string, args ServiceArgs, opts ...ResourceOption) (*Service, error)
public Service(string name, ServiceArgs args, CustomResourceOptions? opts = null)
public Service(String name, ServiceArgs args)
public Service(String name, ServiceArgs args, CustomResourceOptions options)
type: alicloud:pai:Service
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var alicloudServiceResource = new AliCloud.Pai.Service("alicloudServiceResource", new()
{
ServiceConfig = "string",
Develop = "string",
Labels =
{
{ "string", "string" },
},
Status = "string",
WorkspaceId = "string",
});
example, err := pai.NewService(ctx, "alicloudServiceResource", &pai.ServiceArgs{
ServiceConfig: pulumi.String("string"),
Develop: pulumi.String("string"),
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Status: pulumi.String("string"),
WorkspaceId: pulumi.String("string"),
})
var alicloudServiceResource = new Service("alicloudServiceResource", ServiceArgs.builder()
.serviceConfig("string")
.develop("string")
.labels(Map.of("string", "string"))
.status("string")
.workspaceId("string")
.build());
alicloud_service_resource = alicloud.pai.Service("alicloudServiceResource",
service_config="string",
develop="string",
labels={
"string": "string",
},
status="string",
workspace_id="string")
const alicloudServiceResource = new alicloud.pai.Service("alicloudServiceResource", {
serviceConfig: "string",
develop: "string",
labels: {
string: "string",
},
status: "string",
workspaceId: "string",
});
type: alicloud:pai:Service
properties:
develop: string
labels:
string: string
serviceConfig: string
status: string
workspaceId: string
Service Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Service resource accepts the following input properties:
- Service
Config string - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- Develop string
- Whether to enter the development mode.
- Labels Dictionary<string, string>
- Service Tag.
- Status string
- Service Current Status, valid values
Running
,Stopped
. - Workspace
Id string - Workspace id
- Service
Config string - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- Develop string
- Whether to enter the development mode.
- Labels map[string]string
- Service Tag.
- Status string
- Service Current Status, valid values
Running
,Stopped
. - Workspace
Id string - Workspace id
- service
Config String - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- develop String
- Whether to enter the development mode.
- labels Map<String,String>
- Service Tag.
- status String
- Service Current Status, valid values
Running
,Stopped
. - workspace
Id String - Workspace id
- service
Config string - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- develop string
- Whether to enter the development mode.
- labels {[key: string]: string}
- Service Tag.
- status string
- Service Current Status, valid values
Running
,Stopped
. - workspace
Id string - Workspace id
- service_
config str - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- develop str
- Whether to enter the development mode.
- labels Mapping[str, str]
- Service Tag.
- status str
- Service Current Status, valid values
Running
,Stopped
. - workspace_
id str - Workspace id
- service
Config String - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- develop String
- Whether to enter the development mode.
- labels Map<String>
- Service Tag.
- status String
- Service Current Status, valid values
Running
,Stopped
. - workspace
Id String - Workspace id
Outputs
All input properties are implicitly available as output properties. Additionally, the Service resource produces the following output properties:
- Create
Time string - Creation time of the service
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - The region ID of the resource
- Create
Time string - Creation time of the service
- Id string
- The provider-assigned unique ID for this managed resource.
- Region
Id string - The region ID of the resource
- create
Time String - Creation time of the service
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - The region ID of the resource
- create
Time string - Creation time of the service
- id string
- The provider-assigned unique ID for this managed resource.
- region
Id string - The region ID of the resource
- create_
time str - Creation time of the service
- id str
- The provider-assigned unique ID for this managed resource.
- region_
id str - The region ID of the resource
- create
Time String - Creation time of the service
- id String
- The provider-assigned unique ID for this managed resource.
- region
Id String - The region ID of the resource
Look up Existing Service Resource
Get an existing Service resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ServiceState, opts?: CustomResourceOptions): Service
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
develop: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
region_id: Optional[str] = None,
service_config: Optional[str] = None,
status: Optional[str] = None,
workspace_id: Optional[str] = None) -> Service
func GetService(ctx *Context, name string, id IDInput, state *ServiceState, opts ...ResourceOption) (*Service, error)
public static Service Get(string name, Input<string> id, ServiceState? state, CustomResourceOptions? opts = null)
public static Service get(String name, Output<String> id, ServiceState state, CustomResourceOptions options)
resources: _: type: alicloud:pai:Service get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Time string - Creation time of the service
- Develop string
- Whether to enter the development mode.
- Labels Dictionary<string, string>
- Service Tag.
- Region
Id string - The region ID of the resource
- Service
Config string - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- Status string
- Service Current Status, valid values
Running
,Stopped
. - Workspace
Id string - Workspace id
- Create
Time string - Creation time of the service
- Develop string
- Whether to enter the development mode.
- Labels map[string]string
- Service Tag.
- Region
Id string - The region ID of the resource
- Service
Config string - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- Status string
- Service Current Status, valid values
Running
,Stopped
. - Workspace
Id string - Workspace id
- create
Time String - Creation time of the service
- develop String
- Whether to enter the development mode.
- labels Map<String,String>
- Service Tag.
- region
Id String - The region ID of the resource
- service
Config String - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- status String
- Service Current Status, valid values
Running
,Stopped
. - workspace
Id String - Workspace id
- create
Time string - Creation time of the service
- develop string
- Whether to enter the development mode.
- labels {[key: string]: string}
- Service Tag.
- region
Id string - The region ID of the resource
- service
Config string - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- status string
- Service Current Status, valid values
Running
,Stopped
. - workspace
Id string - Workspace id
- create_
time str - Creation time of the service
- develop str
- Whether to enter the development mode.
- labels Mapping[str, str]
- Service Tag.
- region_
id str - The region ID of the resource
- service_
config str - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- status str
- Service Current Status, valid values
Running
,Stopped
. - workspace_
id str - Workspace id
- create
Time String - Creation time of the service
- develop String
- Whether to enter the development mode.
- labels Map<String>
- Service Tag.
- region
Id String - The region ID of the resource
- service
Config String - Service configuration information. Please refer to https://www.alibabacloud.com/help/en/pai/user-guide/parameters-of-model-services
- status String
- Service Current Status, valid values
Running
,Stopped
. - workspace
Id String - Workspace id
Import
PAI Service can be imported using the id, e.g.
$ pulumi import alicloud:pai/service:Service example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.