1. Packages
  2. Azure Native
  3. API Docs
  4. confluent
  5. OrganizationClusterById
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native.confluent.OrganizationClusterById

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

    Details of cluster record

    Uses Azure REST API version 2024-07-01.

    Example Usage

    Cluster_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var organizationClusterById = new AzureNative.Confluent.OrganizationClusterById("organizationClusterById", new()
        {
            ClusterId = "cluster-1",
            EnvironmentId = "env-1",
            OrganizationName = "myOrganization",
            ResourceGroupName = "myResourceGroup",
            Spec = new AzureNative.Confluent.Inputs.SCClusterSpecEntityArgs
            {
                Environment = new AzureNative.Confluent.Inputs.SCClusterNetworkEnvironmentEntityArgs
                {
                    Id = "env-1",
                },
                Package = AzureNative.Confluent.Package.ESSENTIALS,
                Region = "us-east4",
            },
        });
    
    });
    
    package main
    
    import (
    	confluent "github.com/pulumi/pulumi-azure-native-sdk/confluent/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := confluent.NewOrganizationClusterById(ctx, "organizationClusterById", &confluent.OrganizationClusterByIdArgs{
    			ClusterId:         pulumi.String("cluster-1"),
    			EnvironmentId:     pulumi.String("env-1"),
    			OrganizationName:  pulumi.String("myOrganization"),
    			ResourceGroupName: pulumi.String("myResourceGroup"),
    			Spec: &confluent.SCClusterSpecEntityArgs{
    				Environment: &confluent.SCClusterNetworkEnvironmentEntityArgs{
    					Id: pulumi.String("env-1"),
    				},
    				Package: pulumi.String(confluent.PackageESSENTIALS),
    				Region:  pulumi.String("us-east4"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.confluent.OrganizationClusterById;
    import com.pulumi.azurenative.confluent.OrganizationClusterByIdArgs;
    import com.pulumi.azurenative.confluent.inputs.SCClusterSpecEntityArgs;
    import com.pulumi.azurenative.confluent.inputs.SCClusterNetworkEnvironmentEntityArgs;
    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 organizationClusterById = new OrganizationClusterById("organizationClusterById", OrganizationClusterByIdArgs.builder()
                .clusterId("cluster-1")
                .environmentId("env-1")
                .organizationName("myOrganization")
                .resourceGroupName("myResourceGroup")
                .spec(SCClusterSpecEntityArgs.builder()
                    .environment(SCClusterNetworkEnvironmentEntityArgs.builder()
                        .id("env-1")
                        .build())
                    .package_("ESSENTIALS")
                    .region("us-east4")
                    .build())
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const organizationClusterById = new azure_native.confluent.OrganizationClusterById("organizationClusterById", {
        clusterId: "cluster-1",
        environmentId: "env-1",
        organizationName: "myOrganization",
        resourceGroupName: "myResourceGroup",
        spec: {
            environment: {
                id: "env-1",
            },
            "package": azure_native.confluent.Package.ESSENTIALS,
            region: "us-east4",
        },
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    organization_cluster_by_id = azure_native.confluent.OrganizationClusterById("organizationClusterById",
        cluster_id="cluster-1",
        environment_id="env-1",
        organization_name="myOrganization",
        resource_group_name="myResourceGroup",
        spec={
            "environment": {
                "id": "env-1",
            },
            "package": azure_native.confluent.Package.ESSENTIALS,
            "region": "us-east4",
        })
    
    resources:
      organizationClusterById:
        type: azure-native:confluent:OrganizationClusterById
        properties:
          clusterId: cluster-1
          environmentId: env-1
          organizationName: myOrganization
          resourceGroupName: myResourceGroup
          spec:
            environment:
              id: env-1
            package: ESSENTIALS
            region: us-east4
    

    Create OrganizationClusterById Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new OrganizationClusterById(name: string, args: OrganizationClusterByIdArgs, opts?: CustomResourceOptions);
    @overload
    def OrganizationClusterById(resource_name: str,
                                args: OrganizationClusterByIdArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def OrganizationClusterById(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                environment_id: Optional[str] = None,
                                organization_name: Optional[str] = None,
                                resource_group_name: Optional[str] = None,
                                cluster_id: Optional[str] = None,
                                id: Optional[str] = None,
                                kind: Optional[str] = None,
                                metadata: Optional[SCMetadataEntityArgs] = None,
                                name: Optional[str] = None,
                                spec: Optional[SCClusterSpecEntityArgs] = None,
                                status: Optional[ClusterStatusEntityArgs] = None,
                                type: Optional[str] = None)
    func NewOrganizationClusterById(ctx *Context, name string, args OrganizationClusterByIdArgs, opts ...ResourceOption) (*OrganizationClusterById, error)
    public OrganizationClusterById(string name, OrganizationClusterByIdArgs args, CustomResourceOptions? opts = null)
    public OrganizationClusterById(String name, OrganizationClusterByIdArgs args)
    public OrganizationClusterById(String name, OrganizationClusterByIdArgs args, CustomResourceOptions options)
    
    type: azure-native:confluent:OrganizationClusterById
    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 OrganizationClusterByIdArgs
    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 OrganizationClusterByIdArgs
    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 OrganizationClusterByIdArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OrganizationClusterByIdArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OrganizationClusterByIdArgs
    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 organizationClusterByIdResource = new AzureNative.Confluent.OrganizationClusterById("organizationClusterByIdResource", new()
    {
        EnvironmentId = "string",
        OrganizationName = "string",
        ResourceGroupName = "string",
        ClusterId = "string",
        Id = "string",
        Kind = "string",
        Metadata = new AzureNative.Confluent.Inputs.SCMetadataEntityArgs
        {
            CreatedTimestamp = "string",
            DeletedTimestamp = "string",
            ResourceName = "string",
            Self = "string",
            UpdatedTimestamp = "string",
        },
        Name = "string",
        Spec = new AzureNative.Confluent.Inputs.SCClusterSpecEntityArgs
        {
            ApiEndpoint = "string",
            Availability = "string",
            Byok = new AzureNative.Confluent.Inputs.SCClusterByokEntityArgs
            {
                Id = "string",
                Related = "string",
                ResourceName = "string",
            },
            Cloud = "string",
            Config = new AzureNative.Confluent.Inputs.ClusterConfigEntityArgs
            {
                Kind = "string",
            },
            Environment = new AzureNative.Confluent.Inputs.SCClusterNetworkEnvironmentEntityArgs
            {
                Environment = "string",
                Id = "string",
                Related = "string",
                ResourceName = "string",
            },
            HttpEndpoint = "string",
            KafkaBootstrapEndpoint = "string",
            Name = "string",
            Network = new AzureNative.Confluent.Inputs.SCClusterNetworkEnvironmentEntityArgs
            {
                Environment = "string",
                Id = "string",
                Related = "string",
                ResourceName = "string",
            },
            Package = "string",
            Region = "string",
            Zone = "string",
        },
        Status = new AzureNative.Confluent.Inputs.ClusterStatusEntityArgs
        {
            Cku = 0,
            Phase = "string",
        },
        Type = "string",
    });
    
    example, err := confluent.NewOrganizationClusterById(ctx, "organizationClusterByIdResource", &confluent.OrganizationClusterByIdArgs{
    	EnvironmentId:     pulumi.String("string"),
    	OrganizationName:  pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	ClusterId:         pulumi.String("string"),
    	Id:                pulumi.String("string"),
    	Kind:              pulumi.String("string"),
    	Metadata: &confluent.SCMetadataEntityArgs{
    		CreatedTimestamp: pulumi.String("string"),
    		DeletedTimestamp: pulumi.String("string"),
    		ResourceName:     pulumi.String("string"),
    		Self:             pulumi.String("string"),
    		UpdatedTimestamp: pulumi.String("string"),
    	},
    	Name: pulumi.String("string"),
    	Spec: &confluent.SCClusterSpecEntityArgs{
    		ApiEndpoint:  pulumi.String("string"),
    		Availability: pulumi.String("string"),
    		Byok: &confluent.SCClusterByokEntityArgs{
    			Id:           pulumi.String("string"),
    			Related:      pulumi.String("string"),
    			ResourceName: pulumi.String("string"),
    		},
    		Cloud: pulumi.String("string"),
    		Config: &confluent.ClusterConfigEntityArgs{
    			Kind: pulumi.String("string"),
    		},
    		Environment: &confluent.SCClusterNetworkEnvironmentEntityArgs{
    			Environment:  pulumi.String("string"),
    			Id:           pulumi.String("string"),
    			Related:      pulumi.String("string"),
    			ResourceName: pulumi.String("string"),
    		},
    		HttpEndpoint:           pulumi.String("string"),
    		KafkaBootstrapEndpoint: pulumi.String("string"),
    		Name:                   pulumi.String("string"),
    		Network: &confluent.SCClusterNetworkEnvironmentEntityArgs{
    			Environment:  pulumi.String("string"),
    			Id:           pulumi.String("string"),
    			Related:      pulumi.String("string"),
    			ResourceName: pulumi.String("string"),
    		},
    		Package: pulumi.String("string"),
    		Region:  pulumi.String("string"),
    		Zone:    pulumi.String("string"),
    	},
    	Status: &confluent.ClusterStatusEntityArgs{
    		Cku:   pulumi.Int(0),
    		Phase: pulumi.String("string"),
    	},
    	Type: pulumi.String("string"),
    })
    
    var organizationClusterByIdResource = new OrganizationClusterById("organizationClusterByIdResource", OrganizationClusterByIdArgs.builder()
        .environmentId("string")
        .organizationName("string")
        .resourceGroupName("string")
        .clusterId("string")
        .id("string")
        .kind("string")
        .metadata(SCMetadataEntityArgs.builder()
            .createdTimestamp("string")
            .deletedTimestamp("string")
            .resourceName("string")
            .self("string")
            .updatedTimestamp("string")
            .build())
        .name("string")
        .spec(SCClusterSpecEntityArgs.builder()
            .apiEndpoint("string")
            .availability("string")
            .byok(SCClusterByokEntityArgs.builder()
                .id("string")
                .related("string")
                .resourceName("string")
                .build())
            .cloud("string")
            .config(ClusterConfigEntityArgs.builder()
                .kind("string")
                .build())
            .environment(SCClusterNetworkEnvironmentEntityArgs.builder()
                .environment("string")
                .id("string")
                .related("string")
                .resourceName("string")
                .build())
            .httpEndpoint("string")
            .kafkaBootstrapEndpoint("string")
            .name("string")
            .network(SCClusterNetworkEnvironmentEntityArgs.builder()
                .environment("string")
                .id("string")
                .related("string")
                .resourceName("string")
                .build())
            .package_("string")
            .region("string")
            .zone("string")
            .build())
        .status(ClusterStatusEntityArgs.builder()
            .cku(0)
            .phase("string")
            .build())
        .type("string")
        .build());
    
    organization_cluster_by_id_resource = azure_native.confluent.OrganizationClusterById("organizationClusterByIdResource",
        environment_id="string",
        organization_name="string",
        resource_group_name="string",
        cluster_id="string",
        id="string",
        kind="string",
        metadata={
            "created_timestamp": "string",
            "deleted_timestamp": "string",
            "resource_name": "string",
            "self": "string",
            "updated_timestamp": "string",
        },
        name="string",
        spec={
            "api_endpoint": "string",
            "availability": "string",
            "byok": {
                "id": "string",
                "related": "string",
                "resource_name": "string",
            },
            "cloud": "string",
            "config": {
                "kind": "string",
            },
            "environment": {
                "environment": "string",
                "id": "string",
                "related": "string",
                "resource_name": "string",
            },
            "http_endpoint": "string",
            "kafka_bootstrap_endpoint": "string",
            "name": "string",
            "network": {
                "environment": "string",
                "id": "string",
                "related": "string",
                "resource_name": "string",
            },
            "package": "string",
            "region": "string",
            "zone": "string",
        },
        status={
            "cku": 0,
            "phase": "string",
        },
        type="string")
    
    const organizationClusterByIdResource = new azure_native.confluent.OrganizationClusterById("organizationClusterByIdResource", {
        environmentId: "string",
        organizationName: "string",
        resourceGroupName: "string",
        clusterId: "string",
        id: "string",
        kind: "string",
        metadata: {
            createdTimestamp: "string",
            deletedTimestamp: "string",
            resourceName: "string",
            self: "string",
            updatedTimestamp: "string",
        },
        name: "string",
        spec: {
            apiEndpoint: "string",
            availability: "string",
            byok: {
                id: "string",
                related: "string",
                resourceName: "string",
            },
            cloud: "string",
            config: {
                kind: "string",
            },
            environment: {
                environment: "string",
                id: "string",
                related: "string",
                resourceName: "string",
            },
            httpEndpoint: "string",
            kafkaBootstrapEndpoint: "string",
            name: "string",
            network: {
                environment: "string",
                id: "string",
                related: "string",
                resourceName: "string",
            },
            "package": "string",
            region: "string",
            zone: "string",
        },
        status: {
            cku: 0,
            phase: "string",
        },
        type: "string",
    });
    
    type: azure-native:confluent:OrganizationClusterById
    properties:
        clusterId: string
        environmentId: string
        id: string
        kind: string
        metadata:
            createdTimestamp: string
            deletedTimestamp: string
            resourceName: string
            self: string
            updatedTimestamp: string
        name: string
        organizationName: string
        resourceGroupName: string
        spec:
            apiEndpoint: string
            availability: string
            byok:
                id: string
                related: string
                resourceName: string
            cloud: string
            config:
                kind: string
            environment:
                environment: string
                id: string
                related: string
                resourceName: string
            httpEndpoint: string
            kafkaBootstrapEndpoint: string
            name: string
            network:
                environment: string
                id: string
                related: string
                resourceName: string
            package: string
            region: string
            zone: string
        status:
            cku: 0
            phase: string
        type: string
    

    OrganizationClusterById 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 OrganizationClusterById resource accepts the following input properties:

    EnvironmentId string
    Confluent environment id
    OrganizationName string
    Organization resource name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ClusterId string
    Confluent kafka or schema registry cluster id
    Id string
    Id of the cluster
    Kind string
    Type of cluster
    Metadata Pulumi.AzureNative.Confluent.Inputs.SCMetadataEntity
    Metadata of the record
    Name string
    Display name of the cluster
    Spec Pulumi.AzureNative.Confluent.Inputs.SCClusterSpecEntity
    Specification of the cluster
    Status Pulumi.AzureNative.Confluent.Inputs.ClusterStatusEntity
    Specification of the cluster status
    Type string
    Type of the resource
    EnvironmentId string
    Confluent environment id
    OrganizationName string
    Organization resource name
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    ClusterId string
    Confluent kafka or schema registry cluster id
    Id string
    Id of the cluster
    Kind string
    Type of cluster
    Metadata SCMetadataEntityArgs
    Metadata of the record
    Name string
    Display name of the cluster
    Spec SCClusterSpecEntityArgs
    Specification of the cluster
    Status ClusterStatusEntityArgs
    Specification of the cluster status
    Type string
    Type of the resource
    environmentId String
    Confluent environment id
    organizationName String
    Organization resource name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    clusterId String
    Confluent kafka or schema registry cluster id
    id String
    Id of the cluster
    kind String
    Type of cluster
    metadata SCMetadataEntity
    Metadata of the record
    name String
    Display name of the cluster
    spec SCClusterSpecEntity
    Specification of the cluster
    status ClusterStatusEntity
    Specification of the cluster status
    type String
    Type of the resource
    environmentId string
    Confluent environment id
    organizationName string
    Organization resource name
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    clusterId string
    Confluent kafka or schema registry cluster id
    id string
    Id of the cluster
    kind string
    Type of cluster
    metadata SCMetadataEntity
    Metadata of the record
    name string
    Display name of the cluster
    spec SCClusterSpecEntity
    Specification of the cluster
    status ClusterStatusEntity
    Specification of the cluster status
    type string
    Type of the resource
    environment_id str
    Confluent environment id
    organization_name str
    Organization resource name
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    cluster_id str
    Confluent kafka or schema registry cluster id
    id str
    Id of the cluster
    kind str
    Type of cluster
    metadata SCMetadataEntityArgs
    Metadata of the record
    name str
    Display name of the cluster
    spec SCClusterSpecEntityArgs
    Specification of the cluster
    status ClusterStatusEntityArgs
    Specification of the cluster status
    type str
    Type of the resource
    environmentId String
    Confluent environment id
    organizationName String
    Organization resource name
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    clusterId String
    Confluent kafka or schema registry cluster id
    id String
    Id of the cluster
    kind String
    Type of cluster
    metadata Property Map
    Metadata of the record
    name String
    Display name of the cluster
    spec Property Map
    Specification of the cluster
    status Property Map
    Specification of the cluster status
    type String
    Type of the resource

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OrganizationClusterById resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Supporting Types

    ClusterConfigEntity, ClusterConfigEntityArgs

    Kind string
    The lifecycle phase of the cluster
    Kind string
    The lifecycle phase of the cluster
    kind String
    The lifecycle phase of the cluster
    kind string
    The lifecycle phase of the cluster
    kind str
    The lifecycle phase of the cluster
    kind String
    The lifecycle phase of the cluster

    ClusterConfigEntityResponse, ClusterConfigEntityResponseArgs

    Kind string
    The lifecycle phase of the cluster
    Kind string
    The lifecycle phase of the cluster
    kind String
    The lifecycle phase of the cluster
    kind string
    The lifecycle phase of the cluster
    kind str
    The lifecycle phase of the cluster
    kind String
    The lifecycle phase of the cluster

    ClusterStatusEntity, ClusterStatusEntityArgs

    Cku int
    The number of Confluent Kafka Units
    Phase string
    The lifecycle phase of the cluster
    Cku int
    The number of Confluent Kafka Units
    Phase string
    The lifecycle phase of the cluster
    cku Integer
    The number of Confluent Kafka Units
    phase String
    The lifecycle phase of the cluster
    cku number
    The number of Confluent Kafka Units
    phase string
    The lifecycle phase of the cluster
    cku int
    The number of Confluent Kafka Units
    phase str
    The lifecycle phase of the cluster
    cku Number
    The number of Confluent Kafka Units
    phase String
    The lifecycle phase of the cluster

    ClusterStatusEntityResponse, ClusterStatusEntityResponseArgs

    Cku int
    The number of Confluent Kafka Units
    Phase string
    The lifecycle phase of the cluster
    Cku int
    The number of Confluent Kafka Units
    Phase string
    The lifecycle phase of the cluster
    cku Integer
    The number of Confluent Kafka Units
    phase String
    The lifecycle phase of the cluster
    cku number
    The number of Confluent Kafka Units
    phase string
    The lifecycle phase of the cluster
    cku int
    The number of Confluent Kafka Units
    phase str
    The lifecycle phase of the cluster
    cku Number
    The number of Confluent Kafka Units
    phase String
    The lifecycle phase of the cluster

    Package, PackageArgs

    ESSENTIALS
    ESSENTIALS
    ADVANCED
    ADVANCED
    PackageESSENTIALS
    ESSENTIALS
    PackageADVANCED
    ADVANCED
    ESSENTIALS
    ESSENTIALS
    ADVANCED
    ADVANCED
    ESSENTIALS
    ESSENTIALS
    ADVANCED
    ADVANCED
    ESSENTIALS
    ESSENTIALS
    ADVANCED
    ADVANCED
    "ESSENTIALS"
    ESSENTIALS
    "ADVANCED"
    ADVANCED

    SCClusterByokEntity, SCClusterByokEntityArgs

    Id string
    ID of the referred resource
    Related string
    API URL for accessing or modifying the referred object
    ResourceName string
    CRN reference to the referred resource
    Id string
    ID of the referred resource
    Related string
    API URL for accessing or modifying the referred object
    ResourceName string
    CRN reference to the referred resource
    id String
    ID of the referred resource
    related String
    API URL for accessing or modifying the referred object
    resourceName String
    CRN reference to the referred resource
    id string
    ID of the referred resource
    related string
    API URL for accessing or modifying the referred object
    resourceName string
    CRN reference to the referred resource
    id str
    ID of the referred resource
    related str
    API URL for accessing or modifying the referred object
    resource_name str
    CRN reference to the referred resource
    id String
    ID of the referred resource
    related String
    API URL for accessing or modifying the referred object
    resourceName String
    CRN reference to the referred resource

    SCClusterByokEntityResponse, SCClusterByokEntityResponseArgs

    Id string
    ID of the referred resource
    Related string
    API URL for accessing or modifying the referred object
    ResourceName string
    CRN reference to the referred resource
    Id string
    ID of the referred resource
    Related string
    API URL for accessing or modifying the referred object
    ResourceName string
    CRN reference to the referred resource
    id String
    ID of the referred resource
    related String
    API URL for accessing or modifying the referred object
    resourceName String
    CRN reference to the referred resource
    id string
    ID of the referred resource
    related string
    API URL for accessing or modifying the referred object
    resourceName string
    CRN reference to the referred resource
    id str
    ID of the referred resource
    related str
    API URL for accessing or modifying the referred object
    resource_name str
    CRN reference to the referred resource
    id String
    ID of the referred resource
    related String
    API URL for accessing or modifying the referred object
    resourceName String
    CRN reference to the referred resource

    SCClusterNetworkEnvironmentEntity, SCClusterNetworkEnvironmentEntityArgs

    Environment string
    Environment of the referred resource
    Id string
    ID of the referred resource
    Related string
    API URL for accessing or modifying the referred object
    ResourceName string
    CRN reference to the referred resource
    Environment string
    Environment of the referred resource
    Id string
    ID of the referred resource
    Related string
    API URL for accessing or modifying the referred object
    ResourceName string
    CRN reference to the referred resource
    environment String
    Environment of the referred resource
    id String
    ID of the referred resource
    related String
    API URL for accessing or modifying the referred object
    resourceName String
    CRN reference to the referred resource
    environment string
    Environment of the referred resource
    id string
    ID of the referred resource
    related string
    API URL for accessing or modifying the referred object
    resourceName string
    CRN reference to the referred resource
    environment str
    Environment of the referred resource
    id str
    ID of the referred resource
    related str
    API URL for accessing or modifying the referred object
    resource_name str
    CRN reference to the referred resource
    environment String
    Environment of the referred resource
    id String
    ID of the referred resource
    related String
    API URL for accessing or modifying the referred object
    resourceName String
    CRN reference to the referred resource

    SCClusterNetworkEnvironmentEntityResponse, SCClusterNetworkEnvironmentEntityResponseArgs

    Environment string
    Environment of the referred resource
    Id string
    ID of the referred resource
    Related string
    API URL for accessing or modifying the referred object
    ResourceName string
    CRN reference to the referred resource
    Environment string
    Environment of the referred resource
    Id string
    ID of the referred resource
    Related string
    API URL for accessing or modifying the referred object
    ResourceName string
    CRN reference to the referred resource
    environment String
    Environment of the referred resource
    id String
    ID of the referred resource
    related String
    API URL for accessing or modifying the referred object
    resourceName String
    CRN reference to the referred resource
    environment string
    Environment of the referred resource
    id string
    ID of the referred resource
    related string
    API URL for accessing or modifying the referred object
    resourceName string
    CRN reference to the referred resource
    environment str
    Environment of the referred resource
    id str
    ID of the referred resource
    related str
    API URL for accessing or modifying the referred object
    resource_name str
    CRN reference to the referred resource
    environment String
    Environment of the referred resource
    id String
    ID of the referred resource
    related String
    API URL for accessing or modifying the referred object
    resourceName String
    CRN reference to the referred resource

    SCClusterSpecEntity, SCClusterSpecEntityArgs

    ApiEndpoint string
    The Kafka API cluster endpoint
    Availability string
    The availability zone configuration of the cluster
    Byok Pulumi.AzureNative.Confluent.Inputs.SCClusterByokEntity
    Specification of the cluster byok
    Cloud string
    The cloud service provider
    Config Pulumi.AzureNative.Confluent.Inputs.ClusterConfigEntity
    Specification of the cluster configuration
    Environment Pulumi.AzureNative.Confluent.Inputs.SCClusterNetworkEnvironmentEntity
    Specification of the cluster environment
    HttpEndpoint string
    The cluster HTTP request URL.
    KafkaBootstrapEndpoint string
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    Name string
    The name of the cluster
    Network Pulumi.AzureNative.Confluent.Inputs.SCClusterNetworkEnvironmentEntity
    Specification of the cluster network
    Package string | Pulumi.AzureNative.Confluent.Package
    Stream governance configuration
    Region string
    The cloud service provider region
    Zone string
    type of zone availability
    ApiEndpoint string
    The Kafka API cluster endpoint
    Availability string
    The availability zone configuration of the cluster
    Byok SCClusterByokEntity
    Specification of the cluster byok
    Cloud string
    The cloud service provider
    Config ClusterConfigEntity
    Specification of the cluster configuration
    Environment SCClusterNetworkEnvironmentEntity
    Specification of the cluster environment
    HttpEndpoint string
    The cluster HTTP request URL.
    KafkaBootstrapEndpoint string
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    Name string
    The name of the cluster
    Network SCClusterNetworkEnvironmentEntity
    Specification of the cluster network
    Package string | Package
    Stream governance configuration
    Region string
    The cloud service provider region
    Zone string
    type of zone availability
    apiEndpoint String
    The Kafka API cluster endpoint
    availability String
    The availability zone configuration of the cluster
    byok SCClusterByokEntity
    Specification of the cluster byok
    cloud String
    The cloud service provider
    config ClusterConfigEntity
    Specification of the cluster configuration
    environment SCClusterNetworkEnvironmentEntity
    Specification of the cluster environment
    httpEndpoint String
    The cluster HTTP request URL.
    kafkaBootstrapEndpoint String
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    name String
    The name of the cluster
    network SCClusterNetworkEnvironmentEntity
    Specification of the cluster network
    package_ String | Package
    Stream governance configuration
    region String
    The cloud service provider region
    zone String
    type of zone availability
    apiEndpoint string
    The Kafka API cluster endpoint
    availability string
    The availability zone configuration of the cluster
    byok SCClusterByokEntity
    Specification of the cluster byok
    cloud string
    The cloud service provider
    config ClusterConfigEntity
    Specification of the cluster configuration
    environment SCClusterNetworkEnvironmentEntity
    Specification of the cluster environment
    httpEndpoint string
    The cluster HTTP request URL.
    kafkaBootstrapEndpoint string
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    name string
    The name of the cluster
    network SCClusterNetworkEnvironmentEntity
    Specification of the cluster network
    package string | Package
    Stream governance configuration
    region string
    The cloud service provider region
    zone string
    type of zone availability
    api_endpoint str
    The Kafka API cluster endpoint
    availability str
    The availability zone configuration of the cluster
    byok SCClusterByokEntity
    Specification of the cluster byok
    cloud str
    The cloud service provider
    config ClusterConfigEntity
    Specification of the cluster configuration
    environment SCClusterNetworkEnvironmentEntity
    Specification of the cluster environment
    http_endpoint str
    The cluster HTTP request URL.
    kafka_bootstrap_endpoint str
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    name str
    The name of the cluster
    network SCClusterNetworkEnvironmentEntity
    Specification of the cluster network
    package str | Package
    Stream governance configuration
    region str
    The cloud service provider region
    zone str
    type of zone availability
    apiEndpoint String
    The Kafka API cluster endpoint
    availability String
    The availability zone configuration of the cluster
    byok Property Map
    Specification of the cluster byok
    cloud String
    The cloud service provider
    config Property Map
    Specification of the cluster configuration
    environment Property Map
    Specification of the cluster environment
    httpEndpoint String
    The cluster HTTP request URL.
    kafkaBootstrapEndpoint String
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    name String
    The name of the cluster
    network Property Map
    Specification of the cluster network
    package String | "ESSENTIALS" | "ADVANCED"
    Stream governance configuration
    region String
    The cloud service provider region
    zone String
    type of zone availability

    SCClusterSpecEntityResponse, SCClusterSpecEntityResponseArgs

    ApiEndpoint string
    The Kafka API cluster endpoint
    Availability string
    The availability zone configuration of the cluster
    Byok Pulumi.AzureNative.Confluent.Inputs.SCClusterByokEntityResponse
    Specification of the cluster byok
    Cloud string
    The cloud service provider
    Config Pulumi.AzureNative.Confluent.Inputs.ClusterConfigEntityResponse
    Specification of the cluster configuration
    Environment Pulumi.AzureNative.Confluent.Inputs.SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster environment
    HttpEndpoint string
    The cluster HTTP request URL.
    KafkaBootstrapEndpoint string
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    Name string
    The name of the cluster
    Network Pulumi.AzureNative.Confluent.Inputs.SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster network
    Package string
    Stream governance configuration
    Region string
    The cloud service provider region
    Zone string
    type of zone availability
    ApiEndpoint string
    The Kafka API cluster endpoint
    Availability string
    The availability zone configuration of the cluster
    Byok SCClusterByokEntityResponse
    Specification of the cluster byok
    Cloud string
    The cloud service provider
    Config ClusterConfigEntityResponse
    Specification of the cluster configuration
    Environment SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster environment
    HttpEndpoint string
    The cluster HTTP request URL.
    KafkaBootstrapEndpoint string
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    Name string
    The name of the cluster
    Network SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster network
    Package string
    Stream governance configuration
    Region string
    The cloud service provider region
    Zone string
    type of zone availability
    apiEndpoint String
    The Kafka API cluster endpoint
    availability String
    The availability zone configuration of the cluster
    byok SCClusterByokEntityResponse
    Specification of the cluster byok
    cloud String
    The cloud service provider
    config ClusterConfigEntityResponse
    Specification of the cluster configuration
    environment SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster environment
    httpEndpoint String
    The cluster HTTP request URL.
    kafkaBootstrapEndpoint String
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    name String
    The name of the cluster
    network SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster network
    package_ String
    Stream governance configuration
    region String
    The cloud service provider region
    zone String
    type of zone availability
    apiEndpoint string
    The Kafka API cluster endpoint
    availability string
    The availability zone configuration of the cluster
    byok SCClusterByokEntityResponse
    Specification of the cluster byok
    cloud string
    The cloud service provider
    config ClusterConfigEntityResponse
    Specification of the cluster configuration
    environment SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster environment
    httpEndpoint string
    The cluster HTTP request URL.
    kafkaBootstrapEndpoint string
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    name string
    The name of the cluster
    network SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster network
    package string
    Stream governance configuration
    region string
    The cloud service provider region
    zone string
    type of zone availability
    api_endpoint str
    The Kafka API cluster endpoint
    availability str
    The availability zone configuration of the cluster
    byok SCClusterByokEntityResponse
    Specification of the cluster byok
    cloud str
    The cloud service provider
    config ClusterConfigEntityResponse
    Specification of the cluster configuration
    environment SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster environment
    http_endpoint str
    The cluster HTTP request URL.
    kafka_bootstrap_endpoint str
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    name str
    The name of the cluster
    network SCClusterNetworkEnvironmentEntityResponse
    Specification of the cluster network
    package str
    Stream governance configuration
    region str
    The cloud service provider region
    zone str
    type of zone availability
    apiEndpoint String
    The Kafka API cluster endpoint
    availability String
    The availability zone configuration of the cluster
    byok Property Map
    Specification of the cluster byok
    cloud String
    The cloud service provider
    config Property Map
    Specification of the cluster configuration
    environment Property Map
    Specification of the cluster environment
    httpEndpoint String
    The cluster HTTP request URL.
    kafkaBootstrapEndpoint String
    The bootstrap endpoint used by Kafka clients to connect to the cluster
    name String
    The name of the cluster
    network Property Map
    Specification of the cluster network
    package String
    Stream governance configuration
    region String
    The cloud service provider region
    zone String
    type of zone availability

    SCMetadataEntity, SCMetadataEntityArgs

    CreatedTimestamp string
    Created Date Time
    DeletedTimestamp string
    Deleted Date time
    ResourceName string
    Resource name of the record
    Self string
    Self lookup url
    UpdatedTimestamp string
    Updated Date time
    CreatedTimestamp string
    Created Date Time
    DeletedTimestamp string
    Deleted Date time
    ResourceName string
    Resource name of the record
    Self string
    Self lookup url
    UpdatedTimestamp string
    Updated Date time
    createdTimestamp String
    Created Date Time
    deletedTimestamp String
    Deleted Date time
    resourceName String
    Resource name of the record
    self String
    Self lookup url
    updatedTimestamp String
    Updated Date time
    createdTimestamp string
    Created Date Time
    deletedTimestamp string
    Deleted Date time
    resourceName string
    Resource name of the record
    self string
    Self lookup url
    updatedTimestamp string
    Updated Date time
    created_timestamp str
    Created Date Time
    deleted_timestamp str
    Deleted Date time
    resource_name str
    Resource name of the record
    self str
    Self lookup url
    updated_timestamp str
    Updated Date time
    createdTimestamp String
    Created Date Time
    deletedTimestamp String
    Deleted Date time
    resourceName String
    Resource name of the record
    self String
    Self lookup url
    updatedTimestamp String
    Updated Date time

    SCMetadataEntityResponse, SCMetadataEntityResponseArgs

    CreatedTimestamp string
    Created Date Time
    DeletedTimestamp string
    Deleted Date time
    ResourceName string
    Resource name of the record
    Self string
    Self lookup url
    UpdatedTimestamp string
    Updated Date time
    CreatedTimestamp string
    Created Date Time
    DeletedTimestamp string
    Deleted Date time
    ResourceName string
    Resource name of the record
    Self string
    Self lookup url
    UpdatedTimestamp string
    Updated Date time
    createdTimestamp String
    Created Date Time
    deletedTimestamp String
    Deleted Date time
    resourceName String
    Resource name of the record
    self String
    Self lookup url
    updatedTimestamp String
    Updated Date time
    createdTimestamp string
    Created Date Time
    deletedTimestamp string
    Deleted Date time
    resourceName string
    Resource name of the record
    self string
    Self lookup url
    updatedTimestamp string
    Updated Date time
    created_timestamp str
    Created Date Time
    deleted_timestamp str
    Deleted Date time
    resource_name str
    Resource name of the record
    self str
    Self lookup url
    updated_timestamp str
    Updated Date time
    createdTimestamp String
    Created Date Time
    deletedTimestamp String
    Deleted Date time
    resourceName String
    Resource name of the record
    self String
    Self lookup url
    updatedTimestamp String
    Updated Date time

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:confluent:OrganizationClusterById cluster-1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Confluent/organizations/{organizationName}/environments/{environmentId}/clusters/{clusterId} 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi