Skip to content

Commit

Permalink
[skip ci] repo-sync
Browse files Browse the repository at this point in the history
  • Loading branch information
loft-bot committed Jun 19, 2024
1 parent 8e5fd8c commit 0f8c8ea
Show file tree
Hide file tree
Showing 172 changed files with 13,383 additions and 4,898 deletions.
58 changes: 0 additions & 58 deletions gen/models/V1AppArmorProfile.ts

This file was deleted.

51 changes: 51 additions & 0 deletions gen/models/V1ClaimSource.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
/**
* Api
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* OpenAPI spec version: master
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/



/**
* ClaimSource describes a reference to a ResourceClaim. Exactly one of these fields should be set. Consumers of this type must treat an empty object as if it has an unknown value.
*/
export class V1ClaimSource {
/**
* ResourceClaimName is the name of a ResourceClaim object in the same namespace as this pod.
*/
'resourceClaimName'?: string;
/**
* ResourceClaimTemplateName is the name of a ResourceClaimTemplate object in the same namespace as this pod. The template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses. This field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane after creating the ResourceClaim.
*/
'resourceClaimTemplateName'?: string;

static readonly discriminator: string | undefined = undefined;

static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
{
"name": "resourceClaimName",
"baseName": "resourceClaimName",
"type": "string",
"format": ""
},
{
"name": "resourceClaimTemplateName",
"baseName": "resourceClaimTemplateName",
"type": "string",
"format": ""
} ];

static getAttributeTypeMap() {
return V1ClaimSource.attributeTypeMap;
}

public constructor() {
}
}

2 changes: 1 addition & 1 deletion gen/models/V1ConfigMapEnvSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
export class V1ConfigMapEnvSource {
/**
* Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
* Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
*/
'name'?: string;
/**
Expand Down
2 changes: 1 addition & 1 deletion gen/models/V1ConfigMapKeySelector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class V1ConfigMapKeySelector {
*/
'key': string;
/**
* Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
* Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
*/
'name'?: string;
/**
Expand Down
2 changes: 1 addition & 1 deletion gen/models/V1ConfigMapProjection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class V1ConfigMapProjection {
*/
'items'?: Array<V1KeyToPath>;
/**
* Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
* Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
*/
'name'?: string;
/**
Expand Down
2 changes: 1 addition & 1 deletion gen/models/V1ConfigMapVolumeSource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class V1ConfigMapVolumeSource {
*/
'items'?: Array<V1KeyToPath>;
/**
* Name of the referent. This field is effectively required, but due to backwards compatibility is allowed to be empty. Instances of this type with an empty value here are almost certainly wrong. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
* Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
*/
'name'?: string;
/**
Expand Down
11 changes: 0 additions & 11 deletions gen/models/V1ContainerStatus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

import { V1ContainerState } from '../models/V1ContainerState';
import { V1ResourceRequirements } from '../models/V1ResourceRequirements';
import { V1VolumeMountStatus } from '../models/V1VolumeMountStatus';


/**
Expand Down Expand Up @@ -54,10 +53,6 @@ export class V1ContainerStatus {
*/
'started'?: boolean;
'state'?: V1ContainerState;
/**
* Status of volume mounts.
*/
'volumeMounts'?: Array<V1VolumeMountStatus>;

static readonly discriminator: string | undefined = undefined;

Expand Down Expand Up @@ -127,12 +122,6 @@ export class V1ContainerStatus {
"baseName": "state",
"type": "V1ContainerState",
"format": ""
},
{
"name": "volumeMounts",
"baseName": "volumeMounts",
"type": "Array<V1VolumeMountStatus>",
"format": ""
} ];

static getAttributeTypeMap() {
Expand Down
Loading

0 comments on commit 0f8c8ea

Please sign in to comment.