Skip to content

Commit 3c0e985

Browse files
committed
autogen: regenerate OpenAPI client for v1.22.40
Version: v1.22.40
1 parent e8ad193 commit 3c0e985

818 files changed

Lines changed: 23378 additions & 1036 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.openapi-generator/FILES

Lines changed: 114 additions & 0 deletions
Large diffs are not rendered by default.

api/openapi.yaml

Lines changed: 2230 additions & 4 deletions
Large diffs are not rendered by default.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apply plugin: 'java'
44
apply plugin: 'com.diffplug.spotless'
55

66
group = 'sh.ory'
7-
version = 'v1.22.39'
7+
version = 'v1.22.40'
88

99
buildscript {
1010
repositories {

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ lazy val root = (project in file(".")).
22
settings(
33
organization := "sh.ory",
44
name := "client",
5-
version := "v1.22.39",
5+
version := "v1.22.40",
66
scalaVersion := "2.11.4",
77
scalacOptions ++= Seq("-feature"),
88
javacOptions in compile ++= Seq("-Xlint:deprecation"),

docs/AdminRevokeAPIKeyBody.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
2+
3+
# AdminRevokeAPIKeyBody
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**description** | **String** | Optional free-text explanation. Only allowed when reason is PRIVILEGE_WITHDRAWN. | [optional] |
11+
|**reason** | **RevocationReason** | | [optional] |
12+
13+
14+
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
3+
# AdminRotateIssuedAPIKeyBody
4+
5+
RotateIssuedAPIKeyRequest is the request for AdminRotateIssuedAPIKey. Rotation is a custom method (AIP-136) that swaps an active key for a new one with a fresh secret and key_id, then revokes the old key. It is not a partial update, so it does not carry an update_mask. Mutable fields use presence-based semantics: an absent field inherits from the old key, while a present field (including an explicitly empty value) overrides.
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**ipRestriction** | [**IPRestriction**](IPRestriction.md) | | [optional] |
12+
|**metadata** | **Object** | metadata for the new API key. Absent (nil) inherits from the old key; present (including empty Struct) overrides. | [optional] |
13+
|**name** | **String** | name for the new API key. Absent (HasName() == false) inherits from the old key; present (including empty string) overrides. | [optional] |
14+
|**rateLimitPolicy** | [**RateLimitPolicy**](RateLimitPolicy.md) | | [optional] |
15+
|**scopes** | **List<String>** | scopes for the new API key. Absent (nil slice) inherits from the old key; present (including empty list) overrides. | [optional] |
16+
|**visibility** | **KeyVisibility** | | [optional] |
17+
18+
19+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
3+
# AdminUpdateImportedAPIKeyRequest
4+
5+
ImportedAPIKey represents an API key imported from an external system. The raw key is hashed (SHA-512/256) and stored. The original key is never retained.
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**actorId** | **String** | | [optional] |
12+
|**createTime** | **OffsetDateTime** | | [optional] |
13+
|**expireTime** | **OffsetDateTime** | | [optional] |
14+
|**ipRestriction** | [**IPRestriction**](IPRestriction.md) | | [optional] |
15+
|**lastUsedTime** | **OffsetDateTime** | | [optional] |
16+
|**metadata** | **Object** | metadata is a free-form JSON object for caller-defined attributes (e.g., source, environment, tags). Values may be strings, numbers, booleans, arrays, objects, or null. Total serialized size is capped at 4KB. AIP-148 metadata field. | [optional] |
17+
|**name** | **String** | | [optional] |
18+
|**rateLimitPolicy** | [**RateLimitPolicy**](RateLimitPolicy.md) | | [optional] |
19+
|**revocationDescription** | **String** | revocation_description provides free-form context for a revocation. Only set when revocation_reason is PRIVILEGE_WITHDRAWN. JSON API change: field was formerly revocation_reason_text. Field number 13 is unchanged so the change is wire-compatible for binary proto encoding. | [optional] |
20+
|**revocationReason** | **RevocationReason** | | [optional] |
21+
|**scopes** | **List<String>** | | [optional] |
22+
|**status** | **KeyStatus** | | [optional] |
23+
|**updateTime** | **OffsetDateTime** | | [optional] |
24+
|**visibility** | **KeyVisibility** | | [optional] |
25+
26+
27+
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
2+
3+
# AdminUpdateIssuedAPIKeyRequest
4+
5+
IssuedAPIKey represents an API key issued (generated) by Talos. Root keys are opaque v1 format tokens stored in the database. Derived tokens (JWT/Macaroon) are created via DeriveToken and are stateless (not stored).
6+
7+
## Properties
8+
9+
| Name | Type | Description | Notes |
10+
|------------ | ------------- | ------------- | -------------|
11+
|**actorId** | **String** | | [optional] |
12+
|**createTime** | **OffsetDateTime** | | [optional] |
13+
|**expireTime** | **OffsetDateTime** | | [optional] |
14+
|**ipRestriction** | [**IPRestriction**](IPRestriction.md) | | [optional] |
15+
|**lastUsedTime** | **OffsetDateTime** | | [optional] |
16+
|**metadata** | **Object** | metadata is a free-form JSON object for caller-defined attributes (e.g., source, environment, tags). Values may be strings, numbers, booleans, arrays, objects, or null. Total serialized size is capped at 4KB. AIP-148 metadata field. | [optional] |
17+
|**name** | **String** | | [optional] |
18+
|**rateLimitPolicy** | [**RateLimitPolicy**](RateLimitPolicy.md) | | [optional] |
19+
|**revocationDescription** | **String** | revocation_description provides free-form context for a revocation. Only set when revocation_reason is PRIVILEGE_WITHDRAWN. JSON API change: field was formerly revocation_reason_text. Field number 13 is unchanged so the change is wire-compatible for binary proto encoding. | [optional] |
20+
|**revocationReason** | **RevocationReason** | | [optional] |
21+
|**scopes** | **List<String>** | | [optional] |
22+
|**status** | **KeyStatus** | | [optional] |
23+
|**updateTime** | **OffsetDateTime** | | [optional] |
24+
|**visibility** | **KeyVisibility** | | [optional] |
25+
26+
27+

docs/Any.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# Any
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**atType** | **String** | | [optional] |
11+
12+
13+

0 commit comments

Comments
 (0)