Skip to content

Commit 29e5211

Browse files
chore: sync SDK v7.21.0 from core
1 parent 7150fd6 commit 29e5211

5 files changed

Lines changed: 86 additions & 15 deletions

File tree

go/operations.go

Lines changed: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/types.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

openapi.json

Lines changed: 52 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -10297,6 +10297,10 @@
1029710297
"description": "User who created the NFS",
1029810298
"type": "string"
1029910299
},
10300+
"region": {
10301+
"description": "Region of the NFS",
10302+
"type": "string"
10303+
},
1030010304
"shared": {
1030110305
"description": "List of groups with whom the NFS is shared",
1030210306
"items": {
@@ -16830,16 +16834,6 @@
1683016834
"name": {
1683116835
"description": "Configuration name.",
1683216836
"type": "string"
16833-
},
16834-
"targetTags": {
16835-
"description": "Target tags for this configuration.",
16836-
"items": {
16837-
"type": "string"
16838-
},
16839-
"type": [
16840-
"array",
16841-
"null"
16842-
]
1684316837
}
1684416838
},
1684516839
"required": [
@@ -19563,6 +19557,54 @@
1956319557
]
1956419558
}
1956519559
},
19560+
"/api/auth/token": {
19561+
"get": {
19562+
"description": "\u003e This is a user-centric route, so the response will always be in the context of the currently authenticated user.\n\nGenerates a token for the authenticated user. The token can be used for API authentication.",
19563+
"operationId": "get-auth-token",
19564+
"parameters": [
19565+
{
19566+
"description": "Token time-to-live in hours (1-24).",
19567+
"explode": false,
19568+
"in": "query",
19569+
"name": "ttl",
19570+
"schema": {
19571+
"default": 24,
19572+
"description": "Token time-to-live in hours (1-24).",
19573+
"format": "int64",
19574+
"maximum": 24,
19575+
"minimum": 1,
19576+
"type": "integer"
19577+
}
19578+
}
19579+
],
19580+
"responses": {
19581+
"200": {
19582+
"content": {
19583+
"application/json": {
19584+
"schema": {
19585+
"type": "string"
19586+
}
19587+
}
19588+
},
19589+
"description": "OK"
19590+
},
19591+
"default": {
19592+
"content": {
19593+
"application/json": {
19594+
"schema": {
19595+
"$ref": "#/components/schemas/Error"
19596+
}
19597+
}
19598+
},
19599+
"description": "Error"
19600+
}
19601+
},
19602+
"summary": "Generate a user token",
19603+
"tags": [
19604+
"Authentication"
19605+
]
19606+
}
19607+
},
1956619608
"/api/auth/token/cluster-session": {
1956719609
"get": {
1956819610
"description": "\u003e This is a user-centric route, so the response will always be in the context of the currently authenticated user.\n\nGenerates a JWT token for cluster session authentication.",

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "parallelworks-client"
7-
version = "7.20.2"
7+
version = "7.21.0"
88
description = "Official Python SDK for Parallel Works ACTIVATE"
99
readme = "README.md"
1010
requires-python = ">=3.9"

typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@parallelworks/client",
3-
"version": "7.20.2",
3+
"version": "7.21.0",
44
"description": "Official TypeScript client for Parallel Works ACTIVATE API",
55
"type": "module",
66
"exports": {

0 commit comments

Comments
 (0)