@kengachu-pulumi/azure-native-apimanagement
Version:
Pulumi Azure Native package for apimanagement
21 lines (20 loc) • 948 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Get the custom domain ownership identifier for an API Management service.
*/
export declare function getApiManagementServiceDomainOwnershipIdentifier(args?: GetApiManagementServiceDomainOwnershipIdentifierArgs, opts?: pulumi.InvokeOptions): Promise<GetApiManagementServiceDomainOwnershipIdentifierResult>;
export interface GetApiManagementServiceDomainOwnershipIdentifierArgs {
}
/**
* Response of the GetDomainOwnershipIdentifier operation.
*/
export interface GetApiManagementServiceDomainOwnershipIdentifierResult {
/**
* The domain ownership identifier value.
*/
readonly domainOwnershipIdentifier: string;
}
/**
* Get the custom domain ownership identifier for an API Management service.
*/
export declare function getApiManagementServiceDomainOwnershipIdentifierOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetApiManagementServiceDomainOwnershipIdentifierResult>;