Namespace Args
data class NamespaceArgs(val project: Output<String>? = null, val scope: Output<String>? = null, val scopeId: Output<String>? = null, val scopeNamespaceId: Output<String>? = null) : ConvertibleToJava<NamespaceArgs>
Namespace represents a namespace across the Fleet. To get more information about Namespace, see:
How-to Guides
Registering a Cluster {{% examples %}}
Example Usage
{{% /examples %}}
Import
Namespace can be imported using any of these accepted formats
$ pulumi import gcp:gkehub/namespace:Namespace default projects/{{project}}/locations/global/scopes/{{scope_id}}/namespaces/{{scope_namespace_id}}
Content copied to clipboard
$ pulumi import gcp:gkehub/namespace:Namespace default {{project}}/{{scope_id}}/{{scope_namespace_id}}
Content copied to clipboard
$ pulumi import gcp:gkehub/namespace:Namespace default {{scope_id}}/{{scope_namespace_id}}
Content copied to clipboard
Constructors
Link copied to clipboard
fun NamespaceArgs(project: Output<String>? = null, scope: Output<String>? = null, scopeId: Output<String>? = null, scopeNamespaceId: Output<String>? = null)