UNPKG

@kengachu-pulumi/azure-native-documentdb

Version:

Pulumi Azure Native package for documentdb

68 lines (67 loc) 2.29 kB
import * as pulumi from "@pulumi/pulumi"; import * as types from "./types"; /** * Gets the status of service. * * Uses Azure REST API version 2023-04-15. * * Other available API versions: 2023-09-15, 2023-09-15-preview, 2023-11-15, 2023-11-15-preview, 2024-02-15-preview, 2024-05-15, 2024-05-15-preview, 2024-08-15, 2024-09-01-preview, 2024-11-15, 2024-12-01-preview. */ export declare function getService(args: GetServiceArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceResult>; export interface GetServiceArgs { /** * Cosmos DB database account name. */ accountName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * Cosmos DB service name. */ serviceName: string; } /** * Properties for the database account. */ export interface GetServiceResult { /** * The unique resource identifier of the database account. */ readonly id: string; /** * The name of the database account. */ readonly name: string; /** * Services response resource. */ readonly properties: types.outputs.DataTransferServiceResourcePropertiesResponse | types.outputs.GraphAPIComputeServiceResourcePropertiesResponse | types.outputs.MaterializedViewsBuilderServiceResourcePropertiesResponse | types.outputs.SqlDedicatedGatewayServiceResourcePropertiesResponse; /** * The type of Azure resource. */ readonly type: string; } /** * Gets the status of service. * * Uses Azure REST API version 2023-04-15. * * Other available API versions: 2023-09-15, 2023-09-15-preview, 2023-11-15, 2023-11-15-preview, 2024-02-15-preview, 2024-05-15, 2024-05-15-preview, 2024-08-15, 2024-09-01-preview, 2024-11-15, 2024-12-01-preview. */ export declare function getServiceOutput(args: GetServiceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceResult>; export interface GetServiceOutputArgs { /** * Cosmos DB database account name. */ accountName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * Cosmos DB service name. */ serviceName: pulumi.Input<string>; }