published on Thursday, Apr 23, 2026 by Volcengine
published on Thursday, Apr 23, 2026 by Volcengine
Workspace is an abstract integration of data collection and rules in the VMP service, providing users with physical or logical isolation for Prometheus capabilities. You can create different workspaces in the VMP service, and data in different workspaces is isolated from each other
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as volcenginecc from "@volcengine/pulumi-volcenginecc";
const workspaceDemo = new volcenginecc.vmp.Workspace("WorkspaceDemo", {
authType: "BearerToken",
bearerToken: "M3cSN7gssM09-6wO8vdqo_xxxxxxxx",
deleteProtectionEnabled: false,
description: "test workspace",
instanceTypeId: "vmp.standard.30d",
name: "terraform_test_BearerToken",
projectName: "default",
publicAccessEnabled: true,
publicQueryBandwidth: 2,
publicWriteBandwidth: 50,
searchLatencyOffset: "32s",
tags: [{
key: "env",
value: "test",
}],
});
import pulumi
import pulumi_volcenginecc as volcenginecc
workspace_demo = volcenginecc.vmp.Workspace("WorkspaceDemo",
auth_type="BearerToken",
bearer_token="M3cSN7gssM09-6wO8vdqo_xxxxxxxx",
delete_protection_enabled=False,
description="test workspace",
instance_type_id="vmp.standard.30d",
name="terraform_test_BearerToken",
project_name="default",
public_access_enabled=True,
public_query_bandwidth=2,
public_write_bandwidth=50,
search_latency_offset="32s",
tags=[{
"key": "env",
"value": "test",
}])
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/volcengine/pulumi-volcenginecc/sdk/go/volcenginecc/vmp"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vmp.NewWorkspace(ctx, "WorkspaceDemo", &vmp.WorkspaceArgs{
AuthType: pulumi.String("BearerToken"),
BearerToken: pulumi.String("M3cSN7gssM09-6wO8vdqo_xxxxxxxx"),
DeleteProtectionEnabled: pulumi.Bool(false),
Description: pulumi.String("test workspace"),
InstanceTypeId: pulumi.String("vmp.standard.30d"),
Name: pulumi.String("terraform_test_BearerToken"),
ProjectName: pulumi.String("default"),
PublicAccessEnabled: pulumi.Bool(true),
PublicQueryBandwidth: pulumi.Int(2),
PublicWriteBandwidth: pulumi.Int(50),
SearchLatencyOffset: pulumi.String("32s"),
Tags: vmp.WorkspaceTagArray{
&vmp.WorkspaceTagArgs{
Key: pulumi.String("env"),
Value: pulumi.String("test"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Volcenginecc = Volcengine.Pulumi.Volcenginecc;
return await Deployment.RunAsync(() =>
{
var workspaceDemo = new Volcenginecc.Vmp.Workspace("WorkspaceDemo", new()
{
AuthType = "BearerToken",
BearerToken = "M3cSN7gssM09-6wO8vdqo_xxxxxxxx",
DeleteProtectionEnabled = false,
Description = "test workspace",
InstanceTypeId = "vmp.standard.30d",
Name = "terraform_test_BearerToken",
ProjectName = "default",
PublicAccessEnabled = true,
PublicQueryBandwidth = 2,
PublicWriteBandwidth = 50,
SearchLatencyOffset = "32s",
Tags = new[]
{
new Volcenginecc.Vmp.Inputs.WorkspaceTagArgs
{
Key = "env",
Value = "test",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.volcengine.volcenginecc.vmp.Workspace;
import com.volcengine.volcenginecc.vmp.WorkspaceArgs;
import com.pulumi.volcenginecc.vmp.inputs.WorkspaceTagArgs;
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) {
var workspaceDemo = new Workspace("workspaceDemo", WorkspaceArgs.builder()
.authType("BearerToken")
.bearerToken("M3cSN7gssM09-6wO8vdqo_xxxxxxxx")
.deleteProtectionEnabled(false)
.description("test workspace")
.instanceTypeId("vmp.standard.30d")
.name("terraform_test_BearerToken")
.projectName("default")
.publicAccessEnabled(true)
.publicQueryBandwidth(2)
.publicWriteBandwidth(50)
.searchLatencyOffset("32s")
.tags(WorkspaceTagArgs.builder()
.key("env")
.value("test")
.build())
.build());
}
}
resources:
workspaceDemo:
type: volcenginecc:vmp:Workspace
name: WorkspaceDemo
properties:
authType: BearerToken
bearerToken: M3cSN7gssM09-6wO8vdqo_xxxxxxxx
deleteProtectionEnabled: false
description: test workspace
instanceTypeId: vmp.standard.30d
name: terraform_test_BearerToken
projectName: default
publicAccessEnabled: true
publicQueryBandwidth: 2
publicWriteBandwidth: 50
searchLatencyOffset: 32s
tags:
- key: env
value: test
Create Workspace Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Workspace(name: string, args: WorkspaceArgs, opts?: CustomResourceOptions);@overload
def Workspace(resource_name: str,
args: WorkspaceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Workspace(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_type_id: Optional[str] = None,
name: Optional[str] = None,
password: Optional[str] = None,
description: Optional[str] = None,
delete_protection_enabled: Optional[bool] = None,
bearer_token: Optional[str] = None,
auth_type: Optional[str] = None,
project_name: Optional[str] = None,
public_access_enabled: Optional[bool] = None,
public_query_bandwidth: Optional[int] = None,
public_write_bandwidth: Optional[int] = None,
quota: Optional[WorkspaceQuotaArgs] = None,
search_latency_offset: Optional[str] = None,
tags: Optional[Sequence[WorkspaceTagArgs]] = None,
username: Optional[str] = None)func NewWorkspace(ctx *Context, name string, args WorkspaceArgs, opts ...ResourceOption) (*Workspace, error)public Workspace(string name, WorkspaceArgs args, CustomResourceOptions? opts = null)
public Workspace(String name, WorkspaceArgs args)
public Workspace(String name, WorkspaceArgs args, CustomResourceOptions options)
type: volcenginecc:vmp:Workspace
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 WorkspaceArgs
- 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 WorkspaceArgs
- 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 WorkspaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Workspace 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 Workspace resource accepts the following input properties:
- Instance
Type stringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- Name string
- Workspace name, string, length limit 1–100
- Auth
Type string - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- Bearer
Token string - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- Delete
Protection boolEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- Description string
- Workspace description, string, length limit 0–200
- Password string
- Workspace BasicAuth password
- Project
Name string - Project name
- Public
Access boolEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- Public
Query intBandwidth - Workspace public Query bandwidth (Mbps).
- Public
Write intBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- Quota
Volcengine.
Workspace Quota - Workspace quota details
- Search
Latency stringOffset - Workspace public Query search latency offset.
-
List<Volcengine.
Workspace Tag> - Username string
- Workspace BasicAuth username
- Instance
Type stringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- Name string
- Workspace name, string, length limit 1–100
- Auth
Type string - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- Bearer
Token string - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- Delete
Protection boolEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- Description string
- Workspace description, string, length limit 0–200
- Password string
- Workspace BasicAuth password
- Project
Name string - Project name
- Public
Access boolEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- Public
Query intBandwidth - Workspace public Query bandwidth (Mbps).
- Public
Write intBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- Quota
Workspace
Quota Args - Workspace quota details
- Search
Latency stringOffset - Workspace public Query search latency offset.
-
[]Workspace
Tag Args - Username string
- Workspace BasicAuth username
- instance
Type StringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- name String
- Workspace name, string, length limit 1–100
- auth
Type String - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- bearer
Token String - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- delete
Protection BooleanEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- description String
- Workspace description, string, length limit 0–200
- password String
- Workspace BasicAuth password
- project
Name String - Project name
- public
Access BooleanEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- public
Query IntegerBandwidth - Workspace public Query bandwidth (Mbps).
- public
Write IntegerBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- quota
Workspace
Quota - Workspace quota details
- search
Latency StringOffset - Workspace public Query search latency offset.
-
List<Workspace
Tag> - username String
- Workspace BasicAuth username
- instance
Type stringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- name string
- Workspace name, string, length limit 1–100
- auth
Type string - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- bearer
Token string - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- delete
Protection booleanEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- description string
- Workspace description, string, length limit 0–200
- password string
- Workspace BasicAuth password
- project
Name string - Project name
- public
Access booleanEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- public
Query numberBandwidth - Workspace public Query bandwidth (Mbps).
- public
Write numberBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- quota
Workspace
Quota - Workspace quota details
- search
Latency stringOffset - Workspace public Query search latency offset.
-
Workspace
Tag[] - username string
- Workspace BasicAuth username
- instance_
type_ strid - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- name str
- Workspace name, string, length limit 1–100
- auth_
type str - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- bearer_
token str - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- delete_
protection_ boolenabled - Enable workspace deletion protection: true for enabled, false for disabled
- description str
- Workspace description, string, length limit 0–200
- password str
- Workspace BasicAuth password
- project_
name str - Project name
- public_
access_ boolenabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- public_
query_ intbandwidth - Workspace public Query bandwidth (Mbps).
- public_
write_ intbandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- quota
Workspace
Quota Args - Workspace quota details
- search_
latency_ stroffset - Workspace public Query search latency offset.
-
Sequence[Workspace
Tag Args] - username str
- Workspace BasicAuth username
- instance
Type StringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- name String
- Workspace name, string, length limit 1–100
- auth
Type String - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- bearer
Token String - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- delete
Protection BooleanEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- description String
- Workspace description, string, length limit 0–200
- password String
- Workspace BasicAuth password
- project
Name String - Project name
- public
Access BooleanEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- public
Query NumberBandwidth - Workspace public Query bandwidth (Mbps).
- public
Write NumberBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- quota Property Map
- Workspace quota details
- search
Latency StringOffset - Workspace public Query search latency offset.
- List<Property Map>
- username String
- Workspace BasicAuth username
Outputs
All input properties are implicitly available as output properties. Additionally, the Workspace resource produces the following output properties:
- Create
Time string - Workspace creation time, RFC3339 format
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Type Volcengine.Workspace Instance Type - Workspace specification details
- Overdue
Reclaim stringTime - Workspace expected overdue recovery time, RFC3339 format
- Prometheus
Push stringEndpoint - Workspace public Push Gateway URL address.
- Prometheus
Push stringIntranet Endpoint - Workspace Push Gateway URL address
- Prometheus
Query stringEndpoint - Workspace public Query URL address.
- Prometheus
Query stringIntranet Endpoint - Workspace Query URL address
- Prometheus
Write stringEndpoint - Workspace public RemoteWrite URL address.
- Prometheus
Write stringIntranet Endpoint - Workspace RemoteWrite URL address
- Status string
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
- Usage
Volcengine.
Workspace Usage - Workspace usage
- Workspace
Id string - Workspace ID
- Create
Time string - Workspace creation time, RFC3339 format
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Type WorkspaceInstance Type - Workspace specification details
- Overdue
Reclaim stringTime - Workspace expected overdue recovery time, RFC3339 format
- Prometheus
Push stringEndpoint - Workspace public Push Gateway URL address.
- Prometheus
Push stringIntranet Endpoint - Workspace Push Gateway URL address
- Prometheus
Query stringEndpoint - Workspace public Query URL address.
- Prometheus
Query stringIntranet Endpoint - Workspace Query URL address
- Prometheus
Write stringEndpoint - Workspace public RemoteWrite URL address.
- Prometheus
Write stringIntranet Endpoint - Workspace RemoteWrite URL address
- Status string
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
- Usage
Workspace
Usage - Workspace usage
- Workspace
Id string - Workspace ID
- create
Time String - Workspace creation time, RFC3339 format
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Type WorkspaceInstance Type - Workspace specification details
- overdue
Reclaim StringTime - Workspace expected overdue recovery time, RFC3339 format
- prometheus
Push StringEndpoint - Workspace public Push Gateway URL address.
- prometheus
Push StringIntranet Endpoint - Workspace Push Gateway URL address
- prometheus
Query StringEndpoint - Workspace public Query URL address.
- prometheus
Query StringIntranet Endpoint - Workspace Query URL address
- prometheus
Write StringEndpoint - Workspace public RemoteWrite URL address.
- prometheus
Write StringIntranet Endpoint - Workspace RemoteWrite URL address
- status String
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
- usage
Workspace
Usage - Workspace usage
- workspace
Id String - Workspace ID
- create
Time string - Workspace creation time, RFC3339 format
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Type WorkspaceInstance Type - Workspace specification details
- overdue
Reclaim stringTime - Workspace expected overdue recovery time, RFC3339 format
- prometheus
Push stringEndpoint - Workspace public Push Gateway URL address.
- prometheus
Push stringIntranet Endpoint - Workspace Push Gateway URL address
- prometheus
Query stringEndpoint - Workspace public Query URL address.
- prometheus
Query stringIntranet Endpoint - Workspace Query URL address
- prometheus
Write stringEndpoint - Workspace public RemoteWrite URL address.
- prometheus
Write stringIntranet Endpoint - Workspace RemoteWrite URL address
- status string
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
- usage
Workspace
Usage - Workspace usage
- workspace
Id string - Workspace ID
- create_
time str - Workspace creation time, RFC3339 format
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
type WorkspaceInstance Type - Workspace specification details
- overdue_
reclaim_ strtime - Workspace expected overdue recovery time, RFC3339 format
- prometheus_
push_ strendpoint - Workspace public Push Gateway URL address.
- prometheus_
push_ strintranet_ endpoint - Workspace Push Gateway URL address
- prometheus_
query_ strendpoint - Workspace public Query URL address.
- prometheus_
query_ strintranet_ endpoint - Workspace Query URL address
- prometheus_
write_ strendpoint - Workspace public RemoteWrite URL address.
- prometheus_
write_ strintranet_ endpoint - Workspace RemoteWrite URL address
- status str
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
- usage
Workspace
Usage - Workspace usage
- workspace_
id str - Workspace ID
- create
Time String - Workspace creation time, RFC3339 format
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Type Property Map - Workspace specification details
- overdue
Reclaim StringTime - Workspace expected overdue recovery time, RFC3339 format
- prometheus
Push StringEndpoint - Workspace public Push Gateway URL address.
- prometheus
Push StringIntranet Endpoint - Workspace Push Gateway URL address
- prometheus
Query StringEndpoint - Workspace public Query URL address.
- prometheus
Query StringIntranet Endpoint - Workspace Query URL address
- prometheus
Write StringEndpoint - Workspace public RemoteWrite URL address.
- prometheus
Write StringIntranet Endpoint - Workspace RemoteWrite URL address
- status String
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
- usage Property Map
- Workspace usage
- workspace
Id String - Workspace ID
Look up Existing Workspace Resource
Get an existing Workspace 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?: WorkspaceState, opts?: CustomResourceOptions): Workspace@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auth_type: Optional[str] = None,
bearer_token: Optional[str] = None,
create_time: Optional[str] = None,
delete_protection_enabled: Optional[bool] = None,
description: Optional[str] = None,
instance_type: Optional[WorkspaceInstanceTypeArgs] = None,
instance_type_id: Optional[str] = None,
name: Optional[str] = None,
overdue_reclaim_time: Optional[str] = None,
password: Optional[str] = None,
project_name: Optional[str] = None,
prometheus_push_endpoint: Optional[str] = None,
prometheus_push_intranet_endpoint: Optional[str] = None,
prometheus_query_endpoint: Optional[str] = None,
prometheus_query_intranet_endpoint: Optional[str] = None,
prometheus_write_endpoint: Optional[str] = None,
prometheus_write_intranet_endpoint: Optional[str] = None,
public_access_enabled: Optional[bool] = None,
public_query_bandwidth: Optional[int] = None,
public_write_bandwidth: Optional[int] = None,
quota: Optional[WorkspaceQuotaArgs] = None,
search_latency_offset: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[WorkspaceTagArgs]] = None,
usage: Optional[WorkspaceUsageArgs] = None,
username: Optional[str] = None,
workspace_id: Optional[str] = None) -> Workspacefunc GetWorkspace(ctx *Context, name string, id IDInput, state *WorkspaceState, opts ...ResourceOption) (*Workspace, error)public static Workspace Get(string name, Input<string> id, WorkspaceState? state, CustomResourceOptions? opts = null)public static Workspace get(String name, Output<String> id, WorkspaceState state, CustomResourceOptions options)resources: _: type: volcenginecc:vmp:Workspace 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.
- Auth
Type string - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- Bearer
Token string - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- Create
Time string - Workspace creation time, RFC3339 format
- Delete
Protection boolEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- Description string
- Workspace description, string, length limit 0–200
- Instance
Type Volcengine.Workspace Instance Type - Workspace specification details
- Instance
Type stringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- Name string
- Workspace name, string, length limit 1–100
- Overdue
Reclaim stringTime - Workspace expected overdue recovery time, RFC3339 format
- Password string
- Workspace BasicAuth password
- Project
Name string - Project name
- Prometheus
Push stringEndpoint - Workspace public Push Gateway URL address.
- Prometheus
Push stringIntranet Endpoint - Workspace Push Gateway URL address
- Prometheus
Query stringEndpoint - Workspace public Query URL address.
- Prometheus
Query stringIntranet Endpoint - Workspace Query URL address
- Prometheus
Write stringEndpoint - Workspace public RemoteWrite URL address.
- Prometheus
Write stringIntranet Endpoint - Workspace RemoteWrite URL address
- Public
Access boolEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- Public
Query intBandwidth - Workspace public Query bandwidth (Mbps).
- Public
Write intBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- Quota
Volcengine.
Workspace Quota - Workspace quota details
- Search
Latency stringOffset - Workspace public Query search latency offset.
- Status string
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
-
List<Volcengine.
Workspace Tag> - Usage
Volcengine.
Workspace Usage - Workspace usage
- Username string
- Workspace BasicAuth username
- Workspace
Id string - Workspace ID
- Auth
Type string - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- Bearer
Token string - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- Create
Time string - Workspace creation time, RFC3339 format
- Delete
Protection boolEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- Description string
- Workspace description, string, length limit 0–200
- Instance
Type WorkspaceInstance Type Args - Workspace specification details
- Instance
Type stringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- Name string
- Workspace name, string, length limit 1–100
- Overdue
Reclaim stringTime - Workspace expected overdue recovery time, RFC3339 format
- Password string
- Workspace BasicAuth password
- Project
Name string - Project name
- Prometheus
Push stringEndpoint - Workspace public Push Gateway URL address.
- Prometheus
Push stringIntranet Endpoint - Workspace Push Gateway URL address
- Prometheus
Query stringEndpoint - Workspace public Query URL address.
- Prometheus
Query stringIntranet Endpoint - Workspace Query URL address
- Prometheus
Write stringEndpoint - Workspace public RemoteWrite URL address.
- Prometheus
Write stringIntranet Endpoint - Workspace RemoteWrite URL address
- Public
Access boolEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- Public
Query intBandwidth - Workspace public Query bandwidth (Mbps).
- Public
Write intBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- Quota
Workspace
Quota Args - Workspace quota details
- Search
Latency stringOffset - Workspace public Query search latency offset.
- Status string
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
-
[]Workspace
Tag Args - Usage
Workspace
Usage Args - Workspace usage
- Username string
- Workspace BasicAuth username
- Workspace
Id string - Workspace ID
- auth
Type String - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- bearer
Token String - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- create
Time String - Workspace creation time, RFC3339 format
- delete
Protection BooleanEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- description String
- Workspace description, string, length limit 0–200
- instance
Type WorkspaceInstance Type - Workspace specification details
- instance
Type StringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- name String
- Workspace name, string, length limit 1–100
- overdue
Reclaim StringTime - Workspace expected overdue recovery time, RFC3339 format
- password String
- Workspace BasicAuth password
- project
Name String - Project name
- prometheus
Push StringEndpoint - Workspace public Push Gateway URL address.
- prometheus
Push StringIntranet Endpoint - Workspace Push Gateway URL address
- prometheus
Query StringEndpoint - Workspace public Query URL address.
- prometheus
Query StringIntranet Endpoint - Workspace Query URL address
- prometheus
Write StringEndpoint - Workspace public RemoteWrite URL address.
- prometheus
Write StringIntranet Endpoint - Workspace RemoteWrite URL address
- public
Access BooleanEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- public
Query IntegerBandwidth - Workspace public Query bandwidth (Mbps).
- public
Write IntegerBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- quota
Workspace
Quota - Workspace quota details
- search
Latency StringOffset - Workspace public Query search latency offset.
- status String
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
-
List<Workspace
Tag> - usage
Workspace
Usage - Workspace usage
- username String
- Workspace BasicAuth username
- workspace
Id String - Workspace ID
- auth
Type string - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- bearer
Token string - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- create
Time string - Workspace creation time, RFC3339 format
- delete
Protection booleanEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- description string
- Workspace description, string, length limit 0–200
- instance
Type WorkspaceInstance Type - Workspace specification details
- instance
Type stringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- name string
- Workspace name, string, length limit 1–100
- overdue
Reclaim stringTime - Workspace expected overdue recovery time, RFC3339 format
- password string
- Workspace BasicAuth password
- project
Name string - Project name
- prometheus
Push stringEndpoint - Workspace public Push Gateway URL address.
- prometheus
Push stringIntranet Endpoint - Workspace Push Gateway URL address
- prometheus
Query stringEndpoint - Workspace public Query URL address.
- prometheus
Query stringIntranet Endpoint - Workspace Query URL address
- prometheus
Write stringEndpoint - Workspace public RemoteWrite URL address.
- prometheus
Write stringIntranet Endpoint - Workspace RemoteWrite URL address
- public
Access booleanEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- public
Query numberBandwidth - Workspace public Query bandwidth (Mbps).
- public
Write numberBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- quota
Workspace
Quota - Workspace quota details
- search
Latency stringOffset - Workspace public Query search latency offset.
- status string
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
-
Workspace
Tag[] - usage
Workspace
Usage - Workspace usage
- username string
- Workspace BasicAuth username
- workspace
Id string - Workspace ID
- auth_
type str - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- bearer_
token str - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- create_
time str - Workspace creation time, RFC3339 format
- delete_
protection_ boolenabled - Enable workspace deletion protection: true for enabled, false for disabled
- description str
- Workspace description, string, length limit 0–200
- instance_
type WorkspaceInstance Type Args - Workspace specification details
- instance_
type_ strid - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- name str
- Workspace name, string, length limit 1–100
- overdue_
reclaim_ strtime - Workspace expected overdue recovery time, RFC3339 format
- password str
- Workspace BasicAuth password
- project_
name str - Project name
- prometheus_
push_ strendpoint - Workspace public Push Gateway URL address.
- prometheus_
push_ strintranet_ endpoint - Workspace Push Gateway URL address
- prometheus_
query_ strendpoint - Workspace public Query URL address.
- prometheus_
query_ strintranet_ endpoint - Workspace Query URL address
- prometheus_
write_ strendpoint - Workspace public RemoteWrite URL address.
- prometheus_
write_ strintranet_ endpoint - Workspace RemoteWrite URL address
- public_
access_ boolenabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- public_
query_ intbandwidth - Workspace public Query bandwidth (Mbps).
- public_
write_ intbandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- quota
Workspace
Quota Args - Workspace quota details
- search_
latency_ stroffset - Workspace public Query search latency offset.
- status str
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
-
Sequence[Workspace
Tag Args] - usage
Workspace
Usage Args - Workspace usage
- username str
- Workspace BasicAuth username
- workspace_
id str - Workspace ID
- auth
Type String - Workspace authentication type. Options: BasicAuth: Basic authentication, requires Username and Password for authentication. BearerToken: Token authentication, requires BearerToken for authentication. None: No custom authentication required. Note: When the authentication type is set to None, AK/SK authentication is used by default.
- bearer
Token String - Workspace Bearer Token. Note: Configure this parameter only when the AuthType parameter is set to BearerToken.
- create
Time String - Workspace creation time, RFC3339 format
- delete
Protection BooleanEnabled - Enable workspace deletion protection: true for enabled, false for disabled
- description String
- Workspace description, string, length limit 0–200
- instance
Type Property Map - Workspace specification details
- instance
Type StringId - Workspace specifications: vmp.standard.15d: workspace with 15 days storage duration. vmp.standard.30d: workspace with 30 days storage duration. vmp.standard.90d: workspace with 90 days storage duration. vmp.standard.180d: workspace with 180 days storage duration. vmp.standard.1y: workspace with 1 year storage duration
- name String
- Workspace name, string, length limit 1–100
- overdue
Reclaim StringTime - Workspace expected overdue recovery time, RFC3339 format
- password String
- Workspace BasicAuth password
- project
Name String - Project name
- prometheus
Push StringEndpoint - Workspace public Push Gateway URL address.
- prometheus
Push StringIntranet Endpoint - Workspace Push Gateway URL address
- prometheus
Query StringEndpoint - Workspace public Query URL address.
- prometheus
Query StringIntranet Endpoint - Workspace Query URL address
- prometheus
Write StringEndpoint - Workspace public RemoteWrite URL address.
- prometheus
Write StringIntranet Endpoint - Workspace RemoteWrite URL address
- public
Access BooleanEnabled - Whether to enable workspace public access capability. true: enabled, false: disabled.
- public
Query NumberBandwidth - Workspace public Query bandwidth (Mbps).
- public
Write NumberBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- quota Property Map
- Workspace quota details
- search
Latency StringOffset - Workspace public Query search latency offset.
- status String
- Workspace status. Values: Creating: creating Active: active Updating: updating Deleting: deleting OverdueShutted: overdue shutdown Resuming: resuming Error: error
- List<Property Map>
- usage Property Map
- Workspace usage
- username String
- Workspace BasicAuth username
- workspace
Id String - Workspace ID
Supporting Types
WorkspaceInstanceType, WorkspaceInstanceTypeArgs
- Active
Series int - Maximum active time series count
- Availability
Zone intReplicas - Number of availability zones (az)
- Calculate
Price List<Volcengine.Params Workspace Instance Type Calculate Price Param> - Downsampling
Periods List<string> - Downsampling policy
- Ingest
Samples intPer Second - Maximum samples written per second
- Query
Concurrency int - Maximum query concurrency
- Query
Per intSecond - Maximum query QPS
- Replicas
Per intZone - Number of data replicas per availability zone (az)
- Retention
Period string - Maximum data retention period
- Scan
Samples intPer Second - Maximum samples scanned per second
- Scan
Series intPer Second - Maximum time series scanned per second
- Active
Series int - Maximum active time series count
- Availability
Zone intReplicas - Number of availability zones (az)
- Calculate
Price []WorkspaceParams Instance Type Calculate Price Param - Downsampling
Periods []string - Downsampling policy
- Ingest
Samples intPer Second - Maximum samples written per second
- Query
Concurrency int - Maximum query concurrency
- Query
Per intSecond - Maximum query QPS
- Replicas
Per intZone - Number of data replicas per availability zone (az)
- Retention
Period string - Maximum data retention period
- Scan
Samples intPer Second - Maximum samples scanned per second
- Scan
Series intPer Second - Maximum time series scanned per second
- active
Series Integer - Maximum active time series count
- availability
Zone IntegerReplicas - Number of availability zones (az)
- calculate
Price List<WorkspaceParams Instance Type Calculate Price Param> - downsampling
Periods List<String> - Downsampling policy
- ingest
Samples IntegerPer Second - Maximum samples written per second
- query
Concurrency Integer - Maximum query concurrency
- query
Per IntegerSecond - Maximum query QPS
- replicas
Per IntegerZone - Number of data replicas per availability zone (az)
- retention
Period String - Maximum data retention period
- scan
Samples IntegerPer Second - Maximum samples scanned per second
- scan
Series IntegerPer Second - Maximum time series scanned per second
- active
Series number - Maximum active time series count
- availability
Zone numberReplicas - Number of availability zones (az)
- calculate
Price WorkspaceParams Instance Type Calculate Price Param[] - downsampling
Periods string[] - Downsampling policy
- ingest
Samples numberPer Second - Maximum samples written per second
- query
Concurrency number - Maximum query concurrency
- query
Per numberSecond - Maximum query QPS
- replicas
Per numberZone - Number of data replicas per availability zone (az)
- retention
Period string - Maximum data retention period
- scan
Samples numberPer Second - Maximum samples scanned per second
- scan
Series numberPer Second - Maximum time series scanned per second
- active_
series int - Maximum active time series count
- availability_
zone_ intreplicas - Number of availability zones (az)
- calculate_
price_ Sequence[Workspaceparams Instance Type Calculate Price Param] - downsampling_
periods Sequence[str] - Downsampling policy
- ingest_
samples_ intper_ second - Maximum samples written per second
- query_
concurrency int - Maximum query concurrency
- query_
per_ intsecond - Maximum query QPS
- replicas_
per_ intzone - Number of data replicas per availability zone (az)
- retention_
period str - Maximum data retention period
- scan_
samples_ intper_ second - Maximum samples scanned per second
- scan_
series_ intper_ second - Maximum time series scanned per second
- active
Series Number - Maximum active time series count
- availability
Zone NumberReplicas - Number of availability zones (az)
- calculate
Price List<Property Map>Params - downsampling
Periods List<String> - Downsampling policy
- ingest
Samples NumberPer Second - Maximum samples written per second
- query
Concurrency Number - Maximum query concurrency
- query
Per NumberSecond - Maximum query QPS
- replicas
Per NumberZone - Number of data replicas per availability zone (az)
- retention
Period String - Maximum data retention period
- scan
Samples NumberPer Second - Maximum samples scanned per second
- scan
Series NumberPer Second - Maximum time series scanned per second
WorkspaceInstanceTypeCalculatePriceParam, WorkspaceInstanceTypeCalculatePriceParamArgs
- Cal
Charge List<Volcengine.Item Lists Workspace Instance Type Calculate Price Param Cal Charge Item List> - Configuration
Code string - Configuration item code.
- Period string
- Billing cycle.
- Cal
Charge []WorkspaceItem Lists Instance Type Calculate Price Param Cal Charge Item List - Configuration
Code string - Configuration item code.
- Period string
- Billing cycle.
- cal
Charge List<WorkspaceItem Lists Instance Type Calculate Price Param Cal Charge Item List> - configuration
Code String - Configuration item code.
- period String
- Billing cycle.
- cal
Charge WorkspaceItem Lists Instance Type Calculate Price Param Cal Charge Item List[] - configuration
Code string - Configuration item code.
- period string
- Billing cycle.
- cal_
charge_ Sequence[Workspaceitem_ lists Instance Type Calculate Price Param Cal Charge Item List] - configuration_
code str - Configuration item code.
- period str
- Billing cycle.
- cal
Charge List<Property Map>Item Lists - configuration
Code String - Configuration item code.
- period String
- Billing cycle.
WorkspaceInstanceTypeCalculatePriceParamCalChargeItemList, WorkspaceInstanceTypeCalculatePriceParamCalChargeItemListArgs
- Attr
Value string - Billing item attribute value.
- Charge
Item stringCode - Billing item code.
- Attr
Value string - Billing item attribute value.
- Charge
Item stringCode - Billing item code.
- attr
Value String - Billing item attribute value.
- charge
Item StringCode - Billing item code.
- attr
Value string - Billing item attribute value.
- charge
Item stringCode - Billing item code.
- attr_
value str - Billing item attribute value.
- charge_
item_ strcode - Billing item code.
- attr
Value String - Billing item attribute value.
- charge
Item StringCode - Billing item code.
WorkspaceQuota, WorkspaceQuotaArgs
- Active
Series int - Maximum active time series count. Integer, default range is 1–50000000
- Ingest
Samples intPer Second - Metric ingestion rate, i.e., maximum samples written per second. Integer, default range is 1–5000000
- Public
Query intBandwidth - Workspace public Query bandwidth (Mbps).
- Public
Write intBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- Query
Per intSecond - Maximum query QPS. Integer, default range is 1–500
- Scan
Samples intPer Second - Maximum samples scanned per second. Integer, default range is 1–1000000000
- Scan
Series intPer Second - Maximum time series scanned per second. Integer, default range is 1–200000
- Active
Series int - Maximum active time series count. Integer, default range is 1–50000000
- Ingest
Samples intPer Second - Metric ingestion rate, i.e., maximum samples written per second. Integer, default range is 1–5000000
- Public
Query intBandwidth - Workspace public Query bandwidth (Mbps).
- Public
Write intBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- Query
Per intSecond - Maximum query QPS. Integer, default range is 1–500
- Scan
Samples intPer Second - Maximum samples scanned per second. Integer, default range is 1–1000000000
- Scan
Series intPer Second - Maximum time series scanned per second. Integer, default range is 1–200000
- active
Series Integer - Maximum active time series count. Integer, default range is 1–50000000
- ingest
Samples IntegerPer Second - Metric ingestion rate, i.e., maximum samples written per second. Integer, default range is 1–5000000
- public
Query IntegerBandwidth - Workspace public Query bandwidth (Mbps).
- public
Write IntegerBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- query
Per IntegerSecond - Maximum query QPS. Integer, default range is 1–500
- scan
Samples IntegerPer Second - Maximum samples scanned per second. Integer, default range is 1–1000000000
- scan
Series IntegerPer Second - Maximum time series scanned per second. Integer, default range is 1–200000
- active
Series number - Maximum active time series count. Integer, default range is 1–50000000
- ingest
Samples numberPer Second - Metric ingestion rate, i.e., maximum samples written per second. Integer, default range is 1–5000000
- public
Query numberBandwidth - Workspace public Query bandwidth (Mbps).
- public
Write numberBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- query
Per numberSecond - Maximum query QPS. Integer, default range is 1–500
- scan
Samples numberPer Second - Maximum samples scanned per second. Integer, default range is 1–1000000000
- scan
Series numberPer Second - Maximum time series scanned per second. Integer, default range is 1–200000
- active_
series int - Maximum active time series count. Integer, default range is 1–50000000
- ingest_
samples_ intper_ second - Metric ingestion rate, i.e., maximum samples written per second. Integer, default range is 1–5000000
- public_
query_ intbandwidth - Workspace public Query bandwidth (Mbps).
- public_
write_ intbandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- query_
per_ intsecond - Maximum query QPS. Integer, default range is 1–500
- scan_
samples_ intper_ second - Maximum samples scanned per second. Integer, default range is 1–1000000000
- scan_
series_ intper_ second - Maximum time series scanned per second. Integer, default range is 1–200000
- active
Series Number - Maximum active time series count. Integer, default range is 1–50000000
- ingest
Samples NumberPer Second - Metric ingestion rate, i.e., maximum samples written per second. Integer, default range is 1–5000000
- public
Query NumberBandwidth - Workspace public Query bandwidth (Mbps).
- public
Write NumberBandwidth - Workspace public RemoteWrite bandwidth (Mbps).
- query
Per NumberSecond - Maximum query QPS. Integer, default range is 1–500
- scan
Samples NumberPer Second - Maximum samples scanned per second. Integer, default range is 1–1000000000
- scan
Series NumberPer Second - Maximum time series scanned per second. Integer, default range is 1–200000
WorkspaceTag, WorkspaceTagArgs
WorkspaceUsage, WorkspaceUsageArgs
- Active
Series int - Active time series count
- Ingested
Samples doublePer Second - Samples written per second
- Active
Series int - Active time series count
- Ingested
Samples float64Per Second - Samples written per second
- active
Series Integer - Active time series count
- ingested
Samples DoublePer Second - Samples written per second
- active
Series number - Active time series count
- ingested
Samples numberPer Second - Samples written per second
- active_
series int - Active time series count
- ingested_
samples_ floatper_ second - Samples written per second
- active
Series Number - Active time series count
- ingested
Samples NumberPer Second - Samples written per second
Import
$ pulumi import volcenginecc:vmp/workspace:Workspace example "workspace_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- volcenginecc volcengine/pulumi-volcenginecc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
volcengineccTerraform Provider.
published on Thursday, Apr 23, 2026 by Volcengine
