Skip to content

Commit 39ea2a8

Browse files
committed
[skip ci] repo-sync
1 parent e3bc2d3 commit 39ea2a8

File tree

7 files changed

+64
-27
lines changed

7 files changed

+64
-27
lines changed

gen/models/licenseApiLicense.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ export class LicenseApiLicense {
4141
*/
4242
'domainToken'?: string;
4343
/**
44+
* Entity holds a name for an organization, person or entity this product is licensed for. This will be displayed to the user.
45+
*/
46+
'entity'?: string;
47+
/**
4448
* InstanceID contains the instance id of the Loft instance
4549
*/
4650
'instance'?: string;
@@ -91,6 +95,12 @@ export class LicenseApiLicense {
9195
"type": "string",
9296
"format": ""
9397
},
98+
{
99+
"name": "entity",
100+
"baseName": "entity",
101+
"type": "string",
102+
"format": ""
103+
},
94104
{
95105
"name": "instance",
96106
"baseName": "instance",

gen/models/managementV1ConfigStatus.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ export class ManagementV1ConfigStatus {
3030
*/
3131
'devPodSubDomain'?: string;
3232
/**
33+
* DisableLoftConfigEndpoint will disable setting config via the UI and config.management.loft.sh endpoint
34+
*/
35+
'disableConfigEndpoint'?: boolean;
36+
/**
3337
* LoftHost holds the domain where the loft instance is hosted. This should not include https or http. E.g. loft.my-domain.com
3438
*/
3539
'loftHost'?: string;
@@ -68,6 +72,12 @@ export class ManagementV1ConfigStatus {
6872
"type": "string",
6973
"format": ""
7074
},
75+
{
76+
"name": "disableConfigEndpoint",
77+
"baseName": "disableConfigEndpoint",
78+
"type": "boolean",
79+
"format": ""
80+
},
7181
{
7282
"name": "loftHost",
7383
"baseName": "loftHost",

gen/models/managementV1DevPodWorkspaceInstanceStatus.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@
1212

1313
import { ClusterV1SleepModeConfig } from '../models/clusterV1SleepModeConfig';
1414
import { StorageV1Condition } from '../models/agentstorageV1Condition';
15+
import { StorageV1ClusterRef } from '../models/storageV1ClusterRef';
1516
import { StorageV1DevPodWorkspaceTemplateDefinition } from '../models/storageV1DevPodWorkspaceTemplateDefinition';
1617

1718

1819
/**
1920
* DevPodWorkspaceInstanceStatus holds the status
2021
*/
2122
export class ManagementV1DevPodWorkspaceInstanceStatus {
23+
'clusterRef'?: StorageV1ClusterRef;
2224
/**
2325
* Conditions holds several conditions the DevPod machine might be in
2426
*/
@@ -49,6 +51,12 @@ export class ManagementV1DevPodWorkspaceInstanceStatus {
4951
static readonly discriminator: string | undefined = undefined;
5052

5153
static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
54+
{
55+
"name": "clusterRef",
56+
"baseName": "clusterRef",
57+
"type": "StorageV1ClusterRef",
58+
"format": ""
59+
},
5260
{
5361
"name": "conditions",
5462
"baseName": "conditions",

gen/resources.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ export const GenResources: TGenResources = {
402402
version: "v1",
403403
resource: "oidcclients",
404404
subResource: "",
405-
namespaced: true,
405+
namespaced: false,
406406
kind: "OIDCClient",
407407
},
408408
ManagementV1OwnedAccessKey: {

lib/index.d.ts

Lines changed: 33 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5024,6 +5024,10 @@ declare class ManagementV1ConfigStatus {
50245024
*/
50255025
"devPodSubDomain"?: string;
50265026
/**
5027+
* DisableLoftConfigEndpoint will disable setting config via the UI and config.management.loft.sh endpoint
5028+
*/
5029+
"disableConfigEndpoint"?: boolean;
5030+
/**
50275031
* LoftHost holds the domain where the loft instance is hosted. This should not include https or http. E.g. loft.my-domain.com
50285032
*/
50295033
"loftHost"?: string;
@@ -5496,7 +5500,32 @@ declare class StorageV1Condition {
54965500
}[];
54975501
constructor();
54985502
}
5503+
declare class StorageV1ClusterRef {
5504+
/**
5505+
* Cluster is the connected cluster the space will be created in
5506+
*/
5507+
"cluster"?: string;
5508+
/**
5509+
* Namespace is the namespace inside the connected cluster holding the space
5510+
*/
5511+
"namespace"?: string;
5512+
static readonly discriminator: string | undefined;
5513+
static readonly attributeTypeMap: Array<{
5514+
name: string;
5515+
baseName: string;
5516+
type: string;
5517+
format: string;
5518+
}>;
5519+
static getAttributeTypeMap(): {
5520+
name: string;
5521+
baseName: string;
5522+
type: string;
5523+
format: string;
5524+
}[];
5525+
constructor();
5526+
}
54995527
declare class ManagementV1DevPodWorkspaceInstanceStatus {
5528+
"clusterRef"?: StorageV1ClusterRef;
55005529
/**
55015530
* Conditions holds several conditions the DevPod machine might be in
55025531
*/
@@ -6754,6 +6783,10 @@ declare class LicenseApiLicense {
67546783
*/
67556784
"domainToken"?: string;
67566785
/**
6786+
* Entity holds a name for an organization, person or entity this product is licensed for. This will be displayed to the user.
6787+
*/
6788+
"entity"?: string;
6789+
/**
67576790
* InstanceID contains the instance id of the Loft instance
67586791
*/
67596792
"instance"?: string;
@@ -12560,30 +12593,6 @@ declare class ManagementV1SharedSecret {
1256012593
}[];
1256112594
constructor();
1256212595
}
12563-
declare class StorageV1ClusterRef {
12564-
/**
12565-
* Cluster is the connected cluster the space will be created in
12566-
*/
12567-
"cluster"?: string;
12568-
/**
12569-
* Namespace is the namespace inside the connected cluster holding the space
12570-
*/
12571-
"namespace"?: string;
12572-
static readonly discriminator: string | undefined;
12573-
static readonly attributeTypeMap: Array<{
12574-
name: string;
12575-
baseName: string;
12576-
type: string;
12577-
format: string;
12578-
}>;
12579-
static getAttributeTypeMap(): {
12580-
name: string;
12581-
baseName: string;
12582-
type: string;
12583-
format: string;
12584-
}[];
12585-
constructor();
12586-
}
1258712596
declare class ManagementV1SpaceInstanceSpec {
1258812597
/**
1258912598
* Access holds the access rights for users and teams

lib/index.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)