Skip to content

Commit 3aac54e

Browse files
authored
upgrade to v0.28.0 (#64)
1 parent cf22a79 commit 3aac54e

24 files changed

+2022
-1004
lines changed

API.md

+116-5
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929

3030
- [ListDataBrokerRecordTypes](#listdatabrokerrecordtypes)
3131

32+
- [QueryDataBrokerRecords](#querydatabrokerrecords)
33+
3234

3335

3436

@@ -80,6 +82,8 @@
8082

8183
- [GetBrandingSettings](#getbrandingsettings)
8284

85+
- [GetConsoleSettings](#getconsolesettings)
86+
8387

8488

8589

@@ -494,6 +498,12 @@ ListActivityLogEntriesRequest
494498
[ListDataBrokerRecordTypesResponse](#listdatabrokerrecordtypesresponse)
495499

496500

501+
### QueryDataBrokerRecords
502+
503+
> **rpc** QueryDataBrokerRecords([QueryDataBrokerRecordsRequest](#querydatabrokerrecordsrequest))
504+
[QueryDataBrokerRecordsResponse](#querydatabrokerrecordsresponse)
505+
506+
497507
<!-- end methods -->
498508
<!-- end services -->
499509

@@ -531,6 +541,44 @@ ListActivityLogEntriesRequest
531541
| records | [repeated databroker.Record](#databrokerrecord) | none |
532542
<!-- end Fields -->
533543
<!-- end HasFields -->
544+
545+
546+
### QueryDataBrokerRecordsRequest
547+
548+
549+
550+
| Field | Type | Description |
551+
| ----- | ---- | ----------- |
552+
| record_type | [ string](#string) | none |
553+
| query | [ string](#string) | look up records with any fields that match the query |
554+
| offset | [ int64](#int64) | list records starting from an offset in the total list |
555+
| limit | [ int64](#int64) | list records up to a limit |
556+
<!-- end Fields -->
557+
<!-- end HasFields -->
558+
559+
560+
### QueryDataBrokerRecordsResponse
561+
562+
563+
564+
| Field | Type | Description |
565+
| ----- | ---- | ----------- |
566+
| records | [repeated Record](#record) | Maps record IDs to record properties |
567+
| total_count | [ int64](#int64) | none |
568+
<!-- end Fields -->
569+
<!-- end HasFields -->
570+
571+
572+
### Record
573+
574+
575+
576+
| Field | Type | Description |
577+
| ----- | ---- | ----------- |
578+
| id | [ string](#string) | Record ID |
579+
| properties | [ google.protobuf.Struct](#googleprotobufstruct) | Record properties |
580+
<!-- end Fields -->
581+
<!-- end HasFields -->
534582
<!-- end messages -->
535583

536584
## Enums
@@ -918,6 +966,8 @@ Route defines a proxy route's settings and policy associations
918966
| stat_name | [ string](#string) | name for prometheus stats, computed on first save |
919967
| from | [ string](#string) | none |
920968
| to | [repeated string](#string) | none |
969+
| redirect | [ envoy.config.route.v3.RedirectAction](#envoyconfigroutev3redirectaction) | none |
970+
| response | [ RouteDirectResponse](#routedirectresponse) | none |
921971
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _prefix.prefix | [optional string](#string) | none |
922972
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _path.path | [optional string](#string) | none |
923973
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _regex.regex | [optional string](#string) | none |
@@ -947,9 +997,10 @@ Route defines a proxy route's settings and policy associations
947997
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _preserve_host_header.preserve_host_header | [optional bool](#bool) | none |
948998
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _pass_identity_headers.pass_identity_headers | [optional bool](#bool) | none |
949999
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _kubernetes_service_account_token.kubernetes_service_account_token | [optional string](#string) | none |
1000+
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _kubernetes_service_account_token_file.kubernetes_service_account_token_file | [optional string](#string) | none |
9501001
| envoy_opts | [ envoy.config.cluster.v3.Cluster](#envoyconfigclusterv3cluster) | none |
951-
| redirect | [ envoy.config.route.v3.RedirectAction](#envoyconfigroutev3redirectaction) | none |
9521002
| enable_google_cloud_serverless_authentication | [ bool](#bool) | none |
1003+
| jwt_issuer_format | [ IssuerFormat](#issuerformat) | none |
9531004
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _idp_client_id.idp_client_id | [optional string](#string) | none |
9541005
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _idp_client_secret.idp_client_secret | [optional string](#string) | none |
9551006
| show_error_details | [ bool](#bool) | none |
@@ -985,6 +1036,18 @@ Route defines a proxy route's settings and policy associations
9851036
<!-- end HasFields -->
9861037

9871038

1039+
### RouteDirectResponse
1040+
1041+
1042+
1043+
| Field | Type | Description |
1044+
| ----- | ---- | ----------- |
1045+
| status | [ uint32](#uint32) | none |
1046+
| body | [ string](#string) | none |
1047+
<!-- end Fields -->
1048+
<!-- end HasFields -->
1049+
1050+
9881051
### RouteRewriteHeader
9891052

9901053

@@ -1056,6 +1119,17 @@ LoadRoutesRequest
10561119
<!-- end messages -->
10571120

10581121
## Enums
1122+
1123+
1124+
### IssuerFormat {#issuerformat}
1125+
1126+
1127+
| Name | Number | Description |
1128+
| ---- | ------ | ----------- |
1129+
| IssuerHostOnly | 0 | Issuer strings will be the hostname of the route, with no scheme or trailing slash. |
1130+
| IssuerURI | 1 | Issuer strings will be a complete URI, including the scheme and ending with a trailing slash. |
1131+
1132+
10591133
<!-- end Enums -->
10601134

10611135

@@ -1081,12 +1155,47 @@ SetSettings applies new global settings
10811155
[GetSettingsResponse](#getsettingsresponse)
10821156

10831157
GetBrandingSettings retrieves just the branding part of the settings
1158+
### GetConsoleSettings
1159+
1160+
> **rpc** GetConsoleSettings([GetConsoleSettingsRequest](#getconsolesettingsrequest))
1161+
[GetConsoleSettingsResponse](#getconsolesettingsresponse)
1162+
1163+
GetConsoleSettings retrieves the console settings.
10841164
<!-- end methods -->
10851165
<!-- end services -->
10861166

10871167
## Messages
10881168

10891169

1170+
### ConsoleSettings
1171+
1172+
1173+
1174+
| Field | Type | Description |
1175+
| ----- | ---- | ----------- |
1176+
| enable_feedback_widget | [ bool](#bool) | none |
1177+
| use_changesets | [ bool](#bool) | none |
1178+
<!-- end Fields -->
1179+
<!-- end HasFields -->
1180+
1181+
1182+
### GetConsoleSettingsRequest
1183+
1184+
1185+
<!-- end HasFields -->
1186+
1187+
1188+
### GetConsoleSettingsResponse
1189+
1190+
1191+
1192+
| Field | Type | Description |
1193+
| ----- | ---- | ----------- |
1194+
| console_settings | [ ConsoleSettings](#consolesettings) | none |
1195+
<!-- end Fields -->
1196+
<!-- end HasFields -->
1197+
1198+
10901199
### GetSettingsRequest
10911200

10921201

@@ -2333,6 +2442,7 @@ KeyPairRecord provides existing Key Pair metadata
23332442
| modified_at | [ google.protobuf.Timestamp](#googleprotobuftimestamp) | database record modification time |
23342443
| cert_info | [ CertificateInfo](#certificateinfo) | information about the public certificate |
23352444
| has_private_key | [ bool](#bool) | Key Pair has a private key attached |
2445+
| certificate | [ bytes](#bytes) | public certificate data |
23362446
<!-- end Fields -->
23372447
<!-- end HasFields -->
23382448

@@ -2413,9 +2523,10 @@ Name defines the x509 identity
24132523
| Field | Type | Description |
24142524
| ----- | ---- | ----------- |
24152525
| id | [ string](#string) | none |
2416-
| format | [ Format](#format) | encoding format of data |
2417-
| certificate | [ bytes](#bytes) | public certificate data |
2418-
| key | [ bytes](#bytes) | private key data |
2526+
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _name.name | [optional string](#string) | none |
2527+
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _format.format | [optional Format](#format) | encoding format of data |
2528+
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _certificate.certificate | [optional bytes](#bytes) | public certificate data |
2529+
| [**oneof**](https://developers.google.com/protocol-buffers/docs/proto3#oneof) _key.key | [optional bytes](#bytes) | private key data |
24192530
<!-- end Fields -->
24202531
<!-- end HasFields -->
24212532

@@ -2993,7 +3104,7 @@ A DeviceType constrains which kinds of devices are allowed to be registered.
29933104
| created_at | [ google.protobuf.Timestamp](#googleprotobuftimestamp) | none |
29943105
| modified_at | [ google.protobuf.Timestamp](#googleprotobuftimestamp) | none |
29953106
| deleted_at | [ google.protobuf.Timestamp](#googleprotobuftimestamp) | none |
2996-
| url | [ string](#string) | Url is th URL to query for data. |
3107+
| url | [ string](#string) | Url is the URL to query for data. |
29973108
| record_type | [ string](#string) | RecordType is how the queried records will be stored in the databroker. |
29983109
| foreign_key | [ string](#string) | ForeignKey is the key referenced for policy evaluation. E.g. user.id. |
29993110
| headers | [map ExternalDataSource.HeadersEntry](#externaldatasourceheadersentry) | Headers are request headers sent to the external data source. |

go/pb/activity_log.pb.go

+15-15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/pb/audit_svc.pb.go

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/pb/console_config.pb.go

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)