@parallelworks/client 7.94.0 → 7.95.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -3
- package/dist/types/api.d.ts +768 -68
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -259,9 +259,9 @@ export class Client {
|
|
|
259
259
|
const record = body && typeof body === 'object'
|
|
260
260
|
? body
|
|
261
261
|
: {};
|
|
262
|
-
record
|
|
263
|
-
if (typeof record
|
|
264
|
-
record
|
|
262
|
+
record['status'] = response.status;
|
|
263
|
+
if (typeof record['message'] !== 'string' || !record['message']) {
|
|
264
|
+
record['message'] =
|
|
265
265
|
response.statusText ||
|
|
266
266
|
`Request failed with status ${response.status}`;
|
|
267
267
|
}
|
package/dist/types/api.d.ts
CHANGED
|
@@ -4239,6 +4239,28 @@ export interface paths {
|
|
|
4239
4239
|
patch?: never;
|
|
4240
4240
|
trace?: never;
|
|
4241
4241
|
};
|
|
4242
|
+
"/api/oidc/token/direct": {
|
|
4243
|
+
parameters: {
|
|
4244
|
+
query?: never;
|
|
4245
|
+
header?: never;
|
|
4246
|
+
path?: never;
|
|
4247
|
+
cookie?: never;
|
|
4248
|
+
};
|
|
4249
|
+
/**
|
|
4250
|
+
* Get an identity token by direct grant
|
|
4251
|
+
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
4252
|
+
*
|
|
4253
|
+
* Mints an identity token for the logged-in user against a registered application, without a browser redirect. This is the exec-credential pattern used by kubectl.
|
|
4254
|
+
*/
|
|
4255
|
+
get: operations["get-oidc-token-direct"];
|
|
4256
|
+
put?: never;
|
|
4257
|
+
post?: never;
|
|
4258
|
+
delete?: never;
|
|
4259
|
+
options?: never;
|
|
4260
|
+
head?: never;
|
|
4261
|
+
patch?: never;
|
|
4262
|
+
trace?: never;
|
|
4263
|
+
};
|
|
4242
4264
|
"/api/onboarding/recommended-resources": {
|
|
4243
4265
|
parameters: {
|
|
4244
4266
|
query?: never;
|
|
@@ -6095,6 +6117,28 @@ export interface paths {
|
|
|
6095
6117
|
patch?: never;
|
|
6096
6118
|
trace?: never;
|
|
6097
6119
|
};
|
|
6120
|
+
"/api/organizations/{organization}/gitlab-servers/ca-cert": {
|
|
6121
|
+
parameters: {
|
|
6122
|
+
query?: never;
|
|
6123
|
+
header?: never;
|
|
6124
|
+
path?: never;
|
|
6125
|
+
cookie?: never;
|
|
6126
|
+
};
|
|
6127
|
+
get?: never;
|
|
6128
|
+
put?: never;
|
|
6129
|
+
/**
|
|
6130
|
+
* Discover a GitLab server's CA certificate
|
|
6131
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
6132
|
+
*
|
|
6133
|
+
* Dials the GitLab server and returns the CA certificate its TLS chain is issued by, for registrations that verify against a custom CA.
|
|
6134
|
+
*/
|
|
6135
|
+
post: operations["discover-organization-gitlab-server-ca-cert"];
|
|
6136
|
+
delete?: never;
|
|
6137
|
+
options?: never;
|
|
6138
|
+
head?: never;
|
|
6139
|
+
patch?: never;
|
|
6140
|
+
trace?: never;
|
|
6141
|
+
};
|
|
6098
6142
|
"/api/organizations/{organization}/gitlab-servers/{server}": {
|
|
6099
6143
|
parameters: {
|
|
6100
6144
|
query?: never;
|
|
@@ -7647,6 +7691,156 @@ export interface paths {
|
|
|
7647
7691
|
patch?: never;
|
|
7648
7692
|
trace?: never;
|
|
7649
7693
|
};
|
|
7694
|
+
"/api/organizations/{organization}/oidc/apps": {
|
|
7695
|
+
parameters: {
|
|
7696
|
+
query?: never;
|
|
7697
|
+
header?: never;
|
|
7698
|
+
path?: never;
|
|
7699
|
+
cookie?: never;
|
|
7700
|
+
};
|
|
7701
|
+
/**
|
|
7702
|
+
* List OIDC applications
|
|
7703
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
7704
|
+
*
|
|
7705
|
+
* Lists the applications registered for the organization. Requires an organization administrator. Client secrets are never included.
|
|
7706
|
+
*/
|
|
7707
|
+
get: operations["list-org-oidc-apps"];
|
|
7708
|
+
put?: never;
|
|
7709
|
+
/**
|
|
7710
|
+
* Register an OIDC application
|
|
7711
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
7712
|
+
*
|
|
7713
|
+
* Registers an application that uses the platform as its identity provider. Requires an organization administrator. The client ID is generated; it cannot be chosen.
|
|
7714
|
+
*/
|
|
7715
|
+
post: operations["create-org-oidc-app"];
|
|
7716
|
+
delete?: never;
|
|
7717
|
+
options?: never;
|
|
7718
|
+
head?: never;
|
|
7719
|
+
patch?: never;
|
|
7720
|
+
trace?: never;
|
|
7721
|
+
};
|
|
7722
|
+
"/api/organizations/{organization}/oidc/apps/{clientId}": {
|
|
7723
|
+
parameters: {
|
|
7724
|
+
query?: never;
|
|
7725
|
+
header?: never;
|
|
7726
|
+
path?: never;
|
|
7727
|
+
cookie?: never;
|
|
7728
|
+
};
|
|
7729
|
+
/**
|
|
7730
|
+
* Get an OIDC application
|
|
7731
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
7732
|
+
*
|
|
7733
|
+
* Returns a single registered application. Requires an organization administrator. Client secrets are never included.
|
|
7734
|
+
*/
|
|
7735
|
+
get: operations["get-org-oidc-app"];
|
|
7736
|
+
/**
|
|
7737
|
+
* Update an OIDC application
|
|
7738
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
7739
|
+
*
|
|
7740
|
+
* Updates a registered application. Requires an organization administrator.
|
|
7741
|
+
*/
|
|
7742
|
+
put: operations["update-org-oidc-app"];
|
|
7743
|
+
post?: never;
|
|
7744
|
+
/**
|
|
7745
|
+
* Delete an OIDC application
|
|
7746
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
7747
|
+
*
|
|
7748
|
+
* Removes a registered application and its client secrets. Requires an organization administrator.
|
|
7749
|
+
*/
|
|
7750
|
+
delete: operations["delete-org-oidc-app"];
|
|
7751
|
+
options?: never;
|
|
7752
|
+
head?: never;
|
|
7753
|
+
patch?: never;
|
|
7754
|
+
trace?: never;
|
|
7755
|
+
};
|
|
7756
|
+
"/api/organizations/{organization}/oidc/apps/{clientId}/secrets": {
|
|
7757
|
+
parameters: {
|
|
7758
|
+
query?: never;
|
|
7759
|
+
header?: never;
|
|
7760
|
+
path?: never;
|
|
7761
|
+
cookie?: never;
|
|
7762
|
+
};
|
|
7763
|
+
get?: never;
|
|
7764
|
+
put?: never;
|
|
7765
|
+
/**
|
|
7766
|
+
* Create a client secret
|
|
7767
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
7768
|
+
*
|
|
7769
|
+
* Issues a new client secret for the application and returns it. Requires an organization administrator.
|
|
7770
|
+
*/
|
|
7771
|
+
post: operations["create-org-oidc-app-secret"];
|
|
7772
|
+
delete?: never;
|
|
7773
|
+
options?: never;
|
|
7774
|
+
head?: never;
|
|
7775
|
+
patch?: never;
|
|
7776
|
+
trace?: never;
|
|
7777
|
+
};
|
|
7778
|
+
"/api/organizations/{organization}/oidc/apps/{clientId}/secrets/rotate": {
|
|
7779
|
+
parameters: {
|
|
7780
|
+
query?: never;
|
|
7781
|
+
header?: never;
|
|
7782
|
+
path?: never;
|
|
7783
|
+
cookie?: never;
|
|
7784
|
+
};
|
|
7785
|
+
get?: never;
|
|
7786
|
+
put?: never;
|
|
7787
|
+
/**
|
|
7788
|
+
* Rotate the client secret
|
|
7789
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
7790
|
+
*
|
|
7791
|
+
* Issues a replacement client secret. Requires an organization administrator. The previous secrets keep working for the overlap window so the application can be updated without an outage.
|
|
7792
|
+
*/
|
|
7793
|
+
post: operations["rotate-org-oidc-app-secret"];
|
|
7794
|
+
delete?: never;
|
|
7795
|
+
options?: never;
|
|
7796
|
+
head?: never;
|
|
7797
|
+
patch?: never;
|
|
7798
|
+
trace?: never;
|
|
7799
|
+
};
|
|
7800
|
+
"/api/organizations/{organization}/oidc/apps/{clientId}/secrets/{secretId}": {
|
|
7801
|
+
parameters: {
|
|
7802
|
+
query?: never;
|
|
7803
|
+
header?: never;
|
|
7804
|
+
path?: never;
|
|
7805
|
+
cookie?: never;
|
|
7806
|
+
};
|
|
7807
|
+
get?: never;
|
|
7808
|
+
put?: never;
|
|
7809
|
+
post?: never;
|
|
7810
|
+
/**
|
|
7811
|
+
* Delete a client secret
|
|
7812
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
7813
|
+
*
|
|
7814
|
+
* Removes a client secret immediately. Requires an organization administrator.
|
|
7815
|
+
*/
|
|
7816
|
+
delete: operations["delete-org-oidc-app-secret"];
|
|
7817
|
+
options?: never;
|
|
7818
|
+
head?: never;
|
|
7819
|
+
patch?: never;
|
|
7820
|
+
trace?: never;
|
|
7821
|
+
};
|
|
7822
|
+
"/api/organizations/{organization}/oidc/apps/{clientId}/secrets/{secretId}/reveal": {
|
|
7823
|
+
parameters: {
|
|
7824
|
+
query?: never;
|
|
7825
|
+
header?: never;
|
|
7826
|
+
path?: never;
|
|
7827
|
+
cookie?: never;
|
|
7828
|
+
};
|
|
7829
|
+
get?: never;
|
|
7830
|
+
put?: never;
|
|
7831
|
+
/**
|
|
7832
|
+
* Reveal a client secret
|
|
7833
|
+
* @description > This is a system-level route, so the response will be independent of the currently authenticated user.
|
|
7834
|
+
*
|
|
7835
|
+
* Returns a stored client secret again. Requires an organization administrator. Every reveal is recorded as an audit event.
|
|
7836
|
+
*/
|
|
7837
|
+
post: operations["reveal-org-oidc-app-secret"];
|
|
7838
|
+
delete?: never;
|
|
7839
|
+
options?: never;
|
|
7840
|
+
head?: never;
|
|
7841
|
+
patch?: never;
|
|
7842
|
+
trace?: never;
|
|
7843
|
+
};
|
|
7650
7844
|
"/api/organizations/{organization}/owner": {
|
|
7651
7845
|
parameters: {
|
|
7652
7846
|
query?: never;
|
|
@@ -14622,28 +14816,6 @@ export interface paths {
|
|
|
14622
14816
|
patch: operations["update-workflow"];
|
|
14623
14817
|
trace?: never;
|
|
14624
14818
|
};
|
|
14625
|
-
"/api/workflows/{workflow}/duplicate": {
|
|
14626
|
-
parameters: {
|
|
14627
|
-
query?: never;
|
|
14628
|
-
header?: never;
|
|
14629
|
-
path?: never;
|
|
14630
|
-
cookie?: never;
|
|
14631
|
-
};
|
|
14632
|
-
get?: never;
|
|
14633
|
-
put?: never;
|
|
14634
|
-
/**
|
|
14635
|
-
* Duplicate Workflow
|
|
14636
|
-
* @description > This is a user-centric route, so the response will always be in the context of the currently authenticated user.
|
|
14637
|
-
*
|
|
14638
|
-
* Creates a copy of an existing workflow with a new name.
|
|
14639
|
-
*/
|
|
14640
|
-
post: operations["duplicate-workflow"];
|
|
14641
|
-
delete?: never;
|
|
14642
|
-
options?: never;
|
|
14643
|
-
head?: never;
|
|
14644
|
-
patch?: never;
|
|
14645
|
-
trace?: never;
|
|
14646
|
-
};
|
|
14647
14819
|
"/api/workflows/{workflow}/fork": {
|
|
14648
14820
|
parameters: {
|
|
14649
14821
|
query?: never;
|
|
@@ -15686,6 +15858,87 @@ export interface components {
|
|
|
15686
15858
|
*/
|
|
15687
15859
|
source: "platform" | "partner" | "organization";
|
|
15688
15860
|
};
|
|
15861
|
+
AppBody: {
|
|
15862
|
+
/** @description Groups whose members may use the application. Empty means everyone in the organization. */
|
|
15863
|
+
allowedGroups?: string[] | null;
|
|
15864
|
+
/**
|
|
15865
|
+
* @description Whether the user sees a consent screen. Defaults to none.
|
|
15866
|
+
* @enum {string}
|
|
15867
|
+
*/
|
|
15868
|
+
consent?: "none" | "required";
|
|
15869
|
+
/** @description What the application is for. */
|
|
15870
|
+
description?: string;
|
|
15871
|
+
/** @description Whether the application is disabled. */
|
|
15872
|
+
disabled?: boolean;
|
|
15873
|
+
/**
|
|
15874
|
+
* @description The application kind. Defaults to web.
|
|
15875
|
+
* @enum {string}
|
|
15876
|
+
*/
|
|
15877
|
+
kind?: "web" | "spa" | "native" | "service";
|
|
15878
|
+
/**
|
|
15879
|
+
* @description Whether the application is scoped to one organization or the whole platform. Defaults to organization.
|
|
15880
|
+
* @enum {string}
|
|
15881
|
+
*/
|
|
15882
|
+
level?: "organization" | "platform";
|
|
15883
|
+
/** @description The display name of the application. */
|
|
15884
|
+
name: string;
|
|
15885
|
+
/** @description Permitted redirect URIs for the authorization code flow. */
|
|
15886
|
+
redirectUris?: string[] | null;
|
|
15887
|
+
/** @description Scopes the application may request. */
|
|
15888
|
+
scopes?: string[] | null;
|
|
15889
|
+
/**
|
|
15890
|
+
* @description What the sub claim contains. Defaults to userId.
|
|
15891
|
+
* @enum {string}
|
|
15892
|
+
*/
|
|
15893
|
+
subjectType?: "userId" | "username";
|
|
15894
|
+
};
|
|
15895
|
+
AppResponse: {
|
|
15896
|
+
/** @description Groups whose members may use the application. Empty means everyone in the organization. */
|
|
15897
|
+
allowedGroups: string[] | null;
|
|
15898
|
+
/** @description The OIDC client_id, generated by the platform. */
|
|
15899
|
+
clientId: string;
|
|
15900
|
+
/**
|
|
15901
|
+
* @description Whether the user sees a consent screen.
|
|
15902
|
+
* @enum {string}
|
|
15903
|
+
*/
|
|
15904
|
+
consent: "none" | "required";
|
|
15905
|
+
/**
|
|
15906
|
+
* Format: date-time
|
|
15907
|
+
* @description When the application was registered.
|
|
15908
|
+
*/
|
|
15909
|
+
created: string;
|
|
15910
|
+
/** @description What the application is for. */
|
|
15911
|
+
description?: string;
|
|
15912
|
+
/** @description Whether the application is disabled. */
|
|
15913
|
+
disabled: boolean;
|
|
15914
|
+
/** @description The unique identifier for the application. */
|
|
15915
|
+
id: string;
|
|
15916
|
+
/** @description The issuer tokens for this application are minted with. */
|
|
15917
|
+
issuer?: string;
|
|
15918
|
+
/**
|
|
15919
|
+
* @description The application kind.
|
|
15920
|
+
* @enum {string}
|
|
15921
|
+
*/
|
|
15922
|
+
kind: "web" | "spa" | "native" | "service";
|
|
15923
|
+
/**
|
|
15924
|
+
* @description Whether the application is scoped to one organization or the whole platform.
|
|
15925
|
+
* @enum {string}
|
|
15926
|
+
*/
|
|
15927
|
+
level: "organization" | "platform";
|
|
15928
|
+
/** @description The display name of the application. */
|
|
15929
|
+
name: string;
|
|
15930
|
+
/** @description Permitted redirect URIs for the authorization code flow. */
|
|
15931
|
+
redirectUris: string[] | null;
|
|
15932
|
+
/** @description Scopes the application may request. */
|
|
15933
|
+
scopes: string[] | null;
|
|
15934
|
+
/** @description Client secret metadata. Never includes the secret itself. */
|
|
15935
|
+
secrets: components["schemas"]["SecretInfo"][] | null;
|
|
15936
|
+
/**
|
|
15937
|
+
* @description What the sub claim contains.
|
|
15938
|
+
* @enum {string}
|
|
15939
|
+
*/
|
|
15940
|
+
subjectType: "userId" | "username";
|
|
15941
|
+
};
|
|
15689
15942
|
AssignedOrganization: {
|
|
15690
15943
|
displayName: string;
|
|
15691
15944
|
id: string;
|
|
@@ -19493,8 +19746,12 @@ export interface components {
|
|
|
19493
19746
|
CreateWorkflowBody: {
|
|
19494
19747
|
/** @description Resource description */
|
|
19495
19748
|
description?: string;
|
|
19749
|
+
/** @description Markdown description of the workflow */
|
|
19750
|
+
descriptionMarkdown?: string;
|
|
19496
19751
|
/** @description Display name of the workflow */
|
|
19497
19752
|
displayName?: string;
|
|
19753
|
+
/** @description URL of the workflow icon */
|
|
19754
|
+
imageUrl?: string;
|
|
19498
19755
|
/** @description Resource name */
|
|
19499
19756
|
name: string;
|
|
19500
19757
|
/** @description Remote workflow configuration (required for remote type) */
|
|
@@ -19511,6 +19768,8 @@ export interface components {
|
|
|
19511
19768
|
* @enum {string}
|
|
19512
19769
|
*/
|
|
19513
19770
|
type: "remote" | "local";
|
|
19771
|
+
/** @description Workflow YAML definition as a YAML string. If not provided, a default template is used. */
|
|
19772
|
+
yaml?: string;
|
|
19514
19773
|
};
|
|
19515
19774
|
CreateWorkflowRunInputBody: {
|
|
19516
19775
|
/** @description Auto-grant each workflow's declared user-variable needs (no consent prompt). */
|
|
@@ -19858,10 +20117,20 @@ export interface components {
|
|
|
19858
20117
|
*/
|
|
19859
20118
|
endpoint: string;
|
|
19860
20119
|
};
|
|
20120
|
+
DiscoverCACertInputBody1: {
|
|
20121
|
+
/** @description Whether the server may sit on a private network address. Platform administrators only. */
|
|
20122
|
+
allowPrivateAddress?: boolean;
|
|
20123
|
+
/** @description Origin of the GitLab instance to dial, for example https://gitlab.example.com. */
|
|
20124
|
+
baseUrl: string;
|
|
20125
|
+
};
|
|
19861
20126
|
DiscoverCACertOutputBody: {
|
|
19862
20127
|
/** @description PEM-encoded CA certificate served by the endpoint */
|
|
19863
20128
|
caCert: string;
|
|
19864
20129
|
};
|
|
20130
|
+
DiscoverCACertOutputBody1: {
|
|
20131
|
+
/** @description PEM-encoded CA certificate served by the endpoint. */
|
|
20132
|
+
caCert: string;
|
|
20133
|
+
};
|
|
19865
20134
|
Disk: {
|
|
19866
20135
|
/** @description Cloud service provider of the disk */
|
|
19867
20136
|
csp: string;
|
|
@@ -19933,10 +20202,6 @@ export interface components {
|
|
|
19933
20202
|
/** @description A list of mounts to be used in docker workspaces. */
|
|
19934
20203
|
mounts: string[] | null;
|
|
19935
20204
|
};
|
|
19936
|
-
DuplicateWorkflowBody: {
|
|
19937
|
-
/** @description Display name for the duplicated workflow */
|
|
19938
|
-
newName: string;
|
|
19939
|
-
};
|
|
19940
20205
|
EffectiveProduct: {
|
|
19941
20206
|
id: string;
|
|
19942
20207
|
name: string;
|
|
@@ -20600,6 +20865,10 @@ export interface components {
|
|
|
20600
20865
|
enforceWebAuthnMfa: boolean;
|
|
20601
20866
|
/** @description List of configured MFA methods */
|
|
20602
20867
|
mfaSettings: components["schemas"]["MfaSettingResponse"][] | null;
|
|
20868
|
+
/** @description Whether the user's registered security key does not meet the required level and must be replaced */
|
|
20869
|
+
webAuthnKeyRequiresReplacement: boolean;
|
|
20870
|
+
/** @description Required security key level (hardware or fips); empty when not enforced */
|
|
20871
|
+
webAuthnMfaLevel?: string;
|
|
20603
20872
|
};
|
|
20604
20873
|
GetNodeMetricsOutputBody: {
|
|
20605
20874
|
dataPoints: components["schemas"]["MetricsDataPoint"][] | null;
|
|
@@ -20668,6 +20937,8 @@ export interface components {
|
|
|
20668
20937
|
allowPrivateAddress: boolean;
|
|
20669
20938
|
/** @description Origin of the GitLab instance, for example https://gitlab.example.com. */
|
|
20670
20939
|
baseUrl: string;
|
|
20940
|
+
/** @description PEM-encoded CA certificate the server's certificate chains to, when tlsVerification is ca-certificate. */
|
|
20941
|
+
caCertificate?: string;
|
|
20671
20942
|
/** @description Application ID of the OAuth application registered on the server, when members may connect through OAuth. */
|
|
20672
20943
|
clientId?: string;
|
|
20673
20944
|
/** @description Whether the application secret is stored. */
|
|
@@ -20680,10 +20951,20 @@ export interface components {
|
|
|
20680
20951
|
readonly id: string;
|
|
20681
20952
|
/** @description How members may connect: oauth, token, or both. */
|
|
20682
20953
|
readonly methods: ("oauth" | "token")[] | null;
|
|
20954
|
+
/**
|
|
20955
|
+
* @description Lowest TLS version the platform negotiates with the server.
|
|
20956
|
+
* @enum {string}
|
|
20957
|
+
*/
|
|
20958
|
+
minimumTlsVersion: "1.2" | "1.3";
|
|
20683
20959
|
/** @description Short name of the server, unique within the organization. */
|
|
20684
20960
|
name: string;
|
|
20685
20961
|
/** @description Redirect URI to configure on the OAuth application. */
|
|
20686
20962
|
readonly redirectUri: string;
|
|
20963
|
+
/**
|
|
20964
|
+
* @description How the server's certificate is verified: against the public roots, against the supplied CA certificate, or not at all.
|
|
20965
|
+
* @enum {string}
|
|
20966
|
+
*/
|
|
20967
|
+
tlsVerification: "public" | "ca-certificate" | "skip";
|
|
20687
20968
|
};
|
|
20688
20969
|
GitLabServerCreateBody: {
|
|
20689
20970
|
/** @description Let members connect by pasting a personal access token with the read_api scope. */
|
|
@@ -20692,12 +20973,24 @@ export interface components {
|
|
|
20692
20973
|
allowPrivateAddress?: boolean;
|
|
20693
20974
|
/** @description Origin of the GitLab instance, for example https://gitlab.example.com. */
|
|
20694
20975
|
baseUrl: string;
|
|
20976
|
+
/** @description PEM-encoded CA certificate the server's certificate chains to. Required for ca-certificate verification and not accepted otherwise. */
|
|
20977
|
+
caCertificate?: string;
|
|
20695
20978
|
/** @description Application ID of the OAuth application registered on the server. Give it together with clientSecret to let members connect through OAuth. */
|
|
20696
20979
|
clientId?: string;
|
|
20697
20980
|
/** @description Secret of the OAuth application. Stored in the platform vault and never returned. */
|
|
20698
20981
|
clientSecret?: string;
|
|
20982
|
+
/**
|
|
20983
|
+
* @description Lowest TLS version the platform negotiates with the server. Defaults to 1.2.
|
|
20984
|
+
* @enum {string}
|
|
20985
|
+
*/
|
|
20986
|
+
minimumTlsVersion?: "1.2" | "1.3";
|
|
20699
20987
|
/** @description Short name of the server, unique within the organization. */
|
|
20700
20988
|
name: string;
|
|
20989
|
+
/**
|
|
20990
|
+
* @description How the server's certificate is verified. Defaults to public, or ca-certificate when one is supplied.
|
|
20991
|
+
* @enum {string}
|
|
20992
|
+
*/
|
|
20993
|
+
tlsVerification?: "public" | "ca-certificate" | "skip";
|
|
20701
20994
|
};
|
|
20702
20995
|
GitLabServerPatchBody: {
|
|
20703
20996
|
/** @description Let members connect by pasting a personal access token with the read_api scope. */
|
|
@@ -20706,12 +20999,24 @@ export interface components {
|
|
|
20706
20999
|
allowPrivateAddress?: boolean;
|
|
20707
21000
|
/** @description New origin of the GitLab instance. */
|
|
20708
21001
|
baseUrl?: string;
|
|
21002
|
+
/** @description PEM-encoded CA certificate the server's certificate chains to. Only accepted with ca-certificate verification. */
|
|
21003
|
+
caCertificate?: string;
|
|
20709
21004
|
/** @description New application ID. */
|
|
20710
21005
|
clientId?: string;
|
|
20711
21006
|
/** @description New application secret. */
|
|
20712
21007
|
clientSecret?: string;
|
|
21008
|
+
/**
|
|
21009
|
+
* @description Lowest TLS version the platform negotiates with the server.
|
|
21010
|
+
* @enum {string}
|
|
21011
|
+
*/
|
|
21012
|
+
minimumTlsVersion?: "1.2" | "1.3";
|
|
20713
21013
|
/** @description New short name of the server. */
|
|
20714
21014
|
name?: string;
|
|
21015
|
+
/**
|
|
21016
|
+
* @description How the server's certificate is verified. Switching away from ca-certificate discards the stored CA certificate.
|
|
21017
|
+
* @enum {string}
|
|
21018
|
+
*/
|
|
21019
|
+
tlsVerification?: "public" | "ca-certificate" | "skip";
|
|
20715
21020
|
};
|
|
20716
21021
|
GoogleBucket: {
|
|
20717
21022
|
/**
|
|
@@ -27922,6 +28227,13 @@ export interface components {
|
|
|
27922
28227
|
/** @description Subjects with access */
|
|
27923
28228
|
subjects: components["schemas"]["RbacSubject"][] | null;
|
|
27924
28229
|
};
|
|
28230
|
+
RotateSecretInputBody: {
|
|
28231
|
+
/**
|
|
28232
|
+
* Format: int64
|
|
28233
|
+
* @description How long the replaced secret keeps working. Defaults to 24 hours; 0 revokes the previous secrets immediately.
|
|
28234
|
+
*/
|
|
28235
|
+
overlapHours?: number;
|
|
28236
|
+
};
|
|
27925
28237
|
RunAlert: {
|
|
27926
28238
|
/** @description Indicates if runtime alert is enabled for the storage. */
|
|
27927
28239
|
enabled: boolean;
|
|
@@ -28217,6 +28529,40 @@ export interface components {
|
|
|
28217
28529
|
queues?: components["schemas"]["SchedulerPartitionData"][] | null;
|
|
28218
28530
|
schedulerType: string;
|
|
28219
28531
|
};
|
|
28532
|
+
SecretInfo: {
|
|
28533
|
+
/**
|
|
28534
|
+
* Format: date-time
|
|
28535
|
+
* @description When the secret was created.
|
|
28536
|
+
*/
|
|
28537
|
+
created?: string;
|
|
28538
|
+
/**
|
|
28539
|
+
* Format: date-time
|
|
28540
|
+
* @description When a rotated secret stops working.
|
|
28541
|
+
*/
|
|
28542
|
+
expiresAt?: string;
|
|
28543
|
+
/** @description Truncated preview of the secret for identification. */
|
|
28544
|
+
hint?: string;
|
|
28545
|
+
/** @description The identifier for this secret. */
|
|
28546
|
+
id: string;
|
|
28547
|
+
};
|
|
28548
|
+
SecretResponse: {
|
|
28549
|
+
/** @description The client secret. */
|
|
28550
|
+
clientSecret: string;
|
|
28551
|
+
/**
|
|
28552
|
+
* Format: date-time
|
|
28553
|
+
* @description When the secret was created.
|
|
28554
|
+
*/
|
|
28555
|
+
created?: string;
|
|
28556
|
+
/**
|
|
28557
|
+
* Format: date-time
|
|
28558
|
+
* @description When a rotated secret stops working.
|
|
28559
|
+
*/
|
|
28560
|
+
expiresAt?: string;
|
|
28561
|
+
/** @description Truncated preview of the secret. */
|
|
28562
|
+
hint?: string;
|
|
28563
|
+
/** @description The identifier for this secret. */
|
|
28564
|
+
id: string;
|
|
28565
|
+
};
|
|
28220
28566
|
SentrySettings: {
|
|
28221
28567
|
/** @description Whether custom DSNs are configured (false means using Parallel Works defaults). */
|
|
28222
28568
|
customDsn: boolean;
|
|
@@ -28705,6 +29051,10 @@ export interface components {
|
|
|
28705
29051
|
/** @description Step status. */
|
|
28706
29052
|
status?: string;
|
|
28707
29053
|
};
|
|
29054
|
+
StopClusterOptions: {
|
|
29055
|
+
/** @description Stop the controller through the cloud provider instead of waiting for the cluster agent to shut it down from inside the guest. */
|
|
29056
|
+
force?: boolean;
|
|
29057
|
+
};
|
|
28708
29058
|
StorageAttachment: {
|
|
28709
29059
|
/** @description ID of the resource. */
|
|
28710
29060
|
id: string;
|
|
@@ -30039,12 +30389,12 @@ export interface components {
|
|
|
30039
30389
|
createdAt: string;
|
|
30040
30390
|
/**
|
|
30041
30391
|
* @description the image the user workspace is currently running. This will be always be set to the same as Image when the workspace restarts.
|
|
30042
|
-
* @example ghcr.io/parallelworks/usercontainer-
|
|
30392
|
+
* @example ghcr.io/parallelworks/usercontainer-vscode:latest
|
|
30043
30393
|
*/
|
|
30044
30394
|
currentImage: string;
|
|
30045
30395
|
/**
|
|
30046
30396
|
* @description the image set for the user workspace
|
|
30047
|
-
* @example ghcr.io/parallelworks/usercontainer-
|
|
30397
|
+
* @example ghcr.io/parallelworks/usercontainer-vscode:latest
|
|
30048
30398
|
*/
|
|
30049
30399
|
image: string;
|
|
30050
30400
|
/**
|
|
@@ -30194,7 +30544,7 @@ export interface components {
|
|
|
30194
30544
|
* @example hardware
|
|
30195
30545
|
* @enum {string}
|
|
30196
30546
|
*/
|
|
30197
|
-
value: "hardware";
|
|
30547
|
+
value: "hardware" | "fips";
|
|
30198
30548
|
};
|
|
30199
30549
|
WebAuthnRegAuthenticatorSelection: {
|
|
30200
30550
|
/** @description Required authenticator attachment */
|
|
@@ -37880,6 +38230,38 @@ export interface operations {
|
|
|
37880
38230
|
};
|
|
37881
38231
|
};
|
|
37882
38232
|
};
|
|
38233
|
+
"get-oidc-token-direct": {
|
|
38234
|
+
parameters: {
|
|
38235
|
+
query: {
|
|
38236
|
+
/** @description The client ID of the application to mint a token for */
|
|
38237
|
+
clientId: string;
|
|
38238
|
+
};
|
|
38239
|
+
header?: never;
|
|
38240
|
+
path?: never;
|
|
38241
|
+
cookie?: never;
|
|
38242
|
+
};
|
|
38243
|
+
requestBody?: never;
|
|
38244
|
+
responses: {
|
|
38245
|
+
/** @description OK */
|
|
38246
|
+
200: {
|
|
38247
|
+
headers: {
|
|
38248
|
+
[name: string]: unknown;
|
|
38249
|
+
};
|
|
38250
|
+
content: {
|
|
38251
|
+
"application/json": string;
|
|
38252
|
+
};
|
|
38253
|
+
};
|
|
38254
|
+
/** @description Error */
|
|
38255
|
+
default: {
|
|
38256
|
+
headers: {
|
|
38257
|
+
[name: string]: unknown;
|
|
38258
|
+
};
|
|
38259
|
+
content: {
|
|
38260
|
+
"application/json": components["schemas"]["Error"];
|
|
38261
|
+
};
|
|
38262
|
+
};
|
|
38263
|
+
};
|
|
38264
|
+
};
|
|
37883
38265
|
getRecommendedResources: {
|
|
37884
38266
|
parameters: {
|
|
37885
38267
|
query?: never;
|
|
@@ -41978,6 +42360,42 @@ export interface operations {
|
|
|
41978
42360
|
};
|
|
41979
42361
|
};
|
|
41980
42362
|
};
|
|
42363
|
+
"discover-organization-gitlab-server-ca-cert": {
|
|
42364
|
+
parameters: {
|
|
42365
|
+
query?: never;
|
|
42366
|
+
header?: never;
|
|
42367
|
+
path: {
|
|
42368
|
+
/** @description The name of the organization. */
|
|
42369
|
+
organization: string;
|
|
42370
|
+
};
|
|
42371
|
+
cookie?: never;
|
|
42372
|
+
};
|
|
42373
|
+
requestBody: {
|
|
42374
|
+
content: {
|
|
42375
|
+
"application/json": components["schemas"]["DiscoverCACertInputBody1"];
|
|
42376
|
+
};
|
|
42377
|
+
};
|
|
42378
|
+
responses: {
|
|
42379
|
+
/** @description OK */
|
|
42380
|
+
200: {
|
|
42381
|
+
headers: {
|
|
42382
|
+
[name: string]: unknown;
|
|
42383
|
+
};
|
|
42384
|
+
content: {
|
|
42385
|
+
"application/json": components["schemas"]["DiscoverCACertOutputBody1"];
|
|
42386
|
+
};
|
|
42387
|
+
};
|
|
42388
|
+
/** @description Error */
|
|
42389
|
+
default: {
|
|
42390
|
+
headers: {
|
|
42391
|
+
[name: string]: unknown;
|
|
42392
|
+
};
|
|
42393
|
+
content: {
|
|
42394
|
+
"application/json": components["schemas"]["Error"];
|
|
42395
|
+
};
|
|
42396
|
+
};
|
|
42397
|
+
};
|
|
42398
|
+
};
|
|
41981
42399
|
"get-organization-gitlab-server": {
|
|
41982
42400
|
parameters: {
|
|
41983
42401
|
query?: never;
|
|
@@ -45513,6 +45931,320 @@ export interface operations {
|
|
|
45513
45931
|
};
|
|
45514
45932
|
};
|
|
45515
45933
|
};
|
|
45934
|
+
"list-org-oidc-apps": {
|
|
45935
|
+
parameters: {
|
|
45936
|
+
query?: never;
|
|
45937
|
+
header?: never;
|
|
45938
|
+
path: {
|
|
45939
|
+
/** @description The name of the organization. */
|
|
45940
|
+
organization: string;
|
|
45941
|
+
};
|
|
45942
|
+
cookie?: never;
|
|
45943
|
+
};
|
|
45944
|
+
requestBody?: never;
|
|
45945
|
+
responses: {
|
|
45946
|
+
/** @description OK */
|
|
45947
|
+
200: {
|
|
45948
|
+
headers: {
|
|
45949
|
+
[name: string]: unknown;
|
|
45950
|
+
};
|
|
45951
|
+
content: {
|
|
45952
|
+
"application/json": components["schemas"]["AppResponse"][] | null;
|
|
45953
|
+
};
|
|
45954
|
+
};
|
|
45955
|
+
/** @description Error */
|
|
45956
|
+
default: {
|
|
45957
|
+
headers: {
|
|
45958
|
+
[name: string]: unknown;
|
|
45959
|
+
};
|
|
45960
|
+
content: {
|
|
45961
|
+
"application/json": components["schemas"]["Error"];
|
|
45962
|
+
};
|
|
45963
|
+
};
|
|
45964
|
+
};
|
|
45965
|
+
};
|
|
45966
|
+
"create-org-oidc-app": {
|
|
45967
|
+
parameters: {
|
|
45968
|
+
query?: never;
|
|
45969
|
+
header?: never;
|
|
45970
|
+
path: {
|
|
45971
|
+
/** @description The name of the organization. */
|
|
45972
|
+
organization: string;
|
|
45973
|
+
};
|
|
45974
|
+
cookie?: never;
|
|
45975
|
+
};
|
|
45976
|
+
requestBody: {
|
|
45977
|
+
content: {
|
|
45978
|
+
"application/json": components["schemas"]["AppBody"];
|
|
45979
|
+
};
|
|
45980
|
+
};
|
|
45981
|
+
responses: {
|
|
45982
|
+
/** @description Created */
|
|
45983
|
+
201: {
|
|
45984
|
+
headers: {
|
|
45985
|
+
[name: string]: unknown;
|
|
45986
|
+
};
|
|
45987
|
+
content: {
|
|
45988
|
+
"application/json": components["schemas"]["AppResponse"];
|
|
45989
|
+
};
|
|
45990
|
+
};
|
|
45991
|
+
/** @description Error */
|
|
45992
|
+
default: {
|
|
45993
|
+
headers: {
|
|
45994
|
+
[name: string]: unknown;
|
|
45995
|
+
};
|
|
45996
|
+
content: {
|
|
45997
|
+
"application/json": components["schemas"]["Error"];
|
|
45998
|
+
};
|
|
45999
|
+
};
|
|
46000
|
+
};
|
|
46001
|
+
};
|
|
46002
|
+
"get-org-oidc-app": {
|
|
46003
|
+
parameters: {
|
|
46004
|
+
query?: never;
|
|
46005
|
+
header?: never;
|
|
46006
|
+
path: {
|
|
46007
|
+
/** @description The name of the organization. */
|
|
46008
|
+
organization: string;
|
|
46009
|
+
/** @description The application's client ID */
|
|
46010
|
+
clientId: string;
|
|
46011
|
+
};
|
|
46012
|
+
cookie?: never;
|
|
46013
|
+
};
|
|
46014
|
+
requestBody?: never;
|
|
46015
|
+
responses: {
|
|
46016
|
+
/** @description OK */
|
|
46017
|
+
200: {
|
|
46018
|
+
headers: {
|
|
46019
|
+
[name: string]: unknown;
|
|
46020
|
+
};
|
|
46021
|
+
content: {
|
|
46022
|
+
"application/json": components["schemas"]["AppResponse"];
|
|
46023
|
+
};
|
|
46024
|
+
};
|
|
46025
|
+
/** @description Error */
|
|
46026
|
+
default: {
|
|
46027
|
+
headers: {
|
|
46028
|
+
[name: string]: unknown;
|
|
46029
|
+
};
|
|
46030
|
+
content: {
|
|
46031
|
+
"application/json": components["schemas"]["Error"];
|
|
46032
|
+
};
|
|
46033
|
+
};
|
|
46034
|
+
};
|
|
46035
|
+
};
|
|
46036
|
+
"update-org-oidc-app": {
|
|
46037
|
+
parameters: {
|
|
46038
|
+
query?: never;
|
|
46039
|
+
header?: never;
|
|
46040
|
+
path: {
|
|
46041
|
+
/** @description The name of the organization. */
|
|
46042
|
+
organization: string;
|
|
46043
|
+
/** @description The application's client ID */
|
|
46044
|
+
clientId: string;
|
|
46045
|
+
};
|
|
46046
|
+
cookie?: never;
|
|
46047
|
+
};
|
|
46048
|
+
requestBody: {
|
|
46049
|
+
content: {
|
|
46050
|
+
"application/json": components["schemas"]["AppBody"];
|
|
46051
|
+
};
|
|
46052
|
+
};
|
|
46053
|
+
responses: {
|
|
46054
|
+
/** @description OK */
|
|
46055
|
+
200: {
|
|
46056
|
+
headers: {
|
|
46057
|
+
[name: string]: unknown;
|
|
46058
|
+
};
|
|
46059
|
+
content: {
|
|
46060
|
+
"application/json": components["schemas"]["AppResponse"];
|
|
46061
|
+
};
|
|
46062
|
+
};
|
|
46063
|
+
/** @description Error */
|
|
46064
|
+
default: {
|
|
46065
|
+
headers: {
|
|
46066
|
+
[name: string]: unknown;
|
|
46067
|
+
};
|
|
46068
|
+
content: {
|
|
46069
|
+
"application/json": components["schemas"]["Error"];
|
|
46070
|
+
};
|
|
46071
|
+
};
|
|
46072
|
+
};
|
|
46073
|
+
};
|
|
46074
|
+
"delete-org-oidc-app": {
|
|
46075
|
+
parameters: {
|
|
46076
|
+
query?: never;
|
|
46077
|
+
header?: never;
|
|
46078
|
+
path: {
|
|
46079
|
+
/** @description The name of the organization. */
|
|
46080
|
+
organization: string;
|
|
46081
|
+
/** @description The application's client ID */
|
|
46082
|
+
clientId: string;
|
|
46083
|
+
};
|
|
46084
|
+
cookie?: never;
|
|
46085
|
+
};
|
|
46086
|
+
requestBody?: never;
|
|
46087
|
+
responses: {
|
|
46088
|
+
/** @description No Content */
|
|
46089
|
+
204: {
|
|
46090
|
+
headers: {
|
|
46091
|
+
[name: string]: unknown;
|
|
46092
|
+
};
|
|
46093
|
+
content?: never;
|
|
46094
|
+
};
|
|
46095
|
+
/** @description Error */
|
|
46096
|
+
default: {
|
|
46097
|
+
headers: {
|
|
46098
|
+
[name: string]: unknown;
|
|
46099
|
+
};
|
|
46100
|
+
content: {
|
|
46101
|
+
"application/json": components["schemas"]["Error"];
|
|
46102
|
+
};
|
|
46103
|
+
};
|
|
46104
|
+
};
|
|
46105
|
+
};
|
|
46106
|
+
"create-org-oidc-app-secret": {
|
|
46107
|
+
parameters: {
|
|
46108
|
+
query?: never;
|
|
46109
|
+
header?: never;
|
|
46110
|
+
path: {
|
|
46111
|
+
/** @description The name of the organization. */
|
|
46112
|
+
organization: string;
|
|
46113
|
+
/** @description The application's client ID */
|
|
46114
|
+
clientId: string;
|
|
46115
|
+
};
|
|
46116
|
+
cookie?: never;
|
|
46117
|
+
};
|
|
46118
|
+
requestBody?: never;
|
|
46119
|
+
responses: {
|
|
46120
|
+
/** @description Created */
|
|
46121
|
+
201: {
|
|
46122
|
+
headers: {
|
|
46123
|
+
[name: string]: unknown;
|
|
46124
|
+
};
|
|
46125
|
+
content: {
|
|
46126
|
+
"application/json": components["schemas"]["SecretResponse"];
|
|
46127
|
+
};
|
|
46128
|
+
};
|
|
46129
|
+
/** @description Error */
|
|
46130
|
+
default: {
|
|
46131
|
+
headers: {
|
|
46132
|
+
[name: string]: unknown;
|
|
46133
|
+
};
|
|
46134
|
+
content: {
|
|
46135
|
+
"application/json": components["schemas"]["Error"];
|
|
46136
|
+
};
|
|
46137
|
+
};
|
|
46138
|
+
};
|
|
46139
|
+
};
|
|
46140
|
+
"rotate-org-oidc-app-secret": {
|
|
46141
|
+
parameters: {
|
|
46142
|
+
query?: never;
|
|
46143
|
+
header?: never;
|
|
46144
|
+
path: {
|
|
46145
|
+
/** @description The name of the organization. */
|
|
46146
|
+
organization: string;
|
|
46147
|
+
/** @description The application's client ID */
|
|
46148
|
+
clientId: string;
|
|
46149
|
+
};
|
|
46150
|
+
cookie?: never;
|
|
46151
|
+
};
|
|
46152
|
+
requestBody: {
|
|
46153
|
+
content: {
|
|
46154
|
+
"application/json": components["schemas"]["RotateSecretInputBody"];
|
|
46155
|
+
};
|
|
46156
|
+
};
|
|
46157
|
+
responses: {
|
|
46158
|
+
/** @description OK */
|
|
46159
|
+
200: {
|
|
46160
|
+
headers: {
|
|
46161
|
+
[name: string]: unknown;
|
|
46162
|
+
};
|
|
46163
|
+
content: {
|
|
46164
|
+
"application/json": components["schemas"]["SecretResponse"];
|
|
46165
|
+
};
|
|
46166
|
+
};
|
|
46167
|
+
/** @description Error */
|
|
46168
|
+
default: {
|
|
46169
|
+
headers: {
|
|
46170
|
+
[name: string]: unknown;
|
|
46171
|
+
};
|
|
46172
|
+
content: {
|
|
46173
|
+
"application/json": components["schemas"]["Error"];
|
|
46174
|
+
};
|
|
46175
|
+
};
|
|
46176
|
+
};
|
|
46177
|
+
};
|
|
46178
|
+
"delete-org-oidc-app-secret": {
|
|
46179
|
+
parameters: {
|
|
46180
|
+
query?: never;
|
|
46181
|
+
header?: never;
|
|
46182
|
+
path: {
|
|
46183
|
+
/** @description The name of the organization. */
|
|
46184
|
+
organization: string;
|
|
46185
|
+
/** @description The application's client ID */
|
|
46186
|
+
clientId: string;
|
|
46187
|
+
/** @description The secret to delete */
|
|
46188
|
+
secretId: string;
|
|
46189
|
+
};
|
|
46190
|
+
cookie?: never;
|
|
46191
|
+
};
|
|
46192
|
+
requestBody?: never;
|
|
46193
|
+
responses: {
|
|
46194
|
+
/** @description No Content */
|
|
46195
|
+
204: {
|
|
46196
|
+
headers: {
|
|
46197
|
+
[name: string]: unknown;
|
|
46198
|
+
};
|
|
46199
|
+
content?: never;
|
|
46200
|
+
};
|
|
46201
|
+
/** @description Error */
|
|
46202
|
+
default: {
|
|
46203
|
+
headers: {
|
|
46204
|
+
[name: string]: unknown;
|
|
46205
|
+
};
|
|
46206
|
+
content: {
|
|
46207
|
+
"application/json": components["schemas"]["Error"];
|
|
46208
|
+
};
|
|
46209
|
+
};
|
|
46210
|
+
};
|
|
46211
|
+
};
|
|
46212
|
+
"reveal-org-oidc-app-secret": {
|
|
46213
|
+
parameters: {
|
|
46214
|
+
query?: never;
|
|
46215
|
+
header?: never;
|
|
46216
|
+
path: {
|
|
46217
|
+
/** @description The name of the organization. */
|
|
46218
|
+
organization: string;
|
|
46219
|
+
/** @description The application's client ID */
|
|
46220
|
+
clientId: string;
|
|
46221
|
+
/** @description The secret to reveal */
|
|
46222
|
+
secretId: string;
|
|
46223
|
+
};
|
|
46224
|
+
cookie?: never;
|
|
46225
|
+
};
|
|
46226
|
+
requestBody?: never;
|
|
46227
|
+
responses: {
|
|
46228
|
+
/** @description OK */
|
|
46229
|
+
200: {
|
|
46230
|
+
headers: {
|
|
46231
|
+
[name: string]: unknown;
|
|
46232
|
+
};
|
|
46233
|
+
content: {
|
|
46234
|
+
"application/json": components["schemas"]["SecretResponse"];
|
|
46235
|
+
};
|
|
46236
|
+
};
|
|
46237
|
+
/** @description Error */
|
|
46238
|
+
default: {
|
|
46239
|
+
headers: {
|
|
46240
|
+
[name: string]: unknown;
|
|
46241
|
+
};
|
|
46242
|
+
content: {
|
|
46243
|
+
"application/json": components["schemas"]["Error"];
|
|
46244
|
+
};
|
|
46245
|
+
};
|
|
46246
|
+
};
|
|
46247
|
+
};
|
|
45516
46248
|
"set-organization-owner": {
|
|
45517
46249
|
parameters: {
|
|
45518
46250
|
query?: never;
|
|
@@ -45815,7 +46547,7 @@ export interface operations {
|
|
|
45815
46547
|
};
|
|
45816
46548
|
requestBody: {
|
|
45817
46549
|
content: {
|
|
45818
|
-
"application/json": "hardware";
|
|
46550
|
+
"application/json": "hardware" | "fips";
|
|
45819
46551
|
};
|
|
45820
46552
|
};
|
|
45821
46553
|
responses: {
|
|
@@ -50889,7 +51621,11 @@ export interface operations {
|
|
|
50889
51621
|
};
|
|
50890
51622
|
cookie?: never;
|
|
50891
51623
|
};
|
|
50892
|
-
requestBody?:
|
|
51624
|
+
requestBody?: {
|
|
51625
|
+
content: {
|
|
51626
|
+
"application/json": components["schemas"]["StopClusterOptions"];
|
|
51627
|
+
};
|
|
51628
|
+
};
|
|
50893
51629
|
responses: {
|
|
50894
51630
|
/** @description No Content */
|
|
50895
51631
|
204: {
|
|
@@ -55984,7 +56720,7 @@ export interface operations {
|
|
|
55984
56720
|
};
|
|
55985
56721
|
requestBody: {
|
|
55986
56722
|
content: {
|
|
55987
|
-
"application/json": "hardware";
|
|
56723
|
+
"application/json": "hardware" | "fips";
|
|
55988
56724
|
};
|
|
55989
56725
|
};
|
|
55990
56726
|
responses: {
|
|
@@ -59386,42 +60122,6 @@ export interface operations {
|
|
|
59386
60122
|
};
|
|
59387
60123
|
};
|
|
59388
60124
|
};
|
|
59389
|
-
"duplicate-workflow": {
|
|
59390
|
-
parameters: {
|
|
59391
|
-
query?: never;
|
|
59392
|
-
header?: never;
|
|
59393
|
-
path: {
|
|
59394
|
-
/** @description Name of the workflow to duplicate. */
|
|
59395
|
-
workflow: string;
|
|
59396
|
-
};
|
|
59397
|
-
cookie?: never;
|
|
59398
|
-
};
|
|
59399
|
-
requestBody: {
|
|
59400
|
-
content: {
|
|
59401
|
-
"application/json": components["schemas"]["DuplicateWorkflowBody"];
|
|
59402
|
-
};
|
|
59403
|
-
};
|
|
59404
|
-
responses: {
|
|
59405
|
-
/** @description OK */
|
|
59406
|
-
200: {
|
|
59407
|
-
headers: {
|
|
59408
|
-
[name: string]: unknown;
|
|
59409
|
-
};
|
|
59410
|
-
content: {
|
|
59411
|
-
"application/json": components["schemas"]["WorkflowItem"];
|
|
59412
|
-
};
|
|
59413
|
-
};
|
|
59414
|
-
/** @description Error */
|
|
59415
|
-
default: {
|
|
59416
|
-
headers: {
|
|
59417
|
-
[name: string]: unknown;
|
|
59418
|
-
};
|
|
59419
|
-
content: {
|
|
59420
|
-
"application/json": components["schemas"]["Error"];
|
|
59421
|
-
};
|
|
59422
|
-
};
|
|
59423
|
-
};
|
|
59424
|
-
};
|
|
59425
60125
|
"fork-workflow": {
|
|
59426
60126
|
parameters: {
|
|
59427
60127
|
query?: never;
|