@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
62 lines (61 loc) • 1.91 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* TlsServiceProfile data source
*/
export declare function getTlsServiceProfile(args: GetTlsServiceProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetTlsServiceProfileResult>;
/**
* A collection of arguments for invoking getTlsServiceProfile.
*/
export interface GetTlsServiceProfileArgs {
/**
* The UUID of the TLS service profile
*/
id: string;
/**
* TLS service profile name. The value is `muCustomDomainSSLProfile` when it is used on mobile-agent infra settings.
*/
name?: string;
}
/**
* A collection of values returned by getTlsServiceProfile.
*/
export interface GetTlsServiceProfileResult {
/**
* Certificate name
*/
readonly certificate: string;
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly folder: string;
/**
* The UUID of the TLS service profile
*/
readonly id: string;
/**
* TLS service profile name. The value is `muCustomDomainSSLProfile` when it is used on mobile-agent infra settings.
*/
readonly name: string;
readonly protocolSettings: outputs.GetTlsServiceProfileProtocolSettings;
readonly snippet: string;
readonly tfid: string;
}
/**
* TlsServiceProfile data source
*/
export declare function getTlsServiceProfileOutput(args: GetTlsServiceProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTlsServiceProfileResult>;
/**
* A collection of arguments for invoking getTlsServiceProfile.
*/
export interface GetTlsServiceProfileOutputArgs {
/**
* The UUID of the TLS service profile
*/
id: pulumi.Input<string>;
/**
* TLS service profile name. The value is `muCustomDomainSSLProfile` when it is used on mobile-agent infra settings.
*/
name?: pulumi.Input<string>;
}