10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
import type { TargetType } from "./TargetType";
|
|
|
|
export class MonitoringTargetConfigCreation {
|
|
type?: TargetType;
|
|
namespace?: string;
|
|
deploymentName?: string;
|
|
statefulSetName?: string;
|
|
labelKey?: string;
|
|
labelValue?: string;
|
|
} |