UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

29 lines (28 loc) 983 B
export declare const ExtendedLocationType: { /** * Azure Edge Zones location type */ readonly EdgeZone: "EdgeZone"; /** * Azure Custom Locations type */ readonly CustomLocation: "CustomLocation"; }; /** * The type of the extended location. */ export type ExtendedLocationType = (typeof ExtendedLocationType)[keyof typeof ExtendedLocationType]; export declare const KubernetesSecretType: { /** * Opaque is the default secret type. */ readonly Opaque: "Opaque"; /** * The kubernetes.io/tls secret type is for storing a certificate and its associated key that are typically used for TLS. */ readonly Tls: "kubernetes.io/tls"; }; /** * Type specifies the type of the Kubernetes secret object, e.g. "Opaque" or"kubernetes.io/tls". The controller must have permission to create secrets of the specified type. */ export type KubernetesSecretType = (typeof KubernetesSecretType)[keyof typeof KubernetesSecretType];