@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.17 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the details about the service to the resource.
*
* Uses Azure REST API version 2024-12-01.
*
* Other available API versions: 2023-03-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridconnectivity [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getServiceConfiguration(args: GetServiceConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetServiceConfigurationResult>;
export interface GetServiceConfigurationArgs {
/**
* The endpoint name.
*/
endpointName: string;
/**
* The fully qualified Azure Resource manager identifier of the resource.
*/
resourceUri: string;
/**
* The service name.
*/
serviceConfigurationName: string;
}
/**
* The service configuration details associated with the target resource.
*/
export interface GetServiceConfigurationResult {
/**
* 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;
/**
* The name of the resource
*/
readonly name: string;
/**
* The port on which service is enabled.
*/
readonly port?: number;
/**
* The resource provisioning state.
*/
readonly provisioningState: string;
/**
* The resource Id of the connectivity endpoint (optional).
*/
readonly resourceId?: string;
/**
* Name of the service.
*/
readonly serviceName: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.hybridconnectivity.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets the details about the service to the resource.
*
* Uses Azure REST API version 2024-12-01.
*
* Other available API versions: 2023-03-15. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native hybridconnectivity [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getServiceConfigurationOutput(args: GetServiceConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetServiceConfigurationResult>;
export interface GetServiceConfigurationOutputArgs {
/**
* The endpoint name.
*/
endpointName: pulumi.Input<string>;
/**
* The fully qualified Azure Resource manager identifier of the resource.
*/
resourceUri: pulumi.Input<string>;
/**
* The service name.
*/
serviceConfigurationName: pulumi.Input<string>;
}