You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/kubernetes/models/secret/models.js

22 lines
410 B

/**
* KubernetesApplicationSecret Model
*/
const _KubernetesApplicationSecret = Object.freeze({
Id: 0,
Name: '',
Namespace: '',
Type: '',
CreationDate: '',
ConfigurationOwner: '',
Yaml: '',
Data: [],
SecretType: '',
Annotations: [],
});
export class KubernetesApplicationSecret {
constructor() {
Object.assign(this, JSON.parse(JSON.stringify(_KubernetesApplicationSecret)));
}
}