UNPKG

@kubernetes-models/argo-rollouts

Version:
18 lines (17 loc) 756 B
import { ModelData, Model } from "@kubernetes-models/base"; export interface ISecretRef { /** * Name refers to the name of the secret that should be used to integrate with Datadog. */ "name"?: string; /** * Namespaced indicates whether the secret is in the namespace where rollouts it installed or in the namespace where the metric was found */ "namespaced"?: boolean; } export declare class SecretRef extends Model<ISecretRef> implements ISecretRef { "name"?: string; "namespaced"?: boolean; constructor(data?: ModelData<ISecretRef>); } export type { ISecretRef as IComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1SecretRef, SecretRef as ComGithubArgoprojArgoRolloutsPkgApisRolloutsV1alpha1SecretRef };