published on Thursday, Sep 10, 2026 by Byteplus
published on Thursday, Sep 10, 2026 by Byteplus
Volcano Engine Resource Share unit. Resource share units allow you to share resources under your account (such as subnets) with specified principals (Principal, which can be an account, organization, or organizational unit) for their use
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as bytepluscc from "@byteplus/pulumi-bytepluscc";
const example = new bytepluscc.resourceshare.ResourceShare("example", {
resourceShareName: "cc-test-example",
allowShareType: "ANY",
resourceTrns: "trn:vpc:ap-southeast-1:210000****:subnet/subnet-example",
principals: "210000****,210001****",
tags: [
{
key: "key1",
value: "value1",
},
{
key: "key2",
value: "value2",
},
],
});
import pulumi
import pulumi_bytepluscc as bytepluscc
example = bytepluscc.resourceshare.ResourceShare("example",
resource_share_name="cc-test-example",
allow_share_type="ANY",
resource_trns="trn:vpc:ap-southeast-1:210000****:subnet/subnet-example",
principals="210000****,210001****",
tags=[
{
"key": "key1",
"value": "value1",
},
{
"key": "key2",
"value": "value2",
},
])
package main
import (
"github.com/byteplus-sdk/pulumi-bytepluscc/sdk/go/bytepluscc/resourceshare"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := resourceshare.NewResourceShare(ctx, "example", &resourceshare.ResourceShareArgs{
ResourceShareName: pulumi.String("cc-test-example"),
AllowShareType: pulumi.String("ANY"),
ResourceTrns: pulumi.String("trn:vpc:ap-southeast-1:210000****:subnet/subnet-example"),
Principals: pulumi.String("210000****,210001****"),
Tags: resourceshare.ResourceShareTagArray{
&resourceshare.ResourceShareTagArgs{
Key: pulumi.String("key1"),
Value: pulumi.String("value1"),
},
&resourceshare.ResourceShareTagArgs{
Key: pulumi.String("key2"),
Value: pulumi.String("value2"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Bytepluscc = Byteplus.Pulumi.Bytepluscc;
return await Deployment.RunAsync(() =>
{
var example = new Bytepluscc.Resourceshare.ResourceShare("example", new()
{
ResourceShareName = "cc-test-example",
AllowShareType = "ANY",
ResourceTrns = "trn:vpc:ap-southeast-1:210000****:subnet/subnet-example",
Principals = "210000****,210001****",
Tags = new[]
{
new Bytepluscc.Resourceshare.Inputs.ResourceShareTagArgs
{
Key = "key1",
Value = "value1",
},
new Bytepluscc.Resourceshare.Inputs.ResourceShareTagArgs
{
Key = "key2",
Value = "value2",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.byteplus.bytepluscc.resourceshare.ResourceShare;
import com.byteplus.bytepluscc.resourceshare.ResourceShareArgs;
import com.pulumi.bytepluscc.resourceshare.inputs.ResourceShareTagArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new ResourceShare("example", ResourceShareArgs.builder()
.resourceShareName("cc-test-example")
.allowShareType("ANY")
.resourceTrns("trn:vpc:ap-southeast-1:210000****:subnet/subnet-example")
.principals("210000****,210001****")
.tags(
ResourceShareTagArgs.builder()
.key("key1")
.value("value1")
.build(),
ResourceShareTagArgs.builder()
.key("key2")
.value("value2")
.build())
.build());
}
}
resources:
example:
type: bytepluscc:resourceshare:ResourceShare
properties:
resourceShareName: cc-test-example
allowShareType: ANY
resourceTrns: trn:vpc:ap-southeast-1:210000****:subnet/subnet-example
principals: 210000****,210001****
tags:
- key: key1
value: value1
- key: key2
value: value2
pulumi {
required_providers {
bytepluscc = {
source = "pulumi/bytepluscc"
}
}
}
resource "bytepluscc_resourceshare_resourceshare" "example" {
resource_share_name = "cc-test-example"
allow_share_type = "ANY"
resource_trns = "trn:vpc:ap-southeast-1:210000****:subnet/subnet-example"
principals = "210000****,210001****"
tags {
key = "key1"
value = "value1"
}
tags {
key = "key2"
value = "value2"
}
}
Create ResourceShare Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResourceShare(name: string, args: ResourceShareArgs, opts?: CustomResourceOptions);@overload
def ResourceShare(resource_name: str,
args: ResourceShareArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ResourceShare(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_share_name: Optional[str] = None,
allow_share_type: Optional[str] = None,
principals: Optional[str] = None,
resource_trns: Optional[str] = None,
tags: Optional[Sequence[ResourceShareTagArgs]] = None)func NewResourceShare(ctx *Context, name string, args ResourceShareArgs, opts ...ResourceOption) (*ResourceShare, error)public ResourceShare(string name, ResourceShareArgs args, CustomResourceOptions? opts = null)
public ResourceShare(String name, ResourceShareArgs args)
public ResourceShare(String name, ResourceShareArgs args, CustomResourceOptions options)
type: bytepluscc:resourceshare:ResourceShare
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "bytepluscc_resourceshare_resource_share" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ResourceShareArgs
- 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 ResourceShareArgs
- 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 ResourceShareArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourceShareArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResourceShareArgs
- 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 resourceShareResource = new Bytepluscc.Resourceshare.ResourceShare("resourceShareResource", new()
{
ResourceShareName = "string",
AllowShareType = "string",
Principals = "string",
ResourceTrns = "string",
Tags = new[]
{
new Bytepluscc.Resourceshare.Inputs.ResourceShareTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := resourceshare.NewResourceShare(ctx, "resourceShareResource", &resourceshare.ResourceShareArgs{
ResourceShareName: pulumi.String("string"),
AllowShareType: pulumi.String("string"),
Principals: pulumi.String("string"),
ResourceTrns: pulumi.String("string"),
Tags: resourceshare.ResourceShareTagArray{
&resourceshare.ResourceShareTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
resource "bytepluscc_resourceshare_resource_share" "resourceShareResource" {
lifecycle {
create_before_destroy = true
}
resource_share_name = "string"
allow_share_type = "string"
principals = "string"
resource_trns = "string"
tags {
key = "string"
value = "string"
}
}
var resourceShareResource = new ResourceShare("resourceShareResource", ResourceShareArgs.builder()
.resourceShareName("string")
.allowShareType("string")
.principals("string")
.resourceTrns("string")
.tags(ResourceShareTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
resource_share_resource = bytepluscc.resourceshare.ResourceShare("resourceShareResource",
resource_share_name="string",
allow_share_type="string",
principals="string",
resource_trns="string",
tags=[{
"key": "string",
"value": "string",
}])
const resourceShareResource = new bytepluscc.resourceshare.ResourceShare("resourceShareResource", {
resourceShareName: "string",
allowShareType: "string",
principals: "string",
resourceTrns: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: bytepluscc:resourceshare:ResourceShare
properties:
allowShareType: string
principals: string
resourceShareName: string
resourceTrns: string
tags:
- key: string
value: string
ResourceShare 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 ResourceShare resource accepts the following input properties:
- string
- Resource share unit name
- string
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- Principals string
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- Resource
Trns string - Associated resources
-
List<Byteplus.
Resource Share Tag> - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- string
- Resource share unit name
- string
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- Principals string
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- Resource
Trns string - Associated resources
-
[]Resource
Share Tag Args - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- string
- Resource share unit name
- string
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- principals string
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- resource_
trns string - Associated resources
- list(object)
- Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- String
- Resource share unit name
- String
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- principals String
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- resource
Trns String - Associated resources
-
List<Resource
Share Tag> - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- string
- Resource share unit name
- string
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- principals string
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- resource
Trns string - Associated resources
-
Resource
Share Tag[] - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- str
- Resource share unit name
- str
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- principals str
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- resource_
trns str - Associated resources
-
Sequence[Resource
Share Tag Args] - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- String
- Resource share unit name
- String
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- principals String
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- resource
Trns String - Associated resources
- List<Property Map>
- Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
Outputs
All input properties are implicitly available as output properties. Additionally, the ResourceShare resource produces the following output properties:
- Create
Time string - Creation time
- Id string
- The provider-assigned unique ID for this managed resource.
- Owning
Account intId - Resource share unit creator account ID
- string
- Resource share unit ID
- string
- Resource share unit Trn
- Status string
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
- Update
Time string - Update time
- Create
Time string - Creation time
- Id string
- The provider-assigned unique ID for this managed resource.
- Owning
Account intId - Resource share unit creator account ID
- string
- Resource share unit ID
- string
- Resource share unit Trn
- Status string
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
- Update
Time string - Update time
- create_
time string - Creation time
- id string
- The provider-assigned unique ID for this managed resource.
- owning_
account_ numberid - Resource share unit creator account ID
- string
- Resource share unit ID
- string
- Resource share unit Trn
- status string
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
- update_
time string - Update time
- create
Time String - Creation time
- id String
- The provider-assigned unique ID for this managed resource.
- owning
Account IntegerId - Resource share unit creator account ID
- String
- Resource share unit ID
- String
- Resource share unit Trn
- status String
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
- update
Time String - Update time
- create
Time string - Creation time
- id string
- The provider-assigned unique ID for this managed resource.
- owning
Account numberId - Resource share unit creator account ID
- string
- Resource share unit ID
- string
- Resource share unit Trn
- status string
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
- update
Time string - Update time
- create_
time str - Creation time
- id str
- The provider-assigned unique ID for this managed resource.
- owning_
account_ intid - Resource share unit creator account ID
- str
- Resource share unit ID
- str
- Resource share unit Trn
- status str
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
- update_
time str - Update time
- create
Time String - Creation time
- id String
- The provider-assigned unique ID for this managed resource.
- owning
Account NumberId - Resource share unit creator account ID
- String
- Resource share unit ID
- String
- Resource share unit Trn
- status String
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
- update
Time String - Update time
Look up Existing ResourceShare Resource
Get an existing ResourceShare 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?: ResourceShareState, opts?: CustomResourceOptions): ResourceShare@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_share_type: Optional[str] = None,
create_time: Optional[str] = None,
owning_account_id: Optional[int] = None,
principals: Optional[str] = None,
resource_share_id: Optional[str] = None,
resource_share_name: Optional[str] = None,
resource_share_trn: Optional[str] = None,
resource_trns: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[ResourceShareTagArgs]] = None,
update_time: Optional[str] = None) -> ResourceSharefunc GetResourceShare(ctx *Context, name string, id IDInput, state *ResourceShareState, opts ...ResourceOption) (*ResourceShare, error)public static ResourceShare Get(string name, Input<string> id, ResourceShareState? state, CustomResourceOptions? opts = null)public static ResourceShare get(String name, Output<String> id, ResourceShareState state, CustomResourceOptions options)resources: _: type: bytepluscc:resourceshare:ResourceShare get: id: ${id}import {
to = bytepluscc_resourceshare_resource_share.example
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.
- string
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- Create
Time string - Creation time
- Owning
Account intId - Resource share unit creator account ID
- Principals string
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- string
- Resource share unit ID
- string
- Resource share unit name
- string
- Resource share unit Trn
- Resource
Trns string - Associated resources
- Status string
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
-
List<Byteplus.
Resource Share Tag> - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Update
Time string - Update time
- string
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- Create
Time string - Creation time
- Owning
Account intId - Resource share unit creator account ID
- Principals string
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- string
- Resource share unit ID
- string
- Resource share unit name
- string
- Resource share unit Trn
- Resource
Trns string - Associated resources
- Status string
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
-
[]Resource
Share Tag Args - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- Update
Time string - Update time
- string
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- create_
time string - Creation time
- owning_
account_ numberid - Resource share unit creator account ID
- principals string
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- string
- Resource share unit ID
- string
- Resource share unit name
- string
- Resource share unit Trn
- resource_
trns string - Associated resources
- status string
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
- list(object)
- Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update_
time string - Update time
- String
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- create
Time String - Creation time
- owning
Account IntegerId - Resource share unit creator account ID
- principals String
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- String
- Resource share unit ID
- String
- Resource share unit name
- String
- Resource share unit Trn
- resource
Trns String - Associated resources
- status String
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
-
List<Resource
Share Tag> - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update
Time String - Update time
- string
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- create
Time string - Creation time
- owning
Account numberId - Resource share unit creator account ID
- principals string
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- string
- Resource share unit ID
- string
- Resource share unit name
- string
- Resource share unit Trn
- resource
Trns string - Associated resources
- status string
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
-
Resource
Share Tag[] - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update
Time string - Update time
- str
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- create_
time str - Creation time
- owning_
account_ intid - Resource share unit creator account ID
- principals str
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- str
- Resource share unit ID
- str
- Resource share unit name
- str
- Resource share unit Trn
- resource_
trns str - Associated resources
- status str
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
-
Sequence[Resource
Share Tag Args] - Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update_
time str - Update time
- String
- Resource share unit type. Values can be ORG - allows sharing only within the organization; ANY - allows sharing with any account. Default is ANY
- create
Time String - Creation time
- owning
Account NumberId - Resource share unit creator account ID
- principals String
- Associated Principals (Principal refers to the recipient, which can be a user, organization, or organizational unit)
- String
- Resource share unit ID
- String
- Resource share unit name
- String
- Resource share unit Trn
- resource
Trns String - Associated resources
- status String
- Resource share unit status, including UNKNOWN - unknown status; ACTIVE - active status; DELETING - deleting status; DELETED - deleted status; FAILED - share failed status; NEW - newly created status
- List<Property Map>
- Tag key-value pair Important Note: When using SetNestedAttribute, you must fully define all attributes of its nested structure. Incomplete definitions may cause Terraform to detect unexpected differences during plan comparison, triggering unnecessary resource updates and affecting resource stability and predictability.
- update
Time String - Update time
Supporting Types
ResourceShareTag, ResourceShareTagArgs
Import
$ pulumi import bytepluscc:resourceshare/resourceShare:ResourceShare example "resource_share_trn"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- bytepluscc byteplus-sdk/pulumi-bytepluscc
- License
- MPL-2.0
- Notes
- This Pulumi package is based on the
byteplusccTerraform Provider.
published on Thursday, Sep 10, 2026 by Byteplus