@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.33 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Get the properties of a specific Organization resource.
*
* Uses Azure REST API version 2024-07-01.
*
* Other available API versions: 2021-12-01, 2023-08-22, 2024-02-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native confluent [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getOrganization(args: GetOrganizationArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationResult>;
export interface GetOrganizationArgs {
/**
* Organization resource name
*/
organizationName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Organization resource.
*/
export interface GetOrganizationResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* The creation time of the resource.
*/
readonly createdTime: string;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* Confluent offer detail
*/
readonly offerDetail: outputs.confluent.OfferDetailResponse;
/**
* Id of the Confluent organization.
*/
readonly organizationId: string;
/**
* Provision states for confluent RP
*/
readonly provisioningState: string;
/**
* SSO url for the Confluent organization.
*/
readonly ssoUrl: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.confluent.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
/**
* Subscriber detail
*/
readonly userDetail: outputs.confluent.UserDetailResponse;
}
/**
* Get the properties of a specific Organization resource.
*
* Uses Azure REST API version 2024-07-01.
*
* Other available API versions: 2021-12-01, 2023-08-22, 2024-02-13. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native confluent [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getOrganizationOutput(args: GetOrganizationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationResult>;
export interface GetOrganizationOutputArgs {
/**
* Organization resource name
*/
organizationName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}