@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.57 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get Environment details by environment Id
*
* Uses Azure REST API version 2024-07-01.
*/
export declare function getOrganizationEnvironmentById(args: GetOrganizationEnvironmentByIdArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationEnvironmentByIdResult>;
export interface GetOrganizationEnvironmentByIdArgs {
/**
* Confluent environment id
*/
environmentId: string;
/**
* Organization resource name
*/
organizationName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Details about environment name, metadata and environment id of an environment
*/
export interface GetOrganizationEnvironmentByIdResult {
/**
* 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 environment
*/
readonly kind?: string;
/**
* Metadata of the record
*/
readonly metadata?: outputs.confluent.SCMetadataEntityResponse;
/**
* The name of the resource
*/
readonly name: string;
/**
* Stream governance configuration
*/
readonly streamGovernanceConfig?: outputs.confluent.StreamGovernanceConfigResponse;
/**
* 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 Environment details by environment Id
*
* Uses Azure REST API version 2024-07-01.
*/
export declare function getOrganizationEnvironmentByIdOutput(args: GetOrganizationEnvironmentByIdOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationEnvironmentByIdResult>;
export interface GetOrganizationEnvironmentByIdOutputArgs {
/**
* 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>;
}