Viewing docs for gcore 2.0.0-alpha.2
published on Tuesday, Mar 24, 2026 by g-core
published on Tuesday, Mar 24, 2026 by g-core
Viewing docs for gcore 2.0.0-alpha.2
published on Tuesday, Mar 24, 2026 by g-core
published on Tuesday, Mar 24, 2026 by g-core
Networks provide software-defined networking infrastructure for connecting instances and other cloud resources within a region.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcore from "@pulumi/gcore";
const exampleCloudNetworks = gcore.getCloudNetworks({
projectId: 1,
regionId: 1,
name: "my-network",
tagKeys: [
"key1",
"key2",
],
tagKeyValue: "tag_key_value",
});
import pulumi
import pulumi_gcore as gcore
example_cloud_networks = gcore.get_cloud_networks(project_id=1,
region_id=1,
name="my-network",
tag_keys=[
"key1",
"key2",
],
tag_key_value="tag_key_value")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/gcore/v2/gcore"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := gcore.GetCloudNetworks(ctx, &gcore.GetCloudNetworksArgs{
ProjectId: pulumi.Float64Ref(1),
RegionId: pulumi.Float64Ref(1),
Name: pulumi.StringRef("my-network"),
TagKeys: []string{
"key1",
"key2",
},
TagKeyValue: pulumi.StringRef("tag_key_value"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcore = Pulumi.Gcore;
return await Deployment.RunAsync(() =>
{
var exampleCloudNetworks = Gcore.GetCloudNetworks.Invoke(new()
{
ProjectId = 1,
RegionId = 1,
Name = "my-network",
TagKeys = new[]
{
"key1",
"key2",
},
TagKeyValue = "tag_key_value",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcore.GcoreFunctions;
import com.pulumi.gcore.inputs.GetCloudNetworksArgs;
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 exampleCloudNetworks = GcoreFunctions.getCloudNetworks(GetCloudNetworksArgs.builder()
.projectId(1)
.regionId(1)
.name("my-network")
.tagKeys(
"key1",
"key2")
.tagKeyValue("tag_key_value")
.build());
}
}
variables:
exampleCloudNetworks:
fn::invoke:
function: gcore:getCloudNetworks
arguments:
projectId: 1
regionId: 1
name: my-network
tagKeys:
- key1
- key2
tagKeyValue: tag_key_value
Using getCloudNetworks
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getCloudNetworks(args: GetCloudNetworksArgs, opts?: InvokeOptions): Promise<GetCloudNetworksResult>
function getCloudNetworksOutput(args: GetCloudNetworksOutputArgs, opts?: InvokeOptions): Output<GetCloudNetworksResult>def get_cloud_networks(external: Optional[bool] = None,
max_items: Optional[float] = None,
name: Optional[str] = None,
network_type: Optional[str] = None,
order_by: Optional[str] = None,
owned_by: Optional[str] = None,
project_id: Optional[float] = None,
region_id: Optional[float] = None,
tag_key_value: Optional[str] = None,
tag_keys: Optional[Sequence[str]] = None,
opts: Optional[InvokeOptions] = None) -> GetCloudNetworksResult
def get_cloud_networks_output(external: Optional[pulumi.Input[bool]] = None,
max_items: Optional[pulumi.Input[float]] = None,
name: Optional[pulumi.Input[str]] = None,
network_type: Optional[pulumi.Input[str]] = None,
order_by: Optional[pulumi.Input[str]] = None,
owned_by: Optional[pulumi.Input[str]] = None,
project_id: Optional[pulumi.Input[float]] = None,
region_id: Optional[pulumi.Input[float]] = None,
tag_key_value: Optional[pulumi.Input[str]] = None,
tag_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetCloudNetworksResult]func GetCloudNetworks(ctx *Context, args *GetCloudNetworksArgs, opts ...InvokeOption) (*GetCloudNetworksResult, error)
func GetCloudNetworksOutput(ctx *Context, args *GetCloudNetworksOutputArgs, opts ...InvokeOption) GetCloudNetworksResultOutput> Note: This function is named GetCloudNetworks in the Go SDK.
public static class GetCloudNetworks
{
public static Task<GetCloudNetworksResult> InvokeAsync(GetCloudNetworksArgs args, InvokeOptions? opts = null)
public static Output<GetCloudNetworksResult> Invoke(GetCloudNetworksInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetCloudNetworksResult> getCloudNetworks(GetCloudNetworksArgs args, InvokeOptions options)
public static Output<GetCloudNetworksResult> getCloudNetworks(GetCloudNetworksArgs args, InvokeOptions options)
fn::invoke:
function: gcore:index/getCloudNetworks:getCloudNetworks
arguments:
# arguments dictionaryThe following arguments are supported:
- External bool
- Filter by external network status
- Max
Items double - Max items to fetch, default: 1000
- Name string
- Filter networks by name
- Network
Type string - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- Order
By string - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - Owned
By string - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- Project
Id double - Project ID
- Region
Id double - Region ID
- Tag
Key stringValue - Optional. Filter by tag key-value pairs.
- Tag
Keys List<string> - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- External bool
- Filter by external network status
- Max
Items float64 - Max items to fetch, default: 1000
- Name string
- Filter networks by name
- Network
Type string - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- Order
By string - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - Owned
By string - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- Project
Id float64 - Project ID
- Region
Id float64 - Region ID
- Tag
Key stringValue - Optional. Filter by tag key-value pairs.
- Tag
Keys []string - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- external Boolean
- Filter by external network status
- max
Items Double - Max items to fetch, default: 1000
- name String
- Filter networks by name
- network
Type String - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- order
By String - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - owned
By String - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- project
Id Double - Project ID
- region
Id Double - Region ID
- tag
Key StringValue - Optional. Filter by tag key-value pairs.
- tag
Keys List<String> - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- external boolean
- Filter by external network status
- max
Items number - Max items to fetch, default: 1000
- name string
- Filter networks by name
- network
Type string - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- order
By string - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - owned
By string - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- project
Id number - Project ID
- region
Id number - Region ID
- tag
Key stringValue - Optional. Filter by tag key-value pairs.
- tag
Keys string[] - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- external bool
- Filter by external network status
- max_
items float - Max items to fetch, default: 1000
- name str
- Filter networks by name
- network_
type str - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- order_
by str - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - owned_
by str - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- project_
id float - Project ID
- region_
id float - Region ID
- tag_
key_ strvalue - Optional. Filter by tag key-value pairs.
- tag_
keys Sequence[str] - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- external Boolean
- Filter by external network status
- max
Items Number - Max items to fetch, default: 1000
- name String
- Filter networks by name
- network
Type String - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- order
By String - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - owned
By String - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- project
Id Number - Project ID
- region
Id Number - Region ID
- tag
Key StringValue - Optional. Filter by tag key-value pairs.
- tag
Keys List<String> - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
getCloudNetworks Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
List<Get
Cloud Networks Item> - The items returned by the data source
- Order
By string - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - Owned
By string - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- External bool
- Filter by external network status
- Max
Items double - Max items to fetch, default: 1000
- Name string
- Filter networks by name
- Network
Type string - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- Project
Id double - Project ID
- Region
Id double - Region ID
- Tag
Key stringValue - Optional. Filter by tag key-value pairs.
- Tag
Keys List<string> - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- Id string
- The provider-assigned unique ID for this managed resource.
- Items
[]Get
Cloud Networks Item - The items returned by the data source
- Order
By string - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - Owned
By string - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- External bool
- Filter by external network status
- Max
Items float64 - Max items to fetch, default: 1000
- Name string
- Filter networks by name
- Network
Type string - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- Project
Id float64 - Project ID
- Region
Id float64 - Region ID
- Tag
Key stringValue - Optional. Filter by tag key-value pairs.
- Tag
Keys []string - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- id String
- The provider-assigned unique ID for this managed resource.
- items
List<Get
Cloud Networks Item> - The items returned by the data source
- order
By String - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - owned
By String - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- external Boolean
- Filter by external network status
- max
Items Double - Max items to fetch, default: 1000
- name String
- Filter networks by name
- network
Type String - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- project
Id Double - Project ID
- region
Id Double - Region ID
- tag
Key StringValue - Optional. Filter by tag key-value pairs.
- tag
Keys List<String> - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- id string
- The provider-assigned unique ID for this managed resource.
- items
Get
Cloud Networks Item[] - The items returned by the data source
- order
By string - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - owned
By string - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- external boolean
- Filter by external network status
- max
Items number - Max items to fetch, default: 1000
- name string
- Filter networks by name
- network
Type string - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- project
Id number - Project ID
- region
Id number - Region ID
- tag
Key stringValue - Optional. Filter by tag key-value pairs.
- tag
Keys string[] - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- id str
- The provider-assigned unique ID for this managed resource.
- items
Sequence[Get
Cloud Networks Item] - The items returned by the data source
- order_
by str - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - owned_
by str - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- external bool
- Filter by external network status
- max_
items float - Max items to fetch, default: 1000
- name str
- Filter networks by name
- network_
type str - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- project_
id float - Project ID
- region_
id float - Region ID
- tag_
key_ strvalue - Optional. Filter by tag key-value pairs.
- tag_
keys Sequence[str] - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
- id String
- The provider-assigned unique ID for this managed resource.
- items List<Property Map>
- The items returned by the data source
- order
By String - Ordering networks list result by
name,created_atorpriorityfields and directions (e.g.created_at.desc). Default iscreated_at.desc. Usepriority.descto sort by shared network priority (relevant whenowned_by=any). Available values: "createdat.asc", "createdat.desc", "name.asc", "name.desc", "priority.desc". - owned
By String - Controls which networks are returned. 'project' (default) returns only networks owned by the project. 'any' returns all networks that the project can use, including shared networks from other projects. Available values: "any", "project".
- external Boolean
- Filter by external network status
- max
Items Number - Max items to fetch, default: 1000
- name String
- Filter networks by name
- network
Type String - Filter by network type (vlan or vxlan) Available values: "vlan", "vxlan".
- project
Id Number - Project ID
- region
Id Number - Region ID
- tag
Key StringValue - Optional. Filter by tag key-value pairs.
- tag
Keys List<String> - Optional. Filter by tag keys. ?
tag_key=key1&tag_key=key2
Supporting Types
GetCloudNetworksItem
- Created
At string - Datetime when the network was created
- Creator
Task stringId - Task that created this entity
- Default bool
- True if network has
is_defaultattribute - External bool
- True if the network
router:externalattribute - Id string
- Network ID
- Mtu double
- MTU (maximum transmission unit). Default value is 1450
- Name string
- Network name
- Port
Security boolEnabled - Indicates
port_security_enabledstatus of all newly created in the network ports. - Project
Id double - Project ID
- Region string
- Region name
- Region
Id double - Region ID
- Segmentation
Id double - Id of network segment
- bool
- True when the network is shared with your project by external owner
- Subnets List<string>
- List of subnetworks
-
List<Get
Cloud Networks Item Tag> - List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
- Type string
- Network type (vlan, vxlan)
- Updated
At string - Datetime when the network was last updated
- Created
At string - Datetime when the network was created
- Creator
Task stringId - Task that created this entity
- Default bool
- True if network has
is_defaultattribute - External bool
- True if the network
router:externalattribute - Id string
- Network ID
- Mtu float64
- MTU (maximum transmission unit). Default value is 1450
- Name string
- Network name
- Port
Security boolEnabled - Indicates
port_security_enabledstatus of all newly created in the network ports. - Project
Id float64 - Project ID
- Region string
- Region name
- Region
Id float64 - Region ID
- Segmentation
Id float64 - Id of network segment
- bool
- True when the network is shared with your project by external owner
- Subnets []string
- List of subnetworks
-
[]Get
Cloud Networks Item Tag - List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
- Type string
- Network type (vlan, vxlan)
- Updated
At string - Datetime when the network was last updated
- created
At String - Datetime when the network was created
- creator
Task StringId - Task that created this entity
- default_ Boolean
- True if network has
is_defaultattribute - external Boolean
- True if the network
router:externalattribute - id String
- Network ID
- mtu Double
- MTU (maximum transmission unit). Default value is 1450
- name String
- Network name
- port
Security BooleanEnabled - Indicates
port_security_enabledstatus of all newly created in the network ports. - project
Id Double - Project ID
- region String
- Region name
- region
Id Double - Region ID
- segmentation
Id Double - Id of network segment
- Boolean
- True when the network is shared with your project by external owner
- subnets List<String>
- List of subnetworks
-
List<Get
Cloud Networks Item Tag> - List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
- type String
- Network type (vlan, vxlan)
- updated
At String - Datetime when the network was last updated
- created
At string - Datetime when the network was created
- creator
Task stringId - Task that created this entity
- default boolean
- True if network has
is_defaultattribute - external boolean
- True if the network
router:externalattribute - id string
- Network ID
- mtu number
- MTU (maximum transmission unit). Default value is 1450
- name string
- Network name
- port
Security booleanEnabled - Indicates
port_security_enabledstatus of all newly created in the network ports. - project
Id number - Project ID
- region string
- Region name
- region
Id number - Region ID
- segmentation
Id number - Id of network segment
- boolean
- True when the network is shared with your project by external owner
- subnets string[]
- List of subnetworks
-
Get
Cloud Networks Item Tag[] - List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
- type string
- Network type (vlan, vxlan)
- updated
At string - Datetime when the network was last updated
- created_
at str - Datetime when the network was created
- creator_
task_ strid - Task that created this entity
- default bool
- True if network has
is_defaultattribute - external bool
- True if the network
router:externalattribute - id str
- Network ID
- mtu float
- MTU (maximum transmission unit). Default value is 1450
- name str
- Network name
- port_
security_ boolenabled - Indicates
port_security_enabledstatus of all newly created in the network ports. - project_
id float - Project ID
- region str
- Region name
- region_
id float - Region ID
- segmentation_
id float - Id of network segment
- bool
- True when the network is shared with your project by external owner
- subnets Sequence[str]
- List of subnetworks
-
Sequence[Get
Cloud Networks Item Tag] - List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
- type str
- Network type (vlan, vxlan)
- updated_
at str - Datetime when the network was last updated
- created
At String - Datetime when the network was created
- creator
Task StringId - Task that created this entity
- default Boolean
- True if network has
is_defaultattribute - external Boolean
- True if the network
router:externalattribute - id String
- Network ID
- mtu Number
- MTU (maximum transmission unit). Default value is 1450
- name String
- Network name
- port
Security BooleanEnabled - Indicates
port_security_enabledstatus of all newly created in the network ports. - project
Id Number - Project ID
- region String
- Region name
- region
Id Number - Region ID
- segmentation
Id Number - Id of network segment
- Boolean
- True when the network is shared with your project by external owner
- subnets List<String>
- List of subnetworks
- List<Property Map>
- List of key-value tags associated with the resource. A tag is a key-value pair that can be associated with a resource, enabling efficient filtering and grouping for better organization and management. Some tags are read-only and cannot be modified by the user. Tags are also integrated with cost reports, allowing cost data to be filtered based on tag keys or values.
- type String
- Network type (vlan, vxlan)
- updated
At String - Datetime when the network was last updated
GetCloudNetworksItemTag
- Key string
- Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- Read
Only bool - If true, the tag is read-only and cannot be modified by the user
- Value string
- Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- Key string
- Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- Read
Only bool - If true, the tag is read-only and cannot be modified by the user
- Value string
- Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- key String
- Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- read
Only Boolean - If true, the tag is read-only and cannot be modified by the user
- value String
- Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- key string
- Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- read
Only boolean - If true, the tag is read-only and cannot be modified by the user
- value string
- Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- key str
- Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- read_
only bool - If true, the tag is read-only and cannot be modified by the user
- value str
- Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- key String
- Tag key. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
- read
Only Boolean - If true, the tag is read-only and cannot be modified by the user
- value String
- Tag value. Maximum 255 characters. Cannot contain spaces, tabs, newlines, empty string or '=' character.
Package Details
- Repository
- gcore g-core/terraform-provider-gcore
- License
- Notes
- This Pulumi package is based on the
gcoreTerraform Provider.
Viewing docs for gcore 2.0.0-alpha.2
published on Tuesday, Mar 24, 2026 by g-core
published on Tuesday, Mar 24, 2026 by g-core
