@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.73 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get cluster by Id
*
* Uses Azure REST API version 2024-07-01.
*/
export declare function getOrganizationClusterById(args: GetOrganizationClusterByIdArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationClusterByIdResult>;
export interface GetOrganizationClusterByIdArgs {
/**
* Confluent kafka or schema registry cluster id
*/
clusterId: string;
/**
* Confluent environment id
*/
environmentId: string;
/**
* Organization resource name
*/
organizationName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Details of cluster record
*/
export interface GetOrganizationClusterByIdResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* Type of cluster
*/
readonly kind?: string;
/**
* Metadata of the record
*/
readonly metadata?: outputs.confluent.SCMetadataEntityResponse;
/**
* The name of the resource
*/
readonly name: string;
/**
* Specification of the cluster
*/
readonly spec?: outputs.confluent.SCClusterSpecEntityResponse;
/**
* Specification of the cluster status
*/
readonly status?: outputs.confluent.ClusterStatusEntityResponse;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.confluent.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Get cluster by Id
*
* Uses Azure REST API version 2024-07-01.
*/
export declare function getOrganizationClusterByIdOutput(args: GetOrganizationClusterByIdOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationClusterByIdResult>;
export interface GetOrganizationClusterByIdOutputArgs {
/**
* Confluent kafka or schema registry cluster id
*/
clusterId: pulumi.Input<string>;
/**
* Confluent environment id
*/
environmentId: pulumi.Input<string>;
/**
* Organization resource name
*/
organizationName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}