Skip to content

Commit 7226fd5

Browse files
authored
chore: update Java SDK from latest OpenAPI specification
1 parent c71c5f9 commit 7226fd5

File tree

318 files changed

+4563
-4753
lines changed

Some content is hidden

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

318 files changed

+4563
-4753
lines changed

docs/Argument.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Argument defines the type of argument in a Call. It can be either a ComputedAttr
99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
1111
|**computedAttribute** | [**ComputedAttribute**](ComputedAttribute.md) | | [optional] |
12-
|**contextAttribute** | [**ContextAttribute**](ContextAttribute.md) | | [optional] |
1312

1413

1514

docs/AttributeType.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,21 @@
55
## Enum
66

77

8-
* `ATTRIBUTE_TYPE_UNSPECIFIED` (value: `"ATTRIBUTE_TYPE_UNSPECIFIED"`)
8+
* `BOOLEAN` (value: `"ATTRIBUTE_TYPE_BOOLEAN"`)
99

10-
* `ATTRIBUTE_TYPE_BOOLEAN` (value: `"ATTRIBUTE_TYPE_BOOLEAN"`)
10+
* `BOOLEAN_ARRAY` (value: `"ATTRIBUTE_TYPE_BOOLEAN_ARRAY"`)
1111

12-
* `ATTRIBUTE_TYPE_BOOLEAN_ARRAY` (value: `"ATTRIBUTE_TYPE_BOOLEAN_ARRAY"`)
12+
* `STRING` (value: `"ATTRIBUTE_TYPE_STRING"`)
1313

14-
* `ATTRIBUTE_TYPE_STRING` (value: `"ATTRIBUTE_TYPE_STRING"`)
14+
* `STRING_ARRAY` (value: `"ATTRIBUTE_TYPE_STRING_ARRAY"`)
1515

16-
* `ATTRIBUTE_TYPE_STRING_ARRAY` (value: `"ATTRIBUTE_TYPE_STRING_ARRAY"`)
16+
* `INTEGER` (value: `"ATTRIBUTE_TYPE_INTEGER"`)
1717

18-
* `ATTRIBUTE_TYPE_INTEGER` (value: `"ATTRIBUTE_TYPE_INTEGER"`)
18+
* `INTEGER_ARRAY` (value: `"ATTRIBUTE_TYPE_INTEGER_ARRAY"`)
1919

20-
* `ATTRIBUTE_TYPE_INTEGER_ARRAY` (value: `"ATTRIBUTE_TYPE_INTEGER_ARRAY"`)
20+
* `DOUBLE` (value: `"ATTRIBUTE_TYPE_DOUBLE"`)
2121

22-
* `ATTRIBUTE_TYPE_DOUBLE` (value: `"ATTRIBUTE_TYPE_DOUBLE"`)
23-
24-
* `ATTRIBUTE_TYPE_DOUBLE_ARRAY` (value: `"ATTRIBUTE_TYPE_DOUBLE_ARRAY"`)
22+
* `DOUBLE_ARRAY` (value: `"ATTRIBUTE_TYPE_DOUBLE_ARRAY"`)
2523

2624

2725

docs/PermissionCheckBody.md renamed to docs/CheckBody.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
# PermissionCheckBody
3+
# CheckBody
44

55
PermissionCheckRequest is the request message for the Check method in the Permission service.
66

docs/CheckResult.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
## Enum
66

77

8-
* `CHECK_RESULT_UNSPECIFIED` (value: `"CHECK_RESULT_UNSPECIFIED"`)
8+
* `ALLOWED` (value: `"CHECK_RESULT_ALLOWED"`)
99

10-
* `CHECK_RESULT_ALLOWED` (value: `"CHECK_RESULT_ALLOWED"`)
11-
12-
* `CHECK_RESULT_DENIED` (value: `"CHECK_RESULT_DENIED"`)
10+
* `DENIED` (value: `"CHECK_RESULT_DENIED"`)
1311

1412

1513

docs/CheckedExpr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A CEL expression which has been successfully type checked.
1212
|**typeMap** | [**Map<String, V1alpha1Type>**](V1alpha1Type.md) | A map from expression ids to types. Every expression node which has a type different than DYN has a mapping here. If an expression has type DYN, it is omitted from this map to save space. | [optional] |
1313
|**sourceInfo** | [**SourceInfo**](SourceInfo.md) | | [optional] |
1414
|**exprVersion** | **String** | The expr version indicates the major / minor version number of the `expr` representation. The most common reason for a version change will be to indicate to the CEL runtimes that transformations have been performed on the expr during static analysis. In some cases, this will save the runtime the work of applying the same or similar transformations prior to evaluation. | [optional] |
15-
|**expr** | **Object** | An abstract representation of a common expression. Expressions are abstractly represented as a collection of identifiers, select statements, function calls, literals, and comprehensions. All operators with the exception of the '.' operator are modelled as function calls. This makes it easy to represent new operators into the existing AST. All references within expressions must resolve to a [Decl][google.api.expr.v1alpha1.Decl] provided at type-check for an expression to be valid. A reference may either be a bare identifier `name` or a qualified identifier `google.api.name`. References may either refer to a value or a function declaration. For example, the expression `google.api.name.startsWith('expr')` references the declaration `google.api.name` within a [Expr.Select][google.api.expr.v1alpha1.Expr.Select] expression, and the function declaration `startsWith`. | [optional] |
15+
|**expr** | [**Expr**](Expr.md) | | [optional] |
1616

1717

1818

docs/Comprehension.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ A comprehension expression applied to a list or map. Comprehensions are not par
99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
1111
|**iterVar** | **String** | The name of the iteration variable. | [optional] |
12-
|**iterRange** | **Object** | An abstract representation of a common expression. Expressions are abstractly represented as a collection of identifiers, select statements, function calls, literals, and comprehensions. All operators with the exception of the '.' operator are modelled as function calls. This makes it easy to represent new operators into the existing AST. All references within expressions must resolve to a [Decl][google.api.expr.v1alpha1.Decl] provided at type-check for an expression to be valid. A reference may either be a bare identifier `name` or a qualified identifier `google.api.name`. References may either refer to a value or a function declaration. For example, the expression `google.api.name.startsWith('expr')` references the declaration `google.api.name` within a [Expr.Select][google.api.expr.v1alpha1.Expr.Select] expression, and the function declaration `startsWith`. | [optional] |
12+
|**iterRange** | [**Expr**](Expr.md) | | [optional] |
1313
|**accuVar** | **String** | The name of the variable used for accumulation of the result. | [optional] |
14-
|**accuInit** | **Object** | An abstract representation of a common expression. Expressions are abstractly represented as a collection of identifiers, select statements, function calls, literals, and comprehensions. All operators with the exception of the '.' operator are modelled as function calls. This makes it easy to represent new operators into the existing AST. All references within expressions must resolve to a [Decl][google.api.expr.v1alpha1.Decl] provided at type-check for an expression to be valid. A reference may either be a bare identifier `name` or a qualified identifier `google.api.name`. References may either refer to a value or a function declaration. For example, the expression `google.api.name.startsWith('expr')` references the declaration `google.api.name` within a [Expr.Select][google.api.expr.v1alpha1.Expr.Select] expression, and the function declaration `startsWith`. | [optional] |
15-
|**loopCondition** | **Object** | An abstract representation of a common expression. Expressions are abstractly represented as a collection of identifiers, select statements, function calls, literals, and comprehensions. All operators with the exception of the '.' operator are modelled as function calls. This makes it easy to represent new operators into the existing AST. All references within expressions must resolve to a [Decl][google.api.expr.v1alpha1.Decl] provided at type-check for an expression to be valid. A reference may either be a bare identifier `name` or a qualified identifier `google.api.name`. References may either refer to a value or a function declaration. For example, the expression `google.api.name.startsWith('expr')` references the declaration `google.api.name` within a [Expr.Select][google.api.expr.v1alpha1.Expr.Select] expression, and the function declaration `startsWith`. | [optional] |
16-
|**loopStep** | **Object** | An abstract representation of a common expression. Expressions are abstractly represented as a collection of identifiers, select statements, function calls, literals, and comprehensions. All operators with the exception of the '.' operator are modelled as function calls. This makes it easy to represent new operators into the existing AST. All references within expressions must resolve to a [Decl][google.api.expr.v1alpha1.Decl] provided at type-check for an expression to be valid. A reference may either be a bare identifier `name` or a qualified identifier `google.api.name`. References may either refer to a value or a function declaration. For example, the expression `google.api.name.startsWith('expr')` references the declaration `google.api.name` within a [Expr.Select][google.api.expr.v1alpha1.Expr.Select] expression, and the function declaration `startsWith`. | [optional] |
17-
|**result** | **Object** | An abstract representation of a common expression. Expressions are abstractly represented as a collection of identifiers, select statements, function calls, literals, and comprehensions. All operators with the exception of the '.' operator are modelled as function calls. This makes it easy to represent new operators into the existing AST. All references within expressions must resolve to a [Decl][google.api.expr.v1alpha1.Decl] provided at type-check for an expression to be valid. A reference may either be a bare identifier `name` or a qualified identifier `google.api.name`. References may either refer to a value or a function declaration. For example, the expression `google.api.name.startsWith('expr')` references the declaration `google.api.name` within a [Expr.Select][google.api.expr.v1alpha1.Expr.Select] expression, and the function declaration `startsWith`. | [optional] |
14+
|**accuInit** | [**Expr**](Expr.md) | | [optional] |
15+
|**loopCondition** | [**Expr**](Expr.md) | | [optional] |
16+
|**loopStep** | [**Expr**](Expr.md) | | [optional] |
17+
|**result** | [**Expr**](Expr.md) | | [optional] |
1818

1919

2020

docs/ContextAttribute.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

docs/CreateList.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A list creation expression. Lists may either be homogenous, e.g. `[1, 2, 3]`, o
88

99
| Name | Type | Description | Notes |
1010
|------------ | ------------- | ------------- | -------------|
11-
|**elements** | **List<Object>** | The elements part of the list. | [optional] |
11+
|**elements** | [**List<Expr>**](Expr.md) | The elements part of the list. | [optional] |
1212
|**optionalIndices** | **List<Integer>** | The indices within the elements list which are marked as optional elements. When an optional-typed value is present, the value it contains is included in the list. If the optional-typed value is absent, the list element is omitted from the CreateList result. | [optional] |
1313

1414

docs/DataChangeOperation.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
## Enum
66

77

8-
* `OPERATION_UNSPECIFIED` (value: `"OPERATION_UNSPECIFIED"`)
8+
* `CREATE` (value: `"OPERATION_CREATE"`)
99

10-
* `OPERATION_CREATE` (value: `"OPERATION_CREATE"`)
11-
12-
* `OPERATION_DELETE` (value: `"OPERATION_DELETE"`)
10+
* `DELETE` (value: `"OPERATION_DELETE"`)
1311

1412

1513

docs/EntityDefinitionReference.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@
55
## Enum
66

77

8-
* `REFERENCE_UNSPECIFIED` (value: `"REFERENCE_UNSPECIFIED"`)
8+
* `RELATION` (value: `"REFERENCE_RELATION"`)
99

10-
* `REFERENCE_RELATION` (value: `"REFERENCE_RELATION"`)
10+
* `PERMISSION` (value: `"REFERENCE_PERMISSION"`)
1111

12-
* `REFERENCE_PERMISSION` (value: `"REFERENCE_PERMISSION"`)
13-
14-
* `REFERENCE_ATTRIBUTE` (value: `"REFERENCE_ATTRIBUTE"`)
12+
* `ATTRIBUTE` (value: `"REFERENCE_ATTRIBUTE"`)
1513

1614

1715

0 commit comments

Comments
 (0)