diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d42709f8243c..5302349079336 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## 16.4.9 (12/3/2024) + +* Add ability to configure resource labels in `teleport-cluster`'s operator sub-chart. [#49648](https://github.com/gravitational/teleport/pull/49648) +* Fixed proxy peering listener not using the exact address specified in `peer_listen_addr`. [#49590](https://github.com/gravitational/teleport/pull/49590) +* Teleport Connect now shows whether it is being used on a trusted device or if enrollment is required for full access. [#49578](https://github.com/gravitational/teleport/pull/49578) +* Kubernetes in-cluster joining now also accepts tokens whose audience is the Teleport cluster name (before it only allowed the default Kubernetes audience). Kubernetes JWKS joining is unchanged and still requires tokens with the cluster name in the audience. [#49557](https://github.com/gravitational/teleport/pull/49557) +* Restore interactive PAM authentication functionality when use_pam_auth is applied. [#49519](https://github.com/gravitational/teleport/pull/49519) +* Session recording playback in the web UI is now searchable. [#49507](https://github.com/gravitational/teleport/pull/49507) +* Increase CockroachDB setup timeout from 5 to 30 seconds. This mitigates the Auth Service not being able to configure TTL on slow CockroachDB event backends. [#49470](https://github.com/gravitational/teleport/pull/49470) +* Fixed a potential panic in login rule and SAML IdP expression parser. [#49431](https://github.com/gravitational/teleport/pull/49431) +* Support for long-running kube exec/port-forward, respect client_idle_timeout config. [#49423](https://github.com/gravitational/teleport/pull/49423) +* Fixed a permissions error with Postgres database user auto-provisioning that occurs when the database admin is not a superuser and the database is upgraded to Postgres v16 or higher. [#49389](https://github.com/gravitational/teleport/pull/49389) +* Teleport Connect now refreshes the resources view after dropping an Access Request. [#49348](https://github.com/gravitational/teleport/pull/49348) +* Fixed missing user participants in session recordings listing for non-interactive Kubernetes recordings. [#49344](https://github.com/gravitational/teleport/pull/49344) +* Support delegated joining for Bitbucket Pipelines in Machine ID. [#49337](https://github.com/gravitational/teleport/pull/49337) +* Fix a bug in the Teleport Operator chart that causes the operator to not be able to watch secrets during secret injection. [#49326](https://github.com/gravitational/teleport/pull/49326) +* You can now search text within ssh sessions in the Web UI and Teleport Connect. [#49270](https://github.com/gravitational/teleport/pull/49270) +* Fixed an issue where `teleport park` processes could be leaked causing runaway resource usage. [#49261](https://github.com/gravitational/teleport/pull/49261) +* Update tsh scp to respect proxy templates when resolving the remote host. [#49227](https://github.com/gravitational/teleport/pull/49227) +* The `tsh puttyconfig` command now disables GSSAPI auth settings to avoid a "Not Responding" condition in PuTTY. [#49190](https://github.com/gravitational/teleport/pull/49190) +* Resolved an issue that caused false positive errors incorrectly indicating that the YubiKey was in use by another application, while only tsh was accessing it. [#47952](https://github.com/gravitational/teleport/pull/47952) + +Enterprise: +* Jamf Service sync audit events are attributed to "Jamf Service". +* Fixed a bug where Access Lists imported from Microsoft Entra ID fail to be created if their display names include special characters. + ## 16.4.8 (11/19/2024) * Allow Azure VMs to join from a different subscription than their managed identity. [#49157](https://github.com/gravitational/teleport/pull/49157) diff --git a/Makefile b/Makefile index 9b8b79e915c5c..7f0e605595e41 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ # Stable releases: "1.0.0" # Pre-releases: "1.0.0-alpha.1", "1.0.0-beta.2", "1.0.0-rc.3" # Master/dev branch: "1.0.0-dev" -VERSION=16.4.8 +VERSION=16.4.9 DOCKER_IMAGE ?= teleport diff --git a/api/client/proto/event.pb.go b/api/client/proto/event.pb.go index 189b0fd5c0b05..ac0b66a96b35c 100644 --- a/api/client/proto/event.pb.go +++ b/api/client/proto/event.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/legacy/client/proto/event.proto @@ -1474,7 +1474,7 @@ func file_teleport_legacy_client_proto_event_proto_rawDescGZIP() []byte { var file_teleport_legacy_client_proto_event_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_legacy_client_proto_event_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_legacy_client_proto_event_proto_goTypes = []interface{}{ +var file_teleport_legacy_client_proto_event_proto_goTypes = []any{ (Operation)(0), // 0: proto.Operation (*Event)(nil), // 1: proto.Event (*types.ResourceHeader)(nil), // 2: types.ResourceHeader @@ -1616,7 +1616,7 @@ func file_teleport_legacy_client_proto_event_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_legacy_client_proto_event_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_legacy_client_proto_event_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Event); i { case 0: return &v.state @@ -1629,7 +1629,7 @@ func file_teleport_legacy_client_proto_event_proto_init() { } } } - file_teleport_legacy_client_proto_event_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_teleport_legacy_client_proto_event_proto_msgTypes[0].OneofWrappers = []any{ (*Event_ResourceHeader)(nil), (*Event_CertAuthority)(nil), (*Event_StaticTokens)(nil), diff --git a/api/gen/proto/go/teleport/accessgraph/v1/authorized_key.pb.go b/api/gen/proto/go/teleport/accessgraph/v1/authorized_key.pb.go index 11a3a967d6dbc..a80ab32c12d25 100644 --- a/api/gen/proto/go/teleport/accessgraph/v1/authorized_key.pb.go +++ b/api/gen/proto/go/teleport/accessgraph/v1/authorized_key.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/access_graph/v1/authorized_key.proto @@ -264,7 +264,7 @@ func file_teleport_access_graph_v1_authorized_key_proto_rawDescGZIP() []byte { } var file_teleport_access_graph_v1_authorized_key_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_access_graph_v1_authorized_key_proto_goTypes = []interface{}{ +var file_teleport_access_graph_v1_authorized_key_proto_goTypes = []any{ (*AuthorizedKey)(nil), // 0: teleport.access_graph.v1.AuthorizedKey (*AuthorizedKeySpec)(nil), // 1: teleport.access_graph.v1.AuthorizedKeySpec (*v1.Metadata)(nil), // 2: teleport.header.v1.Metadata @@ -285,7 +285,7 @@ func file_teleport_access_graph_v1_authorized_key_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_access_graph_v1_authorized_key_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_access_graph_v1_authorized_key_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AuthorizedKey); i { case 0: return &v.state @@ -297,7 +297,7 @@ func file_teleport_access_graph_v1_authorized_key_proto_init() { return nil } } - file_teleport_access_graph_v1_authorized_key_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_access_graph_v1_authorized_key_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AuthorizedKeySpec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/accessgraph/v1/private_key.pb.go b/api/gen/proto/go/teleport/accessgraph/v1/private_key.pb.go index e2d33a704c7e0..26e65b85e5eed 100644 --- a/api/gen/proto/go/teleport/accessgraph/v1/private_key.pb.go +++ b/api/gen/proto/go/teleport/accessgraph/v1/private_key.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/access_graph/v1/private_key.proto @@ -320,7 +320,7 @@ func file_teleport_access_graph_v1_private_key_proto_rawDescGZIP() []byte { var file_teleport_access_graph_v1_private_key_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_access_graph_v1_private_key_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_access_graph_v1_private_key_proto_goTypes = []interface{}{ +var file_teleport_access_graph_v1_private_key_proto_goTypes = []any{ (PublicKeyMode)(0), // 0: teleport.access_graph.v1.PublicKeyMode (*PrivateKey)(nil), // 1: teleport.access_graph.v1.PrivateKey (*PrivateKeySpec)(nil), // 2: teleport.access_graph.v1.PrivateKeySpec @@ -343,7 +343,7 @@ func file_teleport_access_graph_v1_private_key_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_access_graph_v1_private_key_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_access_graph_v1_private_key_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*PrivateKey); i { case 0: return &v.state @@ -355,7 +355,7 @@ func file_teleport_access_graph_v1_private_key_proto_init() { return nil } } - file_teleport_access_graph_v1_private_key_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_access_graph_v1_private_key_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*PrivateKeySpec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/accessgraph/v1/secrets_service.pb.go b/api/gen/proto/go/teleport/accessgraph/v1/secrets_service.pb.go index 954ea18e6d5af..0d2bd9af11f2b 100644 --- a/api/gen/proto/go/teleport/accessgraph/v1/secrets_service.pb.go +++ b/api/gen/proto/go/teleport/accessgraph/v1/secrets_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/access_graph/v1/secrets_service.proto @@ -498,7 +498,7 @@ func file_teleport_access_graph_v1_secrets_service_proto_rawDescGZIP() []byte { var file_teleport_access_graph_v1_secrets_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_access_graph_v1_secrets_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_access_graph_v1_secrets_service_proto_goTypes = []interface{}{ +var file_teleport_access_graph_v1_secrets_service_proto_goTypes = []any{ (OperationType)(0), // 0: teleport.access_graph.v1.OperationType (*ReportAuthorizedKeysRequest)(nil), // 1: teleport.access_graph.v1.ReportAuthorizedKeysRequest (*ReportAuthorizedKeysResponse)(nil), // 2: teleport.access_graph.v1.ReportAuthorizedKeysResponse @@ -536,7 +536,7 @@ func file_teleport_access_graph_v1_secrets_service_proto_init() { file_teleport_access_graph_v1_authorized_key_proto_init() file_teleport_access_graph_v1_private_key_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_access_graph_v1_secrets_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_access_graph_v1_secrets_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ReportAuthorizedKeysRequest); i { case 0: return &v.state @@ -548,7 +548,7 @@ func file_teleport_access_graph_v1_secrets_service_proto_init() { return nil } } - file_teleport_access_graph_v1_secrets_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_access_graph_v1_secrets_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ReportAuthorizedKeysResponse); i { case 0: return &v.state @@ -560,7 +560,7 @@ func file_teleport_access_graph_v1_secrets_service_proto_init() { return nil } } - file_teleport_access_graph_v1_secrets_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_access_graph_v1_secrets_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ReportSecretsRequest); i { case 0: return &v.state @@ -572,7 +572,7 @@ func file_teleport_access_graph_v1_secrets_service_proto_init() { return nil } } - file_teleport_access_graph_v1_secrets_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_access_graph_v1_secrets_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ReportPrivateKeys); i { case 0: return &v.state @@ -584,7 +584,7 @@ func file_teleport_access_graph_v1_secrets_service_proto_init() { return nil } } - file_teleport_access_graph_v1_secrets_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_access_graph_v1_secrets_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ReportSecretsResponse); i { case 0: return &v.state @@ -597,11 +597,11 @@ func file_teleport_access_graph_v1_secrets_service_proto_init() { } } } - file_teleport_access_graph_v1_secrets_service_proto_msgTypes[2].OneofWrappers = []interface{}{ + file_teleport_access_graph_v1_secrets_service_proto_msgTypes[2].OneofWrappers = []any{ (*ReportSecretsRequest_DeviceAssertion)(nil), (*ReportSecretsRequest_PrivateKeys)(nil), } - file_teleport_access_graph_v1_secrets_service_proto_msgTypes[4].OneofWrappers = []interface{}{ + file_teleport_access_graph_v1_secrets_service_proto_msgTypes[4].OneofWrappers = []any{ (*ReportSecretsResponse_DeviceAssertion)(nil), } type x struct{} diff --git a/api/gen/proto/go/teleport/accesslist/v1/accesslist.pb.go b/api/gen/proto/go/teleport/accesslist/v1/accesslist.pb.go index 607e5644f9d82..29d69216bb989 100644 --- a/api/gen/proto/go/teleport/accesslist/v1/accesslist.pb.go +++ b/api/gen/proto/go/teleport/accesslist/v1/accesslist.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/accesslist/v1/accesslist.proto @@ -1455,7 +1455,7 @@ func file_teleport_accesslist_v1_accesslist_proto_rawDescGZIP() []byte { var file_teleport_accesslist_v1_accesslist_proto_enumTypes = make([]protoimpl.EnumInfo, 3) var file_teleport_accesslist_v1_accesslist_proto_msgTypes = make([]protoimpl.MessageInfo, 14) -var file_teleport_accesslist_v1_accesslist_proto_goTypes = []interface{}{ +var file_teleport_accesslist_v1_accesslist_proto_goTypes = []any{ (ReviewFrequency)(0), // 0: teleport.accesslist.v1.ReviewFrequency (ReviewDayOfMonth)(0), // 1: teleport.accesslist.v1.ReviewDayOfMonth (IneligibleStatus)(0), // 2: teleport.accesslist.v1.IneligibleStatus @@ -1522,7 +1522,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_accesslist_v1_accesslist_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AccessList); i { case 0: return &v.state @@ -1534,7 +1534,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AccessListSpec); i { case 0: return &v.state @@ -1546,7 +1546,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*AccessListOwner); i { case 0: return &v.state @@ -1558,7 +1558,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*AccessListAudit); i { case 0: return &v.state @@ -1570,7 +1570,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*Recurrence); i { case 0: return &v.state @@ -1582,7 +1582,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*Notifications); i { case 0: return &v.state @@ -1594,7 +1594,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*AccessListRequires); i { case 0: return &v.state @@ -1606,7 +1606,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*AccessListGrants); i { case 0: return &v.state @@ -1618,7 +1618,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*Member); i { case 0: return &v.state @@ -1630,7 +1630,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*MemberSpec); i { case 0: return &v.state @@ -1642,7 +1642,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*Review); i { case 0: return &v.state @@ -1654,7 +1654,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*ReviewSpec); i { case 0: return &v.state @@ -1666,7 +1666,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*ReviewChanges); i { case 0: return &v.state @@ -1678,7 +1678,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*AccessListStatus); i { case 0: return &v.state @@ -1691,7 +1691,7 @@ func file_teleport_accesslist_v1_accesslist_proto_init() { } } } - file_teleport_accesslist_v1_accesslist_proto_msgTypes[13].OneofWrappers = []interface{}{} + file_teleport_accesslist_v1_accesslist_proto_msgTypes[13].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ diff --git a/api/gen/proto/go/teleport/accesslist/v1/accesslist_service.pb.go b/api/gen/proto/go/teleport/accesslist/v1/accesslist_service.pb.go index a5fce3e553e4b..734b0b43874b8 100644 --- a/api/gen/proto/go/teleport/accesslist/v1/accesslist_service.pb.go +++ b/api/gen/proto/go/teleport/accesslist/v1/accesslist_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/accesslist/v1/accesslist_service.proto @@ -2409,7 +2409,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_rawDescGZIP() []byte { } var file_teleport_accesslist_v1_accesslist_service_proto_msgTypes = make([]protoimpl.MessageInfo, 36) -var file_teleport_accesslist_v1_accesslist_service_proto_goTypes = []interface{}{ +var file_teleport_accesslist_v1_accesslist_service_proto_goTypes = []any{ (*GetAccessListsRequest)(nil), // 0: teleport.accesslist.v1.GetAccessListsRequest (*GetAccessListsResponse)(nil), // 1: teleport.accesslist.v1.GetAccessListsResponse (*ListAccessListsRequest)(nil), // 2: teleport.accesslist.v1.ListAccessListsRequest @@ -2535,7 +2535,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { } file_teleport_accesslist_v1_accesslist_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetAccessListsRequest); i { case 0: return &v.state @@ -2547,7 +2547,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetAccessListsResponse); i { case 0: return &v.state @@ -2559,7 +2559,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListAccessListsRequest); i { case 0: return &v.state @@ -2571,7 +2571,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ListAccessListsResponse); i { case 0: return &v.state @@ -2583,7 +2583,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*GetAccessListRequest); i { case 0: return &v.state @@ -2595,7 +2595,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpsertAccessListRequest); i { case 0: return &v.state @@ -2607,7 +2607,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*UpdateAccessListRequest); i { case 0: return &v.state @@ -2619,7 +2619,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*DeleteAccessListRequest); i { case 0: return &v.state @@ -2631,7 +2631,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*DeleteAllAccessListsRequest); i { case 0: return &v.state @@ -2643,7 +2643,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*GetAccessListsToReviewRequest); i { case 0: return &v.state @@ -2655,7 +2655,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*GetAccessListsToReviewResponse); i { case 0: return &v.state @@ -2667,7 +2667,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*CountAccessListMembersRequest); i { case 0: return &v.state @@ -2679,7 +2679,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*CountAccessListMembersResponse); i { case 0: return &v.state @@ -2691,7 +2691,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*ListAccessListMembersRequest); i { case 0: return &v.state @@ -2703,7 +2703,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*ListAccessListMembersResponse); i { case 0: return &v.state @@ -2715,7 +2715,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*ListAllAccessListMembersRequest); i { case 0: return &v.state @@ -2727,7 +2727,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*ListAllAccessListMembersResponse); i { case 0: return &v.state @@ -2739,7 +2739,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*UpsertAccessListWithMembersRequest); i { case 0: return &v.state @@ -2751,7 +2751,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*UpsertAccessListWithMembersResponse); i { case 0: return &v.state @@ -2763,7 +2763,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*GetAccessListMemberRequest); i { case 0: return &v.state @@ -2775,7 +2775,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[20].Exporter = func(v any, i int) any { switch v := v.(*UpsertAccessListMemberRequest); i { case 0: return &v.state @@ -2787,7 +2787,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[21].Exporter = func(v any, i int) any { switch v := v.(*UpdateAccessListMemberRequest); i { case 0: return &v.state @@ -2799,7 +2799,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[22].Exporter = func(v any, i int) any { switch v := v.(*DeleteAccessListMemberRequest); i { case 0: return &v.state @@ -2811,7 +2811,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[23].Exporter = func(v any, i int) any { switch v := v.(*DeleteAllAccessListMembersForAccessListRequest); i { case 0: return &v.state @@ -2823,7 +2823,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[24].Exporter = func(v any, i int) any { switch v := v.(*DeleteAllAccessListMembersRequest); i { case 0: return &v.state @@ -2835,7 +2835,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[25].Exporter = func(v any, i int) any { switch v := v.(*ListAccessListReviewsRequest); i { case 0: return &v.state @@ -2847,7 +2847,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[26].Exporter = func(v any, i int) any { switch v := v.(*ListAccessListReviewsResponse); i { case 0: return &v.state @@ -2859,7 +2859,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[27].Exporter = func(v any, i int) any { switch v := v.(*ListAllAccessListReviewsRequest); i { case 0: return &v.state @@ -2871,7 +2871,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[28].Exporter = func(v any, i int) any { switch v := v.(*ListAllAccessListReviewsResponse); i { case 0: return &v.state @@ -2883,7 +2883,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[29].Exporter = func(v any, i int) any { switch v := v.(*CreateAccessListReviewRequest); i { case 0: return &v.state @@ -2895,7 +2895,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[30].Exporter = func(v any, i int) any { switch v := v.(*CreateAccessListReviewResponse); i { case 0: return &v.state @@ -2907,7 +2907,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[31].Exporter = func(v any, i int) any { switch v := v.(*DeleteAccessListReviewRequest); i { case 0: return &v.state @@ -2919,7 +2919,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[32].Exporter = func(v any, i int) any { switch v := v.(*AccessRequestPromoteRequest); i { case 0: return &v.state @@ -2931,7 +2931,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[33].Exporter = func(v any, i int) any { switch v := v.(*AccessRequestPromoteResponse); i { case 0: return &v.state @@ -2943,7 +2943,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[34].Exporter = func(v any, i int) any { switch v := v.(*GetSuggestedAccessListsRequest); i { case 0: return &v.state @@ -2955,7 +2955,7 @@ func file_teleport_accesslist_v1_accesslist_service_proto_init() { return nil } } - file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accesslist_v1_accesslist_service_proto_msgTypes[35].Exporter = func(v any, i int) any { switch v := v.(*GetSuggestedAccessListsResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/accessmonitoringrules/v1/access_monitoring_rules.pb.go b/api/gen/proto/go/teleport/accessmonitoringrules/v1/access_monitoring_rules.pb.go index 52e4d59e32fe2..b9534b748b78a 100644 --- a/api/gen/proto/go/teleport/accessmonitoringrules/v1/access_monitoring_rules.pb.go +++ b/api/gen/proto/go/teleport/accessmonitoringrules/v1/access_monitoring_rules.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/accessmonitoringrules/v1/access_monitoring_rules.proto @@ -886,7 +886,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_rawDes } var file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes = make([]protoimpl.MessageInfo, 12) -var file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_goTypes = []interface{}{ +var file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_goTypes = []any{ (*AccessMonitoringRule)(nil), // 0: teleport.accessmonitoringrules.v1.AccessMonitoringRule (*AccessMonitoringRuleSpec)(nil), // 1: teleport.accessmonitoringrules.v1.AccessMonitoringRuleSpec (*Notification)(nil), // 2: teleport.accessmonitoringrules.v1.Notification @@ -923,7 +923,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return } if !protoimpl.UnsafeEnabled { - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AccessMonitoringRule); i { case 0: return &v.state @@ -935,7 +935,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AccessMonitoringRuleSpec); i { case 0: return &v.state @@ -947,7 +947,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*Notification); i { case 0: return &v.state @@ -959,7 +959,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*CreateAccessMonitoringRuleRequest); i { case 0: return &v.state @@ -971,7 +971,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpdateAccessMonitoringRuleRequest); i { case 0: return &v.state @@ -983,7 +983,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpsertAccessMonitoringRuleRequest); i { case 0: return &v.state @@ -995,7 +995,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*GetAccessMonitoringRuleRequest); i { case 0: return &v.state @@ -1007,7 +1007,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*DeleteAccessMonitoringRuleRequest); i { case 0: return &v.state @@ -1019,7 +1019,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*ListAccessMonitoringRulesRequest); i { case 0: return &v.state @@ -1031,7 +1031,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*ListAccessMonitoringRulesWithFilterRequest); i { case 0: return &v.state @@ -1043,7 +1043,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*ListAccessMonitoringRulesResponse); i { case 0: return &v.state @@ -1055,7 +1055,7 @@ func file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_init() return nil } } - file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_accessmonitoringrules_v1_access_monitoring_rules_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*ListAccessMonitoringRulesWithFilterResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/accessmonitoringrules/v1/access_monitoring_rules_service.pb.go b/api/gen/proto/go/teleport/accessmonitoringrules/v1/access_monitoring_rules_service.pb.go index 636b1cf7059e0..5e49489ce871a 100644 --- a/api/gen/proto/go/teleport/accessmonitoringrules/v1/access_monitoring_rules_service.pb.go +++ b/api/gen/proto/go/teleport/accessmonitoringrules/v1/access_monitoring_rules_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/accessmonitoringrules/v1/access_monitoring_rules_service.proto @@ -132,7 +132,7 @@ var file_teleport_accessmonitoringrules_v1_access_monitoring_rules_service_proto 0x33, } -var file_teleport_accessmonitoringrules_v1_access_monitoring_rules_service_proto_goTypes = []interface{}{ +var file_teleport_accessmonitoringrules_v1_access_monitoring_rules_service_proto_goTypes = []any{ (*CreateAccessMonitoringRuleRequest)(nil), // 0: teleport.accessmonitoringrules.v1.CreateAccessMonitoringRuleRequest (*UpdateAccessMonitoringRuleRequest)(nil), // 1: teleport.accessmonitoringrules.v1.UpdateAccessMonitoringRuleRequest (*UpsertAccessMonitoringRuleRequest)(nil), // 2: teleport.accessmonitoringrules.v1.UpsertAccessMonitoringRuleRequest diff --git a/api/gen/proto/go/teleport/auditlog/v1/auditlog.pb.go b/api/gen/proto/go/teleport/auditlog/v1/auditlog.pb.go index f3d9547c44855..4fb20ac18474d 100644 --- a/api/gen/proto/go/teleport/auditlog/v1/auditlog.pb.go +++ b/api/gen/proto/go/teleport/auditlog/v1/auditlog.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/auditlog/v1/auditlog.proto @@ -757,7 +757,7 @@ func file_teleport_auditlog_v1_auditlog_proto_rawDescGZIP() []byte { var file_teleport_auditlog_v1_auditlog_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_auditlog_v1_auditlog_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_teleport_auditlog_v1_auditlog_proto_goTypes = []interface{}{ +var file_teleport_auditlog_v1_auditlog_proto_goTypes = []any{ (Order)(0), // 0: teleport.auditlog.v1.Order (*StreamUnstructuredSessionEventsRequest)(nil), // 1: teleport.auditlog.v1.StreamUnstructuredSessionEventsRequest (*GetUnstructuredEventsRequest)(nil), // 2: teleport.auditlog.v1.GetUnstructuredEventsRequest @@ -801,7 +801,7 @@ func file_teleport_auditlog_v1_auditlog_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_auditlog_v1_auditlog_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_auditlog_v1_auditlog_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*StreamUnstructuredSessionEventsRequest); i { case 0: return &v.state @@ -813,7 +813,7 @@ func file_teleport_auditlog_v1_auditlog_proto_init() { return nil } } - file_teleport_auditlog_v1_auditlog_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_auditlog_v1_auditlog_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetUnstructuredEventsRequest); i { case 0: return &v.state @@ -825,7 +825,7 @@ func file_teleport_auditlog_v1_auditlog_proto_init() { return nil } } - file_teleport_auditlog_v1_auditlog_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_auditlog_v1_auditlog_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*EventsUnstructured); i { case 0: return &v.state @@ -837,7 +837,7 @@ func file_teleport_auditlog_v1_auditlog_proto_init() { return nil } } - file_teleport_auditlog_v1_auditlog_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_auditlog_v1_auditlog_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ExportUnstructuredEventsRequest); i { case 0: return &v.state @@ -849,7 +849,7 @@ func file_teleport_auditlog_v1_auditlog_proto_init() { return nil } } - file_teleport_auditlog_v1_auditlog_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_auditlog_v1_auditlog_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ExportEventUnstructured); i { case 0: return &v.state @@ -861,7 +861,7 @@ func file_teleport_auditlog_v1_auditlog_proto_init() { return nil } } - file_teleport_auditlog_v1_auditlog_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_auditlog_v1_auditlog_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*EventUnstructured); i { case 0: return &v.state @@ -873,7 +873,7 @@ func file_teleport_auditlog_v1_auditlog_proto_init() { return nil } } - file_teleport_auditlog_v1_auditlog_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_auditlog_v1_auditlog_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*GetEventExportChunksRequest); i { case 0: return &v.state @@ -885,7 +885,7 @@ func file_teleport_auditlog_v1_auditlog_proto_init() { return nil } } - file_teleport_auditlog_v1_auditlog_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_auditlog_v1_auditlog_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*EventExportChunk); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/autoupdate/v1/autoupdate.pb.go b/api/gen/proto/go/teleport/autoupdate/v1/autoupdate.pb.go index eff70443d2f28..3d1d62b82fbdc 100644 --- a/api/gen/proto/go/teleport/autoupdate/v1/autoupdate.pb.go +++ b/api/gen/proto/go/teleport/autoupdate/v1/autoupdate.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/autoupdate/v1/autoupdate.proto @@ -361,7 +361,7 @@ func file_teleport_autoupdate_v1_autoupdate_proto_rawDescGZIP() []byte { } var file_teleport_autoupdate_v1_autoupdate_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_teleport_autoupdate_v1_autoupdate_proto_goTypes = []interface{}{ +var file_teleport_autoupdate_v1_autoupdate_proto_goTypes = []any{ (*AutoUpdateConfig)(nil), // 0: teleport.autoupdate.v1.AutoUpdateConfig (*AutoUpdateConfigSpec)(nil), // 1: teleport.autoupdate.v1.AutoUpdateConfigSpec (*AutoUpdateVersion)(nil), // 2: teleport.autoupdate.v1.AutoUpdateVersion @@ -386,7 +386,7 @@ func file_teleport_autoupdate_v1_autoupdate_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AutoUpdateConfig); i { case 0: return &v.state @@ -398,7 +398,7 @@ func file_teleport_autoupdate_v1_autoupdate_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AutoUpdateConfigSpec); i { case 0: return &v.state @@ -410,7 +410,7 @@ func file_teleport_autoupdate_v1_autoupdate_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*AutoUpdateVersion); i { case 0: return &v.state @@ -422,7 +422,7 @@ func file_teleport_autoupdate_v1_autoupdate_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*AutoUpdateVersionSpec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/autoupdate/v1/autoupdate_service.pb.go b/api/gen/proto/go/teleport/autoupdate/v1/autoupdate_service.pb.go index 92d3898b1e75f..afe88216dd6bc 100644 --- a/api/gen/proto/go/teleport/autoupdate/v1/autoupdate_service.pb.go +++ b/api/gen/proto/go/teleport/autoupdate/v1/autoupdate_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/autoupdate/v1/autoupdate_service.proto @@ -634,7 +634,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_rawDescGZIP() []byte { } var file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) -var file_teleport_autoupdate_v1_autoupdate_service_proto_goTypes = []interface{}{ +var file_teleport_autoupdate_v1_autoupdate_service_proto_goTypes = []any{ (*GetAutoUpdateConfigRequest)(nil), // 0: teleport.autoupdate.v1.GetAutoUpdateConfigRequest (*CreateAutoUpdateConfigRequest)(nil), // 1: teleport.autoupdate.v1.CreateAutoUpdateConfigRequest (*UpdateAutoUpdateConfigRequest)(nil), // 2: teleport.autoupdate.v1.UpdateAutoUpdateConfigRequest @@ -690,7 +690,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { } file_teleport_autoupdate_v1_autoupdate_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetAutoUpdateConfigRequest); i { case 0: return &v.state @@ -702,7 +702,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*CreateAutoUpdateConfigRequest); i { case 0: return &v.state @@ -714,7 +714,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*UpdateAutoUpdateConfigRequest); i { case 0: return &v.state @@ -726,7 +726,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*UpsertAutoUpdateConfigRequest); i { case 0: return &v.state @@ -738,7 +738,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*DeleteAutoUpdateConfigRequest); i { case 0: return &v.state @@ -750,7 +750,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*GetAutoUpdateVersionRequest); i { case 0: return &v.state @@ -762,7 +762,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*CreateAutoUpdateVersionRequest); i { case 0: return &v.state @@ -774,7 +774,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*UpdateAutoUpdateVersionRequest); i { case 0: return &v.state @@ -786,7 +786,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*UpsertAutoUpdateVersionRequest); i { case 0: return &v.state @@ -798,7 +798,7 @@ func file_teleport_autoupdate_v1_autoupdate_service_proto_init() { return nil } } - file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_autoupdate_v1_autoupdate_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*DeleteAutoUpdateVersionRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/clusterconfig/v1/access_graph.pb.go b/api/gen/proto/go/teleport/clusterconfig/v1/access_graph.pb.go index 263c852cdf155..6a3ea8e7dddb5 100644 --- a/api/gen/proto/go/teleport/clusterconfig/v1/access_graph.pb.go +++ b/api/gen/proto/go/teleport/clusterconfig/v1/access_graph.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/clusterconfig/v1/access_graph.proto @@ -219,7 +219,7 @@ func file_teleport_clusterconfig_v1_access_graph_proto_rawDescGZIP() []byte { } var file_teleport_clusterconfig_v1_access_graph_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_clusterconfig_v1_access_graph_proto_goTypes = []interface{}{ +var file_teleport_clusterconfig_v1_access_graph_proto_goTypes = []any{ (*AccessGraphConfig)(nil), // 0: teleport.clusterconfig.v1.AccessGraphConfig (*AccessGraphSecretsScanConfiguration)(nil), // 1: teleport.clusterconfig.v1.AccessGraphSecretsScanConfiguration } @@ -238,7 +238,7 @@ func file_teleport_clusterconfig_v1_access_graph_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_clusterconfig_v1_access_graph_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_access_graph_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphConfig); i { case 0: return &v.state @@ -250,7 +250,7 @@ func file_teleport_clusterconfig_v1_access_graph_proto_init() { return nil } } - file_teleport_clusterconfig_v1_access_graph_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_access_graph_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphSecretsScanConfiguration); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/clusterconfig/v1/access_graph_settings.pb.go b/api/gen/proto/go/teleport/clusterconfig/v1/access_graph_settings.pb.go index 93c3141620969..dcc4ea5c0b255 100644 --- a/api/gen/proto/go/teleport/clusterconfig/v1/access_graph_settings.pb.go +++ b/api/gen/proto/go/teleport/clusterconfig/v1/access_graph_settings.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/clusterconfig/v1/access_graph_settings.proto @@ -289,7 +289,7 @@ func file_teleport_clusterconfig_v1_access_graph_settings_proto_rawDescGZIP() [] var file_teleport_clusterconfig_v1_access_graph_settings_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_clusterconfig_v1_access_graph_settings_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_clusterconfig_v1_access_graph_settings_proto_goTypes = []interface{}{ +var file_teleport_clusterconfig_v1_access_graph_settings_proto_goTypes = []any{ (AccessGraphSecretsScanConfig)(0), // 0: teleport.clusterconfig.v1.AccessGraphSecretsScanConfig (*AccessGraphSettings)(nil), // 1: teleport.clusterconfig.v1.AccessGraphSettings (*AccessGraphSettingsSpec)(nil), // 2: teleport.clusterconfig.v1.AccessGraphSettingsSpec @@ -312,7 +312,7 @@ func file_teleport_clusterconfig_v1_access_graph_settings_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_clusterconfig_v1_access_graph_settings_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_access_graph_settings_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphSettings); i { case 0: return &v.state @@ -324,7 +324,7 @@ func file_teleport_clusterconfig_v1_access_graph_settings_proto_init() { return nil } } - file_teleport_clusterconfig_v1_access_graph_settings_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_access_graph_settings_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphSettingsSpec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/clusterconfig/v1/clusterconfig_service.pb.go b/api/gen/proto/go/teleport/clusterconfig/v1/clusterconfig_service.pb.go index 16fd98fa757f8..4cdf6f55c1ed4 100644 --- a/api/gen/proto/go/teleport/clusterconfig/v1/clusterconfig_service.pb.go +++ b/api/gen/proto/go/teleport/clusterconfig/v1/clusterconfig_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/clusterconfig/v1/clusterconfig_service.proto @@ -1195,7 +1195,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_rawDescGZIP() [] } var file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes = make([]protoimpl.MessageInfo, 20) -var file_teleport_clusterconfig_v1_clusterconfig_service_proto_goTypes = []interface{}{ +var file_teleport_clusterconfig_v1_clusterconfig_service_proto_goTypes = []any{ (*GetClusterNetworkingConfigRequest)(nil), // 0: teleport.clusterconfig.v1.GetClusterNetworkingConfigRequest (*UpdateClusterNetworkingConfigRequest)(nil), // 1: teleport.clusterconfig.v1.UpdateClusterNetworkingConfigRequest (*UpsertClusterNetworkingConfigRequest)(nil), // 2: teleport.clusterconfig.v1.UpsertClusterNetworkingConfigRequest @@ -1287,7 +1287,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { file_teleport_clusterconfig_v1_access_graph_proto_init() file_teleport_clusterconfig_v1_access_graph_settings_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetClusterNetworkingConfigRequest); i { case 0: return &v.state @@ -1299,7 +1299,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*UpdateClusterNetworkingConfigRequest); i { case 0: return &v.state @@ -1311,7 +1311,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*UpsertClusterNetworkingConfigRequest); i { case 0: return &v.state @@ -1323,7 +1323,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ResetClusterNetworkingConfigRequest); i { case 0: return &v.state @@ -1335,7 +1335,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*GetSessionRecordingConfigRequest); i { case 0: return &v.state @@ -1347,7 +1347,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpdateSessionRecordingConfigRequest); i { case 0: return &v.state @@ -1359,7 +1359,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*UpsertSessionRecordingConfigRequest); i { case 0: return &v.state @@ -1371,7 +1371,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*ResetSessionRecordingConfigRequest); i { case 0: return &v.state @@ -1383,7 +1383,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*GetAuthPreferenceRequest); i { case 0: return &v.state @@ -1395,7 +1395,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*UpdateAuthPreferenceRequest); i { case 0: return &v.state @@ -1407,7 +1407,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*UpsertAuthPreferenceRequest); i { case 0: return &v.state @@ -1419,7 +1419,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*ResetAuthPreferenceRequest); i { case 0: return &v.state @@ -1431,7 +1431,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*GetClusterAuditConfigRequest); i { case 0: return &v.state @@ -1443,7 +1443,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*GetClusterAccessGraphConfigRequest); i { case 0: return &v.state @@ -1455,7 +1455,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*GetClusterAccessGraphConfigResponse); i { case 0: return &v.state @@ -1467,7 +1467,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*GetAccessGraphSettingsRequest); i { case 0: return &v.state @@ -1479,7 +1479,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*CreateAccessGraphSettingsRequest); i { case 0: return &v.state @@ -1491,7 +1491,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*UpdateAccessGraphSettingsRequest); i { case 0: return &v.state @@ -1503,7 +1503,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*UpsertAccessGraphSettingsRequest); i { case 0: return &v.state @@ -1515,7 +1515,7 @@ func file_teleport_clusterconfig_v1_clusterconfig_service_proto_init() { return nil } } - file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_teleport_clusterconfig_v1_clusterconfig_service_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*ResetAccessGraphSettingsRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/crownjewel/v1/crownjewel.pb.go b/api/gen/proto/go/teleport/crownjewel/v1/crownjewel.pb.go index 6ddfa5028e2d7..6546467186699 100644 --- a/api/gen/proto/go/teleport/crownjewel/v1/crownjewel.pb.go +++ b/api/gen/proto/go/teleport/crownjewel/v1/crownjewel.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/crownjewel/v1/crownjewel.proto @@ -482,7 +482,7 @@ func file_teleport_crownjewel_v1_crownjewel_proto_rawDescGZIP() []byte { } var file_teleport_crownjewel_v1_crownjewel_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_crownjewel_v1_crownjewel_proto_goTypes = []interface{}{ +var file_teleport_crownjewel_v1_crownjewel_proto_goTypes = []any{ (*CrownJewel)(nil), // 0: teleport.crownjewel.v1.CrownJewel (*CrownJewelSpec)(nil), // 1: teleport.crownjewel.v1.CrownJewelSpec (*TeleportMatcher)(nil), // 2: teleport.crownjewel.v1.TeleportMatcher @@ -513,7 +513,7 @@ func file_teleport_crownjewel_v1_crownjewel_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*CrownJewel); i { case 0: return &v.state @@ -525,7 +525,7 @@ func file_teleport_crownjewel_v1_crownjewel_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*CrownJewelSpec); i { case 0: return &v.state @@ -537,7 +537,7 @@ func file_teleport_crownjewel_v1_crownjewel_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*TeleportMatcher); i { case 0: return &v.state @@ -549,7 +549,7 @@ func file_teleport_crownjewel_v1_crownjewel_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*AWSMatcher); i { case 0: return &v.state @@ -561,7 +561,7 @@ func file_teleport_crownjewel_v1_crownjewel_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*AWSTag); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/crownjewel/v1/crownjewel_service.pb.go b/api/gen/proto/go/teleport/crownjewel/v1/crownjewel_service.pb.go index 09c11dde341ed..97a4d9eefddd0 100644 --- a/api/gen/proto/go/teleport/crownjewel/v1/crownjewel_service.pb.go +++ b/api/gen/proto/go/teleport/crownjewel/v1/crownjewel_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/crownjewel/v1/crownjewel_service.proto @@ -509,7 +509,7 @@ func file_teleport_crownjewel_v1_crownjewel_service_proto_rawDescGZIP() []byte { } var file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_teleport_crownjewel_v1_crownjewel_service_proto_goTypes = []interface{}{ +var file_teleport_crownjewel_v1_crownjewel_service_proto_goTypes = []any{ (*CreateCrownJewelRequest)(nil), // 0: teleport.crownjewel.v1.CreateCrownJewelRequest (*GetCrownJewelRequest)(nil), // 1: teleport.crownjewel.v1.GetCrownJewelRequest (*ListCrownJewelsRequest)(nil), // 2: teleport.crownjewel.v1.ListCrownJewelsRequest @@ -551,7 +551,7 @@ func file_teleport_crownjewel_v1_crownjewel_service_proto_init() { } file_teleport_crownjewel_v1_crownjewel_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*CreateCrownJewelRequest); i { case 0: return &v.state @@ -563,7 +563,7 @@ func file_teleport_crownjewel_v1_crownjewel_service_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetCrownJewelRequest); i { case 0: return &v.state @@ -575,7 +575,7 @@ func file_teleport_crownjewel_v1_crownjewel_service_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListCrownJewelsRequest); i { case 0: return &v.state @@ -587,7 +587,7 @@ func file_teleport_crownjewel_v1_crownjewel_service_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ListCrownJewelsResponse); i { case 0: return &v.state @@ -599,7 +599,7 @@ func file_teleport_crownjewel_v1_crownjewel_service_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpdateCrownJewelRequest); i { case 0: return &v.state @@ -611,7 +611,7 @@ func file_teleport_crownjewel_v1_crownjewel_service_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpsertCrownJewelRequest); i { case 0: return &v.state @@ -623,7 +623,7 @@ func file_teleport_crownjewel_v1_crownjewel_service_proto_init() { return nil } } - file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_crownjewel_v1_crownjewel_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteCrownJewelRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/dbobject/v1/dbobject.pb.go b/api/gen/proto/go/teleport/dbobject/v1/dbobject.pb.go index 122300f36c198..a279eb18388db 100644 --- a/api/gen/proto/go/teleport/dbobject/v1/dbobject.pb.go +++ b/api/gen/proto/go/teleport/dbobject/v1/dbobject.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/dbobject/v1/dbobject.proto @@ -272,7 +272,7 @@ func file_teleport_dbobject_v1_dbobject_proto_rawDescGZIP() []byte { } var file_teleport_dbobject_v1_dbobject_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_dbobject_v1_dbobject_proto_goTypes = []interface{}{ +var file_teleport_dbobject_v1_dbobject_proto_goTypes = []any{ (*DatabaseObject)(nil), // 0: teleport.dbobject.v1.DatabaseObject (*DatabaseObjectSpec)(nil), // 1: teleport.dbobject.v1.DatabaseObjectSpec (*v1.Metadata)(nil), // 2: teleport.header.v1.Metadata @@ -293,7 +293,7 @@ func file_teleport_dbobject_v1_dbobject_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_dbobject_v1_dbobject_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobject_v1_dbobject_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DatabaseObject); i { case 0: return &v.state @@ -305,7 +305,7 @@ func file_teleport_dbobject_v1_dbobject_proto_init() { return nil } } - file_teleport_dbobject_v1_dbobject_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobject_v1_dbobject_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*DatabaseObjectSpec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/dbobject/v1/dbobject_service.pb.go b/api/gen/proto/go/teleport/dbobject/v1/dbobject_service.pb.go index e352413f504bb..712876623681d 100644 --- a/api/gen/proto/go/teleport/dbobject/v1/dbobject_service.pb.go +++ b/api/gen/proto/go/teleport/dbobject/v1/dbobject_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/dbobject/v1/dbobject_service.proto @@ -512,7 +512,7 @@ func file_teleport_dbobject_v1_dbobject_service_proto_rawDescGZIP() []byte { } var file_teleport_dbobject_v1_dbobject_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_teleport_dbobject_v1_dbobject_service_proto_goTypes = []interface{}{ +var file_teleport_dbobject_v1_dbobject_service_proto_goTypes = []any{ (*CreateDatabaseObjectRequest)(nil), // 0: teleport.dbobject.v1.CreateDatabaseObjectRequest (*GetDatabaseObjectRequest)(nil), // 1: teleport.dbobject.v1.GetDatabaseObjectRequest (*ListDatabaseObjectsRequest)(nil), // 2: teleport.dbobject.v1.ListDatabaseObjectsRequest @@ -554,7 +554,7 @@ func file_teleport_dbobject_v1_dbobject_service_proto_init() { } file_teleport_dbobject_v1_dbobject_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*CreateDatabaseObjectRequest); i { case 0: return &v.state @@ -566,7 +566,7 @@ func file_teleport_dbobject_v1_dbobject_service_proto_init() { return nil } } - file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetDatabaseObjectRequest); i { case 0: return &v.state @@ -578,7 +578,7 @@ func file_teleport_dbobject_v1_dbobject_service_proto_init() { return nil } } - file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListDatabaseObjectsRequest); i { case 0: return &v.state @@ -590,7 +590,7 @@ func file_teleport_dbobject_v1_dbobject_service_proto_init() { return nil } } - file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ListDatabaseObjectsResponse); i { case 0: return &v.state @@ -602,7 +602,7 @@ func file_teleport_dbobject_v1_dbobject_service_proto_init() { return nil } } - file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpdateDatabaseObjectRequest); i { case 0: return &v.state @@ -614,7 +614,7 @@ func file_teleport_dbobject_v1_dbobject_service_proto_init() { return nil } } - file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpsertDatabaseObjectRequest); i { case 0: return &v.state @@ -626,7 +626,7 @@ func file_teleport_dbobject_v1_dbobject_service_proto_init() { return nil } } - file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobject_v1_dbobject_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteDatabaseObjectRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/dbobjectimportrule/v1/dbobjectimportrule.pb.go b/api/gen/proto/go/teleport/dbobjectimportrule/v1/dbobjectimportrule.pb.go index 7c0e7941c1004..9efe30fd1e12c 100644 --- a/api/gen/proto/go/teleport/dbobjectimportrule/v1/dbobjectimportrule.pb.go +++ b/api/gen/proto/go/teleport/dbobjectimportrule/v1/dbobjectimportrule.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/dbobjectimportrule/v1/dbobjectimportrule.proto @@ -489,7 +489,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_rawDescGZIP() } var file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_goTypes = []interface{}{ +var file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_goTypes = []any{ (*DatabaseObjectImportRule)(nil), // 0: teleport.dbobjectimportrule.v1.DatabaseObjectImportRule (*DatabaseObjectImportRuleSpec)(nil), // 1: teleport.dbobjectimportrule.v1.DatabaseObjectImportRuleSpec (*DatabaseObjectImportRuleMapping)(nil), // 2: teleport.dbobjectimportrule.v1.DatabaseObjectImportRuleMapping @@ -520,7 +520,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DatabaseObjectImportRule); i { case 0: return &v.state @@ -532,7 +532,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_init() { return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*DatabaseObjectImportRuleSpec); i { case 0: return &v.state @@ -544,7 +544,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_init() { return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*DatabaseObjectImportRuleMapping); i { case 0: return &v.state @@ -556,7 +556,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_init() { return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*DatabaseObjectImportMatch); i { case 0: return &v.state @@ -568,7 +568,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_init() { return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*DatabaseObjectImportScope); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/dbobjectimportrule/v1/dbobjectimportrule_service.pb.go b/api/gen/proto/go/teleport/dbobjectimportrule/v1/dbobjectimportrule_service.pb.go index e111630c56318..21c766d1d7713 100644 --- a/api/gen/proto/go/teleport/dbobjectimportrule/v1/dbobjectimportrule_service.pb.go +++ b/api/gen/proto/go/teleport/dbobjectimportrule/v1/dbobjectimportrule_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/dbobjectimportrule/v1/dbobjectimportrule_service.proto @@ -543,7 +543,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_rawDes } var file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_goTypes = []interface{}{ +var file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_goTypes = []any{ (*CreateDatabaseObjectImportRuleRequest)(nil), // 0: teleport.dbobjectimportrule.v1.CreateDatabaseObjectImportRuleRequest (*GetDatabaseObjectImportRuleRequest)(nil), // 1: teleport.dbobjectimportrule.v1.GetDatabaseObjectImportRuleRequest (*ListDatabaseObjectImportRulesRequest)(nil), // 2: teleport.dbobjectimportrule.v1.ListDatabaseObjectImportRulesRequest @@ -585,7 +585,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_init() } file_teleport_dbobjectimportrule_v1_dbobjectimportrule_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*CreateDatabaseObjectImportRuleRequest); i { case 0: return &v.state @@ -597,7 +597,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_init() return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetDatabaseObjectImportRuleRequest); i { case 0: return &v.state @@ -609,7 +609,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_init() return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListDatabaseObjectImportRulesRequest); i { case 0: return &v.state @@ -621,7 +621,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_init() return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ListDatabaseObjectImportRulesResponse); i { case 0: return &v.state @@ -633,7 +633,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_init() return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpdateDatabaseObjectImportRuleRequest); i { case 0: return &v.state @@ -645,7 +645,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_init() return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpsertDatabaseObjectImportRuleRequest); i { case 0: return &v.state @@ -657,7 +657,7 @@ func file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_init() return nil } } - file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_dbobjectimportrule_v1_dbobjectimportrule_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteDatabaseObjectImportRuleRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/assert.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/assert.pb.go index 0efdc20200dfc..ef8f88442136d 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/assert.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/assert.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/assert.proto @@ -430,7 +430,7 @@ func file_teleport_devicetrust_v1_assert_proto_rawDescGZIP() []byte { } var file_teleport_devicetrust_v1_assert_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_teleport_devicetrust_v1_assert_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_assert_proto_goTypes = []any{ (*AssertDeviceRequest)(nil), // 0: teleport.devicetrust.v1.AssertDeviceRequest (*AssertDeviceResponse)(nil), // 1: teleport.devicetrust.v1.AssertDeviceResponse (*AssertDeviceInit)(nil), // 2: teleport.devicetrust.v1.AssertDeviceInit @@ -464,7 +464,7 @@ func file_teleport_devicetrust_v1_assert_proto_init() { file_teleport_devicetrust_v1_authenticate_challenge_proto_init() file_teleport_devicetrust_v1_device_collected_data_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_assert_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_assert_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AssertDeviceRequest); i { case 0: return &v.state @@ -476,7 +476,7 @@ func file_teleport_devicetrust_v1_assert_proto_init() { return nil } } - file_teleport_devicetrust_v1_assert_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_assert_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AssertDeviceResponse); i { case 0: return &v.state @@ -488,7 +488,7 @@ func file_teleport_devicetrust_v1_assert_proto_init() { return nil } } - file_teleport_devicetrust_v1_assert_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_assert_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*AssertDeviceInit); i { case 0: return &v.state @@ -500,7 +500,7 @@ func file_teleport_devicetrust_v1_assert_proto_init() { return nil } } - file_teleport_devicetrust_v1_assert_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_assert_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*DeviceAsserted); i { case 0: return &v.state @@ -513,12 +513,12 @@ func file_teleport_devicetrust_v1_assert_proto_init() { } } } - file_teleport_devicetrust_v1_assert_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_teleport_devicetrust_v1_assert_proto_msgTypes[0].OneofWrappers = []any{ (*AssertDeviceRequest_Init)(nil), (*AssertDeviceRequest_ChallengeResponse)(nil), (*AssertDeviceRequest_TpmChallengeResponse)(nil), } - file_teleport_devicetrust_v1_assert_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_teleport_devicetrust_v1_assert_proto_msgTypes[1].OneofWrappers = []any{ (*AssertDeviceResponse_Challenge)(nil), (*AssertDeviceResponse_TpmChallenge)(nil), (*AssertDeviceResponse_DeviceAsserted)(nil), diff --git a/api/gen/proto/go/teleport/devicetrust/v1/authenticate_challenge.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/authenticate_challenge.pb.go index 087fc953bf867..b0e32c964b09b 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/authenticate_challenge.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/authenticate_challenge.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/authenticate_challenge.proto @@ -289,7 +289,7 @@ func file_teleport_devicetrust_v1_authenticate_challenge_proto_rawDescGZIP() []b } var file_teleport_devicetrust_v1_authenticate_challenge_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_teleport_devicetrust_v1_authenticate_challenge_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_authenticate_challenge_proto_goTypes = []any{ (*AuthenticateDeviceChallenge)(nil), // 0: teleport.devicetrust.v1.AuthenticateDeviceChallenge (*AuthenticateDeviceChallengeResponse)(nil), // 1: teleport.devicetrust.v1.AuthenticateDeviceChallengeResponse (*TPMAuthenticateDeviceChallenge)(nil), // 2: teleport.devicetrust.v1.TPMAuthenticateDeviceChallenge @@ -312,7 +312,7 @@ func file_teleport_devicetrust_v1_authenticate_challenge_proto_init() { } file_teleport_devicetrust_v1_tpm_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_authenticate_challenge_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_authenticate_challenge_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AuthenticateDeviceChallenge); i { case 0: return &v.state @@ -324,7 +324,7 @@ func file_teleport_devicetrust_v1_authenticate_challenge_proto_init() { return nil } } - file_teleport_devicetrust_v1_authenticate_challenge_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_authenticate_challenge_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AuthenticateDeviceChallengeResponse); i { case 0: return &v.state @@ -336,7 +336,7 @@ func file_teleport_devicetrust_v1_authenticate_challenge_proto_init() { return nil } } - file_teleport_devicetrust_v1_authenticate_challenge_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_authenticate_challenge_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*TPMAuthenticateDeviceChallenge); i { case 0: return &v.state @@ -348,7 +348,7 @@ func file_teleport_devicetrust_v1_authenticate_challenge_proto_init() { return nil } } - file_teleport_devicetrust_v1_authenticate_challenge_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_authenticate_challenge_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*TPMAuthenticateDeviceChallengeResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/device.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/device.pb.go index c056635b58905..ea9fef7b84504 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/device.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/device.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/device.proto @@ -549,7 +549,7 @@ func file_teleport_devicetrust_v1_device_proto_rawDescGZIP() []byte { var file_teleport_devicetrust_v1_device_proto_enumTypes = make([]protoimpl.EnumInfo, 2) var file_teleport_devicetrust_v1_device_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_devicetrust_v1_device_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_device_proto_goTypes = []any{ (DeviceAttestationType)(0), // 0: teleport.devicetrust.v1.DeviceAttestationType (DeviceEnrollStatus)(0), // 1: teleport.devicetrust.v1.DeviceEnrollStatus (*Device)(nil), // 2: teleport.devicetrust.v1.Device @@ -590,7 +590,7 @@ func file_teleport_devicetrust_v1_device_proto_init() { file_teleport_devicetrust_v1_device_source_proto_init() file_teleport_devicetrust_v1_os_type_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_device_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_device_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Device); i { case 0: return &v.state @@ -602,7 +602,7 @@ func file_teleport_devicetrust_v1_device_proto_init() { return nil } } - file_teleport_devicetrust_v1_device_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_device_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*DeviceCredential); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/device_collected_data.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/device_collected_data.pb.go index 6fd9fc8786af0..cff7209256b38 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/device_collected_data.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/device_collected_data.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/device_collected_data.proto @@ -329,7 +329,7 @@ func file_teleport_devicetrust_v1_device_collected_data_proto_rawDescGZIP() []by } var file_teleport_devicetrust_v1_device_collected_data_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_devicetrust_v1_device_collected_data_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_device_collected_data_proto_goTypes = []any{ (*DeviceCollectedData)(nil), // 0: teleport.devicetrust.v1.DeviceCollectedData (*timestamppb.Timestamp)(nil), // 1: google.protobuf.Timestamp (OSType)(0), // 2: teleport.devicetrust.v1.OSType @@ -355,7 +355,7 @@ func file_teleport_devicetrust_v1_device_collected_data_proto_init() { file_teleport_devicetrust_v1_os_type_proto_init() file_teleport_devicetrust_v1_tpm_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_device_collected_data_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_device_collected_data_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DeviceCollectedData); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/device_confirmation_token.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/device_confirmation_token.pb.go index 0652a60a321bc..80204e2b31035 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/device_confirmation_token.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/device_confirmation_token.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/device_confirmation_token.proto @@ -134,7 +134,7 @@ func file_teleport_devicetrust_v1_device_confirmation_token_proto_rawDescGZIP() } var file_teleport_devicetrust_v1_device_confirmation_token_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_devicetrust_v1_device_confirmation_token_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_device_confirmation_token_proto_goTypes = []any{ (*DeviceConfirmationToken)(nil), // 0: teleport.devicetrust.v1.DeviceConfirmationToken } var file_teleport_devicetrust_v1_device_confirmation_token_proto_depIdxs = []int32{ @@ -151,7 +151,7 @@ func file_teleport_devicetrust_v1_device_confirmation_token_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_device_confirmation_token_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_device_confirmation_token_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DeviceConfirmationToken); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/device_enroll_token.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/device_enroll_token.pb.go index e43dab98b578a..b862bce1a60a8 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/device_enroll_token.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/device_enroll_token.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/device_enroll_token.proto @@ -133,7 +133,7 @@ func file_teleport_devicetrust_v1_device_enroll_token_proto_rawDescGZIP() []byte } var file_teleport_devicetrust_v1_device_enroll_token_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_devicetrust_v1_device_enroll_token_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_device_enroll_token_proto_goTypes = []any{ (*DeviceEnrollToken)(nil), // 0: teleport.devicetrust.v1.DeviceEnrollToken (*timestamppb.Timestamp)(nil), // 1: google.protobuf.Timestamp } @@ -152,7 +152,7 @@ func file_teleport_devicetrust_v1_device_enroll_token_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_device_enroll_token_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_device_enroll_token_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DeviceEnrollToken); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/device_profile.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/device_profile.pb.go index 61fc63b439a83..ca894044402b1 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/device_profile.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/device_profile.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/device_profile.proto @@ -223,7 +223,7 @@ func file_teleport_devicetrust_v1_device_profile_proto_rawDescGZIP() []byte { } var file_teleport_devicetrust_v1_device_profile_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_devicetrust_v1_device_profile_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_device_profile_proto_goTypes = []any{ (*DeviceProfile)(nil), // 0: teleport.devicetrust.v1.DeviceProfile (*timestamppb.Timestamp)(nil), // 1: google.protobuf.Timestamp } @@ -242,7 +242,7 @@ func file_teleport_devicetrust_v1_device_profile_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_device_profile_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_device_profile_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DeviceProfile); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/device_source.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/device_source.pb.go index a240c834db31a..1a0da79a82eb1 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/device_source.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/device_source.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/device_source.proto @@ -197,7 +197,7 @@ func file_teleport_devicetrust_v1_device_source_proto_rawDescGZIP() []byte { var file_teleport_devicetrust_v1_device_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_devicetrust_v1_device_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_devicetrust_v1_device_source_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_device_source_proto_goTypes = []any{ (DeviceOrigin)(0), // 0: teleport.devicetrust.v1.DeviceOrigin (*DeviceSource)(nil), // 1: teleport.devicetrust.v1.DeviceSource } @@ -216,7 +216,7 @@ func file_teleport_devicetrust_v1_device_source_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_device_source_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_device_source_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DeviceSource); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/device_web_token.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/device_web_token.pb.go index a6d479f902da3..c0eb3ddfde646 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/device_web_token.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/device_web_token.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/device_web_token.proto @@ -201,7 +201,7 @@ func file_teleport_devicetrust_v1_device_web_token_proto_rawDescGZIP() []byte { } var file_teleport_devicetrust_v1_device_web_token_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_devicetrust_v1_device_web_token_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_device_web_token_proto_goTypes = []any{ (*DeviceWebToken)(nil), // 0: teleport.devicetrust.v1.DeviceWebToken } var file_teleport_devicetrust_v1_device_web_token_proto_depIdxs = []int32{ @@ -218,7 +218,7 @@ func file_teleport_devicetrust_v1_device_web_token_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_device_web_token_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_device_web_token_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DeviceWebToken); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/devicetrust_service.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/devicetrust_service.pb.go index 4475d03fb4a23..25e4cf1bc6e97 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/devicetrust_service.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/devicetrust_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/devicetrust_service.proto @@ -3386,7 +3386,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_rawDescGZIP() []byte var file_teleport_devicetrust_v1_devicetrust_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes = make([]protoimpl.MessageInfo, 41) -var file_teleport_devicetrust_v1_devicetrust_service_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_devicetrust_service_proto_goTypes = []any{ (DeviceView)(0), // 0: teleport.devicetrust.v1.DeviceView (*CreateDeviceRequest)(nil), // 1: teleport.devicetrust.v1.CreateDeviceRequest (*UpdateDeviceRequest)(nil), // 2: teleport.devicetrust.v1.UpdateDeviceRequest @@ -3550,7 +3550,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { file_teleport_devicetrust_v1_usage_proto_init() file_teleport_devicetrust_v1_user_certificates_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*CreateDeviceRequest); i { case 0: return &v.state @@ -3562,7 +3562,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*UpdateDeviceRequest); i { case 0: return &v.state @@ -3574,7 +3574,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*UpsertDeviceRequest); i { case 0: return &v.state @@ -3586,7 +3586,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*DeleteDeviceRequest); i { case 0: return &v.state @@ -3598,7 +3598,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*FindDevicesRequest); i { case 0: return &v.state @@ -3610,7 +3610,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*FindDevicesResponse); i { case 0: return &v.state @@ -3622,7 +3622,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*GetDeviceRequest); i { case 0: return &v.state @@ -3634,7 +3634,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*ListDevicesRequest); i { case 0: return &v.state @@ -3646,7 +3646,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*ListDevicesResponse); i { case 0: return &v.state @@ -3658,7 +3658,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*ListDevicesByUserRequest); i { case 0: return &v.state @@ -3670,7 +3670,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*ListDevicesByUserResponse); i { case 0: return &v.state @@ -3682,7 +3682,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*BulkCreateDevicesRequest); i { case 0: return &v.state @@ -3694,7 +3694,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*BulkCreateDevicesResponse); i { case 0: return &v.state @@ -3706,7 +3706,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*DeviceOrStatus); i { case 0: return &v.state @@ -3718,7 +3718,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*CreateDeviceEnrollTokenRequest); i { case 0: return &v.state @@ -3730,7 +3730,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*EnrollDeviceRequest); i { case 0: return &v.state @@ -3742,7 +3742,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*EnrollDeviceResponse); i { case 0: return &v.state @@ -3754,7 +3754,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*EnrollDeviceInit); i { case 0: return &v.state @@ -3766,7 +3766,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*EnrollDeviceSuccess); i { case 0: return &v.state @@ -3778,7 +3778,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*MacOSEnrollPayload); i { case 0: return &v.state @@ -3790,7 +3790,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[20].Exporter = func(v any, i int) any { switch v := v.(*MacOSEnrollChallenge); i { case 0: return &v.state @@ -3802,7 +3802,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[21].Exporter = func(v any, i int) any { switch v := v.(*MacOSEnrollChallengeResponse); i { case 0: return &v.state @@ -3814,7 +3814,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[22].Exporter = func(v any, i int) any { switch v := v.(*TPMEnrollPayload); i { case 0: return &v.state @@ -3826,7 +3826,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[23].Exporter = func(v any, i int) any { switch v := v.(*TPMAttestationParameters); i { case 0: return &v.state @@ -3838,7 +3838,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[24].Exporter = func(v any, i int) any { switch v := v.(*TPMEnrollChallenge); i { case 0: return &v.state @@ -3850,7 +3850,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[25].Exporter = func(v any, i int) any { switch v := v.(*TPMEncryptedCredential); i { case 0: return &v.state @@ -3862,7 +3862,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[26].Exporter = func(v any, i int) any { switch v := v.(*TPMEnrollChallengeResponse); i { case 0: return &v.state @@ -3874,7 +3874,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[27].Exporter = func(v any, i int) any { switch v := v.(*AuthenticateDeviceRequest); i { case 0: return &v.state @@ -3886,7 +3886,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[28].Exporter = func(v any, i int) any { switch v := v.(*AuthenticateDeviceResponse); i { case 0: return &v.state @@ -3898,7 +3898,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[29].Exporter = func(v any, i int) any { switch v := v.(*AuthenticateDeviceInit); i { case 0: return &v.state @@ -3910,7 +3910,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[30].Exporter = func(v any, i int) any { switch v := v.(*ConfirmDeviceWebAuthenticationRequest); i { case 0: return &v.state @@ -3922,7 +3922,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[31].Exporter = func(v any, i int) any { switch v := v.(*ConfirmDeviceWebAuthenticationResponse); i { case 0: return &v.state @@ -3934,7 +3934,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[32].Exporter = func(v any, i int) any { switch v := v.(*SyncInventoryRequest); i { case 0: return &v.state @@ -3946,7 +3946,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[33].Exporter = func(v any, i int) any { switch v := v.(*SyncInventoryResponse); i { case 0: return &v.state @@ -3958,7 +3958,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[34].Exporter = func(v any, i int) any { switch v := v.(*SyncInventoryStart); i { case 0: return &v.state @@ -3970,7 +3970,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[35].Exporter = func(v any, i int) any { switch v := v.(*SyncInventoryEnd); i { case 0: return &v.state @@ -3982,7 +3982,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[36].Exporter = func(v any, i int) any { switch v := v.(*SyncInventoryDevices); i { case 0: return &v.state @@ -3994,7 +3994,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[37].Exporter = func(v any, i int) any { switch v := v.(*SyncInventoryAck); i { case 0: return &v.state @@ -4006,7 +4006,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[38].Exporter = func(v any, i int) any { switch v := v.(*SyncInventoryResult); i { case 0: return &v.state @@ -4018,7 +4018,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[39].Exporter = func(v any, i int) any { switch v := v.(*SyncInventoryMissingDevices); i { case 0: return &v.state @@ -4030,7 +4030,7 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { return nil } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[40].Exporter = func(v any, i int) any { switch v := v.(*GetDevicesUsageRequest); i { case 0: return &v.state @@ -4043,38 +4043,38 @@ func file_teleport_devicetrust_v1_devicetrust_service_proto_init() { } } } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[15].OneofWrappers = []interface{}{ + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[15].OneofWrappers = []any{ (*EnrollDeviceRequest_Init)(nil), (*EnrollDeviceRequest_MacosChallengeResponse)(nil), (*EnrollDeviceRequest_TpmChallengeResponse)(nil), } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[16].OneofWrappers = []interface{}{ + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[16].OneofWrappers = []any{ (*EnrollDeviceResponse_Success)(nil), (*EnrollDeviceResponse_MacosChallenge)(nil), (*EnrollDeviceResponse_TpmChallenge)(nil), } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[22].OneofWrappers = []interface{}{ + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[22].OneofWrappers = []any{ (*TPMEnrollPayload_EkCert)(nil), (*TPMEnrollPayload_EkKey)(nil), } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[27].OneofWrappers = []interface{}{ + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[27].OneofWrappers = []any{ (*AuthenticateDeviceRequest_Init)(nil), (*AuthenticateDeviceRequest_ChallengeResponse)(nil), (*AuthenticateDeviceRequest_TpmChallengeResponse)(nil), } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[28].OneofWrappers = []interface{}{ + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[28].OneofWrappers = []any{ (*AuthenticateDeviceResponse_Challenge)(nil), (*AuthenticateDeviceResponse_UserCertificates)(nil), (*AuthenticateDeviceResponse_TpmChallenge)(nil), (*AuthenticateDeviceResponse_ConfirmationToken)(nil), } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[32].OneofWrappers = []interface{}{ + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[32].OneofWrappers = []any{ (*SyncInventoryRequest_Start)(nil), (*SyncInventoryRequest_End)(nil), (*SyncInventoryRequest_DevicesToUpsert)(nil), (*SyncInventoryRequest_DevicesToRemove)(nil), } - file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[33].OneofWrappers = []interface{}{ + file_teleport_devicetrust_v1_devicetrust_service_proto_msgTypes[33].OneofWrappers = []any{ (*SyncInventoryResponse_Ack)(nil), (*SyncInventoryResponse_Result)(nil), (*SyncInventoryResponse_MissingDevices)(nil), diff --git a/api/gen/proto/go/teleport/devicetrust/v1/os_type.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/os_type.pb.go index 7af0663bcba61..aa09d404fec03 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/os_type.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/os_type.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/os_type.proto @@ -125,7 +125,7 @@ func file_teleport_devicetrust_v1_os_type_proto_rawDescGZIP() []byte { } var file_teleport_devicetrust_v1_os_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_teleport_devicetrust_v1_os_type_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_os_type_proto_goTypes = []any{ (OSType)(0), // 0: teleport.devicetrust.v1.OSType } var file_teleport_devicetrust_v1_os_type_proto_depIdxs = []int32{ diff --git a/api/gen/proto/go/teleport/devicetrust/v1/tpm.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/tpm.pb.go index 09ec405587484..4d2b84051b277 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/tpm.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/tpm.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/tpm.proto @@ -345,7 +345,7 @@ func file_teleport_devicetrust_v1_tpm_proto_rawDescGZIP() []byte { } var file_teleport_devicetrust_v1_tpm_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_teleport_devicetrust_v1_tpm_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_tpm_proto_goTypes = []any{ (*TPMPCR)(nil), // 0: teleport.devicetrust.v1.TPMPCR (*TPMQuote)(nil), // 1: teleport.devicetrust.v1.TPMQuote (*TPMPlatformParameters)(nil), // 2: teleport.devicetrust.v1.TPMPlatformParameters @@ -368,7 +368,7 @@ func file_teleport_devicetrust_v1_tpm_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_tpm_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_tpm_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*TPMPCR); i { case 0: return &v.state @@ -380,7 +380,7 @@ func file_teleport_devicetrust_v1_tpm_proto_init() { return nil } } - file_teleport_devicetrust_v1_tpm_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_tpm_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*TPMQuote); i { case 0: return &v.state @@ -392,7 +392,7 @@ func file_teleport_devicetrust_v1_tpm_proto_init() { return nil } } - file_teleport_devicetrust_v1_tpm_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_tpm_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*TPMPlatformParameters); i { case 0: return &v.state @@ -404,7 +404,7 @@ func file_teleport_devicetrust_v1_tpm_proto_init() { return nil } } - file_teleport_devicetrust_v1_tpm_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_tpm_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*TPMPlatformAttestation); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/usage.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/usage.pb.go index e4e90e9477f1b..50b9067694eca 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/usage.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/usage.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/usage.proto @@ -166,7 +166,7 @@ func file_teleport_devicetrust_v1_usage_proto_rawDescGZIP() []byte { var file_teleport_devicetrust_v1_usage_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_devicetrust_v1_usage_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_devicetrust_v1_usage_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_usage_proto_goTypes = []any{ (AccountUsageType)(0), // 0: teleport.devicetrust.v1.AccountUsageType (*DevicesUsage)(nil), // 1: teleport.devicetrust.v1.DevicesUsage } @@ -184,7 +184,7 @@ func file_teleport_devicetrust_v1_usage_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_usage_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_usage_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DevicesUsage); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/devicetrust/v1/user_certificates.pb.go b/api/gen/proto/go/teleport/devicetrust/v1/user_certificates.pb.go index bdc95e58ab8fe..06622561ed2cb 100644 --- a/api/gen/proto/go/teleport/devicetrust/v1/user_certificates.pb.go +++ b/api/gen/proto/go/teleport/devicetrust/v1/user_certificates.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/devicetrust/v1/user_certificates.proto @@ -129,7 +129,7 @@ func file_teleport_devicetrust_v1_user_certificates_proto_rawDescGZIP() []byte { } var file_teleport_devicetrust_v1_user_certificates_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_devicetrust_v1_user_certificates_proto_goTypes = []interface{}{ +var file_teleport_devicetrust_v1_user_certificates_proto_goTypes = []any{ (*UserCertificates)(nil), // 0: teleport.devicetrust.v1.UserCertificates } var file_teleport_devicetrust_v1_user_certificates_proto_depIdxs = []int32{ @@ -146,7 +146,7 @@ func file_teleport_devicetrust_v1_user_certificates_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_devicetrust_v1_user_certificates_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_devicetrust_v1_user_certificates_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*UserCertificates); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig.pb.go b/api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig.pb.go index 0aed057807057..d6b3d95a629ae 100644 --- a/api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig.pb.go +++ b/api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/discoveryconfig/v1/discoveryconfig.proto @@ -624,7 +624,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_proto_rawDescGZIP() []byte var file_teleport_discoveryconfig_v1_discoveryconfig_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_teleport_discoveryconfig_v1_discoveryconfig_proto_goTypes = []interface{}{ +var file_teleport_discoveryconfig_v1_discoveryconfig_proto_goTypes = []any{ (DiscoveryConfigState)(0), // 0: teleport.discoveryconfig.v1.DiscoveryConfigState (*DiscoveryConfig)(nil), // 1: teleport.discoveryconfig.v1.DiscoveryConfig (*DiscoveryConfigSpec)(nil), // 2: teleport.discoveryconfig.v1.DiscoveryConfigSpec @@ -669,7 +669,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DiscoveryConfig); i { case 0: return &v.state @@ -681,7 +681,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*DiscoveryConfigSpec); i { case 0: return &v.state @@ -693,7 +693,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*DiscoveryConfigStatus); i { case 0: return &v.state @@ -705,7 +705,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*IntegrationDiscoveredSummary); i { case 0: return &v.state @@ -717,7 +717,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ResourcesDiscoveredSummary); i { case 0: return &v.state @@ -730,7 +730,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_proto_init() { } } } - file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[2].OneofWrappers = []interface{}{} + file_teleport_discoveryconfig_v1_discoveryconfig_proto_msgTypes[2].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ diff --git a/api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig_service.pb.go b/api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig_service.pb.go index 1ffb53e71af86..566c4938a9049 100644 --- a/api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig_service.pb.go +++ b/api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/discoveryconfig/v1/discoveryconfig_service.proto @@ -661,7 +661,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_rawDescGZIP( } var file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_goTypes = []interface{}{ +var file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_goTypes = []any{ (*ListDiscoveryConfigsRequest)(nil), // 0: teleport.discoveryconfig.v1.ListDiscoveryConfigsRequest (*ListDiscoveryConfigsResponse)(nil), // 1: teleport.discoveryconfig.v1.ListDiscoveryConfigsResponse (*GetDiscoveryConfigRequest)(nil), // 2: teleport.discoveryconfig.v1.GetDiscoveryConfigRequest @@ -711,7 +711,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_init() { } file_teleport_discoveryconfig_v1_discoveryconfig_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ListDiscoveryConfigsRequest); i { case 0: return &v.state @@ -723,7 +723,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ListDiscoveryConfigsResponse); i { case 0: return &v.state @@ -735,7 +735,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetDiscoveryConfigRequest); i { case 0: return &v.state @@ -747,7 +747,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*CreateDiscoveryConfigRequest); i { case 0: return &v.state @@ -759,7 +759,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpdateDiscoveryConfigRequest); i { case 0: return &v.state @@ -771,7 +771,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpsertDiscoveryConfigRequest); i { case 0: return &v.state @@ -783,7 +783,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteDiscoveryConfigRequest); i { case 0: return &v.state @@ -795,7 +795,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*DeleteAllDiscoveryConfigsRequest); i { case 0: return &v.state @@ -807,7 +807,7 @@ func file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_init() { return nil } } - file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_discoveryconfig_v1_discoveryconfig_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*UpdateDiscoveryConfigStatusRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/embedding/v1/embedding.pb.go b/api/gen/proto/go/teleport/embedding/v1/embedding.pb.go index ef63d4694b527..e35341ba75a99 100644 --- a/api/gen/proto/go/teleport/embedding/v1/embedding.pb.go +++ b/api/gen/proto/go/teleport/embedding/v1/embedding.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/embedding/v1/embedding.proto @@ -151,7 +151,7 @@ func file_teleport_embedding_v1_embedding_proto_rawDescGZIP() []byte { } var file_teleport_embedding_v1_embedding_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_embedding_v1_embedding_proto_goTypes = []interface{}{ +var file_teleport_embedding_v1_embedding_proto_goTypes = []any{ (*Embedding)(nil), // 0: teleport.embedding.v1.Embedding } var file_teleport_embedding_v1_embedding_proto_depIdxs = []int32{ @@ -168,7 +168,7 @@ func file_teleport_embedding_v1_embedding_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_embedding_v1_embedding_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_embedding_v1_embedding_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Embedding); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/externalauditstorage/v1/externalauditstorage.pb.go b/api/gen/proto/go/teleport/externalauditstorage/v1/externalauditstorage.pb.go index c198ad22f0930..336a8833045d1 100644 --- a/api/gen/proto/go/teleport/externalauditstorage/v1/externalauditstorage.pb.go +++ b/api/gen/proto/go/teleport/externalauditstorage/v1/externalauditstorage.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/externalauditstorage/v1/externalauditstorage.proto @@ -290,7 +290,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_proto_rawDescGZI } var file_teleport_externalauditstorage_v1_externalauditstorage_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_externalauditstorage_v1_externalauditstorage_proto_goTypes = []interface{}{ +var file_teleport_externalauditstorage_v1_externalauditstorage_proto_goTypes = []any{ (*ExternalAuditStorage)(nil), // 0: teleport.externalauditstorage.v1.ExternalAuditStorage (*ExternalAuditStorageSpec)(nil), // 1: teleport.externalauditstorage.v1.ExternalAuditStorageSpec (*v1.ResourceHeader)(nil), // 2: teleport.header.v1.ResourceHeader @@ -311,7 +311,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_externalauditstorage_v1_externalauditstorage_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ExternalAuditStorage); i { case 0: return &v.state @@ -323,7 +323,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_proto_init() { return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ExternalAuditStorageSpec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/externalauditstorage/v1/externalauditstorage_service.pb.go b/api/gen/proto/go/teleport/externalauditstorage/v1/externalauditstorage_service.pb.go index 7be704847cd7a..493214b7d5c16 100644 --- a/api/gen/proto/go/teleport/externalauditstorage/v1/externalauditstorage_service.pb.go +++ b/api/gen/proto/go/teleport/externalauditstorage/v1/externalauditstorage_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/externalauditstorage/v1/externalauditstorage_service.proto @@ -1216,7 +1216,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_ra } var file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes = make([]protoimpl.MessageInfo, 20) -var file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_goTypes = []interface{}{ +var file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_goTypes = []any{ (*GetDraftExternalAuditStorageRequest)(nil), // 0: teleport.externalauditstorage.v1.GetDraftExternalAuditStorageRequest (*GetDraftExternalAuditStorageResponse)(nil), // 1: teleport.externalauditstorage.v1.GetDraftExternalAuditStorageResponse (*CreateDraftExternalAuditStorageRequest)(nil), // 2: teleport.externalauditstorage.v1.CreateDraftExternalAuditStorageRequest @@ -1285,7 +1285,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in } file_teleport_externalauditstorage_v1_externalauditstorage_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetDraftExternalAuditStorageRequest); i { case 0: return &v.state @@ -1297,7 +1297,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetDraftExternalAuditStorageResponse); i { case 0: return &v.state @@ -1309,7 +1309,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*CreateDraftExternalAuditStorageRequest); i { case 0: return &v.state @@ -1321,7 +1321,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*CreateDraftExternalAuditStorageResponse); i { case 0: return &v.state @@ -1333,7 +1333,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpsertDraftExternalAuditStorageRequest); i { case 0: return &v.state @@ -1345,7 +1345,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpsertDraftExternalAuditStorageResponse); i { case 0: return &v.state @@ -1357,7 +1357,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteDraftExternalAuditStorageRequest); i { case 0: return &v.state @@ -1369,7 +1369,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*PromoteToClusterExternalAuditStorageRequest); i { case 0: return &v.state @@ -1381,7 +1381,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*PromoteToClusterExternalAuditStorageResponse); i { case 0: return &v.state @@ -1393,7 +1393,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*GetClusterExternalAuditStorageRequest); i { case 0: return &v.state @@ -1405,7 +1405,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*GetClusterExternalAuditStorageResponse); i { case 0: return &v.state @@ -1417,7 +1417,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*DisableClusterExternalAuditStorageRequest); i { case 0: return &v.state @@ -1429,7 +1429,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*GenerateDraftExternalAuditStorageRequest); i { case 0: return &v.state @@ -1441,7 +1441,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*GenerateDraftExternalAuditStorageResponse); i { case 0: return &v.state @@ -1453,7 +1453,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*TestDraftExternalAuditStorageBucketsRequest); i { case 0: return &v.state @@ -1465,7 +1465,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*TestDraftExternalAuditStorageBucketsResponse); i { case 0: return &v.state @@ -1477,7 +1477,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*TestDraftExternalAuditStorageGlueRequest); i { case 0: return &v.state @@ -1489,7 +1489,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*TestDraftExternalAuditStorageGlueResponse); i { case 0: return &v.state @@ -1501,7 +1501,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*TestDraftExternalAuditStorageAthenaRequest); i { case 0: return &v.state @@ -1513,7 +1513,7 @@ func file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_in return nil } } - file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_teleport_externalauditstorage_v1_externalauditstorage_service_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*TestDraftExternalAuditStorageAthenaResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/header/v1/metadata.pb.go b/api/gen/proto/go/teleport/header/v1/metadata.pb.go index cdb2940dfef6e..8228fd012fbb1 100644 --- a/api/gen/proto/go/teleport/header/v1/metadata.pb.go +++ b/api/gen/proto/go/teleport/header/v1/metadata.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/header/v1/metadata.proto @@ -182,7 +182,7 @@ func file_teleport_header_v1_metadata_proto_rawDescGZIP() []byte { } var file_teleport_header_v1_metadata_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_header_v1_metadata_proto_goTypes = []interface{}{ +var file_teleport_header_v1_metadata_proto_goTypes = []any{ (*Metadata)(nil), // 0: teleport.header.v1.Metadata nil, // 1: teleport.header.v1.Metadata.LabelsEntry (*timestamppb.Timestamp)(nil), // 2: google.protobuf.Timestamp @@ -203,7 +203,7 @@ func file_teleport_header_v1_metadata_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_header_v1_metadata_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_header_v1_metadata_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Metadata); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/header/v1/resourceheader.pb.go b/api/gen/proto/go/teleport/header/v1/resourceheader.pb.go index 1241518ab54ce..2d83e877f08a6 100644 --- a/api/gen/proto/go/teleport/header/v1/resourceheader.pb.go +++ b/api/gen/proto/go/teleport/header/v1/resourceheader.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/header/v1/resourceheader.proto @@ -152,7 +152,7 @@ func file_teleport_header_v1_resourceheader_proto_rawDescGZIP() []byte { } var file_teleport_header_v1_resourceheader_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_header_v1_resourceheader_proto_goTypes = []interface{}{ +var file_teleport_header_v1_resourceheader_proto_goTypes = []any{ (*ResourceHeader)(nil), // 0: teleport.header.v1.ResourceHeader (*Metadata)(nil), // 1: teleport.header.v1.Metadata } @@ -172,7 +172,7 @@ func file_teleport_header_v1_resourceheader_proto_init() { } file_teleport_header_v1_metadata_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_header_v1_resourceheader_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_header_v1_resourceheader_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ResourceHeader); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/integration/v1/awsoidc_service.pb.go b/api/gen/proto/go/teleport/integration/v1/awsoidc_service.pb.go index 07aa0a77c6a1f..10700ebef5a93 100644 --- a/api/gen/proto/go/teleport/integration/v1/awsoidc_service.pb.go +++ b/api/gen/proto/go/teleport/integration/v1/awsoidc_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/integration/v1/awsoidc_service.proto @@ -3326,7 +3326,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_rawDescGZIP() []byte { } var file_teleport_integration_v1_awsoidc_service_proto_msgTypes = make([]protoimpl.MessageInfo, 40) -var file_teleport_integration_v1_awsoidc_service_proto_goTypes = []interface{}{ +var file_teleport_integration_v1_awsoidc_service_proto_goTypes = []any{ (*ListEICERequest)(nil), // 0: teleport.integration.v1.ListEICERequest (*EC2InstanceConnectEndpoint)(nil), // 1: teleport.integration.v1.EC2InstanceConnectEndpoint (*ListEICEResponse)(nil), // 2: teleport.integration.v1.ListEICEResponse @@ -3428,7 +3428,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ListEICERequest); i { case 0: return &v.state @@ -3440,7 +3440,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*EC2InstanceConnectEndpoint); i { case 0: return &v.state @@ -3452,7 +3452,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListEICEResponse); i { case 0: return &v.state @@ -3464,7 +3464,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*CreateEICERequest); i { case 0: return &v.state @@ -3476,7 +3476,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*EC2ICEndpoint); i { case 0: return &v.state @@ -3488,7 +3488,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*CreateEICEResponse); i { case 0: return &v.state @@ -3500,7 +3500,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*ListDatabasesRequest); i { case 0: return &v.state @@ -3512,7 +3512,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*ListDatabasesResponse); i { case 0: return &v.state @@ -3524,7 +3524,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*ListSecurityGroupsRequest); i { case 0: return &v.state @@ -3536,7 +3536,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*SecurityGroupRuleCIDR); i { case 0: return &v.state @@ -3548,7 +3548,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*SecurityGroupRuleGroupID); i { case 0: return &v.state @@ -3560,7 +3560,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*SecurityGroupRule); i { case 0: return &v.state @@ -3572,7 +3572,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*SecurityGroup); i { case 0: return &v.state @@ -3584,7 +3584,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*ListSecurityGroupsResponse); i { case 0: return &v.state @@ -3596,7 +3596,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*ListSubnetsRequest); i { case 0: return &v.state @@ -3608,7 +3608,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*Subnet); i { case 0: return &v.state @@ -3620,7 +3620,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*ListSubnetsResponse); i { case 0: return &v.state @@ -3632,7 +3632,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*ListVPCsRequest); i { case 0: return &v.state @@ -3644,7 +3644,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*VPC); i { case 0: return &v.state @@ -3656,7 +3656,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*ListVPCsResponse); i { case 0: return &v.state @@ -3668,7 +3668,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[20].Exporter = func(v any, i int) any { switch v := v.(*DeployDatabaseServiceRequest); i { case 0: return &v.state @@ -3680,7 +3680,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[21].Exporter = func(v any, i int) any { switch v := v.(*DeployDatabaseServiceDeployment); i { case 0: return &v.state @@ -3692,7 +3692,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[22].Exporter = func(v any, i int) any { switch v := v.(*DeployDatabaseServiceResponse); i { case 0: return &v.state @@ -3704,7 +3704,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[23].Exporter = func(v any, i int) any { switch v := v.(*ListDeployedDatabaseServicesRequest); i { case 0: return &v.state @@ -3716,7 +3716,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[24].Exporter = func(v any, i int) any { switch v := v.(*DeployedDatabaseService); i { case 0: return &v.state @@ -3728,7 +3728,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[25].Exporter = func(v any, i int) any { switch v := v.(*ListDeployedDatabaseServicesResponse); i { case 0: return &v.state @@ -3740,7 +3740,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[26].Exporter = func(v any, i int) any { switch v := v.(*DeployServiceRequest); i { case 0: return &v.state @@ -3752,7 +3752,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[27].Exporter = func(v any, i int) any { switch v := v.(*DeployServiceResponse); i { case 0: return &v.state @@ -3764,7 +3764,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[28].Exporter = func(v any, i int) any { switch v := v.(*EnrollEKSClustersRequest); i { case 0: return &v.state @@ -3776,7 +3776,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[29].Exporter = func(v any, i int) any { switch v := v.(*EnrollEKSClusterResult); i { case 0: return &v.state @@ -3788,7 +3788,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[30].Exporter = func(v any, i int) any { switch v := v.(*EnrollEKSClustersResponse); i { case 0: return &v.state @@ -3800,7 +3800,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[31].Exporter = func(v any, i int) any { switch v := v.(*ListEC2Request); i { case 0: return &v.state @@ -3812,7 +3812,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[32].Exporter = func(v any, i int) any { switch v := v.(*ListEC2Response); i { case 0: return &v.state @@ -3824,7 +3824,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[33].Exporter = func(v any, i int) any { switch v := v.(*ListEKSClustersRequest); i { case 0: return &v.state @@ -3836,7 +3836,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[34].Exporter = func(v any, i int) any { switch v := v.(*EKSCluster); i { case 0: return &v.state @@ -3848,7 +3848,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[35].Exporter = func(v any, i int) any { switch v := v.(*ListEKSClustersResponse); i { case 0: return &v.state @@ -3860,7 +3860,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[36].Exporter = func(v any, i int) any { switch v := v.(*PingRequest); i { case 0: return &v.state @@ -3872,7 +3872,7 @@ func file_teleport_integration_v1_awsoidc_service_proto_init() { return nil } } - file_teleport_integration_v1_awsoidc_service_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_awsoidc_service_proto_msgTypes[37].Exporter = func(v any, i int) any { switch v := v.(*PingResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/integration/v1/integration_service.pb.go b/api/gen/proto/go/teleport/integration/v1/integration_service.pb.go index 6dd485f9c3cf3..e5f0823a4d48f 100644 --- a/api/gen/proto/go/teleport/integration/v1/integration_service.pb.go +++ b/api/gen/proto/go/teleport/integration/v1/integration_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/integration/v1/integration_service.proto @@ -635,7 +635,7 @@ func file_teleport_integration_v1_integration_service_proto_rawDescGZIP() []byte } var file_teleport_integration_v1_integration_service_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_teleport_integration_v1_integration_service_proto_goTypes = []interface{}{ +var file_teleport_integration_v1_integration_service_proto_goTypes = []any{ (*ListIntegrationsRequest)(nil), // 0: teleport.integration.v1.ListIntegrationsRequest (*ListIntegrationsResponse)(nil), // 1: teleport.integration.v1.ListIntegrationsResponse (*GetIntegrationRequest)(nil), // 2: teleport.integration.v1.GetIntegrationRequest @@ -679,7 +679,7 @@ func file_teleport_integration_v1_integration_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_integration_v1_integration_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_integration_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ListIntegrationsRequest); i { case 0: return &v.state @@ -691,7 +691,7 @@ func file_teleport_integration_v1_integration_service_proto_init() { return nil } } - file_teleport_integration_v1_integration_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_integration_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ListIntegrationsResponse); i { case 0: return &v.state @@ -703,7 +703,7 @@ func file_teleport_integration_v1_integration_service_proto_init() { return nil } } - file_teleport_integration_v1_integration_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_integration_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetIntegrationRequest); i { case 0: return &v.state @@ -715,7 +715,7 @@ func file_teleport_integration_v1_integration_service_proto_init() { return nil } } - file_teleport_integration_v1_integration_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_integration_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*CreateIntegrationRequest); i { case 0: return &v.state @@ -727,7 +727,7 @@ func file_teleport_integration_v1_integration_service_proto_init() { return nil } } - file_teleport_integration_v1_integration_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_integration_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpdateIntegrationRequest); i { case 0: return &v.state @@ -739,7 +739,7 @@ func file_teleport_integration_v1_integration_service_proto_init() { return nil } } - file_teleport_integration_v1_integration_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_integration_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*DeleteIntegrationRequest); i { case 0: return &v.state @@ -751,7 +751,7 @@ func file_teleport_integration_v1_integration_service_proto_init() { return nil } } - file_teleport_integration_v1_integration_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_integration_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteAllIntegrationsRequest); i { case 0: return &v.state @@ -763,7 +763,7 @@ func file_teleport_integration_v1_integration_service_proto_init() { return nil } } - file_teleport_integration_v1_integration_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_integration_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*GenerateAWSOIDCTokenRequest); i { case 0: return &v.state @@ -775,7 +775,7 @@ func file_teleport_integration_v1_integration_service_proto_init() { return nil } } - file_teleport_integration_v1_integration_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_integration_v1_integration_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*GenerateAWSOIDCTokenResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/kube/v1/kube_service.pb.go b/api/gen/proto/go/teleport/kube/v1/kube_service.pb.go index 661ae6bdeb1bb..fe29cc410c567 100644 --- a/api/gen/proto/go/teleport/kube/v1/kube_service.pb.go +++ b/api/gen/proto/go/teleport/kube/v1/kube_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/kube/v1/kube_service.proto @@ -359,7 +359,7 @@ func file_teleport_kube_v1_kube_service_proto_rawDescGZIP() []byte { } var file_teleport_kube_v1_kube_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_teleport_kube_v1_kube_service_proto_goTypes = []interface{}{ +var file_teleport_kube_v1_kube_service_proto_goTypes = []any{ (*ListKubernetesResourcesRequest)(nil), // 0: teleport.kube.v1.ListKubernetesResourcesRequest (*ListKubernetesResourcesResponse)(nil), // 1: teleport.kube.v1.ListKubernetesResourcesResponse nil, // 2: teleport.kube.v1.ListKubernetesResourcesRequest.LabelsEntry @@ -385,7 +385,7 @@ func file_teleport_kube_v1_kube_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_kube_v1_kube_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_kube_v1_kube_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ListKubernetesResourcesRequest); i { case 0: return &v.state @@ -397,7 +397,7 @@ func file_teleport_kube_v1_kube_service_proto_init() { return nil } } - file_teleport_kube_v1_kube_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_kube_v1_kube_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ListKubernetesResourcesResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/kubewaitingcontainer/v1/kubewaitingcontainer.pb.go b/api/gen/proto/go/teleport/kubewaitingcontainer/v1/kubewaitingcontainer.pb.go index 430158734350f..0182ab9262033 100644 --- a/api/gen/proto/go/teleport/kubewaitingcontainer/v1/kubewaitingcontainer.pb.go +++ b/api/gen/proto/go/teleport/kubewaitingcontainer/v1/kubewaitingcontainer.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/kubewaitingcontainer/v1/kubewaitingcontainer.proto @@ -290,7 +290,7 @@ func file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_rawDescGZI } var file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_goTypes = []interface{}{ +var file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_goTypes = []any{ (*KubernetesWaitingContainer)(nil), // 0: teleport.kubewaitingcontainer.v1.KubernetesWaitingContainer (*KubernetesWaitingContainerSpec)(nil), // 1: teleport.kubewaitingcontainer.v1.KubernetesWaitingContainerSpec (*v1.Metadata)(nil), // 2: teleport.header.v1.Metadata @@ -311,7 +311,7 @@ func file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*KubernetesWaitingContainer); i { case 0: return &v.state @@ -323,7 +323,7 @@ func file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_init() { return nil } } - file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*KubernetesWaitingContainerSpec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/kubewaitingcontainer/v1/kubewaitingcontainer_service.pb.go b/api/gen/proto/go/teleport/kubewaitingcontainer/v1/kubewaitingcontainer_service.pb.go index 26975c6922f9c..7c42b2c4c2333 100644 --- a/api/gen/proto/go/teleport/kubewaitingcontainer/v1/kubewaitingcontainer_service.pb.go +++ b/api/gen/proto/go/teleport/kubewaitingcontainer/v1/kubewaitingcontainer_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/kubewaitingcontainer/v1/kubewaitingcontainer_service.proto @@ -504,7 +504,7 @@ func file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_ra } var file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_goTypes = []interface{}{ +var file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_goTypes = []any{ (*ListKubernetesWaitingContainersRequest)(nil), // 0: teleport.kubewaitingcontainer.v1.ListKubernetesWaitingContainersRequest (*ListKubernetesWaitingContainersResponse)(nil), // 1: teleport.kubewaitingcontainer.v1.ListKubernetesWaitingContainersResponse (*GetKubernetesWaitingContainerRequest)(nil), // 2: teleport.kubewaitingcontainer.v1.GetKubernetesWaitingContainerRequest @@ -538,7 +538,7 @@ func file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_in } file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ListKubernetesWaitingContainersRequest); i { case 0: return &v.state @@ -550,7 +550,7 @@ func file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_in return nil } } - file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ListKubernetesWaitingContainersResponse); i { case 0: return &v.state @@ -562,7 +562,7 @@ func file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_in return nil } } - file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetKubernetesWaitingContainerRequest); i { case 0: return &v.state @@ -574,7 +574,7 @@ func file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_in return nil } } - file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*CreateKubernetesWaitingContainerRequest); i { case 0: return &v.state @@ -586,7 +586,7 @@ func file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_in return nil } } - file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_kubewaitingcontainer_v1_kubewaitingcontainer_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*DeleteKubernetesWaitingContainerRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/label/v1/label.pb.go b/api/gen/proto/go/teleport/label/v1/label.pb.go index b43a962f4148c..4e68929981f16 100644 --- a/api/gen/proto/go/teleport/label/v1/label.pb.go +++ b/api/gen/proto/go/teleport/label/v1/label.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/label/v1/label.proto @@ -122,7 +122,7 @@ func file_teleport_label_v1_label_proto_rawDescGZIP() []byte { } var file_teleport_label_v1_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_label_v1_label_proto_goTypes = []interface{}{ +var file_teleport_label_v1_label_proto_goTypes = []any{ (*Label)(nil), // 0: teleport.label.v1.Label } var file_teleport_label_v1_label_proto_depIdxs = []int32{ @@ -139,7 +139,7 @@ func file_teleport_label_v1_label_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_label_v1_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_label_v1_label_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Label); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/loginrule/v1/loginrule.pb.go b/api/gen/proto/go/teleport/loginrule/v1/loginrule.pb.go index 3a01b1e524cb4..e2da6a5e233b8 100644 --- a/api/gen/proto/go/teleport/loginrule/v1/loginrule.pb.go +++ b/api/gen/proto/go/teleport/loginrule/v1/loginrule.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/loginrule/v1/loginrule.proto @@ -180,7 +180,7 @@ func file_teleport_loginrule_v1_loginrule_proto_rawDescGZIP() []byte { } var file_teleport_loginrule_v1_loginrule_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_loginrule_v1_loginrule_proto_goTypes = []interface{}{ +var file_teleport_loginrule_v1_loginrule_proto_goTypes = []any{ (*LoginRule)(nil), // 0: teleport.loginrule.v1.LoginRule nil, // 1: teleport.loginrule.v1.LoginRule.TraitsMapEntry (*types.Metadata)(nil), // 2: types.Metadata @@ -203,7 +203,7 @@ func file_teleport_loginrule_v1_loginrule_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_loginrule_v1_loginrule_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_loginrule_v1_loginrule_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*LoginRule); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/loginrule/v1/loginrule_service.pb.go b/api/gen/proto/go/teleport/loginrule/v1/loginrule_service.pb.go index 2641e8ced9f0e..aa49ef7a86c71 100644 --- a/api/gen/proto/go/teleport/loginrule/v1/loginrule_service.pb.go +++ b/api/gen/proto/go/teleport/loginrule/v1/loginrule_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/loginrule/v1/loginrule_service.proto @@ -604,7 +604,7 @@ func file_teleport_loginrule_v1_loginrule_service_proto_rawDescGZIP() []byte { } var file_teleport_loginrule_v1_loginrule_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) -var file_teleport_loginrule_v1_loginrule_service_proto_goTypes = []interface{}{ +var file_teleport_loginrule_v1_loginrule_service_proto_goTypes = []any{ (*CreateLoginRuleRequest)(nil), // 0: teleport.loginrule.v1.CreateLoginRuleRequest (*UpsertLoginRuleRequest)(nil), // 1: teleport.loginrule.v1.UpsertLoginRuleRequest (*GetLoginRuleRequest)(nil), // 2: teleport.loginrule.v1.GetLoginRuleRequest @@ -654,7 +654,7 @@ func file_teleport_loginrule_v1_loginrule_service_proto_init() { } file_teleport_loginrule_v1_loginrule_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*CreateLoginRuleRequest); i { case 0: return &v.state @@ -666,7 +666,7 @@ func file_teleport_loginrule_v1_loginrule_service_proto_init() { return nil } } - file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*UpsertLoginRuleRequest); i { case 0: return &v.state @@ -678,7 +678,7 @@ func file_teleport_loginrule_v1_loginrule_service_proto_init() { return nil } } - file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetLoginRuleRequest); i { case 0: return &v.state @@ -690,7 +690,7 @@ func file_teleport_loginrule_v1_loginrule_service_proto_init() { return nil } } - file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ListLoginRulesRequest); i { case 0: return &v.state @@ -702,7 +702,7 @@ func file_teleport_loginrule_v1_loginrule_service_proto_init() { return nil } } - file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ListLoginRulesResponse); i { case 0: return &v.state @@ -714,7 +714,7 @@ func file_teleport_loginrule_v1_loginrule_service_proto_init() { return nil } } - file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*DeleteLoginRuleRequest); i { case 0: return &v.state @@ -726,7 +726,7 @@ func file_teleport_loginrule_v1_loginrule_service_proto_init() { return nil } } - file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*TestLoginRuleRequest); i { case 0: return &v.state @@ -738,7 +738,7 @@ func file_teleport_loginrule_v1_loginrule_service_proto_init() { return nil } } - file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_loginrule_v1_loginrule_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*TestLoginRuleResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/machineid/v1/bot.pb.go b/api/gen/proto/go/teleport/machineid/v1/bot.pb.go index 050b5d895ed8f..ddaf8c65ee7ef 100644 --- a/api/gen/proto/go/teleport/machineid/v1/bot.pb.go +++ b/api/gen/proto/go/teleport/machineid/v1/bot.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/machineid/v1/bot.proto @@ -372,7 +372,7 @@ func file_teleport_machineid_v1_bot_proto_rawDescGZIP() []byte { } var file_teleport_machineid_v1_bot_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_teleport_machineid_v1_bot_proto_goTypes = []interface{}{ +var file_teleport_machineid_v1_bot_proto_goTypes = []any{ (*Bot)(nil), // 0: teleport.machineid.v1.Bot (*Trait)(nil), // 1: teleport.machineid.v1.Trait (*BotSpec)(nil), // 2: teleport.machineid.v1.BotSpec @@ -397,7 +397,7 @@ func file_teleport_machineid_v1_bot_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_machineid_v1_bot_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Bot); i { case 0: return &v.state @@ -409,7 +409,7 @@ func file_teleport_machineid_v1_bot_proto_init() { return nil } } - file_teleport_machineid_v1_bot_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*Trait); i { case 0: return &v.state @@ -421,7 +421,7 @@ func file_teleport_machineid_v1_bot_proto_init() { return nil } } - file_teleport_machineid_v1_bot_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*BotSpec); i { case 0: return &v.state @@ -433,7 +433,7 @@ func file_teleport_machineid_v1_bot_proto_init() { return nil } } - file_teleport_machineid_v1_bot_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*BotStatus); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/machineid/v1/bot_instance.pb.go b/api/gen/proto/go/teleport/machineid/v1/bot_instance.pb.go index 2350b7aabb7ef..35de192ff3ec7 100644 --- a/api/gen/proto/go/teleport/machineid/v1/bot_instance.pb.go +++ b/api/gen/proto/go/teleport/machineid/v1/bot_instance.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/machineid/v1/bot_instance.proto @@ -624,7 +624,7 @@ func file_teleport_machineid_v1_bot_instance_proto_rawDescGZIP() []byte { } var file_teleport_machineid_v1_bot_instance_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_machineid_v1_bot_instance_proto_goTypes = []interface{}{ +var file_teleport_machineid_v1_bot_instance_proto_goTypes = []any{ (*BotInstance)(nil), // 0: teleport.machineid.v1.BotInstance (*BotInstanceSpec)(nil), // 1: teleport.machineid.v1.BotInstanceSpec (*BotInstanceStatusHeartbeat)(nil), // 2: teleport.machineid.v1.BotInstanceStatusHeartbeat @@ -660,7 +660,7 @@ func file_teleport_machineid_v1_bot_instance_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_machineid_v1_bot_instance_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*BotInstance); i { case 0: return &v.state @@ -672,7 +672,7 @@ func file_teleport_machineid_v1_bot_instance_proto_init() { return nil } } - file_teleport_machineid_v1_bot_instance_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*BotInstanceSpec); i { case 0: return &v.state @@ -684,7 +684,7 @@ func file_teleport_machineid_v1_bot_instance_proto_init() { return nil } } - file_teleport_machineid_v1_bot_instance_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*BotInstanceStatusHeartbeat); i { case 0: return &v.state @@ -696,7 +696,7 @@ func file_teleport_machineid_v1_bot_instance_proto_init() { return nil } } - file_teleport_machineid_v1_bot_instance_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*BotInstanceStatusAuthentication); i { case 0: return &v.state @@ -708,7 +708,7 @@ func file_teleport_machineid_v1_bot_instance_proto_init() { return nil } } - file_teleport_machineid_v1_bot_instance_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*BotInstanceStatus); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/machineid/v1/bot_instance_service.pb.go b/api/gen/proto/go/teleport/machineid/v1/bot_instance_service.pb.go index 1feff11e1614f..c3ad43a744da2 100644 --- a/api/gen/proto/go/teleport/machineid/v1/bot_instance_service.pb.go +++ b/api/gen/proto/go/teleport/machineid/v1/bot_instance_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/machineid/v1/bot_instance_service.proto @@ -468,7 +468,7 @@ func file_teleport_machineid_v1_bot_instance_service_proto_rawDescGZIP() []byte } var file_teleport_machineid_v1_bot_instance_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_teleport_machineid_v1_bot_instance_service_proto_goTypes = []interface{}{ +var file_teleport_machineid_v1_bot_instance_service_proto_goTypes = []any{ (*GetBotInstanceRequest)(nil), // 0: teleport.machineid.v1.GetBotInstanceRequest (*ListBotInstancesRequest)(nil), // 1: teleport.machineid.v1.ListBotInstancesRequest (*ListBotInstancesResponse)(nil), // 2: teleport.machineid.v1.ListBotInstancesResponse @@ -504,7 +504,7 @@ func file_teleport_machineid_v1_bot_instance_service_proto_init() { } file_teleport_machineid_v1_bot_instance_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetBotInstanceRequest); i { case 0: return &v.state @@ -516,7 +516,7 @@ func file_teleport_machineid_v1_bot_instance_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ListBotInstancesRequest); i { case 0: return &v.state @@ -528,7 +528,7 @@ func file_teleport_machineid_v1_bot_instance_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListBotInstancesResponse); i { case 0: return &v.state @@ -540,7 +540,7 @@ func file_teleport_machineid_v1_bot_instance_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*DeleteBotInstanceRequest); i { case 0: return &v.state @@ -552,7 +552,7 @@ func file_teleport_machineid_v1_bot_instance_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*SubmitHeartbeatRequest); i { case 0: return &v.state @@ -564,7 +564,7 @@ func file_teleport_machineid_v1_bot_instance_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_instance_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*SubmitHeartbeatResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/machineid/v1/bot_service.pb.go b/api/gen/proto/go/teleport/machineid/v1/bot_service.pb.go index 72213aa360574..0675d8a58fa18 100644 --- a/api/gen/proto/go/teleport/machineid/v1/bot_service.pb.go +++ b/api/gen/proto/go/teleport/machineid/v1/bot_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/machineid/v1/bot_service.proto @@ -509,7 +509,7 @@ func file_teleport_machineid_v1_bot_service_proto_rawDescGZIP() []byte { } var file_teleport_machineid_v1_bot_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_teleport_machineid_v1_bot_service_proto_goTypes = []interface{}{ +var file_teleport_machineid_v1_bot_service_proto_goTypes = []any{ (*CreateBotRequest)(nil), // 0: teleport.machineid.v1.CreateBotRequest (*GetBotRequest)(nil), // 1: teleport.machineid.v1.GetBotRequest (*ListBotsRequest)(nil), // 2: teleport.machineid.v1.ListBotsRequest @@ -553,7 +553,7 @@ func file_teleport_machineid_v1_bot_service_proto_init() { } file_teleport_machineid_v1_bot_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_machineid_v1_bot_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*CreateBotRequest); i { case 0: return &v.state @@ -565,7 +565,7 @@ func file_teleport_machineid_v1_bot_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetBotRequest); i { case 0: return &v.state @@ -577,7 +577,7 @@ func file_teleport_machineid_v1_bot_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListBotsRequest); i { case 0: return &v.state @@ -589,7 +589,7 @@ func file_teleport_machineid_v1_bot_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ListBotsResponse); i { case 0: return &v.state @@ -601,7 +601,7 @@ func file_teleport_machineid_v1_bot_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpdateBotRequest); i { case 0: return &v.state @@ -613,7 +613,7 @@ func file_teleport_machineid_v1_bot_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpsertBotRequest); i { case 0: return &v.state @@ -625,7 +625,7 @@ func file_teleport_machineid_v1_bot_service_proto_init() { return nil } } - file_teleport_machineid_v1_bot_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_bot_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteBotRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/machineid/v1/federation.pb.go b/api/gen/proto/go/teleport/machineid/v1/federation.pb.go index eb5679a681150..a2290d9a93803 100644 --- a/api/gen/proto/go/teleport/machineid/v1/federation.pb.go +++ b/api/gen/proto/go/teleport/machineid/v1/federation.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/machineid/v1/federation.proto @@ -527,7 +527,7 @@ func file_teleport_machineid_v1_federation_proto_rawDescGZIP() []byte { } var file_teleport_machineid_v1_federation_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_teleport_machineid_v1_federation_proto_goTypes = []interface{}{ +var file_teleport_machineid_v1_federation_proto_goTypes = []any{ (*SPIFFEFederation)(nil), // 0: teleport.machineid.v1.SPIFFEFederation (*SPIFFEFederationBundleSourceStatic)(nil), // 1: teleport.machineid.v1.SPIFFEFederationBundleSourceStatic (*SPIFFEFederationBundleSourceHTTPSWeb)(nil), // 2: teleport.machineid.v1.SPIFFEFederationBundleSourceHTTPSWeb @@ -560,7 +560,7 @@ func file_teleport_machineid_v1_federation_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_machineid_v1_federation_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*SPIFFEFederation); i { case 0: return &v.state @@ -572,7 +572,7 @@ func file_teleport_machineid_v1_federation_proto_init() { return nil } } - file_teleport_machineid_v1_federation_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*SPIFFEFederationBundleSourceStatic); i { case 0: return &v.state @@ -584,7 +584,7 @@ func file_teleport_machineid_v1_federation_proto_init() { return nil } } - file_teleport_machineid_v1_federation_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*SPIFFEFederationBundleSourceHTTPSWeb); i { case 0: return &v.state @@ -596,7 +596,7 @@ func file_teleport_machineid_v1_federation_proto_init() { return nil } } - file_teleport_machineid_v1_federation_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*SPIFFEFederationBundleSource); i { case 0: return &v.state @@ -608,7 +608,7 @@ func file_teleport_machineid_v1_federation_proto_init() { return nil } } - file_teleport_machineid_v1_federation_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*SPIFFEFederationSpec); i { case 0: return &v.state @@ -620,7 +620,7 @@ func file_teleport_machineid_v1_federation_proto_init() { return nil } } - file_teleport_machineid_v1_federation_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*SPIFFEFederationStatus); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/machineid/v1/federation_service.pb.go b/api/gen/proto/go/teleport/machineid/v1/federation_service.pb.go index e58ad63436b61..abea4ef98c9d1 100644 --- a/api/gen/proto/go/teleport/machineid/v1/federation_service.pb.go +++ b/api/gen/proto/go/teleport/machineid/v1/federation_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/machineid/v1/federation_service.proto @@ -397,7 +397,7 @@ func file_teleport_machineid_v1_federation_service_proto_rawDescGZIP() []byte { } var file_teleport_machineid_v1_federation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_machineid_v1_federation_service_proto_goTypes = []interface{}{ +var file_teleport_machineid_v1_federation_service_proto_goTypes = []any{ (*GetSPIFFEFederationRequest)(nil), // 0: teleport.machineid.v1.GetSPIFFEFederationRequest (*ListSPIFFEFederationsRequest)(nil), // 1: teleport.machineid.v1.ListSPIFFEFederationsRequest (*ListSPIFFEFederationsResponse)(nil), // 2: teleport.machineid.v1.ListSPIFFEFederationsResponse @@ -431,7 +431,7 @@ func file_teleport_machineid_v1_federation_service_proto_init() { } file_teleport_machineid_v1_federation_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_machineid_v1_federation_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetSPIFFEFederationRequest); i { case 0: return &v.state @@ -443,7 +443,7 @@ func file_teleport_machineid_v1_federation_service_proto_init() { return nil } } - file_teleport_machineid_v1_federation_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ListSPIFFEFederationsRequest); i { case 0: return &v.state @@ -455,7 +455,7 @@ func file_teleport_machineid_v1_federation_service_proto_init() { return nil } } - file_teleport_machineid_v1_federation_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListSPIFFEFederationsResponse); i { case 0: return &v.state @@ -467,7 +467,7 @@ func file_teleport_machineid_v1_federation_service_proto_init() { return nil } } - file_teleport_machineid_v1_federation_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*DeleteSPIFFEFederationRequest); i { case 0: return &v.state @@ -479,7 +479,7 @@ func file_teleport_machineid_v1_federation_service_proto_init() { return nil } } - file_teleport_machineid_v1_federation_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_federation_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*CreateSPIFFEFederationRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/machineid/v1/workload_identity_service.pb.go b/api/gen/proto/go/teleport/machineid/v1/workload_identity_service.pb.go index 3ab5b665870da..c2d29afd1ff22 100644 --- a/api/gen/proto/go/teleport/machineid/v1/workload_identity_service.pb.go +++ b/api/gen/proto/go/teleport/machineid/v1/workload_identity_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/machineid/v1/workload_identity_service.proto @@ -678,7 +678,7 @@ func file_teleport_machineid_v1_workload_identity_service_proto_rawDescGZIP() [] } var file_teleport_machineid_v1_workload_identity_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_teleport_machineid_v1_workload_identity_service_proto_goTypes = []interface{}{ +var file_teleport_machineid_v1_workload_identity_service_proto_goTypes = []any{ (*SVIDRequest)(nil), // 0: teleport.machineid.v1.SVIDRequest (*SVIDResponse)(nil), // 1: teleport.machineid.v1.SVIDResponse (*SignX509SVIDsRequest)(nil), // 2: teleport.machineid.v1.SignX509SVIDsRequest @@ -713,7 +713,7 @@ func file_teleport_machineid_v1_workload_identity_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*SVIDRequest); i { case 0: return &v.state @@ -725,7 +725,7 @@ func file_teleport_machineid_v1_workload_identity_service_proto_init() { return nil } } - file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*SVIDResponse); i { case 0: return &v.state @@ -737,7 +737,7 @@ func file_teleport_machineid_v1_workload_identity_service_proto_init() { return nil } } - file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*SignX509SVIDsRequest); i { case 0: return &v.state @@ -749,7 +749,7 @@ func file_teleport_machineid_v1_workload_identity_service_proto_init() { return nil } } - file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*SignX509SVIDsResponse); i { case 0: return &v.state @@ -761,7 +761,7 @@ func file_teleport_machineid_v1_workload_identity_service_proto_init() { return nil } } - file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*JWTSVIDRequest); i { case 0: return &v.state @@ -773,7 +773,7 @@ func file_teleport_machineid_v1_workload_identity_service_proto_init() { return nil } } - file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*JWTSVIDResponse); i { case 0: return &v.state @@ -785,7 +785,7 @@ func file_teleport_machineid_v1_workload_identity_service_proto_init() { return nil } } - file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*SignJWTSVIDsRequest); i { case 0: return &v.state @@ -797,7 +797,7 @@ func file_teleport_machineid_v1_workload_identity_service_proto_init() { return nil } } - file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_machineid_v1_workload_identity_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*SignJWTSVIDsResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/notifications/v1/notifications.pb.go b/api/gen/proto/go/teleport/notifications/v1/notifications.pb.go index bff1add294c89..d07b423fb2d0d 100644 --- a/api/gen/proto/go/teleport/notifications/v1/notifications.pb.go +++ b/api/gen/proto/go/teleport/notifications/v1/notifications.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/notifications/v1/notifications.proto @@ -1093,7 +1093,7 @@ func file_teleport_notifications_v1_notifications_proto_rawDescGZIP() []byte { var file_teleport_notifications_v1_notifications_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_notifications_v1_notifications_proto_msgTypes = make([]protoimpl.MessageInfo, 12) -var file_teleport_notifications_v1_notifications_proto_goTypes = []interface{}{ +var file_teleport_notifications_v1_notifications_proto_goTypes = []any{ (NotificationState)(0), // 0: teleport.notifications.v1.NotificationState (*Notification)(nil), // 1: teleport.notifications.v1.Notification (*NotificationSpec)(nil), // 2: teleport.notifications.v1.NotificationSpec @@ -1142,7 +1142,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_notifications_v1_notifications_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Notification); i { case 0: return &v.state @@ -1154,7 +1154,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*NotificationSpec); i { case 0: return &v.state @@ -1166,7 +1166,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GlobalNotification); i { case 0: return &v.state @@ -1178,7 +1178,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*GlobalNotificationSpec); i { case 0: return &v.state @@ -1190,7 +1190,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ByPermissions); i { case 0: return &v.state @@ -1202,7 +1202,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*ByRoles); i { case 0: return &v.state @@ -1214,7 +1214,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*UserNotificationState); i { case 0: return &v.state @@ -1226,7 +1226,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*UserNotificationStateSpec); i { case 0: return &v.state @@ -1238,7 +1238,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*UserNotificationStateStatus); i { case 0: return &v.state @@ -1250,7 +1250,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*UserLastSeenNotification); i { case 0: return &v.state @@ -1262,7 +1262,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*UserLastSeenNotificationSpec); i { case 0: return &v.state @@ -1274,7 +1274,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*UserLastSeenNotificationStatus); i { case 0: return &v.state @@ -1287,7 +1287,7 @@ func file_teleport_notifications_v1_notifications_proto_init() { } } } - file_teleport_notifications_v1_notifications_proto_msgTypes[3].OneofWrappers = []interface{}{ + file_teleport_notifications_v1_notifications_proto_msgTypes[3].OneofWrappers = []any{ (*GlobalNotificationSpec_ByPermissions)(nil), (*GlobalNotificationSpec_ByRoles)(nil), (*GlobalNotificationSpec_All)(nil), diff --git a/api/gen/proto/go/teleport/notifications/v1/notifications_service.pb.go b/api/gen/proto/go/teleport/notifications/v1/notifications_service.pb.go index 21077a504f52d..61a182df8a6c6 100644 --- a/api/gen/proto/go/teleport/notifications/v1/notifications_service.pb.go +++ b/api/gen/proto/go/teleport/notifications/v1/notifications_service.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/notifications/v1/notifications_service.proto @@ -768,7 +768,7 @@ func file_teleport_notifications_v1_notifications_service_proto_rawDescGZIP() [] } var file_teleport_notifications_v1_notifications_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) -var file_teleport_notifications_v1_notifications_service_proto_goTypes = []interface{}{ +var file_teleport_notifications_v1_notifications_service_proto_goTypes = []any{ (*CreateUserNotificationRequest)(nil), // 0: teleport.notifications.v1.CreateUserNotificationRequest (*DeleteUserNotificationRequest)(nil), // 1: teleport.notifications.v1.DeleteUserNotificationRequest (*ListNotificationsRequest)(nil), // 2: teleport.notifications.v1.ListNotificationsRequest @@ -823,7 +823,7 @@ func file_teleport_notifications_v1_notifications_service_proto_init() { } file_teleport_notifications_v1_notifications_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_notifications_v1_notifications_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*CreateUserNotificationRequest); i { case 0: return &v.state @@ -835,7 +835,7 @@ func file_teleport_notifications_v1_notifications_service_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*DeleteUserNotificationRequest); i { case 0: return &v.state @@ -847,7 +847,7 @@ func file_teleport_notifications_v1_notifications_service_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListNotificationsRequest); i { case 0: return &v.state @@ -859,7 +859,7 @@ func file_teleport_notifications_v1_notifications_service_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*NotificationFilters); i { case 0: return &v.state @@ -871,7 +871,7 @@ func file_teleport_notifications_v1_notifications_service_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ListNotificationsResponse); i { case 0: return &v.state @@ -883,7 +883,7 @@ func file_teleport_notifications_v1_notifications_service_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*CreateGlobalNotificationRequest); i { case 0: return &v.state @@ -895,7 +895,7 @@ func file_teleport_notifications_v1_notifications_service_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteGlobalNotificationRequest); i { case 0: return &v.state @@ -907,7 +907,7 @@ func file_teleport_notifications_v1_notifications_service_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*UpsertUserNotificationStateRequest); i { case 0: return &v.state @@ -919,7 +919,7 @@ func file_teleport_notifications_v1_notifications_service_proto_init() { return nil } } - file_teleport_notifications_v1_notifications_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_notifications_v1_notifications_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*UpsertUserLastSeenNotificationRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/okta/v1/okta_service.pb.go b/api/gen/proto/go/teleport/okta/v1/okta_service.pb.go index 5852f14df4109..11c65fb4b70e3 100644 --- a/api/gen/proto/go/teleport/okta/v1/okta_service.pb.go +++ b/api/gen/proto/go/teleport/okta/v1/okta_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/okta/v1/okta_service.proto @@ -1001,7 +1001,7 @@ func file_teleport_okta_v1_okta_service_proto_rawDescGZIP() []byte { } var file_teleport_okta_v1_okta_service_proto_msgTypes = make([]protoimpl.MessageInfo, 15) -var file_teleport_okta_v1_okta_service_proto_goTypes = []interface{}{ +var file_teleport_okta_v1_okta_service_proto_goTypes = []any{ (*ListOktaImportRulesRequest)(nil), // 0: teleport.okta.v1.ListOktaImportRulesRequest (*ListOktaImportRulesResponse)(nil), // 1: teleport.okta.v1.ListOktaImportRulesResponse (*GetOktaImportRuleRequest)(nil), // 2: teleport.okta.v1.GetOktaImportRuleRequest @@ -1071,7 +1071,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_okta_v1_okta_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ListOktaImportRulesRequest); i { case 0: return &v.state @@ -1083,7 +1083,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ListOktaImportRulesResponse); i { case 0: return &v.state @@ -1095,7 +1095,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetOktaImportRuleRequest); i { case 0: return &v.state @@ -1107,7 +1107,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*CreateOktaImportRuleRequest); i { case 0: return &v.state @@ -1119,7 +1119,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpdateOktaImportRuleRequest); i { case 0: return &v.state @@ -1131,7 +1131,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*DeleteOktaImportRuleRequest); i { case 0: return &v.state @@ -1143,7 +1143,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteAllOktaImportRulesRequest); i { case 0: return &v.state @@ -1155,7 +1155,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*ListOktaAssignmentsRequest); i { case 0: return &v.state @@ -1167,7 +1167,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*ListOktaAssignmentsResponse); i { case 0: return &v.state @@ -1179,7 +1179,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*GetOktaAssignmentRequest); i { case 0: return &v.state @@ -1191,7 +1191,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*CreateOktaAssignmentRequest); i { case 0: return &v.state @@ -1203,7 +1203,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*UpdateOktaAssignmentRequest); i { case 0: return &v.state @@ -1215,7 +1215,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*UpdateOktaAssignmentStatusRequest); i { case 0: return &v.state @@ -1227,7 +1227,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*DeleteOktaAssignmentRequest); i { case 0: return &v.state @@ -1239,7 +1239,7 @@ func file_teleport_okta_v1_okta_service_proto_init() { return nil } } - file_teleport_okta_v1_okta_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_teleport_okta_v1_okta_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*DeleteAllOktaAssignmentsRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/plugins/v1/plugin_service.pb.go b/api/gen/proto/go/teleport/plugins/v1/plugin_service.pb.go index 67ef9f2405652..58a5792872d8b 100644 --- a/api/gen/proto/go/teleport/plugins/v1/plugin_service.pb.go +++ b/api/gen/proto/go/teleport/plugins/v1/plugin_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/plugins/v1/plugin_service.proto @@ -1171,7 +1171,7 @@ func file_teleport_plugins_v1_plugin_service_proto_rawDescGZIP() []byte { } var file_teleport_plugins_v1_plugin_service_proto_msgTypes = make([]protoimpl.MessageInfo, 18) -var file_teleport_plugins_v1_plugin_service_proto_goTypes = []interface{}{ +var file_teleport_plugins_v1_plugin_service_proto_goTypes = []any{ (*PluginType)(nil), // 0: teleport.plugins.v1.PluginType (*CreatePluginRequest)(nil), // 1: teleport.plugins.v1.CreatePluginRequest (*GetPluginRequest)(nil), // 2: teleport.plugins.v1.GetPluginRequest @@ -1247,7 +1247,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_plugins_v1_plugin_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*PluginType); i { case 0: return &v.state @@ -1259,7 +1259,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*CreatePluginRequest); i { case 0: return &v.state @@ -1271,7 +1271,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetPluginRequest); i { case 0: return &v.state @@ -1283,7 +1283,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*UpdatePluginRequest); i { case 0: return &v.state @@ -1295,7 +1295,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ListPluginsRequest); i { case 0: return &v.state @@ -1307,7 +1307,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*ListPluginsResponse); i { case 0: return &v.state @@ -1319,7 +1319,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeletePluginRequest); i { case 0: return &v.state @@ -1331,7 +1331,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*SetPluginCredentialsRequest); i { case 0: return &v.state @@ -1343,7 +1343,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*SetPluginStatusRequest); i { case 0: return &v.state @@ -1355,7 +1355,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*GetAvailablePluginTypesRequest); i { case 0: return &v.state @@ -1367,7 +1367,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*GetAvailablePluginTypesResponse); i { case 0: return &v.state @@ -1379,7 +1379,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*SearchPluginStaticCredentialsRequest); i { case 0: return &v.state @@ -1391,7 +1391,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*SearchPluginStaticCredentialsResponse); i { case 0: return &v.state @@ -1403,7 +1403,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*NeedsCleanupRequest); i { case 0: return &v.state @@ -1415,7 +1415,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*NeedsCleanupResponse); i { case 0: return &v.state @@ -1427,7 +1427,7 @@ func file_teleport_plugins_v1_plugin_service_proto_init() { return nil } } - file_teleport_plugins_v1_plugin_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_teleport_plugins_v1_plugin_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*CleanupRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/presence/v1/service.pb.go b/api/gen/proto/go/teleport/presence/v1/service.pb.go index 70c7225b93fc7..f03dbb5cae1fd 100644 --- a/api/gen/proto/go/teleport/presence/v1/service.pb.go +++ b/api/gen/proto/go/teleport/presence/v1/service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/presence/v1/service.proto @@ -404,7 +404,7 @@ func file_teleport_presence_v1_service_proto_rawDescGZIP() []byte { } var file_teleport_presence_v1_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_presence_v1_service_proto_goTypes = []interface{}{ +var file_teleport_presence_v1_service_proto_goTypes = []any{ (*GetRemoteClusterRequest)(nil), // 0: teleport.presence.v1.GetRemoteClusterRequest (*ListRemoteClustersRequest)(nil), // 1: teleport.presence.v1.ListRemoteClustersRequest (*ListRemoteClustersResponse)(nil), // 2: teleport.presence.v1.ListRemoteClustersResponse @@ -439,7 +439,7 @@ func file_teleport_presence_v1_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_presence_v1_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_presence_v1_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetRemoteClusterRequest); i { case 0: return &v.state @@ -451,7 +451,7 @@ func file_teleport_presence_v1_service_proto_init() { return nil } } - file_teleport_presence_v1_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_presence_v1_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ListRemoteClustersRequest); i { case 0: return &v.state @@ -463,7 +463,7 @@ func file_teleport_presence_v1_service_proto_init() { return nil } } - file_teleport_presence_v1_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_presence_v1_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListRemoteClustersResponse); i { case 0: return &v.state @@ -475,7 +475,7 @@ func file_teleport_presence_v1_service_proto_init() { return nil } } - file_teleport_presence_v1_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_presence_v1_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*UpdateRemoteClusterRequest); i { case 0: return &v.state @@ -487,7 +487,7 @@ func file_teleport_presence_v1_service_proto_init() { return nil } } - file_teleport_presence_v1_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_presence_v1_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*DeleteRemoteClusterRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/resourceusage/v1/access_requests.pb.go b/api/gen/proto/go/teleport/resourceusage/v1/access_requests.pb.go index b6d65fe58cd45..d91d1bf3a0109 100644 --- a/api/gen/proto/go/teleport/resourceusage/v1/access_requests.pb.go +++ b/api/gen/proto/go/teleport/resourceusage/v1/access_requests.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/resourceusage/v1/access_requests.proto @@ -129,7 +129,7 @@ func file_teleport_resourceusage_v1_access_requests_proto_rawDescGZIP() []byte { } var file_teleport_resourceusage_v1_access_requests_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_resourceusage_v1_access_requests_proto_goTypes = []interface{}{ +var file_teleport_resourceusage_v1_access_requests_proto_goTypes = []any{ (*AccessRequestsUsage)(nil), // 0: teleport.resourceusage.v1.AccessRequestsUsage } var file_teleport_resourceusage_v1_access_requests_proto_depIdxs = []int32{ @@ -146,7 +146,7 @@ func file_teleport_resourceusage_v1_access_requests_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_resourceusage_v1_access_requests_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_resourceusage_v1_access_requests_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AccessRequestsUsage); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/resourceusage/v1/account_usage_type.pb.go b/api/gen/proto/go/teleport/resourceusage/v1/account_usage_type.pb.go index 98b0aa4d30022..dcf407b390988 100644 --- a/api/gen/proto/go/teleport/resourceusage/v1/account_usage_type.pb.go +++ b/api/gen/proto/go/teleport/resourceusage/v1/account_usage_type.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/resourceusage/v1/account_usage_type.proto @@ -123,7 +123,7 @@ func file_teleport_resourceusage_v1_account_usage_type_proto_rawDescGZIP() []byt } var file_teleport_resourceusage_v1_account_usage_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_teleport_resourceusage_v1_account_usage_type_proto_goTypes = []interface{}{ +var file_teleport_resourceusage_v1_account_usage_type_proto_goTypes = []any{ (AccountUsageType)(0), // 0: teleport.resourceusage.v1.AccountUsageType } var file_teleport_resourceusage_v1_account_usage_type_proto_depIdxs = []int32{ diff --git a/api/gen/proto/go/teleport/resourceusage/v1/device_trust.pb.go b/api/gen/proto/go/teleport/resourceusage/v1/device_trust.pb.go index 95e1da7d4e894..2bb3342b78821 100644 --- a/api/gen/proto/go/teleport/resourceusage/v1/device_trust.pb.go +++ b/api/gen/proto/go/teleport/resourceusage/v1/device_trust.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/resourceusage/v1/device_trust.proto @@ -131,7 +131,7 @@ func file_teleport_resourceusage_v1_device_trust_proto_rawDescGZIP() []byte { } var file_teleport_resourceusage_v1_device_trust_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_resourceusage_v1_device_trust_proto_goTypes = []interface{}{ +var file_teleport_resourceusage_v1_device_trust_proto_goTypes = []any{ (*DevicesUsage)(nil), // 0: teleport.resourceusage.v1.DevicesUsage } var file_teleport_resourceusage_v1_device_trust_proto_depIdxs = []int32{ @@ -148,7 +148,7 @@ func file_teleport_resourceusage_v1_device_trust_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_resourceusage_v1_device_trust_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_resourceusage_v1_device_trust_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*DevicesUsage); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/resourceusage/v1/resourceusage_service.pb.go b/api/gen/proto/go/teleport/resourceusage/v1/resourceusage_service.pb.go index 58bcd4be17087..37b5170b018a1 100644 --- a/api/gen/proto/go/teleport/resourceusage/v1/resourceusage_service.pb.go +++ b/api/gen/proto/go/teleport/resourceusage/v1/resourceusage_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/resourceusage/v1/resourceusage_service.proto @@ -207,7 +207,7 @@ func file_teleport_resourceusage_v1_resourceusage_service_proto_rawDescGZIP() [] } var file_teleport_resourceusage_v1_resourceusage_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_resourceusage_v1_resourceusage_service_proto_goTypes = []interface{}{ +var file_teleport_resourceusage_v1_resourceusage_service_proto_goTypes = []any{ (*GetUsageRequest)(nil), // 0: teleport.resourceusage.v1.GetUsageRequest (*GetUsageResponse)(nil), // 1: teleport.resourceusage.v1.GetUsageResponse (*AccessRequestsUsage)(nil), // 2: teleport.resourceusage.v1.AccessRequestsUsage @@ -236,7 +236,7 @@ func file_teleport_resourceusage_v1_resourceusage_service_proto_init() { file_teleport_resourceusage_v1_account_usage_type_proto_init() file_teleport_resourceusage_v1_device_trust_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_resourceusage_v1_resourceusage_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_resourceusage_v1_resourceusage_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetUsageRequest); i { case 0: return &v.state @@ -248,7 +248,7 @@ func file_teleport_resourceusage_v1_resourceusage_service_proto_init() { return nil } } - file_teleport_resourceusage_v1_resourceusage_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_resourceusage_v1_resourceusage_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetUsageResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/samlidp/v1/samlidp.pb.go b/api/gen/proto/go/teleport/samlidp/v1/samlidp.pb.go index 652c818e4445c..bbba6df8713ba 100644 --- a/api/gen/proto/go/teleport/samlidp/v1/samlidp.pb.go +++ b/api/gen/proto/go/teleport/samlidp/v1/samlidp.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/samlidp/v1/samlidp.proto @@ -485,7 +485,7 @@ func file_teleport_samlidp_v1_samlidp_proto_rawDescGZIP() []byte { } var file_teleport_samlidp_v1_samlidp_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_teleport_samlidp_v1_samlidp_proto_goTypes = []interface{}{ +var file_teleport_samlidp_v1_samlidp_proto_goTypes = []any{ (*ProcessSAMLIdPRequestRequest)(nil), // 0: teleport.samlidp.v1.ProcessSAMLIdPRequestRequest (*ProcessSAMLIdPRequestResponse)(nil), // 1: teleport.samlidp.v1.ProcessSAMLIdPRequestResponse (*TestSAMLIdPAttributeMappingRequest)(nil), // 2: teleport.samlidp.v1.TestSAMLIdPAttributeMappingRequest @@ -523,7 +523,7 @@ func file_teleport_samlidp_v1_samlidp_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_samlidp_v1_samlidp_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_samlidp_v1_samlidp_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ProcessSAMLIdPRequestRequest); i { case 0: return &v.state @@ -535,7 +535,7 @@ func file_teleport_samlidp_v1_samlidp_proto_init() { return nil } } - file_teleport_samlidp_v1_samlidp_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_samlidp_v1_samlidp_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ProcessSAMLIdPRequestResponse); i { case 0: return &v.state @@ -547,7 +547,7 @@ func file_teleport_samlidp_v1_samlidp_proto_init() { return nil } } - file_teleport_samlidp_v1_samlidp_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_samlidp_v1_samlidp_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*TestSAMLIdPAttributeMappingRequest); i { case 0: return &v.state @@ -559,7 +559,7 @@ func file_teleport_samlidp_v1_samlidp_proto_init() { return nil } } - file_teleport_samlidp_v1_samlidp_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_samlidp_v1_samlidp_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*TestSAMLIdPAttributeMappingResponse); i { case 0: return &v.state @@ -571,7 +571,7 @@ func file_teleport_samlidp_v1_samlidp_proto_init() { return nil } } - file_teleport_samlidp_v1_samlidp_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_samlidp_v1_samlidp_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*MappedAttribute); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/scim/v1/scim_service.pb.go b/api/gen/proto/go/teleport/scim/v1/scim_service.pb.go index 6a1d6d6324500..5bf9c2e0d41ce 100644 --- a/api/gen/proto/go/teleport/scim/v1/scim_service.pb.go +++ b/api/gen/proto/go/teleport/scim/v1/scim_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/scim/v1/scim_service.proto @@ -851,7 +851,7 @@ func file_teleport_scim_v1_scim_service_proto_rawDescGZIP() []byte { } var file_teleport_scim_v1_scim_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) -var file_teleport_scim_v1_scim_service_proto_goTypes = []interface{}{ +var file_teleport_scim_v1_scim_service_proto_goTypes = []any{ (*ListSCIMResourcesRequest)(nil), // 0: teleport.scim.v1.ListSCIMResourcesRequest (*GetSCIMResourceRequest)(nil), // 1: teleport.scim.v1.GetSCIMResourceRequest (*CreateSCIMResourceRequest)(nil), // 2: teleport.scim.v1.CreateSCIMResourceRequest @@ -903,7 +903,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_scim_v1_scim_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ListSCIMResourcesRequest); i { case 0: return &v.state @@ -915,7 +915,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return nil } } - file_teleport_scim_v1_scim_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetSCIMResourceRequest); i { case 0: return &v.state @@ -927,7 +927,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return nil } } - file_teleport_scim_v1_scim_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*CreateSCIMResourceRequest); i { case 0: return &v.state @@ -939,7 +939,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return nil } } - file_teleport_scim_v1_scim_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*UpdateSCIMResourceRequest); i { case 0: return &v.state @@ -951,7 +951,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return nil } } - file_teleport_scim_v1_scim_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*DeleteSCIMResourceRequest); i { case 0: return &v.state @@ -963,7 +963,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return nil } } - file_teleport_scim_v1_scim_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*Resource); i { case 0: return &v.state @@ -975,7 +975,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return nil } } - file_teleport_scim_v1_scim_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*Meta); i { case 0: return &v.state @@ -987,7 +987,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return nil } } - file_teleport_scim_v1_scim_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*ResourceList); i { case 0: return &v.state @@ -999,7 +999,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return nil } } - file_teleport_scim_v1_scim_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*RequestTarget); i { case 0: return &v.state @@ -1011,7 +1011,7 @@ func file_teleport_scim_v1_scim_service_proto_init() { return nil } } - file_teleport_scim_v1_scim_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_scim_v1_scim_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*Page); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/secreports/v1/secreports.pb.go b/api/gen/proto/go/teleport/secreports/v1/secreports.pb.go index cc7e5d3939042..0c5f317a4a657 100644 --- a/api/gen/proto/go/teleport/secreports/v1/secreports.pb.go +++ b/api/gen/proto/go/teleport/secreports/v1/secreports.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/secreports/v1/secreports.proto @@ -508,7 +508,7 @@ func file_teleport_secreports_v1_secreports_proto_rawDescGZIP() []byte { } var file_teleport_secreports_v1_secreports_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_teleport_secreports_v1_secreports_proto_goTypes = []interface{}{ +var file_teleport_secreports_v1_secreports_proto_goTypes = []any{ (*AuditQuery)(nil), // 0: teleport.secreports.v1.AuditQuery (*AuditQuerySpec)(nil), // 1: teleport.secreports.v1.AuditQuerySpec (*Report)(nil), // 2: teleport.secreports.v1.Report @@ -538,7 +538,7 @@ func file_teleport_secreports_v1_secreports_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_secreports_v1_secreports_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AuditQuery); i { case 0: return &v.state @@ -550,7 +550,7 @@ func file_teleport_secreports_v1_secreports_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AuditQuerySpec); i { case 0: return &v.state @@ -562,7 +562,7 @@ func file_teleport_secreports_v1_secreports_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*Report); i { case 0: return &v.state @@ -574,7 +574,7 @@ func file_teleport_secreports_v1_secreports_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ReportSpec); i { case 0: return &v.state @@ -586,7 +586,7 @@ func file_teleport_secreports_v1_secreports_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ReportState); i { case 0: return &v.state @@ -598,7 +598,7 @@ func file_teleport_secreports_v1_secreports_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*ReportStateSpec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/secreports/v1/secreports_service.pb.go b/api/gen/proto/go/teleport/secreports/v1/secreports_service.pb.go index bf650f54a61b6..f46e772a3a2ea 100644 --- a/api/gen/proto/go/teleport/secreports/v1/secreports_service.pb.go +++ b/api/gen/proto/go/teleport/secreports/v1/secreports_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/secreports/v1/secreports_service.proto @@ -2036,7 +2036,7 @@ func file_teleport_secreports_v1_secreports_service_proto_rawDescGZIP() []byte { var file_teleport_secreports_v1_secreports_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_secreports_v1_secreports_service_proto_msgTypes = make([]protoimpl.MessageInfo, 28) -var file_teleport_secreports_v1_secreports_service_proto_goTypes = []interface{}{ +var file_teleport_secreports_v1_secreports_service_proto_goTypes = []any{ (ReportSate_State)(0), // 0: teleport.secreports.v1.ReportSate.State (*GetAuditQueryResultRequest)(nil), // 1: teleport.secreports.v1.GetAuditQueryResultRequest (*QueryResultColumnInfo)(nil), // 2: teleport.secreports.v1.QueryResultColumnInfo @@ -2131,7 +2131,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { } file_teleport_secreports_v1_secreports_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_secreports_v1_secreports_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetAuditQueryResultRequest); i { case 0: return &v.state @@ -2143,7 +2143,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*QueryResultColumnInfo); i { case 0: return &v.state @@ -2155,7 +2155,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*QueryRowResult); i { case 0: return &v.state @@ -2167,7 +2167,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*QueryResultSet); i { case 0: return &v.state @@ -2179,7 +2179,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*GetAuditQueryResultResponse); i { case 0: return &v.state @@ -2191,7 +2191,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*RunReportRequest); i { case 0: return &v.state @@ -2203,7 +2203,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*GetReportStateRequest); i { case 0: return &v.state @@ -2215,7 +2215,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*DeleteAuditQueryRequest); i { case 0: return &v.state @@ -2227,7 +2227,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*DeleteReportRequest); i { case 0: return &v.state @@ -2239,7 +2239,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*RunAuditQueryRequest); i { case 0: return &v.state @@ -2251,7 +2251,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*UpsertAuditQueryRequest); i { case 0: return &v.state @@ -2263,7 +2263,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*UpsertReportRequest); i { case 0: return &v.state @@ -2275,7 +2275,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*GetAuditQueryRequest); i { case 0: return &v.state @@ -2287,7 +2287,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*GetReportRequest); i { case 0: return &v.state @@ -2299,7 +2299,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*GetReportResultRequest); i { case 0: return &v.state @@ -2311,7 +2311,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*ListAuditQueriesRequest); i { case 0: return &v.state @@ -2323,7 +2323,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*ListReportsRequest); i { case 0: return &v.state @@ -2335,7 +2335,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*ListAuditQueriesResponse); i { case 0: return &v.state @@ -2347,7 +2347,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*GetSchemaRequest); i { case 0: return &v.state @@ -2359,7 +2359,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*GetSchemaResponse); i { case 0: return &v.state @@ -2371,7 +2371,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[20].Exporter = func(v any, i int) any { switch v := v.(*RunAuditQueryResponse); i { case 0: return &v.state @@ -2383,7 +2383,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[21].Exporter = func(v any, i int) any { switch v := v.(*ListReportsResponse); i { case 0: return &v.state @@ -2395,7 +2395,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[22].Exporter = func(v any, i int) any { switch v := v.(*GetReportResultResponse); i { case 0: return &v.state @@ -2407,7 +2407,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[23].Exporter = func(v any, i int) any { switch v := v.(*ReportResult); i { case 0: return &v.state @@ -2419,7 +2419,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[24].Exporter = func(v any, i int) any { switch v := v.(*ReportSate); i { case 0: return &v.state @@ -2431,7 +2431,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[25].Exporter = func(v any, i int) any { switch v := v.(*GetSchemaResponse_ViewDesc); i { case 0: return &v.state @@ -2443,7 +2443,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[26].Exporter = func(v any, i int) any { switch v := v.(*GetSchemaResponse_ViewDesc_ColumnDesc); i { case 0: return &v.state @@ -2455,7 +2455,7 @@ func file_teleport_secreports_v1_secreports_service_proto_init() { return nil } } - file_teleport_secreports_v1_secreports_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_teleport_secreports_v1_secreports_service_proto_msgTypes[27].Exporter = func(v any, i int) any { switch v := v.(*ReportResult_AuditQueryResult); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/trait/v1/trait.pb.go b/api/gen/proto/go/teleport/trait/v1/trait.pb.go index 84ee9e67a479f..4e597f85cfc33 100644 --- a/api/gen/proto/go/teleport/trait/v1/trait.pb.go +++ b/api/gen/proto/go/teleport/trait/v1/trait.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/trait/v1/trait.proto @@ -122,7 +122,7 @@ func file_teleport_trait_v1_trait_proto_rawDescGZIP() []byte { } var file_teleport_trait_v1_trait_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_trait_v1_trait_proto_goTypes = []interface{}{ +var file_teleport_trait_v1_trait_proto_goTypes = []any{ (*Trait)(nil), // 0: teleport.trait.v1.Trait } var file_teleport_trait_v1_trait_proto_depIdxs = []int32{ @@ -139,7 +139,7 @@ func file_teleport_trait_v1_trait_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_trait_v1_trait_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trait_v1_trait_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Trait); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/transport/v1/transport_service.pb.go b/api/gen/proto/go/teleport/transport/v1/transport_service.pb.go index fd88978c99184..c94482277128b 100644 --- a/api/gen/proto/go/teleport/transport/v1/transport_service.pb.go +++ b/api/gen/proto/go/teleport/transport/v1/transport_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/transport/v1/transport_service.proto @@ -697,7 +697,7 @@ func file_teleport_transport_v1_transport_service_proto_rawDescGZIP() []byte { } var file_teleport_transport_v1_transport_service_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_teleport_transport_v1_transport_service_proto_goTypes = []interface{}{ +var file_teleport_transport_v1_transport_service_proto_goTypes = []any{ (*ProxySSHRequest)(nil), // 0: teleport.transport.v1.ProxySSHRequest (*ProxySSHResponse)(nil), // 1: teleport.transport.v1.ProxySSHResponse (*ProxyClusterRequest)(nil), // 2: teleport.transport.v1.ProxyClusterRequest @@ -737,7 +737,7 @@ func file_teleport_transport_v1_transport_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_transport_v1_transport_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_transport_v1_transport_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ProxySSHRequest); i { case 0: return &v.state @@ -749,7 +749,7 @@ func file_teleport_transport_v1_transport_service_proto_init() { return nil } } - file_teleport_transport_v1_transport_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_transport_v1_transport_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ProxySSHResponse); i { case 0: return &v.state @@ -761,7 +761,7 @@ func file_teleport_transport_v1_transport_service_proto_init() { return nil } } - file_teleport_transport_v1_transport_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_transport_v1_transport_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ProxyClusterRequest); i { case 0: return &v.state @@ -773,7 +773,7 @@ func file_teleport_transport_v1_transport_service_proto_init() { return nil } } - file_teleport_transport_v1_transport_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_transport_v1_transport_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ProxyClusterResponse); i { case 0: return &v.state @@ -785,7 +785,7 @@ func file_teleport_transport_v1_transport_service_proto_init() { return nil } } - file_teleport_transport_v1_transport_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_transport_v1_transport_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*Frame); i { case 0: return &v.state @@ -797,7 +797,7 @@ func file_teleport_transport_v1_transport_service_proto_init() { return nil } } - file_teleport_transport_v1_transport_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_transport_v1_transport_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*TargetHost); i { case 0: return &v.state @@ -809,7 +809,7 @@ func file_teleport_transport_v1_transport_service_proto_init() { return nil } } - file_teleport_transport_v1_transport_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_transport_v1_transport_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*GetClusterDetailsRequest); i { case 0: return &v.state @@ -821,7 +821,7 @@ func file_teleport_transport_v1_transport_service_proto_init() { return nil } } - file_teleport_transport_v1_transport_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_transport_v1_transport_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*GetClusterDetailsResponse); i { case 0: return &v.state @@ -833,7 +833,7 @@ func file_teleport_transport_v1_transport_service_proto_init() { return nil } } - file_teleport_transport_v1_transport_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_transport_v1_transport_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*ClusterDetails); i { case 0: return &v.state @@ -846,11 +846,11 @@ func file_teleport_transport_v1_transport_service_proto_init() { } } } - file_teleport_transport_v1_transport_service_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_teleport_transport_v1_transport_service_proto_msgTypes[0].OneofWrappers = []any{ (*ProxySSHRequest_Ssh)(nil), (*ProxySSHRequest_Agent)(nil), } - file_teleport_transport_v1_transport_service_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_teleport_transport_v1_transport_service_proto_msgTypes[1].OneofWrappers = []any{ (*ProxySSHResponse_Ssh)(nil), (*ProxySSHResponse_Agent)(nil), } diff --git a/api/gen/proto/go/teleport/trust/v1/trust_service.pb.go b/api/gen/proto/go/teleport/trust/v1/trust_service.pb.go index 3b2911cbc3806..1a7513f3b1d22 100644 --- a/api/gen/proto/go/teleport/trust/v1/trust_service.pb.go +++ b/api/gen/proto/go/teleport/trust/v1/trust_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/trust/v1/trust_service.proto @@ -930,7 +930,7 @@ func file_teleport_trust_v1_trust_service_proto_rawDescGZIP() []byte { } var file_teleport_trust_v1_trust_service_proto_msgTypes = make([]protoimpl.MessageInfo, 12) -var file_teleport_trust_v1_trust_service_proto_goTypes = []interface{}{ +var file_teleport_trust_v1_trust_service_proto_goTypes = []any{ (*GetCertAuthorityRequest)(nil), // 0: teleport.trust.v1.GetCertAuthorityRequest (*GetCertAuthoritiesRequest)(nil), // 1: teleport.trust.v1.GetCertAuthoritiesRequest (*GetCertAuthoritiesResponse)(nil), // 2: teleport.trust.v1.GetCertAuthoritiesResponse @@ -985,7 +985,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_trust_v1_trust_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetCertAuthorityRequest); i { case 0: return &v.state @@ -997,7 +997,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetCertAuthoritiesRequest); i { case 0: return &v.state @@ -1009,7 +1009,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetCertAuthoritiesResponse); i { case 0: return &v.state @@ -1021,7 +1021,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*DeleteCertAuthorityRequest); i { case 0: return &v.state @@ -1033,7 +1033,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpsertCertAuthorityRequest); i { case 0: return &v.state @@ -1045,7 +1045,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*RotateCertAuthorityRequest); i { case 0: return &v.state @@ -1057,7 +1057,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*RotationSchedule); i { case 0: return &v.state @@ -1069,7 +1069,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*RotateCertAuthorityResponse); i { case 0: return &v.state @@ -1081,7 +1081,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*RotateExternalCertAuthorityRequest); i { case 0: return &v.state @@ -1093,7 +1093,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*RotateExternalCertAuthorityResponse); i { case 0: return &v.state @@ -1105,7 +1105,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*GenerateHostCertRequest); i { case 0: return &v.state @@ -1117,7 +1117,7 @@ func file_teleport_trust_v1_trust_service_proto_init() { return nil } } - file_teleport_trust_v1_trust_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_trust_v1_trust_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*GenerateHostCertResponse); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/userloginstate/v1/userloginstate.pb.go b/api/gen/proto/go/teleport/userloginstate/v1/userloginstate.pb.go index 92e238ec591c3..6179327c8865c 100644 --- a/api/gen/proto/go/teleport/userloginstate/v1/userloginstate.pb.go +++ b/api/gen/proto/go/teleport/userloginstate/v1/userloginstate.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userloginstate/v1/userloginstate.proto @@ -237,7 +237,7 @@ func file_teleport_userloginstate_v1_userloginstate_proto_rawDescGZIP() []byte { } var file_teleport_userloginstate_v1_userloginstate_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_userloginstate_v1_userloginstate_proto_goTypes = []interface{}{ +var file_teleport_userloginstate_v1_userloginstate_proto_goTypes = []any{ (*UserLoginState)(nil), // 0: teleport.userloginstate.v1.UserLoginState (*Spec)(nil), // 1: teleport.userloginstate.v1.Spec (*v1.ResourceHeader)(nil), // 2: teleport.header.v1.ResourceHeader @@ -261,7 +261,7 @@ func file_teleport_userloginstate_v1_userloginstate_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_userloginstate_v1_userloginstate_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userloginstate_v1_userloginstate_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*UserLoginState); i { case 0: return &v.state @@ -273,7 +273,7 @@ func file_teleport_userloginstate_v1_userloginstate_proto_init() { return nil } } - file_teleport_userloginstate_v1_userloginstate_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userloginstate_v1_userloginstate_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*Spec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/userloginstate/v1/userloginstate_service.pb.go b/api/gen/proto/go/teleport/userloginstate/v1/userloginstate_service.pb.go index c76cad3b5b9d1..9aa42a735dd9d 100644 --- a/api/gen/proto/go/teleport/userloginstate/v1/userloginstate_service.pb.go +++ b/api/gen/proto/go/teleport/userloginstate/v1/userloginstate_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userloginstate/v1/userloginstate_service.proto @@ -408,7 +408,7 @@ func file_teleport_userloginstate_v1_userloginstate_service_proto_rawDescGZIP() } var file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_teleport_userloginstate_v1_userloginstate_service_proto_goTypes = []interface{}{ +var file_teleport_userloginstate_v1_userloginstate_service_proto_goTypes = []any{ (*GetUserLoginStatesRequest)(nil), // 0: teleport.userloginstate.v1.GetUserLoginStatesRequest (*GetUserLoginStatesResponse)(nil), // 1: teleport.userloginstate.v1.GetUserLoginStatesResponse (*GetUserLoginStateRequest)(nil), // 2: teleport.userloginstate.v1.GetUserLoginStateRequest @@ -445,7 +445,7 @@ func file_teleport_userloginstate_v1_userloginstate_service_proto_init() { } file_teleport_userloginstate_v1_userloginstate_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetUserLoginStatesRequest); i { case 0: return &v.state @@ -457,7 +457,7 @@ func file_teleport_userloginstate_v1_userloginstate_service_proto_init() { return nil } } - file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetUserLoginStatesResponse); i { case 0: return &v.state @@ -469,7 +469,7 @@ func file_teleport_userloginstate_v1_userloginstate_service_proto_init() { return nil } } - file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetUserLoginStateRequest); i { case 0: return &v.state @@ -481,7 +481,7 @@ func file_teleport_userloginstate_v1_userloginstate_service_proto_init() { return nil } } - file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*UpsertUserLoginStateRequest); i { case 0: return &v.state @@ -493,7 +493,7 @@ func file_teleport_userloginstate_v1_userloginstate_service_proto_init() { return nil } } - file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*DeleteUserLoginStateRequest); i { case 0: return &v.state @@ -505,7 +505,7 @@ func file_teleport_userloginstate_v1_userloginstate_service_proto_init() { return nil } } - file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userloginstate_v1_userloginstate_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*DeleteAllUserLoginStatesRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/userprovisioning/v2/statichostuser.pb.go b/api/gen/proto/go/teleport/userprovisioning/v2/statichostuser.pb.go index e067264a525e2..b72bbb2125e14 100644 --- a/api/gen/proto/go/teleport/userprovisioning/v2/statichostuser.pb.go +++ b/api/gen/proto/go/teleport/userprovisioning/v2/statichostuser.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userprovisioning/v2/statichostuser.proto @@ -358,7 +358,7 @@ func file_teleport_userprovisioning_v2_statichostuser_proto_rawDescGZIP() []byte } var file_teleport_userprovisioning_v2_statichostuser_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_teleport_userprovisioning_v2_statichostuser_proto_goTypes = []interface{}{ +var file_teleport_userprovisioning_v2_statichostuser_proto_goTypes = []any{ (*StaticHostUser)(nil), // 0: teleport.userprovisioning.v2.StaticHostUser (*Matcher)(nil), // 1: teleport.userprovisioning.v2.Matcher (*StaticHostUserSpec)(nil), // 2: teleport.userprovisioning.v2.StaticHostUserSpec @@ -383,7 +383,7 @@ func file_teleport_userprovisioning_v2_statichostuser_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_userprovisioning_v2_statichostuser_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*StaticHostUser); i { case 0: return &v.state @@ -395,7 +395,7 @@ func file_teleport_userprovisioning_v2_statichostuser_proto_init() { return nil } } - file_teleport_userprovisioning_v2_statichostuser_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*Matcher); i { case 0: return &v.state @@ -407,7 +407,7 @@ func file_teleport_userprovisioning_v2_statichostuser_proto_init() { return nil } } - file_teleport_userprovisioning_v2_statichostuser_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*StaticHostUserSpec); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/userprovisioning/v2/statichostuser_service.pb.go b/api/gen/proto/go/teleport/userprovisioning/v2/statichostuser_service.pb.go index d6cd129f9ec36..d532b529bb52a 100644 --- a/api/gen/proto/go/teleport/userprovisioning/v2/statichostuser_service.pb.go +++ b/api/gen/proto/go/teleport/userprovisioning/v2/statichostuser_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userprovisioning/v2/statichostuser_service.proto @@ -525,7 +525,7 @@ func file_teleport_userprovisioning_v2_statichostuser_service_proto_rawDescGZIP( } var file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_teleport_userprovisioning_v2_statichostuser_service_proto_goTypes = []interface{}{ +var file_teleport_userprovisioning_v2_statichostuser_service_proto_goTypes = []any{ (*GetStaticHostUserRequest)(nil), // 0: teleport.userprovisioning.v2.GetStaticHostUserRequest (*ListStaticHostUsersRequest)(nil), // 1: teleport.userprovisioning.v2.ListStaticHostUsersRequest (*ListStaticHostUsersResponse)(nil), // 2: teleport.userprovisioning.v2.ListStaticHostUsersResponse @@ -567,7 +567,7 @@ func file_teleport_userprovisioning_v2_statichostuser_service_proto_init() { } file_teleport_userprovisioning_v2_statichostuser_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetStaticHostUserRequest); i { case 0: return &v.state @@ -579,7 +579,7 @@ func file_teleport_userprovisioning_v2_statichostuser_service_proto_init() { return nil } } - file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ListStaticHostUsersRequest); i { case 0: return &v.state @@ -591,7 +591,7 @@ func file_teleport_userprovisioning_v2_statichostuser_service_proto_init() { return nil } } - file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListStaticHostUsersResponse); i { case 0: return &v.state @@ -603,7 +603,7 @@ func file_teleport_userprovisioning_v2_statichostuser_service_proto_init() { return nil } } - file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*CreateStaticHostUserRequest); i { case 0: return &v.state @@ -615,7 +615,7 @@ func file_teleport_userprovisioning_v2_statichostuser_service_proto_init() { return nil } } - file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*UpdateStaticHostUserRequest); i { case 0: return &v.state @@ -627,7 +627,7 @@ func file_teleport_userprovisioning_v2_statichostuser_service_proto_init() { return nil } } - file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*UpsertStaticHostUserRequest); i { case 0: return &v.state @@ -639,7 +639,7 @@ func file_teleport_userprovisioning_v2_statichostuser_service_proto_init() { return nil } } - file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userprovisioning_v2_statichostuser_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*DeleteStaticHostUserRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/users/v1/users_service.pb.go b/api/gen/proto/go/teleport/users/v1/users_service.pb.go index 366bc76a0cb59..2b8a3611b6eaf 100644 --- a/api/gen/proto/go/teleport/users/v1/users_service.pb.go +++ b/api/gen/proto/go/teleport/users/v1/users_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/users/v1/users_service.proto @@ -750,7 +750,7 @@ func file_teleport_users_v1_users_service_proto_rawDescGZIP() []byte { } var file_teleport_users_v1_users_service_proto_msgTypes = make([]protoimpl.MessageInfo, 11) -var file_teleport_users_v1_users_service_proto_goTypes = []interface{}{ +var file_teleport_users_v1_users_service_proto_goTypes = []any{ (*GetUserRequest)(nil), // 0: teleport.users.v1.GetUserRequest (*GetUserResponse)(nil), // 1: teleport.users.v1.GetUserResponse (*ListUsersRequest)(nil), // 2: teleport.users.v1.ListUsersRequest @@ -801,7 +801,7 @@ func file_teleport_users_v1_users_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_users_v1_users_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetUserRequest); i { case 0: return &v.state @@ -813,7 +813,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetUserResponse); i { case 0: return &v.state @@ -825,7 +825,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ListUsersRequest); i { case 0: return &v.state @@ -837,7 +837,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ListUsersResponse); i { case 0: return &v.state @@ -849,7 +849,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*CreateUserRequest); i { case 0: return &v.state @@ -861,7 +861,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*CreateUserResponse); i { case 0: return &v.state @@ -873,7 +873,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*UpdateUserRequest); i { case 0: return &v.state @@ -885,7 +885,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*UpdateUserResponse); i { case 0: return &v.state @@ -897,7 +897,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*UpsertUserRequest); i { case 0: return &v.state @@ -909,7 +909,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*UpsertUserResponse); i { case 0: return &v.state @@ -921,7 +921,7 @@ func file_teleport_users_v1_users_service_proto_init() { return nil } } - file_teleport_users_v1_users_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_users_v1_users_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*DeleteUserRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/usertasks/v1/user_tasks.pb.go b/api/gen/proto/go/teleport/usertasks/v1/user_tasks.pb.go index 0c4568ee42151..14e23a399fa03 100644 --- a/api/gen/proto/go/teleport/usertasks/v1/user_tasks.pb.go +++ b/api/gen/proto/go/teleport/usertasks/v1/user_tasks.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/usertasks/v1/user_tasks.proto @@ -496,7 +496,7 @@ func file_teleport_usertasks_v1_user_tasks_proto_rawDescGZIP() []byte { } var file_teleport_usertasks_v1_user_tasks_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_usertasks_v1_user_tasks_proto_goTypes = []interface{}{ +var file_teleport_usertasks_v1_user_tasks_proto_goTypes = []any{ (*UserTask)(nil), // 0: teleport.usertasks.v1.UserTask (*UserTaskSpec)(nil), // 1: teleport.usertasks.v1.UserTaskSpec (*DiscoverEC2)(nil), // 2: teleport.usertasks.v1.DiscoverEC2 @@ -525,7 +525,7 @@ func file_teleport_usertasks_v1_user_tasks_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_usertasks_v1_user_tasks_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*UserTask); i { case 0: return &v.state @@ -537,7 +537,7 @@ func file_teleport_usertasks_v1_user_tasks_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*UserTaskSpec); i { case 0: return &v.state @@ -549,7 +549,7 @@ func file_teleport_usertasks_v1_user_tasks_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*DiscoverEC2); i { case 0: return &v.state @@ -561,7 +561,7 @@ func file_teleport_usertasks_v1_user_tasks_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*DiscoverEC2Instance); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/usertasks/v1/user_tasks_service.pb.go b/api/gen/proto/go/teleport/usertasks/v1/user_tasks_service.pb.go index eae16296d0c9a..381301746923d 100644 --- a/api/gen/proto/go/teleport/usertasks/v1/user_tasks_service.pb.go +++ b/api/gen/proto/go/teleport/usertasks/v1/user_tasks_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/usertasks/v1/user_tasks_service.proto @@ -584,7 +584,7 @@ func file_teleport_usertasks_v1_user_tasks_service_proto_rawDescGZIP() []byte { } var file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_teleport_usertasks_v1_user_tasks_service_proto_goTypes = []interface{}{ +var file_teleport_usertasks_v1_user_tasks_service_proto_goTypes = []any{ (*CreateUserTaskRequest)(nil), // 0: teleport.usertasks.v1.CreateUserTaskRequest (*UpsertUserTaskRequest)(nil), // 1: teleport.usertasks.v1.UpsertUserTaskRequest (*GetUserTaskRequest)(nil), // 2: teleport.usertasks.v1.GetUserTaskRequest @@ -629,7 +629,7 @@ func file_teleport_usertasks_v1_user_tasks_service_proto_init() { } file_teleport_usertasks_v1_user_tasks_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*CreateUserTaskRequest); i { case 0: return &v.state @@ -641,7 +641,7 @@ func file_teleport_usertasks_v1_user_tasks_service_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*UpsertUserTaskRequest); i { case 0: return &v.state @@ -653,7 +653,7 @@ func file_teleport_usertasks_v1_user_tasks_service_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetUserTaskRequest); i { case 0: return &v.state @@ -665,7 +665,7 @@ func file_teleport_usertasks_v1_user_tasks_service_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ListUserTasksRequest); i { case 0: return &v.state @@ -677,7 +677,7 @@ func file_teleport_usertasks_v1_user_tasks_service_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ListUserTasksByIntegrationRequest); i { case 0: return &v.state @@ -689,7 +689,7 @@ func file_teleport_usertasks_v1_user_tasks_service_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*ListUserTasksResponse); i { case 0: return &v.state @@ -701,7 +701,7 @@ func file_teleport_usertasks_v1_user_tasks_service_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*UpdateUserTaskRequest); i { case 0: return &v.state @@ -713,7 +713,7 @@ func file_teleport_usertasks_v1_user_tasks_service_proto_init() { return nil } } - file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_usertasks_v1_user_tasks_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*DeleteUserTaskRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/vnet/v1/vnet_config.pb.go b/api/gen/proto/go/teleport/vnet/v1/vnet_config.pb.go index 6186ef685c44e..d0a7bd5b15d7a 100644 --- a/api/gen/proto/go/teleport/vnet/v1/vnet_config.pb.go +++ b/api/gen/proto/go/teleport/vnet/v1/vnet_config.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/vnet/v1/vnet_config.proto @@ -277,7 +277,7 @@ func file_teleport_vnet_v1_vnet_config_proto_rawDescGZIP() []byte { } var file_teleport_vnet_v1_vnet_config_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_teleport_vnet_v1_vnet_config_proto_goTypes = []interface{}{ +var file_teleport_vnet_v1_vnet_config_proto_goTypes = []any{ (*VnetConfig)(nil), // 0: teleport.vnet.v1.VnetConfig (*VnetConfigSpec)(nil), // 1: teleport.vnet.v1.VnetConfigSpec (*CustomDNSZone)(nil), // 2: teleport.vnet.v1.CustomDNSZone @@ -300,7 +300,7 @@ func file_teleport_vnet_v1_vnet_config_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_vnet_v1_vnet_config_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_vnet_v1_vnet_config_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*VnetConfig); i { case 0: return &v.state @@ -312,7 +312,7 @@ func file_teleport_vnet_v1_vnet_config_proto_init() { return nil } } - file_teleport_vnet_v1_vnet_config_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_vnet_v1_vnet_config_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*VnetConfigSpec); i { case 0: return &v.state @@ -324,7 +324,7 @@ func file_teleport_vnet_v1_vnet_config_proto_init() { return nil } } - file_teleport_vnet_v1_vnet_config_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_vnet_v1_vnet_config_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*CustomDNSZone); i { case 0: return &v.state diff --git a/api/gen/proto/go/teleport/vnet/v1/vnet_config_service.pb.go b/api/gen/proto/go/teleport/vnet/v1/vnet_config_service.pb.go index a8a660460e7fc..b807bc6f3ef53 100644 --- a/api/gen/proto/go/teleport/vnet/v1/vnet_config_service.pb.go +++ b/api/gen/proto/go/teleport/vnet/v1/vnet_config_service.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/vnet/v1/vnet_config_service.proto @@ -341,7 +341,7 @@ func file_teleport_vnet_v1_vnet_config_service_proto_rawDescGZIP() []byte { } var file_teleport_vnet_v1_vnet_config_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_vnet_v1_vnet_config_service_proto_goTypes = []interface{}{ +var file_teleport_vnet_v1_vnet_config_service_proto_goTypes = []any{ (*GetVnetConfigRequest)(nil), // 0: teleport.vnet.v1.GetVnetConfigRequest (*CreateVnetConfigRequest)(nil), // 1: teleport.vnet.v1.CreateVnetConfigRequest (*UpdateVnetConfigRequest)(nil), // 2: teleport.vnet.v1.UpdateVnetConfigRequest @@ -378,7 +378,7 @@ func file_teleport_vnet_v1_vnet_config_service_proto_init() { } file_teleport_vnet_v1_vnet_config_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GetVnetConfigRequest); i { case 0: return &v.state @@ -390,7 +390,7 @@ func file_teleport_vnet_v1_vnet_config_service_proto_init() { return nil } } - file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*CreateVnetConfigRequest); i { case 0: return &v.state @@ -402,7 +402,7 @@ func file_teleport_vnet_v1_vnet_config_service_proto_init() { return nil } } - file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*UpdateVnetConfigRequest); i { case 0: return &v.state @@ -414,7 +414,7 @@ func file_teleport_vnet_v1_vnet_config_service_proto_init() { return nil } } - file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*UpsertVnetConfigRequest); i { case 0: return &v.state @@ -426,7 +426,7 @@ func file_teleport_vnet_v1_vnet_config_service_proto_init() { return nil } } - file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_vnet_v1_vnet_config_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*DeleteVnetConfigRequest); i { case 0: return &v.state diff --git a/api/gen/proto/go/userpreferences/v1/access_graph.pb.go b/api/gen/proto/go/userpreferences/v1/access_graph.pb.go index a2bea001a0711..9e645fbc1f2d7 100644 --- a/api/gen/proto/go/userpreferences/v1/access_graph.pb.go +++ b/api/gen/proto/go/userpreferences/v1/access_graph.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userpreferences/v1/access_graph.proto @@ -118,7 +118,7 @@ func file_teleport_userpreferences_v1_access_graph_proto_rawDescGZIP() []byte { } var file_teleport_userpreferences_v1_access_graph_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_userpreferences_v1_access_graph_proto_goTypes = []interface{}{ +var file_teleport_userpreferences_v1_access_graph_proto_goTypes = []any{ (*AccessGraphUserPreferences)(nil), // 0: teleport.userpreferences.v1.AccessGraphUserPreferences } var file_teleport_userpreferences_v1_access_graph_proto_depIdxs = []int32{ @@ -135,7 +135,7 @@ func file_teleport_userpreferences_v1_access_graph_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_userpreferences_v1_access_graph_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_access_graph_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphUserPreferences); i { case 0: return &v.state diff --git a/api/gen/proto/go/userpreferences/v1/assist.pb.go b/api/gen/proto/go/userpreferences/v1/assist.pb.go index 5806d8a0ca97d..68cf807582627 100644 --- a/api/gen/proto/go/userpreferences/v1/assist.pb.go +++ b/api/gen/proto/go/userpreferences/v1/assist.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userpreferences/v1/assist.proto @@ -204,7 +204,7 @@ func file_teleport_userpreferences_v1_assist_proto_rawDescGZIP() []byte { var file_teleport_userpreferences_v1_assist_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_userpreferences_v1_assist_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_userpreferences_v1_assist_proto_goTypes = []interface{}{ +var file_teleport_userpreferences_v1_assist_proto_goTypes = []any{ (AssistViewMode)(0), // 0: teleport.userpreferences.v1.AssistViewMode (*AssistUserPreferences)(nil), // 1: teleport.userpreferences.v1.AssistUserPreferences } @@ -223,7 +223,7 @@ func file_teleport_userpreferences_v1_assist_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_userpreferences_v1_assist_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_assist_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AssistUserPreferences); i { case 0: return &v.state diff --git a/api/gen/proto/go/userpreferences/v1/cluster_preferences.pb.go b/api/gen/proto/go/userpreferences/v1/cluster_preferences.pb.go index 709ff59099f28..8ab7131faa31e 100644 --- a/api/gen/proto/go/userpreferences/v1/cluster_preferences.pb.go +++ b/api/gen/proto/go/userpreferences/v1/cluster_preferences.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userpreferences/v1/cluster_preferences.proto @@ -175,7 +175,7 @@ func file_teleport_userpreferences_v1_cluster_preferences_proto_rawDescGZIP() [] } var file_teleport_userpreferences_v1_cluster_preferences_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_userpreferences_v1_cluster_preferences_proto_goTypes = []interface{}{ +var file_teleport_userpreferences_v1_cluster_preferences_proto_goTypes = []any{ (*PinnedResourcesUserPreferences)(nil), // 0: teleport.userpreferences.v1.PinnedResourcesUserPreferences (*ClusterUserPreferences)(nil), // 1: teleport.userpreferences.v1.ClusterUserPreferences } @@ -194,7 +194,7 @@ func file_teleport_userpreferences_v1_cluster_preferences_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_userpreferences_v1_cluster_preferences_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_cluster_preferences_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*PinnedResourcesUserPreferences); i { case 0: return &v.state @@ -206,7 +206,7 @@ func file_teleport_userpreferences_v1_cluster_preferences_proto_init() { return nil } } - file_teleport_userpreferences_v1_cluster_preferences_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_cluster_preferences_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ClusterUserPreferences); i { case 0: return &v.state diff --git a/api/gen/proto/go/userpreferences/v1/onboard.pb.go b/api/gen/proto/go/userpreferences/v1/onboard.pb.go index 39bffb3cce49f..0b1b153c8ef90 100644 --- a/api/gen/proto/go/userpreferences/v1/onboard.pb.go +++ b/api/gen/proto/go/userpreferences/v1/onboard.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userpreferences/v1/onboard.proto @@ -290,7 +290,7 @@ func file_teleport_userpreferences_v1_onboard_proto_rawDescGZIP() []byte { var file_teleport_userpreferences_v1_onboard_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_userpreferences_v1_onboard_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_userpreferences_v1_onboard_proto_goTypes = []interface{}{ +var file_teleport_userpreferences_v1_onboard_proto_goTypes = []any{ (Resource)(0), // 0: teleport.userpreferences.v1.Resource (*MarketingParams)(nil), // 1: teleport.userpreferences.v1.MarketingParams (*OnboardUserPreferences)(nil), // 2: teleport.userpreferences.v1.OnboardUserPreferences @@ -311,7 +311,7 @@ func file_teleport_userpreferences_v1_onboard_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_userpreferences_v1_onboard_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_onboard_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*MarketingParams); i { case 0: return &v.state @@ -323,7 +323,7 @@ func file_teleport_userpreferences_v1_onboard_proto_init() { return nil } } - file_teleport_userpreferences_v1_onboard_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_onboard_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*OnboardUserPreferences); i { case 0: return &v.state diff --git a/api/gen/proto/go/userpreferences/v1/theme.pb.go b/api/gen/proto/go/userpreferences/v1/theme.pb.go index fa2c0e749c603..a86eeb33a7d74 100644 --- a/api/gen/proto/go/userpreferences/v1/theme.pb.go +++ b/api/gen/proto/go/userpreferences/v1/theme.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userpreferences/v1/theme.proto @@ -119,7 +119,7 @@ func file_teleport_userpreferences_v1_theme_proto_rawDescGZIP() []byte { } var file_teleport_userpreferences_v1_theme_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_teleport_userpreferences_v1_theme_proto_goTypes = []interface{}{ +var file_teleport_userpreferences_v1_theme_proto_goTypes = []any{ (Theme)(0), // 0: teleport.userpreferences.v1.Theme } var file_teleport_userpreferences_v1_theme_proto_depIdxs = []int32{ diff --git a/api/gen/proto/go/userpreferences/v1/unified_resource_preferences.pb.go b/api/gen/proto/go/userpreferences/v1/unified_resource_preferences.pb.go index 259769458d5dc..578a0eda33447 100644 --- a/api/gen/proto/go/userpreferences/v1/unified_resource_preferences.pb.go +++ b/api/gen/proto/go/userpreferences/v1/unified_resource_preferences.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userpreferences/v1/unified_resource_preferences.proto @@ -408,7 +408,7 @@ func file_teleport_userpreferences_v1_unified_resource_preferences_proto_rawDesc var file_teleport_userpreferences_v1_unified_resource_preferences_proto_enumTypes = make([]protoimpl.EnumInfo, 4) var file_teleport_userpreferences_v1_unified_resource_preferences_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_userpreferences_v1_unified_resource_preferences_proto_goTypes = []interface{}{ +var file_teleport_userpreferences_v1_unified_resource_preferences_proto_goTypes = []any{ (DefaultTab)(0), // 0: teleport.userpreferences.v1.DefaultTab (ViewMode)(0), // 1: teleport.userpreferences.v1.ViewMode (LabelsViewMode)(0), // 2: teleport.userpreferences.v1.LabelsViewMode @@ -433,7 +433,7 @@ func file_teleport_userpreferences_v1_unified_resource_preferences_proto_init() return } if !protoimpl.UnsafeEnabled { - file_teleport_userpreferences_v1_unified_resource_preferences_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_unified_resource_preferences_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*UnifiedResourcePreferences); i { case 0: return &v.state diff --git a/api/gen/proto/go/userpreferences/v1/userpreferences.pb.go b/api/gen/proto/go/userpreferences/v1/userpreferences.pb.go index 4b85a6b677b0a..9920c2f2a5adc 100644 --- a/api/gen/proto/go/userpreferences/v1/userpreferences.pb.go +++ b/api/gen/proto/go/userpreferences/v1/userpreferences.pb.go @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/userpreferences/v1/userpreferences.proto @@ -386,7 +386,7 @@ func file_teleport_userpreferences_v1_userpreferences_proto_rawDescGZIP() []byte } var file_teleport_userpreferences_v1_userpreferences_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_teleport_userpreferences_v1_userpreferences_proto_goTypes = []interface{}{ +var file_teleport_userpreferences_v1_userpreferences_proto_goTypes = []any{ (*UserPreferences)(nil), // 0: teleport.userpreferences.v1.UserPreferences (*GetUserPreferencesRequest)(nil), // 1: teleport.userpreferences.v1.GetUserPreferencesRequest (*GetUserPreferencesResponse)(nil), // 2: teleport.userpreferences.v1.GetUserPreferencesResponse @@ -431,7 +431,7 @@ func file_teleport_userpreferences_v1_userpreferences_proto_init() { file_teleport_userpreferences_v1_theme_proto_init() file_teleport_userpreferences_v1_unified_resource_preferences_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_userpreferences_v1_userpreferences_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_userpreferences_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*UserPreferences); i { case 0: return &v.state @@ -443,7 +443,7 @@ func file_teleport_userpreferences_v1_userpreferences_proto_init() { return nil } } - file_teleport_userpreferences_v1_userpreferences_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_userpreferences_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GetUserPreferencesRequest); i { case 0: return &v.state @@ -455,7 +455,7 @@ func file_teleport_userpreferences_v1_userpreferences_proto_init() { return nil } } - file_teleport_userpreferences_v1_userpreferences_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_userpreferences_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetUserPreferencesResponse); i { case 0: return &v.state @@ -467,7 +467,7 @@ func file_teleport_userpreferences_v1_userpreferences_proto_init() { return nil } } - file_teleport_userpreferences_v1_userpreferences_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_userpreferences_v1_userpreferences_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*UpsertUserPreferencesRequest); i { case 0: return &v.state diff --git a/api/version.go b/api/version.go index ac066054f7e78..f470ea5093676 100644 --- a/api/version.go +++ b/api/version.go @@ -3,6 +3,6 @@ package api import "github.com/coreos/go-semver/semver" -const Version = "16.4.8" +const Version = "16.4.9" var SemVersion = semver.New(Version) diff --git a/build.assets/macos/tsh/tsh.app/Contents/Info.plist b/build.assets/macos/tsh/tsh.app/Contents/Info.plist index 86f599cb845b3..8c79d51b64092 100644 --- a/build.assets/macos/tsh/tsh.app/Contents/Info.plist +++ b/build.assets/macos/tsh/tsh.app/Contents/Info.plist @@ -19,13 +19,13 @@ CFBundlePackageType APPL CFBundleShortVersionString - 16.4.8 + 16.4.9 CFBundleSupportedPlatforms MacOSX CFBundleVersion - 16.4.8 + 16.4.9 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild diff --git a/build.assets/macos/tshdev/tsh.app/Contents/Info.plist b/build.assets/macos/tshdev/tsh.app/Contents/Info.plist index 47d22552db6e8..3d06965189efc 100644 --- a/build.assets/macos/tshdev/tsh.app/Contents/Info.plist +++ b/build.assets/macos/tshdev/tsh.app/Contents/Info.plist @@ -17,13 +17,13 @@ CFBundlePackageType APPL CFBundleShortVersionString - 16.4.8 + 16.4.9 CFBundleSupportedPlatforms MacOSX CFBundleVersion - 16.4.8 + 16.4.9 DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild diff --git a/build.assets/tooling/go.mod b/build.assets/tooling/go.mod index d20a6bc101c60..84ebbd1d43ae4 100644 --- a/build.assets/tooling/go.mod +++ b/build.assets/tooling/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport/build.assets/tooling -go 1.22.9 +go 1.22.10 require ( github.com/Masterminds/sprig/v3 v3.2.3 diff --git a/build.assets/versions.mk b/build.assets/versions.mk index 5277eaaeb7289..72240f4c4c1d9 100644 --- a/build.assets/versions.mk +++ b/build.assets/versions.mk @@ -3,7 +3,7 @@ # Keep versions in sync with devbox.json, when applicable. # Sync with devbox.json. -GOLANG_VERSION ?= go1.22.9 +GOLANG_VERSION ?= go1.22.10 GOLANGCI_LINT_VERSION ?= v1.61.0 NODE_VERSION ?= 20.18.0 diff --git a/docs/config.json b/docs/config.json index f46a51a1eb3d4..148487b708009 100644 --- a/docs/config.json +++ b/docs/config.json @@ -45,10 +45,7 @@ { "title": "Usage Reporting and Billing", "slug": "/usage-billing/", - "forScopes": [ - "cloud", - "enterprise" - ] + "forScopes": ["cloud", "enterprise"] }, { "title": "Upcoming Releases", @@ -2548,11 +2545,6 @@ "destination": "/reference/terraform-provider/terraform-provider/", "permanent": true }, - { - "source": "/upgrading/", - "destination": "/upgrading/upgrading/", - "permanent": true - }, { "source": "/connect-your-client/", "destination": "/connect-your-client/connect-your-client/", @@ -2783,11 +2775,6 @@ "destination": "/admin-guides/access-controls/access-controls/", "permanent": true }, - { - "source": "/admin-guides/access-controls/sso/", - "destination": "/admin-guides/access-controls/sso/sso/", - "permanent": true - }, { "source": "/admin-guides/access-controls/idps/", "destination": "/admin-guides/access-controls/idps/idps/", @@ -2842,6 +2829,96 @@ "source": "/admin-guides/teleport-policy/integrations/", "destination": "/admin-guides/teleport-policy/integrations/integrations/", "permanent": true + }, + { + "source": "/choose-an-edition/introduction/", + "destination": "/get-started/", + "permanent": true + }, + { + "source": "/preview/upcoming-releases/", + "destination": "/upcoming-releases/", + "permanent": true + }, + { + "source": "/upgrading/", + "destination": "/upgrading/upgrading/", + "permanent": true + }, + { + "source": "/admin-guide/", + "destination": "/admin-guides/admin-guides/", + "permanent": true + }, + { + "source": "/setup/reference/config/", + "destination": "/reference/config/", + "permanent": true + }, + { + "source": "/quickstart/", + "destination": "/get-started/", + "permanent": true + }, + { + "source": "/getting-started/docker-compose/", + "destination": "/get-started/", + "permanent": true + }, + { + "source": "/server-access/guides/openssh/", + "destination": "/enroll-resources/server-access/openssh/openssh-agentless/", + "permanent": true + }, + { + "source": "/admin-guides/access-controls/sso/", + "destination": "/admin-guides/access-controls/sso/sso/", + "permanent": true + }, + { + "source": "/management/operations/upgrading/", + "destination": "/upgrading/upgrading/", + "permanent": true + }, + { + "source": "/enterprise/sso/adfs/", + "destination": "/admin-guides/access-controls/sso/adfs/", + "permanent": true + }, + { + "source": "/architecture/overview/", + "destination": "/reference/architecture/architecture/", + "permanent": true + }, + { + "source": "/choose-an-edition/teleport-cloud/downloads/", + "destination": "/installation/", + "permanent": true + }, + { + "source": "/desktop-access/active-directory-manual/", + "destination": "/enroll-resources/desktop-access/active-directory/", + "permanent": true + }, + { + "source": "/server-access/guides/tsh/", + "destination": "/reference/cli/tsh/", + "permanent": true + }, + { + "source": "/getting-started/linux-server/", + "destination": "/admin-guides/deploy-a-cluster/linux-demo/", + "permanent": true + }, + { + "source": "/setup/admin/adding-nodes/", + "destination": "/enroll-resources/agents/join-services-to-your-cluster/join-services-to-your-cluster/", + "permanent": true + }, + { + "source": "/setup/reference/cli/", + "destination": "/reference/cli/cli/", + "permanent": true } ] } diff --git a/docs/cspell.json b/docs/cspell.json index bfc72f3325344..991ce9fdcf0a8 100644 --- a/docs/cspell.json +++ b/docs/cspell.json @@ -83,6 +83,7 @@ "GODEBUG", "GOMAXPROCS", "GSLB", + "GSSAPI", "Gbps", "Ghostunnel", "Goland", @@ -1035,4 +1036,4 @@ "**/reference/terraform-provider/**", "**/reference/operator-resources/**" ] -} \ No newline at end of file +} diff --git a/docs/pages/admin-guides/management/guides/ec2-tags.mdx b/docs/pages/admin-guides/management/guides/ec2-tags.mdx index 409cc020efc31..93338221fd7b6 100644 --- a/docs/pages/admin-guides/management/guides/ec2-tags.mdx +++ b/docs/pages/admin-guides/management/guides/ec2-tags.mdx @@ -10,7 +10,7 @@ this way will have the `aws/` prefix. When the Teleport process starts, it fetch the instance metadata service and adds them as labels. The process will update the tags every hour, so newly created or deleted tags will be reflected in the labels. -If the tag `TeleportHostname` (case-sensitive) is present, its value will override the node's hostname. +If the tag `TeleportHostname` is present, its value (must be lower case) will override the node's hostname. ```code $ tsh ls diff --git a/docs/pages/admin-guides/management/guides/gcp-tags.mdx b/docs/pages/admin-guides/management/guides/gcp-tags.mdx index 80e9451716d10..031f8679b5bef 100644 --- a/docs/pages/admin-guides/management/guides/gcp-tags.mdx +++ b/docs/pages/admin-guides/management/guides/gcp-tags.mdx @@ -17,7 +17,7 @@ When the Teleport process starts, it fetches all tags and labels from the GCP API and adds them as labels. The process will update the tags every hour, so newly created or deleted tags will be reflected in the labels. -If the GCP label `TeleportHostname` (case-sensitive) is present, its value will override the node's hostname. This +If the GCP label `TeleportHostname` is present, its value (must be lower case) will override the node's hostname. This does not apply to GCP tags. ```code diff --git a/docs/pages/enroll-resources/database-access/faq.mdx b/docs/pages/enroll-resources/database-access/faq.mdx index 624e8c7e5c3e2..7fcbcb5bcf44d 100644 --- a/docs/pages/enroll-resources/database-access/faq.mdx +++ b/docs/pages/enroll-resources/database-access/faq.mdx @@ -25,13 +25,14 @@ The Teleport Database Service currently supports the following protocols: - Redis - Snowflake -For PostgreSQL and MySQL, the following Cloud-hosted versions are supported in addition to self-hosted deployments: +For PostgreSQL, Oracle and MySQL, the following Cloud-hosted versions are supported in addition to self-hosted deployments: - Amazon RDS - Amazon Aurora (except for Amazon Aurora Serverless, which doesn't support IAM authentication) - Amazon Redshift - Google Cloud SQL - Azure Database +- Oracle Exadata See the available [guides](guides/guides.mdx) for all supported configurations. diff --git a/docs/pages/includes/database-access/self-hosted-introduction.mdx b/docs/pages/includes/database-access/self-hosted-introduction.mdx index da9db52cd28e3..5fcd5bd3e7f08 100644 --- a/docs/pages/includes/database-access/self-hosted-introduction.mdx +++ b/docs/pages/includes/database-access/self-hosted-introduction.mdx @@ -5,14 +5,14 @@ system](../../enroll-resources/database-access/rbac.mdx). The Teleport Database Service proxies traffic from database clients to self-hosted databases in your infrastructure. Teleport maintains a certificate -authority for database clients. You configure your database to trust the +authority (CA) for database clients. You configure your database to trust the Teleport database client CA, and the Teleport Database Service presents certificates signed by this CA when proxying user traffic. With this setup, there is no need to store long-lived credentials for self-hosted databases. Meanwhile, the Teleport Database Service verifies self-hosted databases by checking their TLS certificates against either the Teleport database CA or a -custom CA chosen by the user. +custom CA used with the database. In this guide, you will: diff --git a/docs/pages/reference/access-controls/authentication.mdx b/docs/pages/reference/access-controls/authentication.mdx index 1f6feafcd791c..d28240bb98f10 100644 --- a/docs/pages/reference/access-controls/authentication.mdx +++ b/docs/pages/reference/access-controls/authentication.mdx @@ -267,3 +267,49 @@ See [GitHub OAuth 2.0](../../admin-guides/access-controls/sso/github-sso.mdx) fo + +## Require displaying a message of the day + +Teleport can display a custom message of the day (MOTD) for users prior to authenticating +in the Teleport Web UI and CLI. + +### Self-Hosted + +Add the following to your Teleport configuration file, which is stored in +`/etc/teleport.yaml` by default. + +```yaml +auth_service: + message_of_the_day: | + Welcome to the Example Teleport Cluster + All activity is monitored and should follow organization policies +``` + +Restart the Teleport Auth Service instances to apply this change. + +### Teleport Enterprise Cloud/Dynamic + +Edit your `cluster_auth_preference` resource: + +```code +$ tctl edit cap +``` + +Ensure that the resource includes the `message_of_the_day` field: + +```yaml +kind: cluster_auth_preference +metadata: + name: cluster-auth-preference +spec: + message_of_the_day: | + Welcome to the Example Teleport Cluster + All activity is monitored and should follow organization policies + type: local + second_factor: "on" + webauthn: + rp_id: example.teleport.sh +version: v2 +``` + +Save and close the file in your editor to apply changes. diff --git a/examples/chart/access/datadog/Chart.yaml b/examples/chart/access/datadog/Chart.yaml index 38996692b5558..c172834619904 100644 --- a/examples/chart/access/datadog/Chart.yaml +++ b/examples/chart/access/datadog/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" apiVersion: v2 name: teleport-plugin-datadog diff --git a/examples/chart/access/datadog/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/datadog/tests/__snapshot__/configmap_test.yaml.snap index a65a1c15fbe0a..a409d1bd137c0 100644 --- a/examples/chart/access/datadog/tests/__snapshot__/configmap_test.yaml.snap +++ b/examples/chart/access/datadog/tests/__snapshot__/configmap_test.yaml.snap @@ -26,6 +26,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-datadog - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-datadog-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-datadog-16.4.9 name: RELEASE-NAME-teleport-plugin-datadog diff --git a/examples/chart/access/datadog/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/datadog/tests/__snapshot__/deployment_test.yaml.snap index f7e60858b0e83..127dcc16b2d23 100644 --- a/examples/chart/access/datadog/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/access/datadog/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-datadog - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-datadog-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-datadog-16.4.9 name: RELEASE-NAME-teleport-plugin-datadog spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-datadog - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-datadog-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-datadog-16.4.9 spec: containers: - command: diff --git a/examples/chart/access/discord/Chart.yaml b/examples/chart/access/discord/Chart.yaml index b8e229ad86acd..3f808fe55eaf9 100644 --- a/examples/chart/access/discord/Chart.yaml +++ b/examples/chart/access/discord/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" apiVersion: v2 name: teleport-plugin-discord diff --git a/examples/chart/access/discord/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/discord/tests/__snapshot__/configmap_test.yaml.snap index aaec6778180fa..c8608c19a974f 100644 --- a/examples/chart/access/discord/tests/__snapshot__/configmap_test.yaml.snap +++ b/examples/chart/access/discord/tests/__snapshot__/configmap_test.yaml.snap @@ -24,6 +24,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-discord - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-discord-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-discord-16.4.9 name: RELEASE-NAME-teleport-plugin-discord diff --git a/examples/chart/access/discord/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/discord/tests/__snapshot__/deployment_test.yaml.snap index 8d1da55f12888..ee982929c8650 100644 --- a/examples/chart/access/discord/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/access/discord/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-discord - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-discord-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-discord-16.4.9 name: RELEASE-NAME-teleport-plugin-discord spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-discord - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-discord-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-discord-16.4.9 spec: containers: - command: diff --git a/examples/chart/access/email/Chart.yaml b/examples/chart/access/email/Chart.yaml index 4e250711cd536..001307764c57e 100644 --- a/examples/chart/access/email/Chart.yaml +++ b/examples/chart/access/email/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" apiVersion: v2 name: teleport-plugin-email diff --git a/examples/chart/access/email/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/email/tests/__snapshot__/configmap_test.yaml.snap index ed00296321d19..fdfd3c060f545 100644 --- a/examples/chart/access/email/tests/__snapshot__/configmap_test.yaml.snap +++ b/examples/chart/access/email/tests/__snapshot__/configmap_test.yaml.snap @@ -26,8 +26,8 @@ should match the snapshot (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on): 1: | @@ -59,8 +59,8 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, no starttls): 1: | @@ -92,8 +92,8 @@ should match the snapshot (smtp on, no starttls): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, password file): 1: | @@ -125,8 +125,8 @@ should match the snapshot (smtp on, password file): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, roleToRecipients set): 1: | @@ -161,8 +161,8 @@ should match the snapshot (smtp on, roleToRecipients set): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email should match the snapshot (smtp on, starttls disabled): 1: | @@ -194,6 +194,6 @@ should match the snapshot (smtp on, starttls disabled): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email diff --git a/examples/chart/access/email/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/email/tests/__snapshot__/deployment_test.yaml.snap index 3c6ba9cdbbb9a..c448557ca5be2 100644 --- a/examples/chart/access/email/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/access/email/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should be possible to override volume name (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -22,8 +22,8 @@ should be possible to override volume name (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 spec: containers: - command: @@ -34,7 +34,7 @@ should be possible to override volume name (smtp on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.8 + image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.9 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -75,8 +75,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -90,8 +90,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 spec: containers: - command: @@ -136,8 +136,8 @@ should match the snapshot (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -151,8 +151,8 @@ should match the snapshot (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 spec: containers: - command: @@ -163,7 +163,7 @@ should match the snapshot (mailgun on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.8 + image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.9 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -204,8 +204,8 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -219,8 +219,8 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 spec: containers: - command: @@ -231,7 +231,7 @@ should match the snapshot (smtp on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.8 + image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.9 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -272,8 +272,8 @@ should mount external secret (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -287,8 +287,8 @@ should mount external secret (mailgun on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 spec: containers: - command: @@ -299,7 +299,7 @@ should mount external secret (mailgun on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.8 + image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.9 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: @@ -340,8 +340,8 @@ should mount external secret (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 name: RELEASE-NAME-teleport-plugin-email spec: replicas: 1 @@ -355,8 +355,8 @@ should mount external secret (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-email - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-email-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-email-16.4.9 spec: containers: - command: @@ -367,7 +367,7 @@ should mount external secret (smtp on): env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.8 + image: public.ecr.aws/gravitational/teleport-plugin-email:16.4.9 imagePullPolicy: IfNotPresent name: teleport-plugin-email ports: diff --git a/examples/chart/access/jira/Chart.yaml b/examples/chart/access/jira/Chart.yaml index 8331dd1729bd4..2bc87cc4efdc2 100644 --- a/examples/chart/access/jira/Chart.yaml +++ b/examples/chart/access/jira/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" apiVersion: v2 name: teleport-plugin-jira diff --git a/examples/chart/access/jira/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/jira/tests/__snapshot__/configmap_test.yaml.snap index b599d02a21cc7..1afa1680604e2 100644 --- a/examples/chart/access/jira/tests/__snapshot__/configmap_test.yaml.snap +++ b/examples/chart/access/jira/tests/__snapshot__/configmap_test.yaml.snap @@ -32,6 +32,6 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-jira - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-jira-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-jira-16.4.9 name: RELEASE-NAME-teleport-plugin-jira diff --git a/examples/chart/access/jira/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/jira/tests/__snapshot__/deployment_test.yaml.snap index 37a95718916f0..8e0b14b2d3fba 100644 --- a/examples/chart/access/jira/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/access/jira/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-jira - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-jira-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-jira-16.4.9 name: RELEASE-NAME-teleport-plugin-jira spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-jira - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-jira-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-jira-16.4.9 spec: containers: - command: diff --git a/examples/chart/access/mattermost/Chart.yaml b/examples/chart/access/mattermost/Chart.yaml index 7df2557cc7352..83d7aa3fafb1f 100644 --- a/examples/chart/access/mattermost/Chart.yaml +++ b/examples/chart/access/mattermost/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" apiVersion: v2 name: teleport-plugin-mattermost diff --git a/examples/chart/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap index 1edcb26c44142..922ed29c76618 100644 --- a/examples/chart/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap +++ b/examples/chart/access/mattermost/tests/__snapshot__/configmap_test.yaml.snap @@ -22,6 +22,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-mattermost-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-mattermost-16.4.9 name: RELEASE-NAME-teleport-plugin-mattermost diff --git a/examples/chart/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap index 5eeeba6d6f192..af68104c4914b 100644 --- a/examples/chart/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/access/mattermost/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-mattermost-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-mattermost-16.4.9 name: RELEASE-NAME-teleport-plugin-mattermost spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-mattermost-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-mattermost-16.4.9 spec: containers: - command: @@ -75,8 +75,8 @@ should mount external secret: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-mattermost-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-mattermost-16.4.9 name: RELEASE-NAME-teleport-plugin-mattermost spec: replicas: 1 @@ -90,8 +90,8 @@ should mount external secret: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-mattermost-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-mattermost-16.4.9 spec: containers: - command: @@ -102,7 +102,7 @@ should mount external secret: env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-mattermost:16.4.8 + image: public.ecr.aws/gravitational/teleport-plugin-mattermost:16.4.9 imagePullPolicy: IfNotPresent name: teleport-plugin-mattermost ports: @@ -143,8 +143,8 @@ should override volume name: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-mattermost-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-mattermost-16.4.9 name: RELEASE-NAME-teleport-plugin-mattermost spec: replicas: 1 @@ -158,8 +158,8 @@ should override volume name: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-mattermost - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-mattermost-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-mattermost-16.4.9 spec: containers: - command: @@ -170,7 +170,7 @@ should override volume name: env: - name: TELEPORT_PLUGIN_FAIL_FAST value: "true" - image: public.ecr.aws/gravitational/teleport-plugin-mattermost:16.4.8 + image: public.ecr.aws/gravitational/teleport-plugin-mattermost:16.4.9 imagePullPolicy: IfNotPresent name: teleport-plugin-mattermost ports: diff --git a/examples/chart/access/msteams/Chart.yaml b/examples/chart/access/msteams/Chart.yaml index b04e65e063868..872aa996de331 100644 --- a/examples/chart/access/msteams/Chart.yaml +++ b/examples/chart/access/msteams/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" apiVersion: v2 name: teleport-plugin-msteams diff --git a/examples/chart/access/msteams/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/msteams/tests/__snapshot__/configmap_test.yaml.snap index a37c8fea5f3d9..ee6f12b9753d7 100644 --- a/examples/chart/access/msteams/tests/__snapshot__/configmap_test.yaml.snap +++ b/examples/chart/access/msteams/tests/__snapshot__/configmap_test.yaml.snap @@ -29,6 +29,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-msteams - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-msteams-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-msteams-16.4.9 name: RELEASE-NAME-teleport-plugin-msteams diff --git a/examples/chart/access/msteams/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/msteams/tests/__snapshot__/deployment_test.yaml.snap index 5f16e91869864..930843c77e2fd 100644 --- a/examples/chart/access/msteams/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/access/msteams/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-msteams - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-msteams-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-msteams-16.4.9 name: RELEASE-NAME-teleport-plugin-msteams spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-msteams - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-msteams-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-msteams-16.4.9 spec: containers: - command: diff --git a/examples/chart/access/pagerduty/Chart.yaml b/examples/chart/access/pagerduty/Chart.yaml index b0e9b2e5e57cb..daab2740e2323 100644 --- a/examples/chart/access/pagerduty/Chart.yaml +++ b/examples/chart/access/pagerduty/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" apiVersion: v2 name: teleport-plugin-pagerduty diff --git a/examples/chart/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap index b455965593ce2..61e26af582a4a 100644 --- a/examples/chart/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap +++ b/examples/chart/access/pagerduty/tests/__snapshot__/configmap_test.yaml.snap @@ -21,6 +21,6 @@ should match the snapshot (smtp on): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-pagerduty - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-pagerduty-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-pagerduty-16.4.9 name: RELEASE-NAME-teleport-plugin-pagerduty diff --git a/examples/chart/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap index 0b2cbf9c0b737..7b001643ecbd5 100644 --- a/examples/chart/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/access/pagerduty/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-pagerduty - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-pagerduty-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-pagerduty-16.4.9 name: RELEASE-NAME-teleport-plugin-pagerduty spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-pagerduty - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-pagerduty-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-pagerduty-16.4.9 spec: containers: - command: diff --git a/examples/chart/access/slack/Chart.yaml b/examples/chart/access/slack/Chart.yaml index 28b3683708f86..630bea7ad566f 100644 --- a/examples/chart/access/slack/Chart.yaml +++ b/examples/chart/access/slack/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" apiVersion: v2 name: teleport-plugin-slack diff --git a/examples/chart/access/slack/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/access/slack/tests/__snapshot__/configmap_test.yaml.snap index c0069c3c1e461..8ba7dd106dc16 100644 --- a/examples/chart/access/slack/tests/__snapshot__/configmap_test.yaml.snap +++ b/examples/chart/access/slack/tests/__snapshot__/configmap_test.yaml.snap @@ -24,6 +24,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-slack - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-slack-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-slack-16.4.9 name: RELEASE-NAME-teleport-plugin-slack diff --git a/examples/chart/access/slack/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/access/slack/tests/__snapshot__/deployment_test.yaml.snap index ebbe088ed4914..f0a0c7f4a905b 100644 --- a/examples/chart/access/slack/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/access/slack/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-slack - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-slack-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-slack-16.4.9 name: RELEASE-NAME-teleport-plugin-slack spec: replicas: 1 @@ -22,8 +22,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-slack - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-slack-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-slack-16.4.9 spec: containers: - command: diff --git a/examples/chart/event-handler/Chart.yaml b/examples/chart/event-handler/Chart.yaml index 6407bbba30652..a8d16edc08e4d 100644 --- a/examples/chart/event-handler/Chart.yaml +++ b/examples/chart/event-handler/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" apiVersion: v2 name: teleport-plugin-event-handler diff --git a/examples/chart/event-handler/tests/__snapshot__/configmap_test.yaml.snap b/examples/chart/event-handler/tests/__snapshot__/configmap_test.yaml.snap index f73409a18561f..9d52f293e600f 100644 --- a/examples/chart/event-handler/tests/__snapshot__/configmap_test.yaml.snap +++ b/examples/chart/event-handler/tests/__snapshot__/configmap_test.yaml.snap @@ -26,6 +26,6 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-event-handler - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-event-handler-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-event-handler-16.4.9 name: RELEASE-NAME-teleport-plugin-event-handler diff --git a/examples/chart/event-handler/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/event-handler/tests/__snapshot__/deployment_test.yaml.snap index cbc8062e9c0a6..d7abc7000dec0 100644 --- a/examples/chart/event-handler/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/event-handler/tests/__snapshot__/deployment_test.yaml.snap @@ -7,8 +7,8 @@ should match the snapshot: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-plugin-event-handler - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-plugin-event-handler-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-plugin-event-handler-16.4.9 name: RELEASE-NAME-teleport-plugin-event-handler spec: replicas: 1 @@ -82,7 +82,7 @@ should mount tls.existingCASecretName and set environment when set in values: value: "true" - name: SSL_CERT_FILE value: /etc/teleport-tls-ca/ca.pem - image: public.ecr.aws/gravitational/teleport-plugin-event-handler:16.4.8 + image: public.ecr.aws/gravitational/teleport-plugin-event-handler:16.4.9 imagePullPolicy: IfNotPresent name: teleport-plugin-event-handler ports: diff --git a/examples/chart/tbot/Chart.yaml b/examples/chart/tbot/Chart.yaml index 2b5abc375184a..6184fdb2cd2ad 100644 --- a/examples/chart/tbot/Chart.yaml +++ b/examples/chart/tbot/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" name: tbot apiVersion: v2 diff --git a/examples/chart/tbot/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/tbot/tests/__snapshot__/deployment_test.yaml.snap index 1c0db8b2fe927..d0fd8b3429dd2 100644 --- a/examples/chart/tbot/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/tbot/tests/__snapshot__/deployment_test.yaml.snap @@ -29,7 +29,7 @@ should match the snapshot (full): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: tbot - helm.sh/chart: tbot-16.4.8 + helm.sh/chart: tbot-16.4.9 test-key: test-label-pod spec: affinity: @@ -68,7 +68,7 @@ should match the snapshot (full): value: "1" - name: TEST_ENV value: test-value - image: public.ecr.aws/gravitational/tbot-distroless:16.4.8 + image: public.ecr.aws/gravitational/tbot-distroless:16.4.9 imagePullPolicy: Always livenessProbe: failureThreshold: 6 @@ -154,7 +154,7 @@ should match the snapshot (simple): app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: tbot - helm.sh/chart: tbot-16.4.8 + helm.sh/chart: tbot-16.4.9 spec: containers: - args: @@ -176,7 +176,7 @@ should match the snapshot (simple): fieldPath: spec.nodeName - name: KUBERNETES_TOKEN_PATH value: /var/run/secrets/tokens/join-sa-token - image: public.ecr.aws/gravitational/tbot-distroless:16.4.8 + image: public.ecr.aws/gravitational/tbot-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 diff --git a/examples/chart/teleport-cluster/Chart.yaml b/examples/chart/teleport-cluster/Chart.yaml index d211f8f1dd6f5..a88ea0003696e 100644 --- a/examples/chart/teleport-cluster/Chart.yaml +++ b/examples/chart/teleport-cluster/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" name: teleport-cluster apiVersion: v2 diff --git a/examples/chart/teleport-cluster/charts/teleport-operator/Chart.yaml b/examples/chart/teleport-cluster/charts/teleport-operator/Chart.yaml index 9974ffd75290c..31694f92689a6 100644 --- a/examples/chart/teleport-cluster/charts/teleport-operator/Chart.yaml +++ b/examples/chart/teleport-cluster/charts/teleport-operator/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" name: teleport-operator apiVersion: v2 diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/auth_clusterrole_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/auth_clusterrole_test.yaml.snap index 7d5214ba66083..8012ebd6495a3 100644 --- a/examples/chart/teleport-cluster/tests/__snapshot__/auth_clusterrole_test.yaml.snap +++ b/examples/chart/teleport-cluster/tests/__snapshot__/auth_clusterrole_test.yaml.snap @@ -8,8 +8,8 @@ adds operator permissions to ClusterRole: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-cluster - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-cluster-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-cluster-16.4.9 teleport.dev/majorVersion: "16" name: RELEASE-NAME rules: diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/auth_config_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/auth_config_test.yaml.snap index f3d63cf53c6b8..f9a2cf33688df 100644 --- a/examples/chart/teleport-cluster/tests/__snapshot__/auth_config_test.yaml.snap +++ b/examples/chart/teleport-cluster/tests/__snapshot__/auth_config_test.yaml.snap @@ -1848,8 +1848,8 @@ sets clusterDomain on Configmap: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-cluster - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-cluster-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-cluster-16.4.9 teleport.dev/majorVersion: "16" name: RELEASE-NAME-auth namespace: NAMESPACE diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/auth_deployment_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/auth_deployment_test.yaml.snap index f8e524719be70..7f3319803bb1f 100644 --- a/examples/chart/teleport-cluster/tests/__snapshot__/auth_deployment_test.yaml.snap +++ b/examples/chart/teleport-cluster/tests/__snapshot__/auth_deployment_test.yaml.snap @@ -8,7 +8,7 @@ - args: - --diag-addr=0.0.0.0:3000 - --apply-on-startup=/etc/teleport/apply-on-startup.yaml - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -141,7 +141,7 @@ should set nodeSelector when set in values: - args: - --diag-addr=0.0.0.0:3000 - --apply-on-startup=/etc/teleport/apply-on-startup.yaml - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -238,7 +238,7 @@ should set resources when set in values: - args: - --diag-addr=0.0.0.0:3000 - --apply-on-startup=/etc/teleport/apply-on-startup.yaml - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -324,7 +324,7 @@ should set securityContext when set in values: - args: - --diag-addr=0.0.0.0:3000 - --apply-on-startup=/etc/teleport/apply-on-startup.yaml - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/proxy_config_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/proxy_config_test.yaml.snap index 58b1f2d5cc95b..edc09df3c2334 100644 --- a/examples/chart/teleport-cluster/tests/__snapshot__/proxy_config_test.yaml.snap +++ b/examples/chart/teleport-cluster/tests/__snapshot__/proxy_config_test.yaml.snap @@ -567,8 +567,8 @@ sets clusterDomain on Configmap: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-cluster - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-cluster-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-cluster-16.4.9 teleport.dev/majorVersion: "16" name: RELEASE-NAME-proxy namespace: NAMESPACE diff --git a/examples/chart/teleport-cluster/tests/__snapshot__/proxy_deployment_test.yaml.snap b/examples/chart/teleport-cluster/tests/__snapshot__/proxy_deployment_test.yaml.snap index 3473f77a3d0d5..4316797a0c0af 100644 --- a/examples/chart/teleport-cluster/tests/__snapshot__/proxy_deployment_test.yaml.snap +++ b/examples/chart/teleport-cluster/tests/__snapshot__/proxy_deployment_test.yaml.snap @@ -11,8 +11,8 @@ sets clusterDomain on Deployment Pods: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-cluster - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-cluster-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-cluster-16.4.9 teleport.dev/majorVersion: "16" name: RELEASE-NAME-proxy namespace: NAMESPACE @@ -26,7 +26,7 @@ sets clusterDomain on Deployment Pods: template: metadata: annotations: - checksum/config: 262f205f1e2d2f90af566a93d9d39934dacd051888be1c9aa1cbacb7a353d24d + checksum/config: 8d27567a39eb1a3bed051390e0301c82c94964f3fd31a4bbb7665f243430a7a8 kubernetes.io/pod: test-annotation kubernetes.io/pod-different: 4 labels: @@ -34,8 +34,8 @@ sets clusterDomain on Deployment Pods: app.kubernetes.io/instance: RELEASE-NAME app.kubernetes.io/managed-by: Helm app.kubernetes.io/name: teleport-cluster - app.kubernetes.io/version: 16.4.8 - helm.sh/chart: teleport-cluster-16.4.8 + app.kubernetes.io/version: 16.4.9 + helm.sh/chart: teleport-cluster-16.4.9 teleport.dev/majorVersion: "16" spec: affinity: @@ -44,7 +44,7 @@ sets clusterDomain on Deployment Pods: containers: - args: - --diag-addr=0.0.0.0:3000 - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -105,7 +105,7 @@ sets clusterDomain on Deployment Pods: - wait - no-resolve - RELEASE-NAME-auth-v15.NAMESPACE.svc.test.com - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 name: wait-auth-update serviceAccountName: RELEASE-NAME-proxy terminationGracePeriodSeconds: 60 @@ -137,7 +137,7 @@ should provision initContainer correctly when set in values: - wait - no-resolve - RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 name: wait-auth-update resources: limits: @@ -201,7 +201,7 @@ should set nodeSelector when set in values: containers: - args: - --diag-addr=0.0.0.0:3000 - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -262,7 +262,7 @@ should set nodeSelector when set in values: - wait - no-resolve - RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 name: wait-auth-update nodeSelector: environment: security @@ -313,7 +313,7 @@ should set resources for wait-auth-update initContainer when set in values: containers: - args: - --diag-addr=0.0.0.0:3000 - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -381,7 +381,7 @@ should set resources for wait-auth-update initContainer when set in values: - wait - no-resolve - RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 name: wait-auth-update resources: limits: @@ -421,7 +421,7 @@ should set resources when set in values: containers: - args: - --diag-addr=0.0.0.0:3000 - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -489,7 +489,7 @@ should set resources when set in values: - wait - no-resolve - RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 name: wait-auth-update resources: limits: @@ -529,7 +529,7 @@ should set securityContext for initContainers when set in values: containers: - args: - --diag-addr=0.0.0.0:3000 - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -597,7 +597,7 @@ should set securityContext for initContainers when set in values: - wait - no-resolve - RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 name: wait-auth-update securityContext: allowPrivilegeEscalation: false @@ -637,7 +637,7 @@ should set securityContext when set in values: containers: - args: - --diag-addr=0.0.0.0:3000 - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent lifecycle: preStop: @@ -705,7 +705,7 @@ should set securityContext when set in values: - wait - no-resolve - RELEASE-NAME-auth-v15.NAMESPACE.svc.cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 name: wait-auth-update securityContext: allowPrivilegeEscalation: false diff --git a/examples/chart/teleport-kube-agent/Chart.yaml b/examples/chart/teleport-kube-agent/Chart.yaml index 845d2c6f67883..f8e7bf18b3d52 100644 --- a/examples/chart/teleport-kube-agent/Chart.yaml +++ b/examples/chart/teleport-kube-agent/Chart.yaml @@ -1,4 +1,4 @@ -.version: &version "16.4.8" +.version: &version "16.4.9" name: teleport-kube-agent apiVersion: v2 diff --git a/examples/chart/teleport-kube-agent/tests/__snapshot__/deployment_test.yaml.snap b/examples/chart/teleport-kube-agent/tests/__snapshot__/deployment_test.yaml.snap index d1f67102f066a..1476ad9858906 100644 --- a/examples/chart/teleport-kube-agent/tests/__snapshot__/deployment_test.yaml.snap +++ b/examples/chart/teleport-kube-agent/tests/__snapshot__/deployment_test.yaml.snap @@ -32,7 +32,7 @@ sets Deployment annotations when specified if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -109,7 +109,7 @@ sets Deployment labels when specified if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -173,7 +173,7 @@ sets Pod annotations when specified if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -237,7 +237,7 @@ sets Pod labels when specified if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -322,7 +322,7 @@ should add emptyDir for data when existingDataVolume is not set if action is Upg value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -387,7 +387,7 @@ should add insecureSkipProxyTLSVerify to args when set in values if action is Up value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -451,7 +451,7 @@ should correctly configure existingDataVolume when set if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -513,7 +513,7 @@ should expose diag port if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -589,7 +589,7 @@ should have multiple replicas when replicaCount is set (using .replicaCount, dep value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -665,7 +665,7 @@ should have multiple replicas when replicaCount is set (using highAvailability.r value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -729,7 +729,7 @@ should have one replica when replicaCount is not set if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -793,7 +793,7 @@ should mount extraVolumes and extraVolumeMounts if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -862,7 +862,7 @@ should mount jamfCredentialsSecret if it already exists and when role is jamf an value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -932,7 +932,7 @@ should mount jamfCredentialsSecret.name when role is jamf and action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1004,7 +1004,7 @@ should mount tls.existingCASecretName and set environment when set in values if value: cluster.local - name: SSL_CERT_FILE value: /etc/teleport-tls-ca/ca.pem - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1078,7 +1078,7 @@ should mount tls.existingCASecretName and set extra environment when set in valu value: http://username:password@my.proxy.host:3128 - name: SSL_CERT_FILE value: /etc/teleport-tls-ca/ca.pem - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1148,7 +1148,7 @@ should provision initContainer correctly when set in values if action is Upgrade value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1270,7 +1270,7 @@ should set affinity when set in values if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1334,7 +1334,7 @@ should set default serviceAccountName when not set in values if action is Upgrad value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1411,7 +1411,7 @@ should set environment when extraEnv set in values if action is Upgrade: value: cluster.local - name: HTTPS_PROXY value: http://username:password@my.proxy.host:3128 - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1539,7 +1539,7 @@ should set imagePullPolicy when set in values if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: Always livenessProbe: failureThreshold: 6 @@ -1603,7 +1603,7 @@ should set nodeSelector if set in values if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1669,7 +1669,7 @@ should set not set priorityClassName when not set in values if action is Upgrade value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1745,7 +1745,7 @@ should set preferred affinity when more than one replica is used if action is Up value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1809,7 +1809,7 @@ should set priorityClassName when set in values if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1874,7 +1874,7 @@ should set probeTimeoutSeconds when set in values if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1948,7 +1948,7 @@ should set required affinity when highAvailability.requireAntiAffinity is set if value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2012,7 +2012,7 @@ should set resources when set in values if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2083,7 +2083,7 @@ should set serviceAccountName when set in values if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2147,7 +2147,7 @@ should set tolerations when set in values if action is Upgrade: value: "true" - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 diff --git a/examples/chart/teleport-kube-agent/tests/__snapshot__/job_test.yaml.snap b/examples/chart/teleport-kube-agent/tests/__snapshot__/job_test.yaml.snap index a55b08d782af3..aa3a54c41065a 100644 --- a/examples/chart/teleport-kube-agent/tests/__snapshot__/job_test.yaml.snap +++ b/examples/chart/teleport-kube-agent/tests/__snapshot__/job_test.yaml.snap @@ -25,7 +25,7 @@ should create ServiceAccount for post-delete hook by default: fieldPath: metadata.namespace - name: RELEASE_NAME value: RELEASE-NAME - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent name: post-delete-job securityContext: @@ -108,7 +108,7 @@ should not create ServiceAccount for post-delete hook if serviceAccount.create i fieldPath: metadata.namespace - name: RELEASE_NAME value: RELEASE-NAME - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent name: post-delete-job securityContext: @@ -138,7 +138,7 @@ should not create ServiceAccount, Role or RoleBinding for post-delete hook if se fieldPath: metadata.namespace - name: RELEASE_NAME value: RELEASE-NAME - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent name: post-delete-job securityContext: @@ -168,7 +168,7 @@ should set nodeSelector in post-delete hook: fieldPath: metadata.namespace - name: RELEASE_NAME value: RELEASE-NAME - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent name: post-delete-job securityContext: @@ -200,7 +200,7 @@ should set resources in the Job's pod spec if resources is set in values: fieldPath: metadata.namespace - name: RELEASE_NAME value: RELEASE-NAME - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent name: post-delete-job resources: diff --git a/examples/chart/teleport-kube-agent/tests/__snapshot__/statefulset_test.yaml.snap b/examples/chart/teleport-kube-agent/tests/__snapshot__/statefulset_test.yaml.snap index 6b04a664c7806..8661644875296 100644 --- a/examples/chart/teleport-kube-agent/tests/__snapshot__/statefulset_test.yaml.snap +++ b/examples/chart/teleport-kube-agent/tests/__snapshot__/statefulset_test.yaml.snap @@ -18,7 +18,7 @@ sets Pod annotations when specified: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -90,7 +90,7 @@ sets Pod labels when specified: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -186,7 +186,7 @@ sets StatefulSet labels when specified: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -290,7 +290,7 @@ should add insecureSkipProxyTLSVerify to args when set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -362,7 +362,7 @@ should add volumeClaimTemplate for data volume when using StatefulSet and action value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -454,7 +454,7 @@ should add volumeClaimTemplate for data volume when using StatefulSet and is Fre value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -536,7 +536,7 @@ should add volumeMount for data volume when using StatefulSet: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -608,7 +608,7 @@ should expose diag port: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -680,7 +680,7 @@ should generate Statefulset when storage is disabled and mode is a Upgrade: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -766,7 +766,7 @@ should have multiple replicas when replicaCount is set (using .replicaCount, dep value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -850,7 +850,7 @@ should have multiple replicas when replicaCount is set (using highAvailability.r value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -922,7 +922,7 @@ should have one replica when replicaCount is not set: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -994,7 +994,7 @@ should install Statefulset when storage is disabled and mode is a Fresh Install: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1068,7 +1068,7 @@ should mount extraVolumes and extraVolumeMounts: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1145,7 +1145,7 @@ should mount jamfCredentialsSecret if it already exists and when role is jamf: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1225,7 +1225,7 @@ should mount jamfCredentialsSecret.name when role is jamf: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1307,7 +1307,7 @@ should mount tls.existingCASecretName and set environment when set in values: value: cluster.local - name: SSL_CERT_FILE value: /etc/teleport-tls-ca/ca.pem - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1391,7 +1391,7 @@ should mount tls.existingCASecretName and set extra environment when set in valu value: /etc/teleport-tls-ca/ca.pem - name: HTTPS_PROXY value: http://username:password@my.proxy.host:3128 - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1471,7 +1471,7 @@ should not add emptyDir for data when using StatefulSet: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1543,7 +1543,7 @@ should provision initContainer correctly when set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1673,7 +1673,7 @@ should set affinity when set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1745,7 +1745,7 @@ should set default serviceAccountName when not set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1830,7 +1830,7 @@ should set environment when extraEnv set in values: value: cluster.local - name: HTTPS_PROXY value: http://username:password@my.proxy.host:3128 - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -1974,7 +1974,7 @@ should set imagePullPolicy when set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: Always livenessProbe: failureThreshold: 6 @@ -2046,7 +2046,7 @@ should set nodeSelector if set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2132,7 +2132,7 @@ should set preferred affinity when more than one replica is used: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2204,7 +2204,7 @@ should set probeTimeoutSeconds when set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2286,7 +2286,7 @@ should set required affinity when highAvailability.requireAntiAffinity is set: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2358,7 +2358,7 @@ should set resources when set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2437,7 +2437,7 @@ should set serviceAccountName when set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2509,7 +2509,7 @@ should set storage.requests when set in values and action is an Upgrade: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2581,7 +2581,7 @@ should set storage.storageClassName when set in values and action is an Upgrade: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -2653,7 +2653,7 @@ should set tolerations when set in values: value: RELEASE-NAME - name: TELEPORT_KUBE_CLUSTER_DOMAIN value: cluster.local - image: public.ecr.aws/gravitational/teleport-distroless:16.4.8 + image: public.ecr.aws/gravitational/teleport-distroless:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 diff --git a/examples/chart/teleport-kube-agent/tests/__snapshot__/updater_deployment_test.yaml.snap b/examples/chart/teleport-kube-agent/tests/__snapshot__/updater_deployment_test.yaml.snap index 8d74164c28bca..927656a63954d 100644 --- a/examples/chart/teleport-kube-agent/tests/__snapshot__/updater_deployment_test.yaml.snap +++ b/examples/chart/teleport-kube-agent/tests/__snapshot__/updater_deployment_test.yaml.snap @@ -27,7 +27,7 @@ sets the affinity: - --base-image=public.ecr.aws/gravitational/teleport-distroless - --version-server=https://my-custom-version-server/v1 - --version-channel=custom/preview - image: public.ecr.aws/gravitational/teleport-kube-agent-updater:16.4.8 + image: public.ecr.aws/gravitational/teleport-kube-agent-updater:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 @@ -73,7 +73,7 @@ sets the tolerations: - --base-image=public.ecr.aws/gravitational/teleport-distroless - --version-server=https://my-custom-version-server/v1 - --version-channel=custom/preview - image: public.ecr.aws/gravitational/teleport-kube-agent-updater:16.4.8 + image: public.ecr.aws/gravitational/teleport-kube-agent-updater:16.4.9 imagePullPolicy: IfNotPresent livenessProbe: failureThreshold: 6 diff --git a/gen/proto/go/accessgraph/v1alpha/access_graph_service.pb.go b/gen/proto/go/accessgraph/v1alpha/access_graph_service.pb.go index 7a03706bbf50c..d01e9d79ebe5a 100644 --- a/gen/proto/go/accessgraph/v1alpha/access_graph_service.pb.go +++ b/gen/proto/go/accessgraph/v1alpha/access_graph_service.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: accessgraph/v1alpha/access_graph_service.proto @@ -1636,7 +1636,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_rawDescGZIP() []byte { } var file_accessgraph_v1alpha_access_graph_service_proto_msgTypes = make([]protoimpl.MessageInfo, 21) -var file_accessgraph_v1alpha_access_graph_service_proto_goTypes = []interface{}{ +var file_accessgraph_v1alpha_access_graph_service_proto_goTypes = []any{ (*QueryRequest)(nil), // 0: accessgraph.v1alpha.QueryRequest (*QueryResponse)(nil), // 1: accessgraph.v1alpha.QueryResponse (*GetFileRequest)(nil), // 2: accessgraph.v1alpha.GetFileRequest @@ -1732,7 +1732,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { file_accessgraph_v1alpha_graph_proto_init() file_accessgraph_v1alpha_resources_proto_init() if !protoimpl.UnsafeEnabled { - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*QueryRequest); i { case 0: return &v.state @@ -1744,7 +1744,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*QueryResponse); i { case 0: return &v.state @@ -1756,7 +1756,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetFileRequest); i { case 0: return &v.state @@ -1768,7 +1768,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*GetFileResponse); i { case 0: return &v.state @@ -1780,7 +1780,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*EventsStreamRequest); i { case 0: return &v.state @@ -1792,7 +1792,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*EventsStreamV2Request); i { case 0: return &v.state @@ -1804,7 +1804,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*SyncOperation); i { case 0: return &v.state @@ -1816,7 +1816,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*EventsStreamResponse); i { case 0: return &v.state @@ -1828,7 +1828,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*EventsStreamV2Response); i { case 0: return &v.state @@ -1840,7 +1840,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*AuditEvent); i { case 0: return &v.state @@ -1852,7 +1852,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*RegisterRequest); i { case 0: return &v.state @@ -1864,7 +1864,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*RegisterResponse); i { case 0: return &v.state @@ -1876,7 +1876,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*ReplaceCAsRequest); i { case 0: return &v.state @@ -1888,7 +1888,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*ReplaceCAsResponse); i { case 0: return &v.state @@ -1900,7 +1900,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*AWSEventsStreamRequest); i { case 0: return &v.state @@ -1912,7 +1912,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*AWSSyncOperation); i { case 0: return &v.state @@ -1924,7 +1924,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*AWSEventsStreamResponse); i { case 0: return &v.state @@ -1936,7 +1936,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*GitlabEventsStreamRequest); i { case 0: return &v.state @@ -1948,7 +1948,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*GitlabEventsStreamResponse); i { case 0: return &v.state @@ -1960,7 +1960,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*EntraEventsStreamRequest); i { case 0: return &v.state @@ -1972,7 +1972,7 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { return nil } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[20].Exporter = func(v any, i int) any { switch v := v.(*EntraEventsStreamResponse); i { case 0: return &v.state @@ -1985,37 +1985,37 @@ func file_accessgraph_v1alpha_access_graph_service_proto_init() { } } } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[4].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[4].OneofWrappers = []any{ (*EventsStreamRequest_Sync)(nil), (*EventsStreamRequest_Upsert)(nil), (*EventsStreamRequest_Delete)(nil), (*EventsStreamRequest_AccessListsMembers)(nil), (*EventsStreamRequest_ExcludeAccessListMembers)(nil), } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[5].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[5].OneofWrappers = []any{ (*EventsStreamV2Request_Sync)(nil), (*EventsStreamV2Request_Upsert)(nil), (*EventsStreamV2Request_Delete)(nil), (*EventsStreamV2Request_AccessListsMembers)(nil), (*EventsStreamV2Request_ExcludeAccessListMembers)(nil), } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[8].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[8].OneofWrappers = []any{ (*EventsStreamV2Response_Event)(nil), } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[9].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[9].OneofWrappers = []any{ (*AuditEvent_AccessPathChanged)(nil), } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[14].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[14].OneofWrappers = []any{ (*AWSEventsStreamRequest_Sync)(nil), (*AWSEventsStreamRequest_Upsert)(nil), (*AWSEventsStreamRequest_Delete)(nil), } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[17].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[17].OneofWrappers = []any{ (*GitlabEventsStreamRequest_Sync)(nil), (*GitlabEventsStreamRequest_Upsert)(nil), (*GitlabEventsStreamRequest_Delete)(nil), } - file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[19].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_access_graph_service_proto_msgTypes[19].OneofWrappers = []any{ (*EntraEventsStreamRequest_Sync)(nil), (*EntraEventsStreamRequest_Upsert)(nil), (*EntraEventsStreamRequest_Delete)(nil), diff --git a/gen/proto/go/accessgraph/v1alpha/aws.pb.go b/gen/proto/go/accessgraph/v1alpha/aws.pb.go index f496b098bb68f..3ef1ca6496fc3 100644 --- a/gen/proto/go/accessgraph/v1alpha/aws.pb.go +++ b/gen/proto/go/accessgraph/v1alpha/aws.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: accessgraph/v1alpha/aws.proto @@ -3986,7 +3986,7 @@ func file_accessgraph_v1alpha_aws_proto_rawDescGZIP() []byte { var file_accessgraph_v1alpha_aws_proto_enumTypes = make([]protoimpl.EnumInfo, 2) var file_accessgraph_v1alpha_aws_proto_msgTypes = make([]protoimpl.MessageInfo, 31) -var file_accessgraph_v1alpha_aws_proto_goTypes = []interface{}{ +var file_accessgraph_v1alpha_aws_proto_goTypes = []any{ (UsersPermissionsBoundaryType)(0), // 0: accessgraph.v1alpha.UsersPermissionsBoundaryType (RolePermissionsBoundaryType)(0), // 1: accessgraph.v1alpha.RolePermissionsBoundaryType (*AWSResourceList)(nil), // 2: accessgraph.v1alpha.AWSResourceList @@ -4135,7 +4135,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_accessgraph_v1alpha_aws_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AWSResourceList); i { case 0: return &v.state @@ -4147,7 +4147,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AWSResource); i { case 0: return &v.state @@ -4159,7 +4159,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*AWSUserInlinePolicyV1); i { case 0: return &v.state @@ -4171,7 +4171,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*AWSPolicyV1); i { case 0: return &v.state @@ -4183,7 +4183,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*AWSGroupV1); i { case 0: return &v.state @@ -4195,7 +4195,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*AWSUserGroupsV1); i { case 0: return &v.state @@ -4207,7 +4207,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*AWSUserV1); i { case 0: return &v.state @@ -4219,7 +4219,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*AWSTag); i { case 0: return &v.state @@ -4231,7 +4231,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*UsersPermissionsBoundaryV1); i { case 0: return &v.state @@ -4243,7 +4243,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*AWSInstanceV1); i { case 0: return &v.state @@ -4255,7 +4255,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*AWSUserAttachedPolicies); i { case 0: return &v.state @@ -4267,7 +4267,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*AttachedPolicyV1); i { case 0: return &v.state @@ -4279,7 +4279,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*AWSGroupAttachedPolicies); i { case 0: return &v.state @@ -4291,7 +4291,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*AWSGroupInlinePolicyV1); i { case 0: return &v.state @@ -4303,7 +4303,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*AWSS3BucketV1); i { case 0: return &v.state @@ -4315,7 +4315,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*AWSS3BucketACL); i { case 0: return &v.state @@ -4327,7 +4327,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*AWSS3BucketACLGrantee); i { case 0: return &v.state @@ -4339,7 +4339,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*AWSRoleV1); i { case 0: return &v.state @@ -4351,7 +4351,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*RolePermissionsBoundaryV1); i { case 0: return &v.state @@ -4363,7 +4363,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*RoleLastUsedV1); i { case 0: return &v.state @@ -4375,7 +4375,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[20].Exporter = func(v any, i int) any { switch v := v.(*AWSRoleInlinePolicyV1); i { case 0: return &v.state @@ -4387,7 +4387,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[21].Exporter = func(v any, i int) any { switch v := v.(*AWSRoleAttachedPolicies); i { case 0: return &v.state @@ -4399,7 +4399,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[22].Exporter = func(v any, i int) any { switch v := v.(*AWSInstanceProfileV1); i { case 0: return &v.state @@ -4411,7 +4411,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[23].Exporter = func(v any, i int) any { switch v := v.(*AWSEKSClusterV1); i { case 0: return &v.state @@ -4423,7 +4423,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[24].Exporter = func(v any, i int) any { switch v := v.(*AWSEKSClusterAccessEntryV1); i { case 0: return &v.state @@ -4435,7 +4435,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[25].Exporter = func(v any, i int) any { switch v := v.(*AWSEKSAssociatedAccessPolicyV1); i { case 0: return &v.state @@ -4447,7 +4447,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[26].Exporter = func(v any, i int) any { switch v := v.(*AWSEKSAccessScopeV1); i { case 0: return &v.state @@ -4459,7 +4459,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[27].Exporter = func(v any, i int) any { switch v := v.(*AWSRDSDatabaseV1); i { case 0: return &v.state @@ -4471,7 +4471,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[28].Exporter = func(v any, i int) any { switch v := v.(*AWSRDSEngineV1); i { case 0: return &v.state @@ -4483,7 +4483,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[29].Exporter = func(v any, i int) any { switch v := v.(*AWSSAMLProviderV1); i { case 0: return &v.state @@ -4495,7 +4495,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { return nil } } - file_accessgraph_v1alpha_aws_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_aws_proto_msgTypes[30].Exporter = func(v any, i int) any { switch v := v.(*AWSOIDCProviderV1); i { case 0: return &v.state @@ -4508,7 +4508,7 @@ func file_accessgraph_v1alpha_aws_proto_init() { } } } - file_accessgraph_v1alpha_aws_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_aws_proto_msgTypes[1].OneofWrappers = []any{ (*AWSResource_User)(nil), (*AWSResource_Group)(nil), (*AWSResource_UserInlinePolicy)(nil), diff --git a/gen/proto/go/accessgraph/v1alpha/entra.pb.go b/gen/proto/go/accessgraph/v1alpha/entra.pb.go index cebba10060ffa..915a0e24710a3 100644 --- a/gen/proto/go/accessgraph/v1alpha/entra.pb.go +++ b/gen/proto/go/accessgraph/v1alpha/entra.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: accessgraph/v1alpha/entra.proto @@ -344,7 +344,7 @@ func file_accessgraph_v1alpha_entra_proto_rawDescGZIP() []byte { } var file_accessgraph_v1alpha_entra_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_accessgraph_v1alpha_entra_proto_goTypes = []interface{}{ +var file_accessgraph_v1alpha_entra_proto_goTypes = []any{ (*EntraSyncOperation)(nil), // 0: accessgraph.v1alpha.EntraSyncOperation (*EntraResourceList)(nil), // 1: accessgraph.v1alpha.EntraResourceList (*EntraResource)(nil), // 2: accessgraph.v1alpha.EntraResource @@ -366,7 +366,7 @@ func file_accessgraph_v1alpha_entra_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_accessgraph_v1alpha_entra_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_entra_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*EntraSyncOperation); i { case 0: return &v.state @@ -378,7 +378,7 @@ func file_accessgraph_v1alpha_entra_proto_init() { return nil } } - file_accessgraph_v1alpha_entra_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_entra_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*EntraResourceList); i { case 0: return &v.state @@ -390,7 +390,7 @@ func file_accessgraph_v1alpha_entra_proto_init() { return nil } } - file_accessgraph_v1alpha_entra_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_entra_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*EntraResource); i { case 0: return &v.state @@ -402,7 +402,7 @@ func file_accessgraph_v1alpha_entra_proto_init() { return nil } } - file_accessgraph_v1alpha_entra_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_entra_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*EntraApplication); i { case 0: return &v.state @@ -415,7 +415,7 @@ func file_accessgraph_v1alpha_entra_proto_init() { } } } - file_accessgraph_v1alpha_entra_proto_msgTypes[2].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_entra_proto_msgTypes[2].OneofWrappers = []any{ (*EntraResource_Application)(nil), } type x struct{} diff --git a/gen/proto/go/accessgraph/v1alpha/events.pb.go b/gen/proto/go/accessgraph/v1alpha/events.pb.go index b260f6bd6910e..842ef8f248d8c 100644 --- a/gen/proto/go/accessgraph/v1alpha/events.pb.go +++ b/gen/proto/go/accessgraph/v1alpha/events.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: accessgraph/v1alpha/events.proto @@ -170,7 +170,7 @@ func file_accessgraph_v1alpha_events_proto_rawDescGZIP() []byte { } var file_accessgraph_v1alpha_events_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_accessgraph_v1alpha_events_proto_goTypes = []interface{}{ +var file_accessgraph_v1alpha_events_proto_goTypes = []any{ (*AccessPathChanged)(nil), // 0: accessgraph.v1alpha.AccessPathChanged (*v1.Metadata)(nil), // 1: teleport.header.v1.Metadata } @@ -189,7 +189,7 @@ func file_accessgraph_v1alpha_events_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_accessgraph_v1alpha_events_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_events_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AccessPathChanged); i { case 0: return &v.state diff --git a/gen/proto/go/accessgraph/v1alpha/gitlab.pb.go b/gen/proto/go/accessgraph/v1alpha/gitlab.pb.go index 4823d8ecc3dcd..0b3b2f408facb 100644 --- a/gen/proto/go/accessgraph/v1alpha/gitlab.pb.go +++ b/gen/proto/go/accessgraph/v1alpha/gitlab.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: accessgraph/v1alpha/gitlab.proto @@ -940,7 +940,7 @@ func file_accessgraph_v1alpha_gitlab_proto_rawDescGZIP() []byte { var file_accessgraph_v1alpha_gitlab_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_accessgraph_v1alpha_gitlab_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_accessgraph_v1alpha_gitlab_proto_goTypes = []interface{}{ +var file_accessgraph_v1alpha_gitlab_proto_goTypes = []any{ (AccessLevelType)(0), // 0: accessgraph.v1alpha.AccessLevelType (*GitlabSyncOperation)(nil), // 1: accessgraph.v1alpha.GitlabSyncOperation (*GitlabResourceList)(nil), // 2: accessgraph.v1alpha.GitlabResourceList @@ -979,7 +979,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_accessgraph_v1alpha_gitlab_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_gitlab_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*GitlabSyncOperation); i { case 0: return &v.state @@ -991,7 +991,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { return nil } } - file_accessgraph_v1alpha_gitlab_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_gitlab_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GitlabResourceList); i { case 0: return &v.state @@ -1003,7 +1003,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { return nil } } - file_accessgraph_v1alpha_gitlab_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_gitlab_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GitlabResource); i { case 0: return &v.state @@ -1015,7 +1015,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { return nil } } - file_accessgraph_v1alpha_gitlab_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_gitlab_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*GitlabGroup); i { case 0: return &v.state @@ -1027,7 +1027,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { return nil } } - file_accessgraph_v1alpha_gitlab_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_gitlab_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*GitlabProject); i { case 0: return &v.state @@ -1039,7 +1039,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { return nil } } - file_accessgraph_v1alpha_gitlab_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_gitlab_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*GitlabProjectMember); i { case 0: return &v.state @@ -1051,7 +1051,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { return nil } } - file_accessgraph_v1alpha_gitlab_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_gitlab_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*GitlabGroupMember); i { case 0: return &v.state @@ -1063,7 +1063,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { return nil } } - file_accessgraph_v1alpha_gitlab_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_gitlab_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*GitlabUser); i { case 0: return &v.state @@ -1075,7 +1075,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { return nil } } - file_accessgraph_v1alpha_gitlab_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_gitlab_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*GitlabUserIdentity); i { case 0: return &v.state @@ -1088,7 +1088,7 @@ func file_accessgraph_v1alpha_gitlab_proto_init() { } } } - file_accessgraph_v1alpha_gitlab_proto_msgTypes[2].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_gitlab_proto_msgTypes[2].OneofWrappers = []any{ (*GitlabResource_Group)(nil), (*GitlabResource_Project)(nil), (*GitlabResource_ProjectMember)(nil), diff --git a/gen/proto/go/accessgraph/v1alpha/graph.pb.go b/gen/proto/go/accessgraph/v1alpha/graph.pb.go index 0fde3aa8c7dc0..c11a8a7d53ab7 100644 --- a/gen/proto/go/accessgraph/v1alpha/graph.pb.go +++ b/gen/proto/go/accessgraph/v1alpha/graph.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: accessgraph/v1alpha/graph.proto @@ -281,7 +281,7 @@ func file_accessgraph_v1alpha_graph_proto_rawDescGZIP() []byte { } var file_accessgraph_v1alpha_graph_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_accessgraph_v1alpha_graph_proto_goTypes = []interface{}{ +var file_accessgraph_v1alpha_graph_proto_goTypes = []any{ (*Node)(nil), // 0: accessgraph.v1alpha.Node (*Edge)(nil), // 1: accessgraph.v1alpha.Edge nil, // 2: accessgraph.v1alpha.Node.LabelsEntry @@ -305,7 +305,7 @@ func file_accessgraph_v1alpha_graph_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_accessgraph_v1alpha_graph_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_graph_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Node); i { case 0: return &v.state @@ -317,7 +317,7 @@ func file_accessgraph_v1alpha_graph_proto_init() { return nil } } - file_accessgraph_v1alpha_graph_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_graph_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*Edge); i { case 0: return &v.state diff --git a/gen/proto/go/accessgraph/v1alpha/resources.pb.go b/gen/proto/go/accessgraph/v1alpha/resources.pb.go index e1629570d9666..f80ef617634ca 100644 --- a/gen/proto/go/accessgraph/v1alpha/resources.pb.go +++ b/gen/proto/go/accessgraph/v1alpha/resources.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: accessgraph/v1alpha/resources.proto @@ -685,7 +685,7 @@ func file_accessgraph_v1alpha_resources_proto_rawDescGZIP() []byte { } var file_accessgraph_v1alpha_resources_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_accessgraph_v1alpha_resources_proto_goTypes = []interface{}{ +var file_accessgraph_v1alpha_resources_proto_goTypes = []any{ (*ResourceList)(nil), // 0: accessgraph.v1alpha.ResourceList (*ResourceHeaderList)(nil), // 1: accessgraph.v1alpha.ResourceHeaderList (*AccessListsMembers)(nil), // 2: accessgraph.v1alpha.AccessListsMembers @@ -741,7 +741,7 @@ func file_accessgraph_v1alpha_resources_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_accessgraph_v1alpha_resources_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_resources_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ResourceList); i { case 0: return &v.state @@ -753,7 +753,7 @@ func file_accessgraph_v1alpha_resources_proto_init() { return nil } } - file_accessgraph_v1alpha_resources_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_resources_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ResourceHeaderList); i { case 0: return &v.state @@ -765,7 +765,7 @@ func file_accessgraph_v1alpha_resources_proto_init() { return nil } } - file_accessgraph_v1alpha_resources_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_resources_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*AccessListsMembers); i { case 0: return &v.state @@ -777,7 +777,7 @@ func file_accessgraph_v1alpha_resources_proto_init() { return nil } } - file_accessgraph_v1alpha_resources_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_resources_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ExcludeAccessListsMembers); i { case 0: return &v.state @@ -789,7 +789,7 @@ func file_accessgraph_v1alpha_resources_proto_init() { return nil } } - file_accessgraph_v1alpha_resources_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_resources_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ExcludeAccessListMember); i { case 0: return &v.state @@ -801,7 +801,7 @@ func file_accessgraph_v1alpha_resources_proto_init() { return nil } } - file_accessgraph_v1alpha_resources_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_accessgraph_v1alpha_resources_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*ResourceEntry); i { case 0: return &v.state @@ -814,7 +814,7 @@ func file_accessgraph_v1alpha_resources_proto_init() { } } } - file_accessgraph_v1alpha_resources_proto_msgTypes[5].OneofWrappers = []interface{}{ + file_accessgraph_v1alpha_resources_proto_msgTypes[5].OneofWrappers = []any{ (*ResourceEntry_User)(nil), (*ResourceEntry_Role)(nil), (*ResourceEntry_Server)(nil), diff --git a/gen/proto/go/prehog/v1/teleport.pb.go b/gen/proto/go/prehog/v1/teleport.pb.go index 73593cc5d7524..fcffc5164f7ca 100644 --- a/gen/proto/go/prehog/v1/teleport.pb.go +++ b/gen/proto/go/prehog/v1/teleport.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: prehog/v1/teleport.proto @@ -900,7 +900,7 @@ func file_prehog_v1_teleport_proto_rawDescGZIP() []byte { var file_prehog_v1_teleport_proto_enumTypes = make([]protoimpl.EnumInfo, 2) var file_prehog_v1_teleport_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_prehog_v1_teleport_proto_goTypes = []interface{}{ +var file_prehog_v1_teleport_proto_goTypes = []any{ (UserKind)(0), // 0: prehog.v1.UserKind (ResourceKind)(0), // 1: prehog.v1.ResourceKind (*UserActivityReport)(nil), // 2: prehog.v1.UserActivityReport @@ -935,7 +935,7 @@ func file_prehog_v1_teleport_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_prehog_v1_teleport_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1_teleport_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*UserActivityReport); i { case 0: return &v.state @@ -947,7 +947,7 @@ func file_prehog_v1_teleport_proto_init() { return nil } } - file_prehog_v1_teleport_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1_teleport_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*UserActivityRecord); i { case 0: return &v.state @@ -959,7 +959,7 @@ func file_prehog_v1_teleport_proto_init() { return nil } } - file_prehog_v1_teleport_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1_teleport_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ResourcePresenceReport); i { case 0: return &v.state @@ -971,7 +971,7 @@ func file_prehog_v1_teleport_proto_init() { return nil } } - file_prehog_v1_teleport_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1_teleport_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ResourceKindPresenceReport); i { case 0: return &v.state @@ -983,7 +983,7 @@ func file_prehog_v1_teleport_proto_init() { return nil } } - file_prehog_v1_teleport_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1_teleport_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*SubmitUsageReportsRequest); i { case 0: return &v.state @@ -995,7 +995,7 @@ func file_prehog_v1_teleport_proto_init() { return nil } } - file_prehog_v1_teleport_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1_teleport_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*SubmitUsageReportsResponse); i { case 0: return &v.state diff --git a/gen/proto/go/prehog/v1alpha/connect.pb.go b/gen/proto/go/prehog/v1alpha/connect.pb.go index e881b7634547b..76cbb2c173357 100644 --- a/gen/proto/go/prehog/v1alpha/connect.pb.go +++ b/gen/proto/go/prehog/v1alpha/connect.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: prehog/v1alpha/connect.proto @@ -1068,7 +1068,7 @@ func file_prehog_v1alpha_connect_proto_rawDescGZIP() []byte { } var file_prehog_v1alpha_connect_proto_msgTypes = make([]protoimpl.MessageInfo, 11) -var file_prehog_v1alpha_connect_proto_goTypes = []interface{}{ +var file_prehog_v1alpha_connect_proto_goTypes = []any{ (*ConnectClusterLoginEvent)(nil), // 0: prehog.v1alpha.ConnectClusterLoginEvent (*ConnectProtocolUseEvent)(nil), // 1: prehog.v1alpha.ConnectProtocolUseEvent (*ConnectAccessRequestCreateEvent)(nil), // 2: prehog.v1alpha.ConnectAccessRequestCreateEvent @@ -1108,7 +1108,7 @@ func file_prehog_v1alpha_connect_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_prehog_v1alpha_connect_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ConnectClusterLoginEvent); i { case 0: return &v.state @@ -1120,7 +1120,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*ConnectProtocolUseEvent); i { case 0: return &v.state @@ -1132,7 +1132,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ConnectAccessRequestCreateEvent); i { case 0: return &v.state @@ -1144,7 +1144,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ConnectAccessRequestReviewEvent); i { case 0: return &v.state @@ -1156,7 +1156,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ConnectAccessRequestAssumeRoleEvent); i { case 0: return &v.state @@ -1168,7 +1168,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*ConnectFileTransferRunEvent); i { case 0: return &v.state @@ -1180,7 +1180,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*ConnectUserJobRoleUpdateEvent); i { case 0: return &v.state @@ -1192,7 +1192,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*ConnectConnectMyComputerSetup); i { case 0: return &v.state @@ -1204,7 +1204,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*ConnectConnectMyComputerAgentStart); i { case 0: return &v.state @@ -1216,7 +1216,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*SubmitConnectEventRequest); i { case 0: return &v.state @@ -1228,7 +1228,7 @@ func file_prehog_v1alpha_connect_proto_init() { return nil } } - file_prehog_v1alpha_connect_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_connect_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*SubmitConnectEventResponse); i { case 0: return &v.state @@ -1241,7 +1241,7 @@ func file_prehog_v1alpha_connect_proto_init() { } } } - file_prehog_v1alpha_connect_proto_msgTypes[9].OneofWrappers = []interface{}{ + file_prehog_v1alpha_connect_proto_msgTypes[9].OneofWrappers = []any{ (*SubmitConnectEventRequest_ClusterLogin)(nil), (*SubmitConnectEventRequest_ProtocolUse)(nil), (*SubmitConnectEventRequest_AccessRequestCreate)(nil), diff --git a/gen/proto/go/prehog/v1alpha/tbot.pb.go b/gen/proto/go/prehog/v1alpha/tbot.pb.go index fd599680a8300..596c0bf24812d 100644 --- a/gen/proto/go/prehog/v1alpha/tbot.pb.go +++ b/gen/proto/go/prehog/v1alpha/tbot.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: prehog/v1alpha/tbot.proto @@ -417,7 +417,7 @@ func file_prehog_v1alpha_tbot_proto_rawDescGZIP() []byte { var file_prehog_v1alpha_tbot_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_prehog_v1alpha_tbot_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_prehog_v1alpha_tbot_proto_goTypes = []interface{}{ +var file_prehog_v1alpha_tbot_proto_goTypes = []any{ (TbotStartEvent_RunMode)(0), // 0: prehog.v1alpha.TbotStartEvent.RunMode (*TbotStartEvent)(nil), // 1: prehog.v1alpha.TbotStartEvent (*SubmitTbotEventRequest)(nil), // 2: prehog.v1alpha.SubmitTbotEventRequest @@ -443,7 +443,7 @@ func file_prehog_v1alpha_tbot_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_prehog_v1alpha_tbot_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_tbot_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*TbotStartEvent); i { case 0: return &v.state @@ -455,7 +455,7 @@ func file_prehog_v1alpha_tbot_proto_init() { return nil } } - file_prehog_v1alpha_tbot_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_tbot_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*SubmitTbotEventRequest); i { case 0: return &v.state @@ -467,7 +467,7 @@ func file_prehog_v1alpha_tbot_proto_init() { return nil } } - file_prehog_v1alpha_tbot_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_tbot_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*SubmitTbotEventResponse); i { case 0: return &v.state @@ -480,7 +480,7 @@ func file_prehog_v1alpha_tbot_proto_init() { } } } - file_prehog_v1alpha_tbot_proto_msgTypes[1].OneofWrappers = []interface{}{ + file_prehog_v1alpha_tbot_proto_msgTypes[1].OneofWrappers = []any{ (*SubmitTbotEventRequest_Start)(nil), } type x struct{} diff --git a/gen/proto/go/prehog/v1alpha/teleport.pb.go b/gen/proto/go/prehog/v1alpha/teleport.pb.go index 8efb50e205aae..fd7707118c711 100644 --- a/gen/proto/go/prehog/v1alpha/teleport.pb.go +++ b/gen/proto/go/prehog/v1alpha/teleport.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: prehog/v1alpha/teleport.proto @@ -7699,6 +7699,12 @@ type SubmitEventRequest struct { // // PostHog timestamp Timestamp *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"` + // teleport_version is the version of the Teleport auth server that submitted + // the event, without the "v" prefix. + // For example: 16.4.7 + // + // PostHog property: tp.teleport_version + TeleportVersion string `protobuf:"bytes,95,opt,name=teleport_version,json=teleportVersion,proto3" json:"teleport_version,omitempty"` // the event being submitted // // Types that are assignable to Event: @@ -7843,6 +7849,13 @@ func (x *SubmitEventRequest) GetTimestamp() *timestamppb.Timestamp { return nil } +func (x *SubmitEventRequest) GetTeleportVersion() string { + if x != nil { + return x.TeleportVersion + } + return "" +} + func (m *SubmitEventRequest) GetEvent() isSubmitEventRequest_Event { if m != nil { return m.Event @@ -10273,7 +10286,7 @@ var file_prehog_v1alpha_teleport_proto_rawDesc = []byte{ 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x69, 0x6e, - 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0x84, 0x4f, 0x0a, + 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xaf, 0x4f, 0x0a, 0x12, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x6c, 0x75, 0x73, 0x74, @@ -10281,955 +10294,957 @@ var file_prehog_v1alpha_teleport_proto_rawDesc = []byte{ 0x61, 0x6d, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x52, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, - 0x12, 0x3f, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, - 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x09, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, - 0x6e, 0x12, 0x3f, 0x0a, 0x0a, 0x73, 0x73, 0x6f, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, - 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x53, 0x4f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x09, 0x73, 0x73, 0x6f, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x12, 0x4e, 0x0a, 0x0f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x72, - 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x52, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, - 0x48, 0x00, 0x52, 0x0e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x12, 0x48, 0x0a, 0x0d, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, - 0x61, 0x72, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x65, 0x68, - 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, - 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0c, - 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x4c, 0x0a, 0x0f, - 0x75, 0x69, 0x5f, 0x62, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, - 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, - 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x43, - 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x75, 0x69, 0x42, - 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x92, 0x01, 0x0a, 0x29, 0x75, - 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, - 0x74, 0x65, 0x5f, 0x67, 0x6f, 0x5f, 0x74, 0x6f, 0x5f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, - 0x72, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, - 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, - 0x55, 0x49, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, - 0x65, 0x47, 0x6f, 0x54, 0x6f, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x6c, - 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x23, 0x75, 0x69, 0x4f, 0x6e, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x47, 0x6f, 0x54, - 0x6f, 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, - 0x82, 0x01, 0x0a, 0x23, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x61, - 0x64, 0x64, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, - 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, - 0x49, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x46, 0x69, 0x72, 0x73, 0x74, - 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x41, - 0x64, 0x64, 0x46, 0x69, 0x72, 0x73, 0x74, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, - 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x92, 0x01, 0x0a, 0x29, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, - 0x61, 0x72, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6c, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, - 0x63, 0x6b, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, + 0x12, 0x29, 0x0a, 0x10, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x5f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x74, 0x65, 0x6c, 0x65, + 0x70, 0x6f, 0x72, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x3f, 0x0a, 0x0a, 0x75, + 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x1e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, + 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, + 0x00, 0x52, 0x09, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x3f, 0x0a, 0x0a, + 0x73, 0x73, 0x6f, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x1e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x53, 0x53, 0x4f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, + 0x48, 0x00, 0x52, 0x09, 0x73, 0x73, 0x6f, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x4e, 0x0a, + 0x0f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, + 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, + 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x48, 0x0a, + 0x0d, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x18, 0x06, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, + 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, + 0x72, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0c, 0x73, 0x65, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x12, 0x4c, 0x0a, 0x0f, 0x75, 0x69, 0x5f, 0x62, 0x61, + 0x6e, 0x6e, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x22, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x55, 0x49, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x75, 0x69, 0x42, 0x61, 0x6e, 0x6e, 0x65, 0x72, + 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x92, 0x01, 0x0a, 0x29, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, + 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x67, 0x6f, + 0x5f, 0x74, 0x6f, 0x5f, 0x64, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x63, 0x6c, + 0x69, 0x63, 0x6b, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x70, 0x72, 0x65, 0x68, + 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x4f, 0x6e, 0x62, + 0x6f, 0x61, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x47, 0x6f, 0x54, 0x6f, + 0x44, 0x61, 0x73, 0x68, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x23, 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, + 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x47, 0x6f, 0x54, 0x6f, 0x44, 0x61, 0x73, 0x68, + 0x62, 0x6f, 0x61, 0x72, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x82, 0x01, 0x0a, 0x23, 0x75, + 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x5f, 0x66, 0x69, + 0x72, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x63, 0x6c, 0x69, + 0x63, 0x6b, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x46, 0x69, 0x72, 0x73, 0x74, 0x52, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x4c, 0x61, 0x74, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x48, 0x00, 0x52, 0x23, 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x41, - 0x64, 0x64, 0x46, 0x69, 0x72, 0x73, 0x74, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, - 0x61, 0x74, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x7b, 0x0a, 0x20, 0x75, 0x69, 0x5f, - 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x72, 0x65, 0x64, - 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x18, 0x0c, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, - 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x53, 0x65, + 0x72, 0x63, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, + 0x1e, 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x46, 0x69, 0x72, + 0x73, 0x74, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, + 0x92, 0x01, 0x0a, 0x29, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x61, + 0x64, 0x64, 0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x5f, 0x6c, 0x61, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x0b, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, + 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x41, 0x64, + 0x64, 0x46, 0x69, 0x72, 0x73, 0x74, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x61, + 0x74, 0x65, 0x72, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, + 0x23, 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x41, 0x64, 0x64, 0x46, 0x69, 0x72, + 0x73, 0x74, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x61, 0x74, 0x65, 0x72, 0x43, + 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x7b, 0x0a, 0x20, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, + 0x72, 0x64, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, + 0x6c, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, + 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, + 0x55, 0x49, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x53, 0x65, 0x74, 0x43, 0x72, 0x65, 0x64, + 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, + 0x74, 0x48, 0x00, 0x52, 0x1c, 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x53, 0x65, 0x74, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x53, 0x75, 0x62, 0x6d, 0x69, - 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, - 0x61, 0x72, 0x64, 0x53, 0x65, 0x74, 0x43, 0x72, 0x65, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, - 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x12, 0x87, 0x01, 0x0a, 0x24, 0x75, 0x69, 0x5f, 0x6f, 0x6e, - 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x63, - 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x18, - 0x0d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, - 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, - 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, - 0x65, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x20, - 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, - 0x72, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, - 0x12, 0x7b, 0x0a, 0x20, 0x75, 0x69, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, - 0x63, 0x6f, 0x64, 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6e, 0x75, 0x65, 0x5f, 0x63, - 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x70, 0x72, 0x65, - 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x52, 0x65, - 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x69, - 0x6e, 0x75, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, - 0x1c, 0x75, 0x69, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x73, - 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x6e, 0x75, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x6f, 0x0a, - 0x1c, 0x75, 0x69, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, - 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x70, 0x79, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x0f, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, - 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, - 0x6f, 0x64, 0x65, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x48, 0x00, 0x52, 0x18, 0x75, 0x69, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, - 0x43, 0x6f, 0x64, 0x65, 0x73, 0x43, 0x6f, 0x70, 0x79, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x72, - 0x0a, 0x1d, 0x75, 0x69, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6f, - 0x64, 0x65, 0x73, 0x5f, 0x70, 0x72, 0x69, 0x6e, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, - 0x10, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, + 0x74, 0x12, 0x87, 0x01, 0x0a, 0x24, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, + 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x63, 0x68, 0x61, 0x6c, 0x6c, 0x65, + 0x6e, 0x67, 0x65, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x35, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x55, 0x49, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, + 0x74, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6c, 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x53, 0x75, 0x62, 0x6d, + 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x20, 0x75, 0x69, 0x4f, 0x6e, 0x62, + 0x6f, 0x61, 0x72, 0x64, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6c, + 0x6c, 0x65, 0x6e, 0x67, 0x65, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x12, 0x7b, 0x0a, 0x20, 0x75, + 0x69, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x73, + 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6e, 0x75, 0x65, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, + 0x0e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, - 0x79, 0x43, 0x6f, 0x64, 0x65, 0x73, 0x50, 0x72, 0x69, 0x6e, 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b, - 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x19, 0x75, 0x69, 0x52, 0x65, 0x63, 0x6f, 0x76, - 0x65, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x73, 0x50, 0x72, 0x69, 0x6e, 0x74, 0x43, 0x6c, 0x69, - 0x63, 0x6b, 0x12, 0x63, 0x0a, 0x19, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, - 0x72, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, - 0x11, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, + 0x79, 0x43, 0x6f, 0x64, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x6e, 0x75, 0x65, 0x43, 0x6c, + 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x75, 0x69, 0x52, 0x65, + 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x73, 0x43, 0x6f, 0x6e, 0x74, 0x69, + 0x6e, 0x75, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x6f, 0x0a, 0x1c, 0x75, 0x69, 0x5f, 0x72, + 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x73, 0x5f, 0x63, 0x6f, + 0x70, 0x79, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, + 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, + 0x55, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x73, 0x43, + 0x6f, 0x70, 0x79, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, + 0x18, 0x75, 0x69, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x73, + 0x43, 0x6f, 0x70, 0x79, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x72, 0x0a, 0x1d, 0x75, 0x69, 0x5f, + 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x73, 0x5f, 0x70, + 0x72, 0x69, 0x6e, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x10, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x2e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x55, 0x49, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, + 0x73, 0x50, 0x72, 0x69, 0x6e, 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, + 0x48, 0x00, 0x52, 0x19, 0x75, 0x69, 0x52, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, + 0x64, 0x65, 0x73, 0x50, 0x72, 0x69, 0x6e, 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x63, 0x0a, + 0x19, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, + 0x72, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x11, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x26, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x72, + 0x74, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, 0x75, 0x69, 0x44, 0x69, + 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x45, 0x76, 0x65, + 0x6e, 0x74, 0x12, 0x82, 0x01, 0x0a, 0x24, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, + 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x6c, 0x65, + 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x12, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x30, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x20, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, + 0x72, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x6f, 0x0a, 0x1d, 0x75, 0x73, 0x65, 0x72, 0x5f, + 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x73, 0x73, 0x75, + 0x65, 0x64, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x13, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, + 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, + 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, + 0x73, 0x73, 0x75, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1a, 0x75, 0x73, + 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, 0x49, 0x73, 0x73, + 0x75, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x4d, 0x0a, 0x10, 0x73, 0x65, 0x73, 0x73, + 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x76, 0x32, 0x18, 0x14, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, + 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x72, 0x74, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, + 0x53, 0x74, 0x61, 0x72, 0x74, 0x56, 0x32, 0x12, 0x76, 0x0a, 0x20, 0x75, 0x69, 0x5f, 0x64, 0x69, + 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x5f, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x15, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x2c, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x70, + 0x6c, 0x6f, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, + 0x00, 0x52, 0x1c, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x70, + 0x6c, 0x6f, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, + 0x7f, 0x0a, 0x23, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, + 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, + 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x16, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, + 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, + 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, + 0x1f, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x62, + 0x61, 0x73, 0x65, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x45, 0x76, 0x65, 0x6e, 0x74, + 0x12, 0x8f, 0x01, 0x0a, 0x29, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, + 0x5f, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x75, 0x72, 0x65, 0x5f, 0x6d, 0x74, 0x6c, 0x73, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x17, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, + 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, + 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, + 0x65, 0x4d, 0x54, 0x4c, 0x53, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x24, 0x75, 0x69, + 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, + 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x4d, 0x74, 0x6c, 0x73, 0x45, 0x76, 0x65, + 0x6e, 0x74, 0x12, 0xb8, 0x01, 0x0a, 0x38, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, + 0x65, 0x72, 0x5f, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, + 0x65, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x74, 0x6f, 0x6f, 0x6c, + 0x73, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, + 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x41, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, - 0x72, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, - 0x16, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x72, 0x74, - 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x82, 0x01, 0x0a, 0x24, 0x75, 0x69, 0x5f, 0x64, - 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, - 0x18, 0x12, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, - 0x65, 0x72, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x20, 0x75, 0x69, 0x44, 0x69, - 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x53, 0x65, - 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x6f, 0x0a, 0x1d, - 0x75, 0x73, 0x65, 0x72, 0x5f, 0x63, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x65, - 0x5f, 0x69, 0x73, 0x73, 0x75, 0x65, 0x64, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x13, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, - 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, - 0x63, 0x61, 0x74, 0x65, 0x49, 0x73, 0x73, 0x75, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, - 0x00, 0x52, 0x1a, 0x75, 0x73, 0x65, 0x72, 0x43, 0x65, 0x72, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, - 0x74, 0x65, 0x49, 0x73, 0x73, 0x75, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x4d, 0x0a, - 0x10, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x76, - 0x32, 0x18, 0x14, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, - 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, - 0x53, 0x74, 0x61, 0x72, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0e, 0x73, 0x65, - 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x72, 0x74, 0x56, 0x32, 0x12, 0x76, 0x0a, 0x20, - 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, 0x65, 0x70, 0x6c, - 0x6f, 0x79, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, - 0x18, 0x15, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, - 0x65, 0x72, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, - 0x65, 0x72, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x12, 0x7f, 0x0a, 0x23, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, - 0x76, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x72, 0x65, 0x67, - 0x69, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x16, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x2f, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, - 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1f, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, - 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, - 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x8f, 0x01, 0x0a, 0x29, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, - 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x63, - 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x5f, 0x6d, 0x74, 0x6c, 0x73, 0x5f, 0x65, 0x76, - 0x65, 0x6e, 0x74, 0x18, 0x17, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x70, 0x72, 0x65, 0x68, - 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, - 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, - 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x4d, 0x54, 0x4c, 0x53, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, - 0x00, 0x52, 0x24, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, - 0x61, 0x62, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x4d, 0x74, - 0x6c, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0xb8, 0x01, 0x0a, 0x38, 0x75, 0x69, 0x5f, 0x64, - 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x5f, - 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, - 0x5f, 0x74, 0x6f, 0x6f, 0x6c, 0x73, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 0x65, - 0x76, 0x65, 0x6e, 0x74, 0x18, 0x18, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x41, 0x2e, 0x70, 0x72, 0x65, - 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, + 0x72, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x44, 0x69, + 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x49, 0x6e, 0x73, 0x74, + 0x61, 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x31, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x54, 0x6f, 0x6f, 0x6c, - 0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, - 0x31, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x73, 0x6b, 0x74, - 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, - 0x79, 0x54, 0x6f, 0x6f, 0x6c, 0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x12, 0xae, 0x01, 0x0a, 0x34, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, - 0x65, 0x72, 0x5f, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, - 0x65, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x66, - 0x69, 0x67, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x3e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x73, - 0x6b, 0x74, 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, - 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x45, 0x76, 0x65, 0x6e, - 0x74, 0x48, 0x00, 0x52, 0x2e, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, - 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x44, 0x69, 0x72, 0x65, - 0x63, 0x74, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x45, 0x76, - 0x65, 0x6e, 0x74, 0x12, 0x95, 0x01, 0x0a, 0x2b, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, - 0x76, 0x65, 0x72, 0x5f, 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, - 0x72, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x5f, 0x65, 0x76, - 0x65, 0x6e, 0x74, 0x18, 0x1a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x70, 0x72, 0x65, 0x68, + 0x73, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0xae, 0x01, + 0x0a, 0x34, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, 0x65, + 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x64, 0x69, 0x72, + 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, + 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x19, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3e, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, + 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x41, + 0x63, 0x74, 0x69, 0x76, 0x65, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x2e, + 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, + 0x70, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, + 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x95, + 0x01, 0x0a, 0x2b, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x61, + 0x75, 0x74, 0x6f, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x65, 0x64, 0x5f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x1a, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, + 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, + 0x41, 0x75, 0x74, 0x6f, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x65, 0x64, 0x52, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x26, + 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x41, 0x75, 0x74, 0x6f, 0x44, 0x69, + 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x9f, 0x01, 0x0a, 0x2f, 0x75, 0x69, 0x5f, 0x64, 0x69, + 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, + 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x5f, 0x69, 0x61, 0x6d, 0x5f, 0x70, 0x6f, + 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x1b, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x39, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, + 0x62, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x49, 0x41, 0x4d, + 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x29, 0x75, + 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, + 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, + 0x69, 0x63, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x88, 0x01, 0x0a, 0x26, 0x75, 0x69, 0x5f, + 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x72, 0x69, 0x6e, 0x63, 0x69, 0x70, + 0x61, 0x6c, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x5f, 0x65, 0x76, + 0x65, 0x6e, 0x74, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, - 0x63, 0x6f, 0x76, 0x65, 0x72, 0x41, 0x75, 0x74, 0x6f, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, - 0x72, 0x65, 0x64, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x45, 0x76, 0x65, 0x6e, - 0x74, 0x48, 0x00, 0x52, 0x26, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x41, - 0x75, 0x74, 0x6f, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x65, 0x64, 0x52, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x9f, 0x01, 0x0a, 0x2f, - 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, - 0x62, 0x61, 0x73, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x5f, 0x69, - 0x61, 0x6d, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, - 0x1b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, - 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, - 0x72, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, - 0x72, 0x65, 0x49, 0x41, 0x4d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, - 0x48, 0x00, 0x52, 0x29, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, - 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x49, - 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x88, 0x01, - 0x0a, 0x26, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x70, 0x72, - 0x69, 0x6e, 0x63, 0x69, 0x70, 0x61, 0x6c, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, - 0x72, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x1c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, + 0x63, 0x6f, 0x76, 0x65, 0x72, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x69, 0x70, 0x61, 0x6c, 0x73, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, + 0x22, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x50, 0x72, 0x69, 0x6e, 0x63, + 0x69, 0x70, 0x61, 0x6c, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x12, 0x79, 0x0a, 0x21, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, + 0x65, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x1d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, - 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x50, 0x72, 0x69, 0x6e, 0x63, 0x69, - 0x70, 0x61, 0x6c, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x65, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x48, 0x00, 0x52, 0x22, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, - 0x50, 0x72, 0x69, 0x6e, 0x63, 0x69, 0x70, 0x61, 0x6c, 0x73, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, - 0x75, 0x72, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x79, 0x0a, 0x21, 0x75, 0x69, 0x5f, 0x64, - 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x63, 0x6f, 0x6e, - 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x1d, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, - 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x54, - 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1d, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, - 0x54, 0x65, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, - 0x65, 0x6e, 0x74, 0x12, 0x69, 0x0a, 0x1b, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, - 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x76, 0x65, - 0x6e, 0x74, 0x18, 0x1e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, - 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, - 0x6f, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x48, 0x00, 0x52, 0x18, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, - 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x42, - 0x0a, 0x0b, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x1f, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, - 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0a, 0x72, 0x6f, 0x6c, 0x65, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x12, 0x63, 0x0a, 0x18, 0x75, 0x69, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, - 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x20, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, - 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, - 0x77, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, - 0x00, 0x52, 0x14, 0x75, 0x69, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, - 0x6c, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x70, 0x0a, 0x1d, 0x75, 0x69, 0x5f, 0x63, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x73, 0x61, - 0x76, 0x65, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, + 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x54, 0x65, 0x73, 0x74, 0x43, 0x6f, + 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, + 0x1d, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x54, 0x65, 0x73, 0x74, 0x43, + 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x69, + 0x0a, 0x1b, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x63, 0x6f, + 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x1e, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, + 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, + 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, + 0x18, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, 0x6f, 0x6d, 0x70, 0x6c, + 0x65, 0x74, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x42, 0x0a, 0x0b, 0x72, 0x6f, 0x6c, + 0x65, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x1f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1f, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, - 0x55, 0x49, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, 0x53, - 0x61, 0x76, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, - 0x18, 0x75, 0x69, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, - 0x53, 0x61, 0x76, 0x65, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x76, 0x0a, 0x1f, 0x75, 0x69, 0x5f, - 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, - 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x22, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, + 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, + 0x00, 0x52, 0x0a, 0x72, 0x6f, 0x6c, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x63, 0x0a, + 0x18, 0x75, 0x69, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x72, + 0x6f, 0x6c, 0x65, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x20, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x29, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, + 0x2e, 0x55, 0x49, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, + 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x14, 0x75, 0x69, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x6c, 0x69, + 0x63, 0x6b, 0x12, 0x70, 0x0a, 0x1d, 0x75, 0x69, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, + 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x73, 0x61, 0x76, 0x65, 0x5f, 0x63, 0x6c, + 0x69, 0x63, 0x6b, 0x18, 0x21, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x70, 0x72, 0x65, 0x68, + 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x43, 0x72, 0x65, + 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x43, 0x6c, + 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x18, 0x75, 0x69, 0x43, 0x72, + 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x61, 0x76, 0x65, 0x43, + 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x76, 0x0a, 0x1f, 0x75, 0x69, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x63, 0x61, 0x6e, 0x63, 0x65, + 0x6c, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x22, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, + 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, + 0x49, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x61, + 0x6e, 0x63, 0x65, 0x6c, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, + 0x52, 0x1a, 0x75, 0x69, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, + 0x65, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x98, 0x01, 0x0a, + 0x2b, 0x75, 0x69, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x72, + 0x6f, 0x6c, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x64, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, + 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x18, 0x23, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, - 0x6f, 0x6c, 0x65, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, - 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1a, 0x75, 0x69, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, - 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x43, 0x6c, 0x69, 0x63, - 0x6b, 0x12, 0x98, 0x01, 0x0a, 0x2b, 0x75, 0x69, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, - 0x6e, 0x65, 0x77, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x64, 0x6f, - 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6c, 0x69, 0x63, - 0x6b, 0x18, 0x23, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, - 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x43, 0x72, 0x65, 0x61, 0x74, - 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x44, 0x6f, 0x63, 0x75, - 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, - 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x25, 0x75, 0x69, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, - 0x65, 0x77, 0x52, 0x6f, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, - 0x6e, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x45, 0x0a, 0x0c, - 0x6b, 0x75, 0x62, 0x65, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x24, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, - 0x70, 0x68, 0x61, 0x2e, 0x4b, 0x75, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0b, 0x6b, 0x75, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x2f, 0x0a, 0x04, 0x73, 0x66, 0x74, 0x70, 0x18, 0x25, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x19, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x53, 0x46, 0x54, 0x50, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x04, - 0x73, 0x66, 0x74, 0x70, 0x12, 0x56, 0x0a, 0x14, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x26, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, - 0x70, 0x68, 0x61, 0x2e, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x12, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x4d, - 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x57, 0x0a, 0x12, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, - 0x61, 0x74, 0x18, 0x27, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, - 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, - 0x48, 0x00, 0x52, 0x11, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x48, 0x65, 0x61, 0x72, - 0x74, 0x62, 0x65, 0x61, 0x74, 0x12, 0x9c, 0x01, 0x0a, 0x2e, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, - 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x61, 0x77, 0x73, 0x5f, 0x6f, 0x69, 0x64, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, - 0x63, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x28, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, - 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, - 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x57, 0x53, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x6e, - 0x65, 0x63, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x28, 0x75, 0x69, 0x44, 0x69, - 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x41, 0x77, 0x73, 0x4f, 0x69, 0x64, 0x63, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x12, 0x83, 0x01, 0x0a, 0x25, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, - 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x72, 0x64, - 0x73, 0x5f, 0x65, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x29, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, - 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, - 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x44, 0x53, 0x45, 0x6e, 0x72, 0x6f, 0x6c, - 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x20, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, - 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x64, 0x73, 0x45, - 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x6b, 0x0a, 0x1d, 0x75, 0x69, - 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x2a, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x28, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x55, 0x49, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x18, 0x75, - 0x69, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6c, 0x69, - 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x54, 0x0a, 0x11, 0x61, 0x73, 0x73, 0x69, 0x73, - 0x74, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2b, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, - 0x70, 0x68, 0x61, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, - 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x10, 0x61, 0x73, 0x73, - 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x79, 0x0a, - 0x21, 0x75, 0x69, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x65, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x65, 0x76, 0x65, - 0x6e, 0x74, 0x18, 0x2c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, - 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x49, 0x6e, 0x74, 0x65, - 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x53, 0x74, 0x61, - 0x72, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1d, 0x75, 0x69, 0x49, 0x6e, 0x74, - 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x53, 0x74, - 0x61, 0x72, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x82, 0x01, 0x0a, 0x24, 0x75, 0x69, 0x5f, - 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6e, 0x72, 0x6f, - 0x6c, 0x6c, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, - 0x74, 0x18, 0x2d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, - 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x49, 0x6e, 0x74, 0x65, 0x67, - 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x43, 0x6f, 0x6d, 0x70, - 0x6c, 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x20, 0x75, 0x69, 0x49, - 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, - 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x53, 0x0a, - 0x13, 0x65, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, - 0x76, 0x65, 0x6e, 0x74, 0x18, 0x2e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x65, - 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x45, 0x64, 0x69, 0x74, - 0x6f, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, - 0x11, 0x65, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x12, 0x3f, 0x0a, 0x0a, 0x62, 0x6f, 0x74, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x18, 0x2f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x42, 0x6f, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, - 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x09, 0x62, 0x6f, 0x74, 0x43, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x12, 0x7a, 0x0a, 0x1f, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x5f, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x5f, - 0x73, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x18, 0x30, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x70, + 0x6f, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, + 0x52, 0x25, 0x75, 0x69, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x65, 0x77, 0x52, 0x6f, 0x6c, + 0x65, 0x56, 0x69, 0x65, 0x77, 0x44, 0x6f, 0x63, 0x75, 0x6d, 0x65, 0x6e, 0x74, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x12, 0x45, 0x0a, 0x0c, 0x6b, 0x75, 0x62, 0x65, 0x5f, + 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x24, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, + 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x4b, + 0x75, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, + 0x00, 0x52, 0x0b, 0x6b, 0x75, 0x62, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2f, + 0x0a, 0x04, 0x73, 0x66, 0x74, 0x70, 0x18, 0x25, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x46, + 0x54, 0x50, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x04, 0x73, 0x66, 0x74, 0x70, 0x12, + 0x56, 0x0a, 0x14, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, + 0x61, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x26, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, + 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, + 0x67, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x45, 0x76, 0x65, 0x6e, + 0x74, 0x48, 0x00, 0x52, 0x12, 0x61, 0x67, 0x65, 0x6e, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x57, 0x0a, 0x12, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x5f, 0x68, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x18, 0x27, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, + 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x48, 0x65, 0x61, + 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x11, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x48, 0x65, 0x61, 0x72, 0x74, 0x62, 0x65, 0x61, 0x74, + 0x12, 0x9c, 0x01, 0x0a, 0x2e, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, + 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x77, 0x73, + 0x5f, 0x6f, 0x69, 0x64, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x5f, 0x65, 0x76, + 0x65, 0x6e, 0x74, 0x18, 0x28, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x70, 0x72, 0x65, 0x68, + 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, + 0x63, 0x6f, 0x76, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x41, 0x57, 0x53, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x28, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, + 0x72, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x77, 0x73, 0x4f, + 0x69, 0x64, 0x63, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, + 0x83, 0x01, 0x0a, 0x25, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, + 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x72, 0x64, 0x73, 0x5f, 0x65, 0x6e, 0x72, + 0x6f, 0x6c, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x29, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x30, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, + 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x62, + 0x61, 0x73, 0x65, 0x52, 0x44, 0x53, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, + 0x74, 0x48, 0x00, 0x52, 0x20, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, + 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x52, 0x64, 0x73, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x6b, 0x0a, 0x1d, 0x75, 0x69, 0x5f, 0x63, 0x61, 0x6c, 0x6c, + 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, + 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x2a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, + 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, + 0x6b, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x18, 0x75, 0x69, 0x43, 0x61, 0x6c, 0x6c, + 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x45, 0x76, 0x65, + 0x6e, 0x74, 0x12, 0x54, 0x0a, 0x11, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x6f, 0x6d, + 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x2b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, + 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, + 0x73, 0x73, 0x69, 0x73, 0x74, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x10, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x43, 0x6f, + 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x79, 0x0a, 0x21, 0x75, 0x69, 0x5f, 0x69, + 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6e, 0x72, 0x6f, 0x6c, + 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x2c, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, + 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x72, 0x74, 0x45, 0x76, 0x65, + 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1d, 0x75, 0x69, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x53, 0x74, 0x61, 0x72, 0x74, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x12, 0x82, 0x01, 0x0a, 0x24, 0x75, 0x69, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x5f, 0x63, 0x6f, + 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x2d, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, + 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x74, 0x65, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x20, 0x75, 0x69, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x43, 0x6f, 0x6d, 0x70, 0x6c, + 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x53, 0x0a, 0x13, 0x65, 0x64, 0x69, 0x74, + 0x6f, 0x72, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, + 0x2e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, + 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x45, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x43, 0x68, 0x61, + 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x11, 0x65, 0x64, 0x69, 0x74, + 0x6f, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x3f, 0x0a, + 0x0a, 0x62, 0x6f, 0x74, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x2f, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x1e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x2e, 0x42, 0x6f, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, + 0x74, 0x48, 0x00, 0x52, 0x09, 0x62, 0x6f, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x7a, + 0x0a, 0x1f, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x5f, 0x73, 0x75, 0x62, 0x6d, 0x69, + 0x74, 0x18, 0x30, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, + 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x4f, 0x6e, 0x62, 0x6f, 0x61, + 0x72, 0x64, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, + 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x51, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x6e, - 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, - 0x00, 0x52, 0x1c, 0x75, 0x69, 0x4f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x51, 0x75, 0x65, 0x73, - 0x74, 0x69, 0x6f, 0x6e, 0x6e, 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x12, - 0x39, 0x0a, 0x08, 0x62, 0x6f, 0x74, 0x5f, 0x6a, 0x6f, 0x69, 0x6e, 0x18, 0x31, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x1c, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x42, 0x6f, 0x74, 0x4a, 0x6f, 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, - 0x00, 0x52, 0x07, 0x62, 0x6f, 0x74, 0x4a, 0x6f, 0x69, 0x6e, 0x12, 0x51, 0x0a, 0x10, 0x61, 0x73, - 0x73, 0x69, 0x73, 0x74, 0x5f, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x32, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, - 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x73, 0x74, 0x45, 0x78, 0x65, 0x63, - 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x61, 0x73, - 0x73, 0x69, 0x73, 0x74, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x64, 0x0a, - 0x17, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x63, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, - 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, - 0x41, 0x73, 0x73, 0x69, 0x73, 0x74, 0x4e, 0x65, 0x77, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x15, 0x61, 0x73, - 0x73, 0x69, 0x73, 0x74, 0x4e, 0x65, 0x77, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x12, 0x65, 0x0a, 0x19, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x75, - 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, - 0x18, 0x34, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x41, 0x75, - 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, - 0x00, 0x52, 0x17, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, - 0x69, 0x63, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x6e, 0x0a, 0x1c, 0x66, 0x65, - 0x61, 0x74, 0x75, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x35, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, - 0x61, 0x2e, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, - 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1a, - 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x5e, 0x0a, 0x15, 0x61, 0x73, - 0x73, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x18, 0x36, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x70, 0x72, 0x65, 0x68, + 0x61, 0x69, 0x72, 0x65, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x12, 0x39, 0x0a, 0x08, 0x62, 0x6f, + 0x74, 0x5f, 0x6a, 0x6f, 0x69, 0x6e, 0x18, 0x31, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1c, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x42, 0x6f, + 0x74, 0x4a, 0x6f, 0x69, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x07, 0x62, 0x6f, + 0x74, 0x4a, 0x6f, 0x69, 0x6e, 0x12, 0x51, 0x0a, 0x10, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x5f, + 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x32, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x24, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, + 0x2e, 0x41, 0x73, 0x73, 0x69, 0x73, 0x74, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x45, + 0x78, 0x65, 0x63, 0x75, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x64, 0x0a, 0x17, 0x61, 0x73, 0x73, 0x69, + 0x73, 0x74, 0x5f, 0x6e, 0x65, 0x77, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x18, 0x33, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x73, - 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x76, - 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x13, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, - 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x0d, 0x61, 0x73, - 0x73, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x37, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0c, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x41, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x53, 0x0a, 0x13, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x65, - 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x38, 0x20, 0x01, 0x28, + 0x74, 0x4e, 0x65, 0x77, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x15, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x4e, + 0x65, 0x77, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x65, + 0x0a, 0x19, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, + 0x69, 0x63, 0x61, 0x74, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x34, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x27, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, + 0x69, 0x63, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x17, 0x64, 0x65, + 0x76, 0x69, 0x63, 0x65, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x6e, 0x0a, 0x1c, 0x66, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, + 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x35, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, + 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x46, 0x65, 0x61, + 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1a, 0x66, 0x65, 0x61, 0x74, 0x75, + 0x72, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x5e, 0x0a, 0x15, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x5f, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x18, 0x36, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, + 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x73, 0x73, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, + 0x52, 0x13, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x48, 0x0a, 0x0d, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x5f, + 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x37, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x73, + 0x73, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, + 0x00, 0x52, 0x0c, 0x61, 0x73, 0x73, 0x69, 0x73, 0x74, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x53, 0x0a, 0x13, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, + 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x38, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, 0x65, + 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, + 0x00, 0x52, 0x11, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x12, 0x53, 0x0a, 0x13, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x5f, + 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x39, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x11, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, 0x6e, - 0x72, 0x6f, 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x53, 0x0a, 0x13, 0x6c, 0x69, 0x63, - 0x65, 0x6e, 0x73, 0x65, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, - 0x18, 0x39, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x21, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4c, - 0x69, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x11, 0x6c, 0x69, 0x63, - 0x65, 0x6e, 0x73, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x55, - 0x0a, 0x12, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x18, 0x3a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x65, - 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, - 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, - 0x74, 0x48, 0x00, 0x52, 0x10, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x43, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x55, 0x0a, 0x12, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, - 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x3b, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x70, 0x64, - 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x10, 0x61, 0x63, 0x63, 0x65, - 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x55, 0x0a, 0x12, - 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x64, 0x65, 0x6c, 0x65, - 0x74, 0x65, 0x18, 0x3c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, - 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, - 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, - 0x00, 0x52, 0x10, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x6c, - 0x65, 0x74, 0x65, 0x12, 0x68, 0x0a, 0x19, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, - 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, - 0x18, 0x3d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, - 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, - 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, - 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x68, 0x0a, - 0x19, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x6d, - 0x62, 0x65, 0x72, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x3e, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, - 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, - 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, - 0x16, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, - 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x68, 0x0a, 0x19, 0x61, 0x63, 0x63, 0x65, 0x73, - 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x64, 0x65, - 0x6c, 0x65, 0x74, 0x65, 0x18, 0x3f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, - 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, - 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, - 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, 0x61, 0x63, 0x63, 0x65, 0x73, - 0x73, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, - 0x65, 0x12, 0x69, 0x0a, 0x1a, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, - 0x5f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x5f, 0x74, 0x6f, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, - 0x40, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, + 0x68, 0x61, 0x2e, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x11, 0x6c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4c, + 0x69, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x55, 0x0a, 0x12, 0x61, 0x63, 0x63, + 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, + 0x3a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, - 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x54, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, - 0x47, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x54, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x12, 0x81, 0x01, 0x0a, - 0x22, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x65, 0x63, 0x32, - 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x41, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x70, 0x72, 0x65, 0x68, - 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, - 0x63, 0x6f, 0x76, 0x65, 0x72, 0x45, 0x43, 0x32, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, - 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, - 0x52, 0x1e, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x45, 0x63, 0x32, 0x49, - 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x12, 0x62, 0x0a, 0x17, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, - 0x64, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x5f, 0x65, 0x69, 0x63, 0x65, 0x18, 0x42, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x29, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x70, - 0x6c, 0x6f, 0x79, 0x45, 0x49, 0x43, 0x45, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x14, - 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, - 0x45, 0x69, 0x63, 0x65, 0x12, 0x62, 0x0a, 0x17, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, - 0x76, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, - 0x43, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, - 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, - 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, - 0x48, 0x00, 0x52, 0x14, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x12, 0x64, 0x0a, 0x17, 0x64, 0x65, 0x73, 0x6b, - 0x74, 0x6f, 0x70, 0x5f, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x73, 0x68, - 0x61, 0x72, 0x65, 0x18, 0x44, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x65, 0x68, - 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, 0x65, 0x73, 0x6b, 0x74, - 0x6f, 0x70, 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, - 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x15, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, - 0x44, 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x65, - 0x0a, 0x1a, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x5f, 0x63, 0x6c, 0x69, 0x70, 0x62, 0x6f, - 0x61, 0x72, 0x64, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x18, 0x45, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, - 0x70, 0x68, 0x61, 0x2e, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x69, 0x70, 0x62, - 0x6f, 0x61, 0x72, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x18, 0x64, 0x65, 0x73, - 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x69, 0x70, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x54, 0x72, 0x61, - 0x6e, 0x73, 0x66, 0x65, 0x72, 0x12, 0x52, 0x0a, 0x11, 0x74, 0x61, 0x67, 0x5f, 0x65, 0x78, 0x65, - 0x63, 0x75, 0x74, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x46, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x24, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, - 0x61, 0x2e, 0x54, 0x41, 0x47, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x51, 0x75, 0x65, 0x72, - 0x79, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0f, 0x74, 0x61, 0x67, 0x45, 0x78, 0x65, - 0x63, 0x75, 0x74, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x86, 0x01, 0x0a, 0x23, 0x65, 0x78, - 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x73, 0x74, 0x6f, - 0x72, 0x61, 0x67, 0x65, 0x5f, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, - 0x65, 0x18, 0x47, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, - 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, - 0x6c, 0x41, 0x75, 0x64, 0x69, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x41, 0x75, 0x74, - 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, - 0x52, 0x20, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x75, 0x64, 0x69, 0x74, 0x53, - 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, - 0x74, 0x65, 0x12, 0x6b, 0x0a, 0x1a, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x5f, 0x72, - 0x65, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, - 0x18, 0x48, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, - 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x17, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, - 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, - 0x4c, 0x0a, 0x0f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x72, - 0x75, 0x6e, 0x18, 0x49, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, - 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x74, 0x51, - 0x75, 0x65, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0d, - 0x61, 0x75, 0x64, 0x69, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x12, 0x59, 0x0a, - 0x15, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x66, 0x65, 0x74, 0x63, 0x68, - 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x4a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, - 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, 0x69, - 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x65, 0x74, 0x63, 0x68, 0x45, 0x76, 0x65, 0x6e, - 0x74, 0x48, 0x00, 0x52, 0x13, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x65, - 0x74, 0x63, 0x68, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x68, 0x0a, 0x19, 0x61, 0x63, 0x63, 0x65, - 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x63, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x4b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, + 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x10, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, + 0x12, 0x55, 0x0a, 0x12, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, + 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x3b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, + 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x10, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, + 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x55, 0x0a, 0x12, 0x61, 0x63, 0x63, 0x65, 0x73, + 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x18, 0x3c, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, + 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x44, + 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x10, 0x61, 0x63, + 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x68, + 0x0a, 0x19, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6d, 0x65, + 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x3d, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, + 0x62, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, + 0x52, 0x16, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, + 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x68, 0x0a, 0x19, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x75, + 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x3e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, - 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x72, 0x65, + 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, 0x61, 0x63, 0x63, 0x65, - 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x72, 0x65, 0x61, + 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x68, 0x0a, 0x19, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, - 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x18, - 0x4c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, + 0x74, 0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x18, + 0x3f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, - 0x74, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, + 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, - 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x74, 0x0a, 0x1d, - 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, - 0x65, 0x77, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x4d, 0x20, - 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, - 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, - 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1a, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, - 0x73, 0x74, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, - 0x63, 0x65, 0x12, 0x62, 0x0a, 0x18, 0x6d, 0x66, 0x61, 0x5f, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, - 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x4e, - 0x20, 0x01, 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, - 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x4d, 0x46, 0x41, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, - 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, - 0x6d, 0x66, 0x61, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x55, 0x0a, 0x12, 0x73, 0x70, 0x69, 0x66, 0x66, 0x65, - 0x5f, 0x73, 0x76, 0x69, 0x64, 0x5f, 0x69, 0x73, 0x73, 0x75, 0x65, 0x64, 0x18, 0x4f, 0x20, 0x01, - 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, - 0x70, 0x68, 0x61, 0x2e, 0x53, 0x50, 0x49, 0x46, 0x46, 0x45, 0x53, 0x56, 0x49, 0x44, 0x49, 0x73, - 0x73, 0x75, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x10, 0x73, 0x70, 0x69, - 0x66, 0x66, 0x65, 0x53, 0x76, 0x69, 0x64, 0x49, 0x73, 0x73, 0x75, 0x65, 0x64, 0x12, 0x5c, 0x0a, - 0x15, 0x6f, 0x6b, 0x74, 0x61, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, - 0x74, 0x5f, 0x73, 0x79, 0x6e, 0x63, 0x18, 0x50, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x70, - 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x4f, 0x6b, - 0x74, 0x61, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x79, 0x6e, 0x63, - 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x12, 0x6f, 0x6b, 0x74, 0x61, 0x41, 0x63, 0x63, - 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x79, 0x6e, 0x63, 0x12, 0x5e, 0x0a, 0x15, 0x64, - 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x64, 0x18, 0x51, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x70, 0x72, 0x65, - 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, 0x61, 0x74, 0x61, - 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x45, - 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x13, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, - 0x55, 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x12, 0x7f, 0x0a, 0x21, 0x64, - 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x70, 0x65, 0x72, - 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, - 0x18, 0x52, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, - 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x55, - 0x70, 0x64, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x64, 0x61, - 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, - 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x84, 0x01, 0x0a, - 0x23, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6f, - 0x6e, 0x66, 0x69, 0x67, 0x18, 0x53, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x70, 0x72, 0x65, - 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, - 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x69, 0x73, 0x63, - 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x76, 0x65, 0x6e, 0x74, - 0x48, 0x00, 0x52, 0x1f, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x65, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, 0x6e, - 0x66, 0x69, 0x67, 0x12, 0x77, 0x0a, 0x21, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, - 0x65, 0x72, 0x5f, 0x6b, 0x75, 0x62, 0x65, 0x5f, 0x65, 0x6b, 0x73, 0x5f, 0x65, 0x6e, 0x72, 0x6f, - 0x6c, 0x6c, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x54, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, + 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x69, 0x0a, 0x1a, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x67, 0x72, 0x61, 0x6e, + 0x74, 0x73, 0x5f, 0x74, 0x6f, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x18, 0x40, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x61, 0x6e, + 0x74, 0x73, 0x54, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, + 0x16, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, + 0x73, 0x54, 0x6f, 0x55, 0x73, 0x65, 0x72, 0x12, 0x81, 0x01, 0x0a, 0x22, 0x75, 0x69, 0x5f, 0x64, + 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x65, 0x63, 0x32, 0x5f, 0x69, 0x6e, 0x73, 0x74, + 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x41, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x33, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, + 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, + 0x45, 0x43, 0x32, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x75, 0x69, 0x44, + 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x45, 0x63, 0x32, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, + 0x63, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x62, 0x0a, 0x17, 0x75, + 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x64, 0x65, 0x70, 0x6c, 0x6f, + 0x79, 0x5f, 0x65, 0x69, 0x63, 0x65, 0x18, 0x42, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, + 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x45, 0x49, + 0x43, 0x45, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x14, 0x75, 0x69, 0x44, 0x69, 0x73, + 0x63, 0x6f, 0x76, 0x65, 0x72, 0x44, 0x65, 0x70, 0x6c, 0x6f, 0x79, 0x45, 0x69, 0x63, 0x65, 0x12, + 0x62, 0x0a, 0x17, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x63, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x6e, 0x6f, 0x64, 0x65, 0x18, 0x43, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x29, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, + 0x74, 0x65, 0x4e, 0x6f, 0x64, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x14, 0x75, + 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4e, + 0x6f, 0x64, 0x65, 0x12, 0x64, 0x0a, 0x17, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x5f, 0x64, + 0x69, 0x72, 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x44, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, + 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x44, 0x69, 0x72, + 0x65, 0x63, 0x74, 0x6f, 0x72, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, + 0x48, 0x00, 0x52, 0x15, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x44, 0x69, 0x72, 0x65, 0x63, + 0x74, 0x6f, 0x72, 0x79, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x65, 0x0a, 0x1a, 0x64, 0x65, 0x73, + 0x6b, 0x74, 0x6f, 0x70, 0x5f, 0x63, 0x6c, 0x69, 0x70, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x74, + 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, 0x18, 0x45, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, + 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, + 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, 0x6c, 0x69, 0x70, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x18, 0x64, 0x65, 0x73, 0x6b, 0x74, 0x6f, 0x70, 0x43, + 0x6c, 0x69, 0x70, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x54, 0x72, 0x61, 0x6e, 0x73, 0x66, 0x65, 0x72, + 0x12, 0x52, 0x0a, 0x11, 0x74, 0x61, 0x67, 0x5f, 0x65, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x5f, + 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x46, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x24, 0x2e, 0x70, 0x72, + 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x54, 0x41, 0x47, + 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x45, 0x76, 0x65, 0x6e, + 0x74, 0x48, 0x00, 0x52, 0x0f, 0x74, 0x61, 0x67, 0x45, 0x78, 0x65, 0x63, 0x75, 0x74, 0x65, 0x51, + 0x75, 0x65, 0x72, 0x79, 0x12, 0x86, 0x01, 0x0a, 0x23, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, + 0x6c, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x74, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x5f, + 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x18, 0x47, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x35, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, + 0x70, 0x68, 0x61, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x75, 0x64, 0x69, + 0x74, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, + 0x63, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x20, 0x65, 0x78, 0x74, + 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x41, 0x75, 0x64, 0x69, 0x74, 0x53, 0x74, 0x6f, 0x72, 0x61, 0x67, + 0x65, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x12, 0x6b, 0x0a, + 0x1a, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, + 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x48, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x2c, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x2e, 0x53, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x6f, 0x72, + 0x74, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, + 0x00, 0x52, 0x17, 0x73, 0x65, 0x63, 0x75, 0x72, 0x69, 0x74, 0x79, 0x52, 0x65, 0x70, 0x6f, 0x72, + 0x74, 0x47, 0x65, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x4c, 0x0a, 0x0f, 0x61, 0x75, + 0x64, 0x69, 0x74, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x72, 0x75, 0x6e, 0x18, 0x49, 0x20, + 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, + 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x74, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, + 0x75, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x75, 0x64, 0x69, 0x74, + 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x75, 0x6e, 0x12, 0x59, 0x0a, 0x15, 0x64, 0x69, 0x73, 0x63, + 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x66, 0x65, 0x74, 0x63, 0x68, 0x5f, 0x65, 0x76, 0x65, 0x6e, + 0x74, 0x18, 0x4a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x23, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, + 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, + 0x72, 0x79, 0x46, 0x65, 0x74, 0x63, 0x68, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x13, + 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x46, 0x65, 0x74, 0x63, 0x68, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x12, 0x68, 0x0a, 0x19, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, + 0x73, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, + 0x18, 0x4b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, + 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, + 0x73, 0x74, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, + 0x74, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x68, 0x0a, + 0x19, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x76, + 0x69, 0x65, 0x77, 0x5f, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x18, 0x4c, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76, 0x69, + 0x65, 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, + 0x16, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76, 0x69, 0x65, + 0x77, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x74, 0x0a, 0x1d, 0x61, 0x63, 0x63, 0x65, 0x73, + 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x63, 0x6f, + 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x4d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, - 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x4b, 0x75, 0x62, 0x65, 0x45, 0x4b, - 0x53, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1c, - 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x4b, 0x75, 0x62, 0x65, 0x45, 0x6b, - 0x73, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x7d, 0x0a, 0x23, - 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x65, 0x76, - 0x65, 0x6e, 0x74, 0x18, 0x55, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x70, 0x72, 0x65, 0x68, + 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76, 0x69, 0x65, 0x77, + 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, + 0x00, 0x52, 0x1a, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x76, + 0x69, 0x65, 0x77, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x62, 0x0a, + 0x18, 0x6d, 0x66, 0x61, 0x5f, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x4e, 0x20, 0x01, 0x28, 0x0b, 0x32, + 0x26, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, + 0x2e, 0x4d, 0x46, 0x41, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, 0x6d, 0x66, 0x61, 0x41, 0x75, + 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, + 0x74, 0x12, 0x55, 0x0a, 0x12, 0x73, 0x70, 0x69, 0x66, 0x66, 0x65, 0x5f, 0x73, 0x76, 0x69, 0x64, + 0x5f, 0x69, 0x73, 0x73, 0x75, 0x65, 0x64, 0x18, 0x4f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e, + 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, + 0x50, 0x49, 0x46, 0x46, 0x45, 0x53, 0x56, 0x49, 0x44, 0x49, 0x73, 0x73, 0x75, 0x65, 0x64, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x10, 0x73, 0x70, 0x69, 0x66, 0x66, 0x65, 0x53, 0x76, + 0x69, 0x64, 0x49, 0x73, 0x73, 0x75, 0x65, 0x64, 0x12, 0x5c, 0x0a, 0x15, 0x6f, 0x6b, 0x74, 0x61, + 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x79, 0x6e, + 0x63, 0x18, 0x50, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, + 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x4f, 0x6b, 0x74, 0x61, 0x41, 0x63, 0x63, + 0x65, 0x73, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x79, 0x6e, 0x63, 0x45, 0x76, 0x65, 0x6e, 0x74, + 0x48, 0x00, 0x52, 0x12, 0x6f, 0x6b, 0x74, 0x61, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x4c, 0x69, + 0x73, 0x74, 0x53, 0x79, 0x6e, 0x63, 0x12, 0x5e, 0x0a, 0x15, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, + 0x73, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x18, + 0x51, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, + 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x55, + 0x73, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, + 0x00, 0x52, 0x13, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x43, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x12, 0x7f, 0x0a, 0x21, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, + 0x73, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x70, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x73, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x18, 0x52, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x32, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, + 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x64, 0x61, 0x74, 0x61, 0x62, 0x61, 0x73, + 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x65, 0x72, 0x6d, 0x69, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, + 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x64, 0x12, 0x84, 0x01, 0x0a, 0x23, 0x75, 0x69, 0x5f, 0x64, + 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x64, + 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, + 0x53, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, + 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, + 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, + 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1f, 0x75, + 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, + 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x77, + 0x0a, 0x21, 0x75, 0x69, 0x5f, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x6b, 0x75, + 0x62, 0x65, 0x5f, 0x65, 0x6b, 0x73, 0x5f, 0x65, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x5f, 0x65, 0x76, + 0x65, 0x6e, 0x74, 0x18, 0x54, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2c, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, - 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, - 0x72, 0x76, 0x65, 0x72, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x75, 0x69, 0x44, - 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, - 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x65, 0x0a, 0x18, 0x61, - 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x67, 0x69, 0x74, 0x6c, - 0x61, 0x62, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18, 0x56, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, - 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, - 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x47, 0x69, 0x74, 0x6c, 0x61, 0x62, - 0x53, 0x63, 0x61, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x15, 0x61, 0x63, 0x63, - 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x47, 0x69, 0x74, 0x6c, 0x61, 0x62, 0x53, 0x63, - 0x61, 0x6e, 0x12, 0x94, 0x01, 0x0a, 0x29, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, - 0x61, 0x70, 0x68, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x5f, 0x73, 0x63, 0x61, 0x6e, - 0x5f, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x73, - 0x18, 0x57, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, - 0x61, 0x70, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x53, 0x63, 0x61, 0x6e, 0x41, 0x75, - 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x73, 0x45, 0x76, 0x65, 0x6e, - 0x74, 0x48, 0x00, 0x52, 0x24, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, - 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x53, 0x63, 0x61, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, - 0x72, 0x69, 0x7a, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x95, 0x01, 0x0a, 0x2a, 0x61, 0x63, - 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, - 0x74, 0x73, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x73, 0x73, 0x68, 0x5f, 0x70, 0x72, 0x69, 0x76, - 0x61, 0x74, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x58, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, - 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, - 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, - 0x74, 0x73, 0x53, 0x63, 0x61, 0x6e, 0x53, 0x53, 0x48, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, - 0x4b, 0x65, 0x79, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x24, 0x61, 0x63, 0x63, - 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x53, - 0x63, 0x61, 0x6e, 0x53, 0x73, 0x68, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, - 0x73, 0x12, 0x5c, 0x0a, 0x15, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, - 0x68, 0x5f, 0x61, 0x77, 0x73, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0b, - 0x32, 0x27, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, - 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x57, 0x53, - 0x53, 0x63, 0x61, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x12, 0x61, 0x63, 0x63, - 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x77, 0x73, 0x53, 0x63, 0x61, 0x6e, 0x12, - 0x7b, 0x0a, 0x20, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, - 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x5f, 0x63, 0x68, 0x61, 0x6e, - 0x67, 0x65, 0x64, 0x18, 0x5a, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x70, 0x72, 0x65, 0x68, + 0x63, 0x6f, 0x76, 0x65, 0x72, 0x4b, 0x75, 0x62, 0x65, 0x45, 0x4b, 0x53, 0x45, 0x6e, 0x72, 0x6f, + 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x75, 0x69, 0x44, 0x69, 0x73, + 0x63, 0x6f, 0x76, 0x65, 0x72, 0x4b, 0x75, 0x62, 0x65, 0x45, 0x6b, 0x73, 0x45, 0x6e, 0x72, 0x6f, + 0x6c, 0x6c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x7d, 0x0a, 0x23, 0x75, 0x69, 0x5f, 0x64, 0x69, + 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x70, + 0x70, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x55, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2e, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, + 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1e, 0x75, 0x69, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, + 0x65, 0x72, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x72, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x65, 0x0a, 0x18, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, + 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x67, 0x69, 0x74, 0x6c, 0x61, 0x62, 0x5f, 0x73, 0x63, + 0x61, 0x6e, 0x18, 0x56, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, + 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, + 0x47, 0x72, 0x61, 0x70, 0x68, 0x47, 0x69, 0x74, 0x6c, 0x61, 0x62, 0x53, 0x63, 0x61, 0x6e, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x15, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, + 0x61, 0x70, 0x68, 0x47, 0x69, 0x74, 0x6c, 0x61, 0x62, 0x53, 0x63, 0x61, 0x6e, 0x12, 0x94, 0x01, + 0x0a, 0x29, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x73, + 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x5f, 0x61, 0x75, 0x74, 0x68, + 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x57, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x39, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x53, 0x65, + 0x63, 0x72, 0x65, 0x74, 0x73, 0x53, 0x63, 0x61, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, + 0x7a, 0x65, 0x64, 0x4b, 0x65, 0x79, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x24, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, + 0x74, 0x73, 0x53, 0x63, 0x61, 0x6e, 0x41, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x7a, 0x65, 0x64, + 0x4b, 0x65, 0x79, 0x73, 0x12, 0x95, 0x01, 0x0a, 0x2a, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, + 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x5f, 0x73, 0x63, + 0x61, 0x6e, 0x5f, 0x73, 0x73, 0x68, 0x5f, 0x70, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x5f, 0x6b, + 0x65, 0x79, 0x73, 0x18, 0x58, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x39, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, + 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x53, 0x63, 0x61, + 0x6e, 0x53, 0x53, 0x48, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x24, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, + 0x61, 0x70, 0x68, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x73, 0x53, 0x63, 0x61, 0x6e, 0x53, 0x73, + 0x68, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x5c, 0x0a, 0x15, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x61, 0x77, 0x73, + 0x5f, 0x73, 0x63, 0x61, 0x6e, 0x18, 0x59, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x70, 0x72, + 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, + 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x57, 0x53, 0x53, 0x63, 0x61, 0x6e, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x12, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, + 0x61, 0x70, 0x68, 0x41, 0x77, 0x73, 0x53, 0x63, 0x61, 0x6e, 0x12, 0x7b, 0x0a, 0x20, 0x61, 0x63, + 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, + 0x73, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x18, 0x5a, + 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, + 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, + 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x50, 0x61, 0x74, 0x68, 0x43, 0x68, 0x61, 0x6e, 0x67, + 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1c, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x50, 0x61, 0x74, 0x68, - 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1c, - 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x63, 0x63, 0x65, 0x73, - 0x73, 0x50, 0x61, 0x74, 0x68, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x12, 0x78, 0x0a, 0x1f, - 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x63, 0x72, 0x6f, - 0x77, 0x6e, 0x5f, 0x6a, 0x65, 0x77, 0x65, 0x6c, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, - 0x5b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, - 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, - 0x70, 0x68, 0x43, 0x72, 0x6f, 0x77, 0x6e, 0x4a, 0x65, 0x77, 0x65, 0x6c, 0x43, 0x72, 0x65, 0x61, - 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1b, 0x61, 0x63, 0x63, 0x65, 0x73, - 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x43, 0x72, 0x6f, 0x77, 0x6e, 0x4a, 0x65, 0x77, 0x65, 0x6c, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x86, 0x01, 0x0a, 0x25, 0x75, 0x69, 0x5f, 0x61, 0x63, - 0x63, 0x65, 0x73, 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x63, 0x72, 0x6f, 0x77, 0x6e, - 0x5f, 0x6a, 0x65, 0x77, 0x65, 0x6c, 0x5f, 0x64, 0x69, 0x66, 0x66, 0x5f, 0x76, 0x69, 0x65, 0x77, - 0x18, 0x5c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x34, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x49, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, - 0x47, 0x72, 0x61, 0x70, 0x68, 0x43, 0x72, 0x6f, 0x77, 0x6e, 0x4a, 0x65, 0x77, 0x65, 0x6c, 0x44, - 0x69, 0x66, 0x66, 0x56, 0x69, 0x65, 0x77, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1f, - 0x75, 0x69, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x43, 0x72, 0x6f, - 0x77, 0x6e, 0x4a, 0x65, 0x77, 0x65, 0x6c, 0x44, 0x69, 0x66, 0x66, 0x56, 0x69, 0x65, 0x77, 0x12, - 0x67, 0x0a, 0x18, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, - 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x5d, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x2b, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, - 0x69, 0x6e, 0x67, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, - 0x52, 0x16, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x69, - 0x6e, 0x67, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x12, 0x4c, 0x0a, 0x0f, 0x75, 0x73, 0x65, 0x72, - 0x5f, 0x74, 0x61, 0x73, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x5e, 0x20, 0x01, 0x28, - 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x54, 0x61, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, - 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x54, 0x61, 0x73, - 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x42, 0x07, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x4a, - 0x04, 0x08, 0x08, 0x10, 0x09, 0x52, 0x1c, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, - 0x64, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6c, - 0x69, 0x63, 0x6b, 0x22, 0x15, 0x0a, 0x13, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x51, 0x0a, 0x13, 0x53, 0x75, - 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, - 0x74, 0x12, 0x3a, 0x0a, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, - 0x0b, 0x32, 0x22, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x16, 0x0a, - 0x14, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, - 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x16, 0x0a, 0x14, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x54, 0x65, - 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x17, 0x0a, - 0x15, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x2a, 0x87, 0x02, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x1d, 0x0a, 0x19, 0x52, 0x45, 0x53, 0x4f, 0x55, - 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, - 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x16, 0x0a, 0x12, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, - 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4e, 0x4f, 0x44, 0x45, 0x10, 0x01, 0x12, 0x1c, - 0x0a, 0x18, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, - 0x41, 0x50, 0x50, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x10, 0x02, 0x12, 0x1d, 0x0a, 0x19, - 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4b, 0x55, - 0x42, 0x45, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x10, 0x03, 0x12, 0x1b, 0x0a, 0x17, 0x52, - 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x44, 0x42, 0x5f, - 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x10, 0x04, 0x12, 0x21, 0x0a, 0x1d, 0x52, 0x45, 0x53, 0x4f, - 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x57, 0x49, 0x4e, 0x44, 0x4f, 0x57, - 0x53, 0x5f, 0x44, 0x45, 0x53, 0x4b, 0x54, 0x4f, 0x50, 0x10, 0x05, 0x12, 0x1e, 0x0a, 0x1a, 0x52, - 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4e, 0x4f, 0x44, - 0x45, 0x5f, 0x4f, 0x50, 0x45, 0x4e, 0x53, 0x53, 0x48, 0x10, 0x06, 0x12, 0x23, 0x0a, 0x1f, 0x52, - 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4e, 0x4f, 0x44, - 0x45, 0x5f, 0x4f, 0x50, 0x45, 0x4e, 0x53, 0x53, 0x48, 0x5f, 0x45, 0x49, 0x43, 0x45, 0x10, 0x07, - 0x2a, 0x4d, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x15, - 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, - 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x55, 0x53, 0x45, 0x52, 0x5f, - 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x48, 0x55, 0x4d, 0x41, 0x4e, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, - 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x42, 0x4f, 0x54, 0x10, 0x02, 0x2a, - 0xc0, 0x0f, 0x0a, 0x10, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x12, 0x21, 0x0a, 0x1d, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, - 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, - 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x44, 0x49, 0x53, 0x43, 0x4f, - 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x53, 0x45, 0x52, - 0x56, 0x45, 0x52, 0x10, 0x01, 0x12, 0x20, 0x0a, 0x1c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, - 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x55, 0x42, 0x45, 0x52, - 0x4e, 0x45, 0x54, 0x45, 0x53, 0x10, 0x02, 0x12, 0x33, 0x0a, 0x2f, 0x44, 0x49, 0x53, 0x43, 0x4f, + 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x12, 0x78, 0x0a, 0x1f, 0x61, 0x63, 0x63, 0x65, 0x73, + 0x73, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x63, 0x72, 0x6f, 0x77, 0x6e, 0x5f, 0x6a, 0x65, + 0x77, 0x65, 0x6c, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x18, 0x5b, 0x20, 0x01, 0x28, 0x0b, + 0x32, 0x30, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x43, 0x72, 0x6f, + 0x77, 0x6e, 0x4a, 0x65, 0x77, 0x65, 0x6c, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, + 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1b, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, + 0x68, 0x43, 0x72, 0x6f, 0x77, 0x6e, 0x4a, 0x65, 0x77, 0x65, 0x6c, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x12, 0x86, 0x01, 0x0a, 0x25, 0x75, 0x69, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, + 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x63, 0x72, 0x6f, 0x77, 0x6e, 0x5f, 0x6a, 0x65, 0x77, 0x65, + 0x6c, 0x5f, 0x64, 0x69, 0x66, 0x66, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x5c, 0x20, 0x01, 0x28, + 0x0b, 0x32, 0x34, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x2e, 0x55, 0x49, 0x41, 0x63, 0x63, 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, + 0x43, 0x72, 0x6f, 0x77, 0x6e, 0x4a, 0x65, 0x77, 0x65, 0x6c, 0x44, 0x69, 0x66, 0x66, 0x56, 0x69, + 0x65, 0x77, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x1f, 0x75, 0x69, 0x41, 0x63, 0x63, + 0x65, 0x73, 0x73, 0x47, 0x72, 0x61, 0x70, 0x68, 0x43, 0x72, 0x6f, 0x77, 0x6e, 0x4a, 0x65, 0x77, + 0x65, 0x6c, 0x44, 0x69, 0x66, 0x66, 0x56, 0x69, 0x65, 0x77, 0x12, 0x67, 0x0a, 0x18, 0x73, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x5f, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x18, 0x5d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x41, 0x63, + 0x63, 0x65, 0x73, 0x73, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x48, 0x00, 0x52, 0x16, 0x73, 0x65, 0x73, + 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x69, 0x6e, 0x67, 0x41, 0x63, 0x63, + 0x65, 0x73, 0x73, 0x12, 0x4c, 0x0a, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x74, 0x61, 0x73, 0x6b, + 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x5e, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x55, 0x73, + 0x65, 0x72, 0x54, 0x61, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, + 0x48, 0x00, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x54, 0x61, 0x73, 0x6b, 0x53, 0x74, 0x61, 0x74, + 0x65, 0x42, 0x07, 0x0a, 0x05, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x4a, 0x04, 0x08, 0x08, 0x10, 0x09, + 0x52, 0x1c, 0x75, 0x69, 0x5f, 0x6f, 0x6e, 0x62, 0x6f, 0x61, 0x72, 0x64, 0x5f, 0x67, 0x65, 0x74, + 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x22, 0x15, + 0x0a, 0x13, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x51, 0x0a, 0x13, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, + 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x3a, 0x0a, 0x06, + 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x22, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x75, + 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x52, 0x06, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x22, 0x16, 0x0a, 0x14, 0x53, 0x75, 0x62, 0x6d, + 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x22, 0x16, 0x0a, 0x14, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, + 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x17, 0x0a, 0x15, 0x48, 0x65, 0x6c, 0x6c, + 0x6f, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x2a, 0x87, 0x02, 0x0a, 0x0c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4b, 0x69, + 0x6e, 0x64, 0x12, 0x1d, 0x0a, 0x19, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, + 0x49, 0x4e, 0x44, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, + 0x00, 0x12, 0x16, 0x0a, 0x12, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, + 0x4e, 0x44, 0x5f, 0x4e, 0x4f, 0x44, 0x45, 0x10, 0x01, 0x12, 0x1c, 0x0a, 0x18, 0x52, 0x45, 0x53, + 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x53, + 0x45, 0x52, 0x56, 0x45, 0x52, 0x10, 0x02, 0x12, 0x1d, 0x0a, 0x19, 0x52, 0x45, 0x53, 0x4f, 0x55, + 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4b, 0x55, 0x42, 0x45, 0x5f, 0x53, 0x45, + 0x52, 0x56, 0x45, 0x52, 0x10, 0x03, 0x12, 0x1b, 0x0a, 0x17, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, + 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x44, 0x42, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, + 0x52, 0x10, 0x04, 0x12, 0x21, 0x0a, 0x1d, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, + 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x57, 0x49, 0x4e, 0x44, 0x4f, 0x57, 0x53, 0x5f, 0x44, 0x45, 0x53, + 0x4b, 0x54, 0x4f, 0x50, 0x10, 0x05, 0x12, 0x1e, 0x0a, 0x1a, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, + 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4e, 0x4f, 0x44, 0x45, 0x5f, 0x4f, 0x50, 0x45, + 0x4e, 0x53, 0x53, 0x48, 0x10, 0x06, 0x12, 0x23, 0x0a, 0x1f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, + 0x43, 0x45, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4e, 0x4f, 0x44, 0x45, 0x5f, 0x4f, 0x50, 0x45, + 0x4e, 0x53, 0x53, 0x48, 0x5f, 0x45, 0x49, 0x43, 0x45, 0x10, 0x07, 0x2a, 0x4d, 0x0a, 0x08, 0x55, + 0x73, 0x65, 0x72, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x19, 0x0a, 0x15, 0x55, 0x53, 0x45, 0x52, 0x5f, + 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, + 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, + 0x48, 0x55, 0x4d, 0x41, 0x4e, 0x10, 0x01, 0x12, 0x11, 0x0a, 0x0d, 0x55, 0x53, 0x45, 0x52, 0x5f, + 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x42, 0x4f, 0x54, 0x10, 0x02, 0x2a, 0xc0, 0x0f, 0x0a, 0x10, 0x44, + 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, + 0x21, 0x0a, 0x1d, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, + 0x55, 0x52, 0x43, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, + 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, + 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x10, 0x01, + 0x12, 0x20, 0x0a, 0x1c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, + 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x55, 0x42, 0x45, 0x52, 0x4e, 0x45, 0x54, 0x45, 0x53, + 0x10, 0x02, 0x12, 0x33, 0x0a, 0x2f, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, + 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, + 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, + 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12, 0x30, 0x0a, 0x2c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, - 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x5f, 0x53, - 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12, 0x30, 0x0a, 0x2c, + 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x4d, 0x59, 0x53, 0x51, 0x4c, 0x5f, 0x53, 0x45, 0x4c, 0x46, + 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x04, 0x12, 0x32, 0x0a, 0x2e, 0x44, 0x49, 0x53, + 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, + 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x4d, 0x4f, 0x4e, 0x47, 0x4f, 0x44, 0x42, 0x5f, + 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x05, 0x12, 0x2b, 0x0a, + 0x27, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, + 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x50, 0x4f, 0x53, 0x54, + 0x47, 0x52, 0x45, 0x53, 0x5f, 0x52, 0x44, 0x53, 0x10, 0x06, 0x12, 0x28, 0x0a, 0x24, 0x44, 0x49, + 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, + 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x4d, 0x59, 0x53, 0x51, 0x4c, 0x5f, 0x52, + 0x44, 0x53, 0x10, 0x07, 0x12, 0x26, 0x0a, 0x22, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, + 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, + 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x48, 0x54, 0x54, 0x50, 0x10, 0x08, 0x12, 0x25, 0x0a, 0x21, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, - 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x4d, 0x59, 0x53, 0x51, 0x4c, - 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x04, 0x12, 0x32, - 0x0a, 0x2e, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, - 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x4d, 0x4f, 0x4e, - 0x47, 0x4f, 0x44, 0x42, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, - 0x10, 0x05, 0x12, 0x2b, 0x0a, 0x27, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, + 0x45, 0x5f, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x43, + 0x50, 0x10, 0x09, 0x12, 0x25, 0x0a, 0x21, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, + 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x57, 0x49, 0x4e, 0x44, 0x4f, 0x57, 0x53, + 0x5f, 0x44, 0x45, 0x53, 0x4b, 0x54, 0x4f, 0x50, 0x10, 0x0a, 0x12, 0x2c, 0x0a, 0x28, 0x44, 0x49, + 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, + 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, 0x4c, 0x53, 0x45, 0x52, 0x56, + 0x45, 0x52, 0x5f, 0x52, 0x44, 0x53, 0x10, 0x0b, 0x12, 0x30, 0x0a, 0x2c, 0x44, 0x49, 0x53, 0x43, + 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, + 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x5f, + 0x52, 0x45, 0x44, 0x53, 0x48, 0x49, 0x46, 0x54, 0x10, 0x0c, 0x12, 0x34, 0x0a, 0x30, 0x44, 0x49, + 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, + 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, 0x4c, 0x53, 0x45, 0x52, 0x56, + 0x45, 0x52, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x0d, + 0x12, 0x30, 0x0a, 0x2c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, + 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x52, + 0x45, 0x44, 0x49, 0x53, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, + 0x10, 0x0e, 0x12, 0x2b, 0x0a, 0x27, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, - 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x5f, 0x52, 0x44, 0x53, 0x10, 0x06, 0x12, + 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x5f, 0x47, 0x43, 0x50, 0x10, 0x0f, 0x12, 0x28, 0x0a, 0x24, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x4d, 0x59, - 0x53, 0x51, 0x4c, 0x5f, 0x52, 0x44, 0x53, 0x10, 0x07, 0x12, 0x26, 0x0a, 0x22, 0x44, 0x49, 0x53, - 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x41, - 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x48, 0x54, 0x54, 0x50, 0x10, - 0x08, 0x12, 0x25, 0x0a, 0x21, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, - 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, - 0x4f, 0x4e, 0x5f, 0x54, 0x43, 0x50, 0x10, 0x09, 0x12, 0x25, 0x0a, 0x21, 0x44, 0x49, 0x53, 0x43, - 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x57, 0x49, - 0x4e, 0x44, 0x4f, 0x57, 0x53, 0x5f, 0x44, 0x45, 0x53, 0x4b, 0x54, 0x4f, 0x50, 0x10, 0x0a, 0x12, - 0x2c, 0x0a, 0x28, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, - 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, - 0x4c, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x44, 0x53, 0x10, 0x0b, 0x12, 0x30, 0x0a, - 0x2c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, - 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x50, 0x4f, 0x53, 0x54, - 0x47, 0x52, 0x45, 0x53, 0x5f, 0x52, 0x45, 0x44, 0x53, 0x48, 0x49, 0x46, 0x54, 0x10, 0x0c, 0x12, - 0x34, 0x0a, 0x30, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, - 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, - 0x4c, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, - 0x54, 0x45, 0x44, 0x10, 0x0d, 0x12, 0x30, 0x0a, 0x2c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, - 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, - 0x41, 0x53, 0x45, 0x5f, 0x52, 0x45, 0x44, 0x49, 0x53, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, - 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x0e, 0x12, 0x2b, 0x0a, 0x27, 0x44, 0x49, 0x53, 0x43, 0x4f, + 0x53, 0x51, 0x4c, 0x5f, 0x47, 0x43, 0x50, 0x10, 0x10, 0x12, 0x2c, 0x0a, 0x28, 0x44, 0x49, 0x53, + 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, + 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, 0x4c, 0x53, 0x45, 0x52, 0x56, 0x45, + 0x52, 0x5f, 0x47, 0x43, 0x50, 0x10, 0x11, 0x12, 0x3b, 0x0a, 0x37, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, - 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x5f, 0x47, - 0x43, 0x50, 0x10, 0x0f, 0x12, 0x28, 0x0a, 0x24, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, + 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x5f, 0x52, + 0x45, 0x44, 0x53, 0x48, 0x49, 0x46, 0x54, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x4c, 0x45, + 0x53, 0x53, 0x10, 0x12, 0x12, 0x2d, 0x0a, 0x29, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, - 0x53, 0x45, 0x5f, 0x4d, 0x59, 0x53, 0x51, 0x4c, 0x5f, 0x47, 0x43, 0x50, 0x10, 0x10, 0x12, 0x2c, - 0x0a, 0x28, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, - 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, 0x4c, - 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x5f, 0x47, 0x43, 0x50, 0x10, 0x11, 0x12, 0x3b, 0x0a, 0x37, + 0x53, 0x45, 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, 0x5f, 0x41, 0x5a, 0x55, 0x52, + 0x45, 0x10, 0x13, 0x12, 0x27, 0x0a, 0x23, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, + 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, + 0x45, 0x5f, 0x44, 0x59, 0x4e, 0x41, 0x4d, 0x4f, 0x44, 0x42, 0x10, 0x14, 0x12, 0x32, 0x0a, 0x2e, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, - 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, - 0x52, 0x45, 0x53, 0x5f, 0x52, 0x45, 0x44, 0x53, 0x48, 0x49, 0x46, 0x54, 0x5f, 0x53, 0x45, 0x52, - 0x56, 0x45, 0x52, 0x4c, 0x45, 0x53, 0x53, 0x10, 0x12, 0x12, 0x2d, 0x0a, 0x29, 0x44, 0x49, 0x53, - 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, - 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x50, 0x4f, 0x53, 0x54, 0x47, 0x52, 0x45, 0x53, - 0x5f, 0x41, 0x5a, 0x55, 0x52, 0x45, 0x10, 0x13, 0x12, 0x27, 0x0a, 0x23, 0x44, 0x49, 0x53, 0x43, - 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, - 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x44, 0x59, 0x4e, 0x41, 0x4d, 0x4f, 0x44, 0x42, 0x10, - 0x14, 0x12, 0x32, 0x0a, 0x2e, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, + 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x43, 0x41, 0x53, 0x53, 0x41, + 0x4e, 0x44, 0x52, 0x41, 0x5f, 0x4b, 0x45, 0x59, 0x53, 0x50, 0x41, 0x43, 0x45, 0x53, 0x10, 0x15, + 0x12, 0x34, 0x0a, 0x30, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, + 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x43, + 0x41, 0x53, 0x53, 0x41, 0x4e, 0x44, 0x52, 0x41, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, + 0x53, 0x54, 0x45, 0x44, 0x10, 0x16, 0x12, 0x38, 0x0a, 0x34, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, + 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, + 0x42, 0x41, 0x53, 0x45, 0x5f, 0x45, 0x4c, 0x41, 0x53, 0x54, 0x49, 0x43, 0x53, 0x45, 0x41, 0x52, + 0x43, 0x48, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x17, + 0x12, 0x30, 0x0a, 0x2c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, + 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x52, + 0x45, 0x44, 0x49, 0x53, 0x5f, 0x45, 0x4c, 0x41, 0x53, 0x54, 0x49, 0x43, 0x41, 0x43, 0x48, 0x45, + 0x10, 0x18, 0x12, 0x2d, 0x0a, 0x29, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, + 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, + 0x5f, 0x52, 0x45, 0x44, 0x49, 0x53, 0x5f, 0x4d, 0x45, 0x4d, 0x4f, 0x52, 0x59, 0x44, 0x42, 0x10, + 0x19, 0x12, 0x30, 0x0a, 0x2c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, - 0x43, 0x41, 0x53, 0x53, 0x41, 0x4e, 0x44, 0x52, 0x41, 0x5f, 0x4b, 0x45, 0x59, 0x53, 0x50, 0x41, - 0x43, 0x45, 0x53, 0x10, 0x15, 0x12, 0x34, 0x0a, 0x30, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, + 0x52, 0x45, 0x44, 0x49, 0x53, 0x5f, 0x41, 0x5a, 0x55, 0x52, 0x45, 0x5f, 0x43, 0x41, 0x43, 0x48, + 0x45, 0x10, 0x1a, 0x12, 0x38, 0x0a, 0x34, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, + 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, + 0x45, 0x5f, 0x52, 0x45, 0x44, 0x49, 0x53, 0x5f, 0x43, 0x4c, 0x55, 0x53, 0x54, 0x45, 0x52, 0x5f, + 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x1b, 0x12, 0x2a, 0x0a, + 0x26, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, + 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x4d, 0x59, 0x53, 0x51, + 0x4c, 0x5f, 0x41, 0x5a, 0x55, 0x52, 0x45, 0x10, 0x1c, 0x12, 0x2e, 0x0a, 0x2a, 0x44, 0x49, 0x53, + 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, + 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, 0x4c, 0x53, 0x45, 0x52, 0x56, 0x45, + 0x52, 0x5f, 0x41, 0x5a, 0x55, 0x52, 0x45, 0x10, 0x1d, 0x12, 0x32, 0x0a, 0x2e, 0x44, 0x49, 0x53, + 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, + 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, 0x4c, 0x53, 0x45, 0x52, 0x56, 0x45, + 0x52, 0x5f, 0x4d, 0x49, 0x43, 0x52, 0x4f, 0x53, 0x4f, 0x46, 0x54, 0x10, 0x1e, 0x12, 0x36, 0x0a, + 0x32, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, + 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x43, 0x4f, 0x43, 0x4b, + 0x52, 0x4f, 0x41, 0x43, 0x48, 0x44, 0x42, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, + 0x54, 0x45, 0x44, 0x10, 0x1f, 0x12, 0x2c, 0x0a, 0x28, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, - 0x41, 0x53, 0x45, 0x5f, 0x43, 0x41, 0x53, 0x53, 0x41, 0x4e, 0x44, 0x52, 0x41, 0x5f, 0x53, 0x45, - 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x16, 0x12, 0x38, 0x0a, 0x34, 0x44, + 0x41, 0x53, 0x45, 0x5f, 0x4d, 0x4f, 0x4e, 0x47, 0x4f, 0x44, 0x42, 0x5f, 0x41, 0x54, 0x4c, 0x41, + 0x53, 0x10, 0x20, 0x12, 0x28, 0x0a, 0x24, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, + 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, + 0x45, 0x5f, 0x53, 0x4e, 0x4f, 0x57, 0x46, 0x4c, 0x41, 0x4b, 0x45, 0x10, 0x21, 0x12, 0x2c, 0x0a, + 0x28, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, + 0x43, 0x45, 0x5f, 0x44, 0x4f, 0x43, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, + 0x52, 0x44, 0x53, 0x5f, 0x50, 0x52, 0x4f, 0x58, 0x59, 0x10, 0x22, 0x12, 0x34, 0x0a, 0x30, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, - 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x45, 0x4c, 0x41, 0x53, 0x54, 0x49, - 0x43, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, - 0x54, 0x45, 0x44, 0x10, 0x17, 0x12, 0x30, 0x0a, 0x2c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, - 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, - 0x41, 0x53, 0x45, 0x5f, 0x52, 0x45, 0x44, 0x49, 0x53, 0x5f, 0x45, 0x4c, 0x41, 0x53, 0x54, 0x49, - 0x43, 0x41, 0x43, 0x48, 0x45, 0x10, 0x18, 0x12, 0x2d, 0x0a, 0x29, 0x44, 0x49, 0x53, 0x43, 0x4f, - 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, - 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x52, 0x45, 0x44, 0x49, 0x53, 0x5f, 0x4d, 0x45, 0x4d, 0x4f, - 0x52, 0x59, 0x44, 0x42, 0x10, 0x19, 0x12, 0x30, 0x0a, 0x2c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, - 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, - 0x42, 0x41, 0x53, 0x45, 0x5f, 0x52, 0x45, 0x44, 0x49, 0x53, 0x5f, 0x41, 0x5a, 0x55, 0x52, 0x45, - 0x5f, 0x43, 0x41, 0x43, 0x48, 0x45, 0x10, 0x1a, 0x12, 0x38, 0x0a, 0x34, 0x44, 0x49, 0x53, 0x43, - 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, - 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x52, 0x45, 0x44, 0x49, 0x53, 0x5f, 0x43, 0x4c, 0x55, - 0x53, 0x54, 0x45, 0x52, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, - 0x10, 0x1b, 0x12, 0x2a, 0x0a, 0x26, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, - 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, - 0x5f, 0x4d, 0x59, 0x53, 0x51, 0x4c, 0x5f, 0x41, 0x5a, 0x55, 0x52, 0x45, 0x10, 0x1c, 0x12, 0x2e, - 0x0a, 0x2a, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, - 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, 0x4c, - 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x5f, 0x41, 0x5a, 0x55, 0x52, 0x45, 0x10, 0x1d, 0x12, 0x32, - 0x0a, 0x2e, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, - 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x51, 0x4c, - 0x53, 0x45, 0x52, 0x56, 0x45, 0x52, 0x5f, 0x4d, 0x49, 0x43, 0x52, 0x4f, 0x53, 0x4f, 0x46, 0x54, - 0x10, 0x1e, 0x12, 0x36, 0x0a, 0x32, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, - 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, - 0x5f, 0x43, 0x4f, 0x43, 0x4b, 0x52, 0x4f, 0x41, 0x43, 0x48, 0x44, 0x42, 0x5f, 0x53, 0x45, 0x4c, - 0x46, 0x5f, 0x48, 0x4f, 0x53, 0x54, 0x45, 0x44, 0x10, 0x1f, 0x12, 0x2c, 0x0a, 0x28, 0x44, 0x49, + 0x5f, 0x44, 0x4f, 0x43, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x48, 0x49, + 0x47, 0x48, 0x5f, 0x41, 0x56, 0x41, 0x49, 0x4c, 0x41, 0x42, 0x49, 0x4c, 0x49, 0x54, 0x59, 0x10, + 0x23, 0x12, 0x37, 0x0a, 0x33, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, + 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x4f, 0x43, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, + 0x41, 0x53, 0x45, 0x5f, 0x44, 0x59, 0x4e, 0x41, 0x4d, 0x49, 0x43, 0x5f, 0x52, 0x45, 0x47, 0x49, + 0x53, 0x54, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x24, 0x12, 0x26, 0x0a, 0x22, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, - 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x4d, 0x4f, 0x4e, 0x47, 0x4f, 0x44, 0x42, - 0x5f, 0x41, 0x54, 0x4c, 0x41, 0x53, 0x10, 0x20, 0x12, 0x28, 0x0a, 0x24, 0x44, 0x49, 0x53, 0x43, - 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x41, - 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x53, 0x4e, 0x4f, 0x57, 0x46, 0x4c, 0x41, 0x4b, 0x45, - 0x10, 0x21, 0x12, 0x2c, 0x0a, 0x28, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, - 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x4f, 0x43, 0x5f, 0x44, 0x41, 0x54, 0x41, - 0x42, 0x41, 0x53, 0x45, 0x5f, 0x52, 0x44, 0x53, 0x5f, 0x50, 0x52, 0x4f, 0x58, 0x59, 0x10, 0x22, - 0x12, 0x34, 0x0a, 0x30, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, - 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x4f, 0x43, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, - 0x53, 0x45, 0x5f, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x41, 0x56, 0x41, 0x49, 0x4c, 0x41, 0x42, 0x49, - 0x4c, 0x49, 0x54, 0x59, 0x10, 0x23, 0x12, 0x37, 0x0a, 0x33, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, + 0x53, 0x41, 0x4d, 0x4c, 0x5f, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, + 0x10, 0x25, 0x12, 0x22, 0x0a, 0x1e, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, + 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x45, 0x43, 0x32, 0x5f, 0x49, 0x4e, 0x53, 0x54, + 0x41, 0x4e, 0x43, 0x45, 0x10, 0x26, 0x12, 0x30, 0x0a, 0x2c, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x44, 0x4f, 0x43, 0x5f, - 0x44, 0x41, 0x54, 0x41, 0x42, 0x41, 0x53, 0x45, 0x5f, 0x44, 0x59, 0x4e, 0x41, 0x4d, 0x49, 0x43, - 0x5f, 0x52, 0x45, 0x47, 0x49, 0x53, 0x54, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x24, 0x12, - 0x26, 0x0a, 0x22, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, - 0x55, 0x52, 0x43, 0x45, 0x5f, 0x53, 0x41, 0x4d, 0x4c, 0x5f, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, - 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x25, 0x12, 0x22, 0x0a, 0x1e, 0x44, 0x49, 0x53, 0x43, 0x4f, - 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x45, 0x43, 0x32, - 0x5f, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4e, 0x43, 0x45, 0x10, 0x26, 0x12, 0x30, 0x0a, 0x2c, 0x44, - 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, - 0x5f, 0x44, 0x4f, 0x43, 0x5f, 0x57, 0x49, 0x4e, 0x44, 0x4f, 0x57, 0x53, 0x5f, 0x44, 0x45, 0x53, - 0x4b, 0x54, 0x4f, 0x50, 0x5f, 0x4e, 0x4f, 0x4e, 0x5f, 0x41, 0x44, 0x10, 0x27, 0x12, 0x24, 0x0a, - 0x20, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, - 0x43, 0x45, 0x5f, 0x4b, 0x55, 0x42, 0x45, 0x52, 0x4e, 0x45, 0x54, 0x45, 0x53, 0x5f, 0x45, 0x4b, - 0x53, 0x10, 0x28, 0x12, 0x2d, 0x0a, 0x29, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, - 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, 0x57, 0x53, 0x5f, 0x43, 0x4f, 0x4e, 0x53, 0x4f, 0x4c, 0x45, - 0x10, 0x29, 0x2a, 0xa3, 0x01, 0x0a, 0x0e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x53, - 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x1f, 0x0a, 0x1b, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, - 0x52, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, - 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, - 0x45, 0x52, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x53, 0x55, 0x43, 0x43, 0x45, 0x53, - 0x53, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, - 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x53, 0x4b, 0x49, 0x50, 0x50, 0x45, 0x44, 0x10, 0x02, - 0x12, 0x19, 0x0a, 0x15, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x53, 0x54, 0x41, - 0x54, 0x55, 0x53, 0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x10, 0x03, 0x12, 0x1b, 0x0a, 0x17, 0x44, - 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x41, - 0x42, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x10, 0x04, 0x2a, 0xd4, 0x02, 0x0a, 0x03, 0x43, 0x54, 0x41, - 0x12, 0x13, 0x0a, 0x0f, 0x43, 0x54, 0x41, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, - 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x16, 0x0a, 0x12, 0x43, 0x54, 0x41, 0x5f, 0x41, 0x55, 0x54, - 0x48, 0x5f, 0x43, 0x4f, 0x4e, 0x4e, 0x45, 0x43, 0x54, 0x4f, 0x52, 0x10, 0x01, 0x12, 0x17, 0x0a, - 0x13, 0x43, 0x54, 0x41, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x5f, 0x53, 0x45, 0x53, 0x53, - 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x02, 0x12, 0x17, 0x0a, 0x13, 0x43, 0x54, 0x41, 0x5f, 0x41, 0x43, - 0x43, 0x45, 0x53, 0x53, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x53, 0x10, 0x03, 0x12, - 0x17, 0x0a, 0x13, 0x43, 0x54, 0x41, 0x5f, 0x50, 0x52, 0x45, 0x4d, 0x49, 0x55, 0x4d, 0x5f, 0x53, - 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x10, 0x04, 0x12, 0x17, 0x0a, 0x13, 0x43, 0x54, 0x41, 0x5f, - 0x54, 0x52, 0x55, 0x53, 0x54, 0x45, 0x44, 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x53, 0x10, - 0x05, 0x12, 0x16, 0x0a, 0x12, 0x43, 0x54, 0x41, 0x5f, 0x55, 0x50, 0x47, 0x52, 0x41, 0x44, 0x45, - 0x5f, 0x42, 0x41, 0x4e, 0x4e, 0x45, 0x52, 0x10, 0x06, 0x12, 0x17, 0x0a, 0x13, 0x43, 0x54, 0x41, - 0x5f, 0x42, 0x49, 0x4c, 0x4c, 0x49, 0x4e, 0x47, 0x5f, 0x53, 0x55, 0x4d, 0x4d, 0x41, 0x52, 0x59, - 0x10, 0x07, 0x12, 0x13, 0x0a, 0x0f, 0x43, 0x54, 0x41, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53, 0x53, - 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x08, 0x12, 0x19, 0x0a, 0x15, 0x43, 0x54, 0x41, 0x5f, 0x41, - 0x43, 0x43, 0x45, 0x53, 0x53, 0x5f, 0x4d, 0x4f, 0x4e, 0x49, 0x54, 0x4f, 0x52, 0x49, 0x4e, 0x47, - 0x10, 0x09, 0x12, 0x1e, 0x0a, 0x1a, 0x43, 0x54, 0x41, 0x5f, 0x45, 0x58, 0x54, 0x45, 0x52, 0x4e, - 0x41, 0x4c, 0x5f, 0x41, 0x55, 0x44, 0x49, 0x54, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x41, 0x47, 0x45, - 0x10, 0x0a, 0x12, 0x16, 0x0a, 0x12, 0x43, 0x54, 0x41, 0x5f, 0x4f, 0x4b, 0x54, 0x41, 0x5f, 0x55, - 0x53, 0x45, 0x52, 0x5f, 0x53, 0x59, 0x4e, 0x43, 0x10, 0x0b, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x54, - 0x41, 0x5f, 0x45, 0x4e, 0x54, 0x52, 0x41, 0x5f, 0x49, 0x44, 0x10, 0x0c, 0x12, 0x11, 0x0a, 0x0d, - 0x43, 0x54, 0x41, 0x5f, 0x4f, 0x4b, 0x54, 0x41, 0x5f, 0x53, 0x43, 0x49, 0x4d, 0x10, 0x0d, 0x2a, - 0xe3, 0x08, 0x0a, 0x15, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, - 0x6e, 0x72, 0x6f, 0x6c, 0x6c, 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x27, 0x0a, 0x23, 0x49, 0x4e, 0x54, - 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, - 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, - 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x53, 0x4c, - 0x41, 0x43, 0x4b, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, + 0x57, 0x49, 0x4e, 0x44, 0x4f, 0x57, 0x53, 0x5f, 0x44, 0x45, 0x53, 0x4b, 0x54, 0x4f, 0x50, 0x5f, + 0x4e, 0x4f, 0x4e, 0x5f, 0x41, 0x44, 0x10, 0x27, 0x12, 0x24, 0x0a, 0x20, 0x44, 0x49, 0x53, 0x43, + 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4b, 0x55, + 0x42, 0x45, 0x52, 0x4e, 0x45, 0x54, 0x45, 0x53, 0x5f, 0x45, 0x4b, 0x53, 0x10, 0x28, 0x12, 0x2d, + 0x0a, 0x29, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, + 0x52, 0x43, 0x45, 0x5f, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, + 0x41, 0x57, 0x53, 0x5f, 0x43, 0x4f, 0x4e, 0x53, 0x4f, 0x4c, 0x45, 0x10, 0x29, 0x2a, 0xa3, 0x01, + 0x0a, 0x0e, 0x44, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, + 0x12, 0x1f, 0x0a, 0x1b, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x53, 0x54, 0x41, + 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, + 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x53, 0x54, + 0x41, 0x54, 0x55, 0x53, 0x5f, 0x53, 0x55, 0x43, 0x43, 0x45, 0x53, 0x53, 0x10, 0x01, 0x12, 0x1b, + 0x0a, 0x17, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, + 0x53, 0x5f, 0x53, 0x4b, 0x49, 0x50, 0x50, 0x45, 0x44, 0x10, 0x02, 0x12, 0x19, 0x0a, 0x15, 0x44, + 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x45, + 0x52, 0x52, 0x4f, 0x52, 0x10, 0x03, 0x12, 0x1b, 0x0a, 0x17, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, + 0x45, 0x52, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x41, 0x42, 0x4f, 0x52, 0x54, 0x45, + 0x44, 0x10, 0x04, 0x2a, 0xd4, 0x02, 0x0a, 0x03, 0x43, 0x54, 0x41, 0x12, 0x13, 0x0a, 0x0f, 0x43, + 0x54, 0x41, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, + 0x12, 0x16, 0x0a, 0x12, 0x43, 0x54, 0x41, 0x5f, 0x41, 0x55, 0x54, 0x48, 0x5f, 0x43, 0x4f, 0x4e, + 0x4e, 0x45, 0x43, 0x54, 0x4f, 0x52, 0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x43, 0x54, 0x41, 0x5f, + 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x5f, 0x53, 0x45, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x10, + 0x02, 0x12, 0x17, 0x0a, 0x13, 0x43, 0x54, 0x41, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53, 0x53, 0x5f, + 0x52, 0x45, 0x51, 0x55, 0x45, 0x53, 0x54, 0x53, 0x10, 0x03, 0x12, 0x17, 0x0a, 0x13, 0x43, 0x54, + 0x41, 0x5f, 0x50, 0x52, 0x45, 0x4d, 0x49, 0x55, 0x4d, 0x5f, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, + 0x54, 0x10, 0x04, 0x12, 0x17, 0x0a, 0x13, 0x43, 0x54, 0x41, 0x5f, 0x54, 0x52, 0x55, 0x53, 0x54, + 0x45, 0x44, 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x53, 0x10, 0x05, 0x12, 0x16, 0x0a, 0x12, + 0x43, 0x54, 0x41, 0x5f, 0x55, 0x50, 0x47, 0x52, 0x41, 0x44, 0x45, 0x5f, 0x42, 0x41, 0x4e, 0x4e, + 0x45, 0x52, 0x10, 0x06, 0x12, 0x17, 0x0a, 0x13, 0x43, 0x54, 0x41, 0x5f, 0x42, 0x49, 0x4c, 0x4c, + 0x49, 0x4e, 0x47, 0x5f, 0x53, 0x55, 0x4d, 0x4d, 0x41, 0x52, 0x59, 0x10, 0x07, 0x12, 0x13, 0x0a, + 0x0f, 0x43, 0x54, 0x41, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53, 0x53, 0x5f, 0x4c, 0x49, 0x53, 0x54, + 0x10, 0x08, 0x12, 0x19, 0x0a, 0x15, 0x43, 0x54, 0x41, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x53, 0x53, + 0x5f, 0x4d, 0x4f, 0x4e, 0x49, 0x54, 0x4f, 0x52, 0x49, 0x4e, 0x47, 0x10, 0x09, 0x12, 0x1e, 0x0a, + 0x1a, 0x43, 0x54, 0x41, 0x5f, 0x45, 0x58, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x41, 0x55, + 0x44, 0x49, 0x54, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x41, 0x47, 0x45, 0x10, 0x0a, 0x12, 0x16, 0x0a, + 0x12, 0x43, 0x54, 0x41, 0x5f, 0x4f, 0x4b, 0x54, 0x41, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x53, + 0x59, 0x4e, 0x43, 0x10, 0x0b, 0x12, 0x10, 0x0a, 0x0c, 0x43, 0x54, 0x41, 0x5f, 0x45, 0x4e, 0x54, + 0x52, 0x41, 0x5f, 0x49, 0x44, 0x10, 0x0c, 0x12, 0x11, 0x0a, 0x0d, 0x43, 0x54, 0x41, 0x5f, 0x4f, + 0x4b, 0x54, 0x41, 0x5f, 0x53, 0x43, 0x49, 0x4d, 0x10, 0x0d, 0x2a, 0xe3, 0x08, 0x0a, 0x15, 0x49, + 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x72, 0x6f, 0x6c, 0x6c, + 0x4b, 0x69, 0x6e, 0x64, 0x12, 0x27, 0x0a, 0x23, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, + 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, + 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, + 0x1d, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, + 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x53, 0x4c, 0x41, 0x43, 0x4b, 0x10, 0x01, + 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, + 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x41, 0x57, 0x53, 0x5f, + 0x4f, 0x49, 0x44, 0x43, 0x10, 0x02, 0x12, 0x25, 0x0a, 0x21, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, + 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, + 0x44, 0x5f, 0x50, 0x41, 0x47, 0x45, 0x52, 0x44, 0x55, 0x54, 0x59, 0x10, 0x03, 0x12, 0x21, 0x0a, + 0x1d, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, + 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x04, + 0x12, 0x20, 0x0a, 0x1c, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, + 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4a, 0x49, 0x52, 0x41, + 0x10, 0x05, 0x12, 0x23, 0x0a, 0x1f, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, + 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x44, 0x49, + 0x53, 0x43, 0x4f, 0x52, 0x44, 0x10, 0x06, 0x12, 0x26, 0x0a, 0x22, 0x49, 0x4e, 0x54, 0x45, 0x47, + 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, + 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x54, 0x54, 0x45, 0x52, 0x4d, 0x4f, 0x53, 0x54, 0x10, 0x07, 0x12, + 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, + 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x53, 0x5f, 0x54, 0x45, + 0x41, 0x4d, 0x53, 0x10, 0x08, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, - 0x5f, 0x41, 0x57, 0x53, 0x5f, 0x4f, 0x49, 0x44, 0x43, 0x10, 0x02, 0x12, 0x25, 0x0a, 0x21, 0x49, + 0x5f, 0x4f, 0x50, 0x53, 0x47, 0x45, 0x4e, 0x49, 0x45, 0x10, 0x09, 0x12, 0x20, 0x0a, 0x1c, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, - 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x50, 0x41, 0x47, 0x45, 0x52, 0x44, 0x55, 0x54, 0x59, - 0x10, 0x03, 0x12, 0x21, 0x0a, 0x1d, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x45, 0x4d, - 0x41, 0x49, 0x4c, 0x10, 0x04, 0x12, 0x20, 0x0a, 0x1c, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, - 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, - 0x5f, 0x4a, 0x49, 0x52, 0x41, 0x10, 0x05, 0x12, 0x23, 0x0a, 0x1f, 0x49, 0x4e, 0x54, 0x45, 0x47, + 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4f, 0x4b, 0x54, 0x41, 0x10, 0x0a, 0x12, 0x20, 0x0a, + 0x1c, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, + 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4a, 0x41, 0x4d, 0x46, 0x10, 0x0b, 0x12, + 0x26, 0x0a, 0x22, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, + 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, + 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x10, 0x0c, 0x12, 0x35, 0x0a, 0x31, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, - 0x4e, 0x44, 0x5f, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x52, 0x44, 0x10, 0x06, 0x12, 0x26, 0x0a, 0x22, - 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, - 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x54, 0x54, 0x45, 0x52, 0x4d, 0x4f, - 0x53, 0x54, 0x10, 0x07, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, - 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, - 0x4d, 0x53, 0x5f, 0x54, 0x45, 0x41, 0x4d, 0x53, 0x10, 0x08, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, + 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x47, 0x49, + 0x54, 0x48, 0x55, 0x42, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x0d, 0x12, 0x2f, + 0x0a, 0x2b, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, + 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, + 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x43, 0x49, 0x52, 0x43, 0x4c, 0x45, 0x43, 0x49, 0x10, 0x0e, 0x12, + 0x2d, 0x0a, 0x29, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, + 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, + 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x47, 0x49, 0x54, 0x4c, 0x41, 0x42, 0x10, 0x0f, 0x12, 0x2e, + 0x0a, 0x2a, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, + 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, + 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x4a, 0x45, 0x4e, 0x4b, 0x49, 0x4e, 0x53, 0x10, 0x10, 0x12, 0x2e, + 0x0a, 0x2a, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, + 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, + 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x41, 0x4e, 0x53, 0x49, 0x42, 0x4c, 0x45, 0x10, 0x11, 0x12, 0x2a, + 0x0a, 0x26, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, + 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, + 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x41, 0x57, 0x53, 0x10, 0x12, 0x12, 0x2a, 0x0a, 0x26, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, - 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4f, 0x50, 0x53, 0x47, 0x45, 0x4e, 0x49, 0x45, 0x10, 0x09, - 0x12, 0x20, 0x0a, 0x1c, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, - 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4f, 0x4b, 0x54, 0x41, - 0x10, 0x0a, 0x12, 0x20, 0x0a, 0x1c, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, - 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4a, 0x41, - 0x4d, 0x46, 0x10, 0x0b, 0x12, 0x26, 0x0a, 0x22, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, + 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, + 0x5f, 0x47, 0x43, 0x50, 0x10, 0x13, 0x12, 0x2c, 0x0a, 0x28, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, + 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, + 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x41, 0x5a, 0x55, + 0x52, 0x45, 0x10, 0x14, 0x12, 0x30, 0x0a, 0x2c, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, - 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x10, 0x0c, 0x12, 0x35, 0x0a, 0x31, - 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, - 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, - 0x49, 0x44, 0x5f, 0x47, 0x49, 0x54, 0x48, 0x55, 0x42, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, - 0x53, 0x10, 0x0d, 0x12, 0x2f, 0x0a, 0x2b, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, - 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, - 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x43, 0x49, 0x52, 0x43, 0x4c, 0x45, - 0x43, 0x49, 0x10, 0x0e, 0x12, 0x2d, 0x0a, 0x29, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, - 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, - 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x47, 0x49, 0x54, 0x4c, 0x41, - 0x42, 0x10, 0x0f, 0x12, 0x2e, 0x0a, 0x2a, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, - 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, - 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x4a, 0x45, 0x4e, 0x4b, 0x49, 0x4e, - 0x53, 0x10, 0x10, 0x12, 0x2e, 0x0a, 0x2a, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, - 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, - 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x41, 0x4e, 0x53, 0x49, 0x42, 0x4c, - 0x45, 0x10, 0x11, 0x12, 0x2a, 0x0a, 0x26, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, - 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, - 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x41, 0x57, 0x53, 0x10, 0x12, 0x12, - 0x2a, 0x0a, 0x26, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, - 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, - 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x47, 0x43, 0x50, 0x10, 0x13, 0x12, 0x2c, 0x0a, 0x28, 0x49, - 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, - 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, - 0x44, 0x5f, 0x41, 0x5a, 0x55, 0x52, 0x45, 0x10, 0x14, 0x12, 0x30, 0x0a, 0x2c, 0x49, 0x4e, 0x54, + 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x53, 0x50, 0x41, 0x43, 0x45, + 0x4c, 0x49, 0x46, 0x54, 0x10, 0x15, 0x12, 0x31, 0x0a, 0x2d, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, + 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, + 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x4b, 0x55, 0x42, + 0x45, 0x52, 0x4e, 0x45, 0x54, 0x45, 0x53, 0x10, 0x16, 0x12, 0x24, 0x0a, 0x20, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, - 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, 0x44, 0x5f, - 0x53, 0x50, 0x41, 0x43, 0x45, 0x4c, 0x49, 0x46, 0x54, 0x10, 0x15, 0x12, 0x31, 0x0a, 0x2d, 0x49, - 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, - 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x5f, 0x49, - 0x44, 0x5f, 0x4b, 0x55, 0x42, 0x45, 0x52, 0x4e, 0x45, 0x54, 0x45, 0x53, 0x10, 0x16, 0x12, 0x24, - 0x0a, 0x20, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, - 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x45, 0x4e, 0x54, 0x52, 0x41, 0x5f, - 0x49, 0x44, 0x10, 0x17, 0x12, 0x37, 0x0a, 0x33, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, - 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, - 0x44, 0x41, 0x54, 0x41, 0x44, 0x4f, 0x47, 0x5f, 0x49, 0x4e, 0x43, 0x49, 0x44, 0x45, 0x4e, 0x54, - 0x5f, 0x4d, 0x41, 0x4e, 0x41, 0x47, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x18, 0x12, 0x26, 0x0a, - 0x22, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, - 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, - 0x4e, 0x4f, 0x57, 0x10, 0x19, 0x2a, 0x88, 0x01, 0x0a, 0x12, 0x45, 0x64, 0x69, 0x74, 0x6f, 0x72, - 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x24, 0x0a, 0x20, - 0x45, 0x44, 0x49, 0x54, 0x4f, 0x52, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45, 0x5f, 0x53, 0x54, - 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, - 0x10, 0x00, 0x12, 0x25, 0x0a, 0x21, 0x45, 0x44, 0x49, 0x54, 0x4f, 0x52, 0x5f, 0x43, 0x48, 0x41, - 0x4e, 0x47, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x5f, - 0x47, 0x52, 0x41, 0x4e, 0x54, 0x45, 0x44, 0x10, 0x01, 0x12, 0x25, 0x0a, 0x21, 0x45, 0x44, 0x49, - 0x54, 0x4f, 0x52, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, - 0x53, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x02, - 0x2a, 0x3f, 0x0a, 0x07, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x17, 0x0a, 0x13, 0x46, - 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, - 0x45, 0x44, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, - 0x54, 0x52, 0x55, 0x53, 0x54, 0x45, 0x44, 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x53, 0x10, - 0x01, 0x2a, 0xa0, 0x01, 0x0a, 0x1b, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x63, - 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, - 0x73, 0x12, 0x2d, 0x0a, 0x29, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x52, 0x45, 0x43, - 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x54, 0x41, 0x54, - 0x55, 0x53, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, - 0x12, 0x2a, 0x0a, 0x26, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x52, 0x45, 0x43, 0x4f, - 0x4d, 0x4d, 0x45, 0x4e, 0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, - 0x53, 0x5f, 0x4e, 0x4f, 0x54, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x01, 0x12, 0x26, 0x0a, 0x22, + 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x45, 0x4e, 0x54, 0x52, 0x41, 0x5f, 0x49, 0x44, 0x10, 0x17, 0x12, + 0x37, 0x0a, 0x33, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, + 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, 0x49, 0x4e, 0x44, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x44, + 0x4f, 0x47, 0x5f, 0x49, 0x4e, 0x43, 0x49, 0x44, 0x45, 0x4e, 0x54, 0x5f, 0x4d, 0x41, 0x4e, 0x41, + 0x47, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x18, 0x12, 0x26, 0x0a, 0x22, 0x49, 0x4e, 0x54, 0x45, + 0x47, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x45, 0x4e, 0x52, 0x4f, 0x4c, 0x4c, 0x5f, 0x4b, + 0x49, 0x4e, 0x44, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 0x4e, 0x4f, 0x57, 0x10, 0x19, + 0x2a, 0x88, 0x01, 0x0a, 0x12, 0x45, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, + 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x24, 0x0a, 0x20, 0x45, 0x44, 0x49, 0x54, 0x4f, + 0x52, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, + 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x25, 0x0a, + 0x21, 0x45, 0x44, 0x49, 0x54, 0x4f, 0x52, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x47, 0x45, 0x5f, 0x53, + 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x5f, 0x47, 0x52, 0x41, 0x4e, 0x54, + 0x45, 0x44, 0x10, 0x01, 0x12, 0x25, 0x0a, 0x21, 0x45, 0x44, 0x49, 0x54, 0x4f, 0x52, 0x5f, 0x43, + 0x48, 0x41, 0x4e, 0x47, 0x45, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x52, 0x4f, 0x4c, + 0x45, 0x5f, 0x52, 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x02, 0x2a, 0x3f, 0x0a, 0x07, 0x46, + 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x17, 0x0a, 0x13, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, + 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, + 0x1b, 0x0a, 0x17, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x54, 0x52, 0x55, 0x53, 0x54, + 0x45, 0x44, 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x53, 0x10, 0x01, 0x2a, 0xa0, 0x01, 0x0a, + 0x1b, 0x46, 0x65, 0x61, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, + 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x2d, 0x0a, 0x29, 0x46, 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x52, 0x45, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, - 0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x44, 0x4f, - 0x4e, 0x45, 0x10, 0x02, 0x2a, 0x82, 0x01, 0x0a, 0x0c, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, - 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x1d, 0x0a, 0x19, 0x4c, 0x49, 0x43, 0x45, 0x4e, 0x53, 0x45, - 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, - 0x45, 0x44, 0x10, 0x00, 0x12, 0x28, 0x0a, 0x24, 0x4c, 0x49, 0x43, 0x45, 0x4e, 0x53, 0x45, 0x5f, - 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x54, 0x52, 0x55, - 0x53, 0x54, 0x5f, 0x54, 0x45, 0x41, 0x4d, 0x5f, 0x4a, 0x41, 0x4d, 0x46, 0x10, 0x01, 0x12, 0x29, - 0x0a, 0x25, 0x4c, 0x49, 0x43, 0x45, 0x4e, 0x53, 0x45, 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x5f, - 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x54, 0x52, 0x55, 0x53, 0x54, 0x5f, 0x54, 0x45, 0x41, - 0x4d, 0x5f, 0x55, 0x53, 0x41, 0x47, 0x45, 0x10, 0x02, 0x32, 0xb4, 0x02, 0x0a, 0x18, 0x54, 0x65, - 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5b, 0x0a, 0x0b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, - 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x22, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, - 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x70, 0x72, 0x65, 0x68, - 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, - 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x03, - 0x88, 0x02, 0x01, 0x12, 0x5b, 0x0a, 0x0c, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, - 0x6e, 0x74, 0x73, 0x12, 0x23, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, + 0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x55, 0x4e, + 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x2a, 0x0a, 0x26, 0x46, + 0x45, 0x41, 0x54, 0x55, 0x52, 0x45, 0x5f, 0x52, 0x45, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x44, + 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x4e, 0x4f, 0x54, + 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x01, 0x12, 0x26, 0x0a, 0x22, 0x46, 0x45, 0x41, 0x54, 0x55, + 0x52, 0x45, 0x5f, 0x52, 0x45, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x44, 0x41, 0x54, 0x49, 0x4f, + 0x4e, 0x5f, 0x53, 0x54, 0x41, 0x54, 0x55, 0x53, 0x5f, 0x44, 0x4f, 0x4e, 0x45, 0x10, 0x02, 0x2a, + 0x82, 0x01, 0x0a, 0x0c, 0x4c, 0x69, 0x63, 0x65, 0x6e, 0x73, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, + 0x12, 0x1d, 0x0a, 0x19, 0x4c, 0x49, 0x43, 0x45, 0x4e, 0x53, 0x45, 0x5f, 0x4c, 0x49, 0x4d, 0x49, + 0x54, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, + 0x28, 0x0a, 0x24, 0x4c, 0x49, 0x43, 0x45, 0x4e, 0x53, 0x45, 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, + 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, 0x45, 0x5f, 0x54, 0x52, 0x55, 0x53, 0x54, 0x5f, 0x54, 0x45, + 0x41, 0x4d, 0x5f, 0x4a, 0x41, 0x4d, 0x46, 0x10, 0x01, 0x12, 0x29, 0x0a, 0x25, 0x4c, 0x49, 0x43, + 0x45, 0x4e, 0x53, 0x45, 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x5f, 0x44, 0x45, 0x56, 0x49, 0x43, + 0x45, 0x5f, 0x54, 0x52, 0x55, 0x53, 0x54, 0x5f, 0x54, 0x45, 0x41, 0x4d, 0x5f, 0x55, 0x53, 0x41, + 0x47, 0x45, 0x10, 0x02, 0x32, 0xb4, 0x02, 0x0a, 0x18, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, + 0x74, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x12, 0x5b, 0x0a, 0x0b, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, + 0x12, 0x22, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, + 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, + 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, + 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x03, 0x88, 0x02, 0x01, 0x12, 0x5b, + 0x0a, 0x0c, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x12, 0x23, + 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, + 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, + 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, 0x45, 0x76, 0x65, 0x6e, 0x74, - 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, - 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x53, 0x75, 0x62, 0x6d, 0x69, 0x74, - 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, - 0x12, 0x5e, 0x0a, 0x0d, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, - 0x74, 0x12, 0x24, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, - 0x68, 0x61, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, - 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x54, 0x65, - 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, - 0x42, 0xc9, 0x01, 0x0a, 0x12, 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x42, 0x0d, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, - 0x74, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, - 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x72, 0x61, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x61, 0x6c, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x67, 0x65, 0x6e, 0x2f, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x2f, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2f, - 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x3b, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x76, 0x31, - 0x61, 0x6c, 0x70, 0x68, 0x61, 0xa2, 0x02, 0x03, 0x50, 0x58, 0x58, 0xaa, 0x02, 0x0e, 0x50, 0x72, - 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x56, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0xca, 0x02, 0x0e, 0x50, - 0x72, 0x65, 0x68, 0x6f, 0x67, 0x5c, 0x56, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0xe2, 0x02, 0x1a, - 0x50, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x5c, 0x56, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x5c, 0x47, - 0x50, 0x42, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x0f, 0x50, 0x72, 0x65, - 0x68, 0x6f, 0x67, 0x3a, 0x3a, 0x56, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x12, 0x5e, 0x0a, 0x0d, 0x48, + 0x65, 0x6c, 0x6c, 0x6f, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x12, 0x24, 0x2e, 0x70, + 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x2e, 0x48, 0x65, + 0x6c, 0x6c, 0x6f, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x25, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, + 0x70, 0x68, 0x61, 0x2e, 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, + 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x00, 0x42, 0xc9, 0x01, 0x0a, 0x12, + 0x63, 0x6f, 0x6d, 0x2e, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x42, 0x0d, 0x54, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x50, 0x72, 0x6f, 0x74, + 0x6f, 0x50, 0x01, 0x5a, 0x4b, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, + 0x67, 0x72, 0x61, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x2f, 0x74, 0x65, + 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x67, 0x65, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x2f, 0x67, 0x6f, 0x2f, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, + 0x68, 0x61, 0x3b, 0x70, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, + 0xa2, 0x02, 0x03, 0x50, 0x58, 0x58, 0xaa, 0x02, 0x0e, 0x50, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x2e, + 0x56, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0xca, 0x02, 0x0e, 0x50, 0x72, 0x65, 0x68, 0x6f, 0x67, + 0x5c, 0x56, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0xe2, 0x02, 0x1a, 0x50, 0x72, 0x65, 0x68, 0x6f, + 0x67, 0x5c, 0x56, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x5c, 0x47, 0x50, 0x42, 0x4d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0xea, 0x02, 0x0f, 0x50, 0x72, 0x65, 0x68, 0x6f, 0x67, 0x3a, 0x3a, + 0x56, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -11246,7 +11261,7 @@ func file_prehog_v1alpha_teleport_proto_rawDescGZIP() []byte { var file_prehog_v1alpha_teleport_proto_enumTypes = make([]protoimpl.EnumInfo, 13) var file_prehog_v1alpha_teleport_proto_msgTypes = make([]protoimpl.MessageInfo, 104) -var file_prehog_v1alpha_teleport_proto_goTypes = []interface{}{ +var file_prehog_v1alpha_teleport_proto_goTypes = []any{ (ResourceKind)(0), // 0: prehog.v1alpha.ResourceKind (UserKind)(0), // 1: prehog.v1alpha.UserKind (DiscoverResource)(0), // 2: prehog.v1alpha.DiscoverResource @@ -11571,7 +11586,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_prehog_v1alpha_teleport_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*UserLoginEvent); i { case 0: return &v.state @@ -11583,7 +11598,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*MFAAuthenticationEvent); i { case 0: return &v.state @@ -11595,7 +11610,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*SSOCreateEvent); i { case 0: return &v.state @@ -11607,7 +11622,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ResourceCreateEvent); i { case 0: return &v.state @@ -11619,7 +11634,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*DiscoveredDatabaseMetadata); i { case 0: return &v.state @@ -11631,7 +11646,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*ResourceHeartbeatEvent); i { case 0: return &v.state @@ -11643,7 +11658,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*SessionStartEvent); i { case 0: return &v.state @@ -11655,7 +11670,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*SessionStartDatabaseMetadata); i { case 0: return &v.state @@ -11667,7 +11682,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*SessionStartDesktopMetadata); i { case 0: return &v.state @@ -11679,7 +11694,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*UserCertificateIssuedEvent); i { case 0: return &v.state @@ -11691,7 +11706,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*SPIFFESVIDIssuedEvent); i { case 0: return &v.state @@ -11703,7 +11718,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*UIBannerClickEvent); i { case 0: return &v.state @@ -11715,7 +11730,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*UIOnboardCompleteGoToDashboardClickEvent); i { case 0: return &v.state @@ -11727,7 +11742,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*UIOnboardAddFirstResourceClickEvent); i { case 0: return &v.state @@ -11739,7 +11754,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*UIOnboardAddFirstResourceLaterClickEvent); i { case 0: return &v.state @@ -11751,7 +11766,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*UIOnboardSetCredentialSubmitEvent); i { case 0: return &v.state @@ -11763,7 +11778,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*UIOnboardRegisterChallengeSubmitEvent); i { case 0: return &v.state @@ -11775,7 +11790,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*UIOnboardQuestionnaireSubmitEvent); i { case 0: return &v.state @@ -11787,7 +11802,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*UIRecoveryCodesContinueClickEvent); i { case 0: return &v.state @@ -11799,7 +11814,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*UIRecoveryCodesCopyClickEvent); i { case 0: return &v.state @@ -11811,7 +11826,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[20].Exporter = func(v any, i int) any { switch v := v.(*UIRecoveryCodesPrintClickEvent); i { case 0: return &v.state @@ -11823,7 +11838,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[21].Exporter = func(v any, i int) any { switch v := v.(*DiscoverMetadata); i { case 0: return &v.state @@ -11835,7 +11850,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[22].Exporter = func(v any, i int) any { switch v := v.(*DiscoverResourceMetadata); i { case 0: return &v.state @@ -11847,7 +11862,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[23].Exporter = func(v any, i int) any { switch v := v.(*DiscoverStepStatus); i { case 0: return &v.state @@ -11859,7 +11874,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[24].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverStartedEvent); i { case 0: return &v.state @@ -11871,7 +11886,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[25].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverResourceSelectionEvent); i { case 0: return &v.state @@ -11883,7 +11898,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[26].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverIntegrationAWSOIDCConnectEvent); i { case 0: return &v.state @@ -11895,7 +11910,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[27].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverDatabaseRDSEnrollEvent); i { case 0: return &v.state @@ -11907,7 +11922,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[28].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverKubeEKSEnrollEvent); i { case 0: return &v.state @@ -11919,7 +11934,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[29].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverDeployServiceEvent); i { case 0: return &v.state @@ -11931,7 +11946,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[30].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverCreateDiscoveryConfigEvent); i { case 0: return &v.state @@ -11943,7 +11958,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[31].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverDatabaseRegisterEvent); i { case 0: return &v.state @@ -11955,7 +11970,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[32].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverDatabaseConfigureMTLSEvent); i { case 0: return &v.state @@ -11967,7 +11982,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[33].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverDesktopActiveDirectoryToolsInstallEvent); i { case 0: return &v.state @@ -11979,7 +11994,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[34].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverDesktopActiveDirectoryConfigureEvent); i { case 0: return &v.state @@ -11991,7 +12006,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[35].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverAutoDiscoveredResourcesEvent); i { case 0: return &v.state @@ -12003,7 +12018,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[36].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverEC2InstanceSelectionEvent); i { case 0: return &v.state @@ -12015,7 +12030,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[37].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverDeployEICEEvent); i { case 0: return &v.state @@ -12027,7 +12042,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[38].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverCreateNodeEvent); i { case 0: return &v.state @@ -12039,7 +12054,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[39].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverCreateAppServerEvent); i { case 0: return &v.state @@ -12051,7 +12066,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[40].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverDatabaseConfigureIAMPolicyEvent); i { case 0: return &v.state @@ -12063,7 +12078,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[41].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverPrincipalsConfigureEvent); i { case 0: return &v.state @@ -12075,7 +12090,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[42].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverTestConnectionEvent); i { case 0: return &v.state @@ -12087,7 +12102,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[43].Exporter = func(v any, i int) any { switch v := v.(*UIDiscoverCompletedEvent); i { case 0: return &v.state @@ -12099,7 +12114,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[44].Exporter = func(v any, i int) any { switch v := v.(*RoleCreateEvent); i { case 0: return &v.state @@ -12111,7 +12126,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[45].Exporter = func(v any, i int) any { switch v := v.(*BotCreateEvent); i { case 0: return &v.state @@ -12123,7 +12138,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[46].Exporter = func(v any, i int) any { switch v := v.(*BotJoinEvent); i { case 0: return &v.state @@ -12135,7 +12150,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[47].Exporter = func(v any, i int) any { switch v := v.(*UICreateNewRoleClickEvent); i { case 0: return &v.state @@ -12147,7 +12162,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[48].Exporter = func(v any, i int) any { switch v := v.(*UICreateNewRoleSaveClickEvent); i { case 0: return &v.state @@ -12159,7 +12174,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[49].Exporter = func(v any, i int) any { switch v := v.(*UICreateNewRoleCancelClickEvent); i { case 0: return &v.state @@ -12171,7 +12186,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[50].Exporter = func(v any, i int) any { switch v := v.(*UICreateNewRoleViewDocumentationClickEvent); i { case 0: return &v.state @@ -12183,7 +12198,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[51].Exporter = func(v any, i int) any { switch v := v.(*UICallToActionClickEvent); i { case 0: return &v.state @@ -12195,7 +12210,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[52].Exporter = func(v any, i int) any { switch v := v.(*KubeRequestEvent); i { case 0: return &v.state @@ -12207,7 +12222,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[53].Exporter = func(v any, i int) any { switch v := v.(*SFTPEvent); i { case 0: return &v.state @@ -12219,7 +12234,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[54].Exporter = func(v any, i int) any { switch v := v.(*AgentMetadataEvent); i { case 0: return &v.state @@ -12231,7 +12246,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[55].Exporter = func(v any, i int) any { switch v := v.(*AssistCompletionEvent); i { case 0: return &v.state @@ -12243,7 +12258,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[56].Exporter = func(v any, i int) any { switch v := v.(*AssistExecutionEvent); i { case 0: return &v.state @@ -12255,7 +12270,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[57].Exporter = func(v any, i int) any { switch v := v.(*AssistNewConversationEvent); i { case 0: return &v.state @@ -12267,7 +12282,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[58].Exporter = func(v any, i int) any { switch v := v.(*AssistAccessRequestEvent); i { case 0: return &v.state @@ -12279,7 +12294,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[59].Exporter = func(v any, i int) any { switch v := v.(*AssistActionEvent); i { case 0: return &v.state @@ -12291,7 +12306,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[60].Exporter = func(v any, i int) any { switch v := v.(*AccessListMetadata); i { case 0: return &v.state @@ -12303,7 +12318,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[61].Exporter = func(v any, i int) any { switch v := v.(*AccessListCreateEvent); i { case 0: return &v.state @@ -12315,7 +12330,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[62].Exporter = func(v any, i int) any { switch v := v.(*AccessListUpdateEvent); i { case 0: return &v.state @@ -12327,7 +12342,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[63].Exporter = func(v any, i int) any { switch v := v.(*AccessListDeleteEvent); i { case 0: return &v.state @@ -12339,7 +12354,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[64].Exporter = func(v any, i int) any { switch v := v.(*AccessListMemberCreateEvent); i { case 0: return &v.state @@ -12351,7 +12366,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[65].Exporter = func(v any, i int) any { switch v := v.(*AccessListMemberUpdateEvent); i { case 0: return &v.state @@ -12363,7 +12378,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[66].Exporter = func(v any, i int) any { switch v := v.(*AccessListMemberDeleteEvent); i { case 0: return &v.state @@ -12375,7 +12390,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[67].Exporter = func(v any, i int) any { switch v := v.(*AccessListGrantsToUserEvent); i { case 0: return &v.state @@ -12387,7 +12402,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[68].Exporter = func(v any, i int) any { switch v := v.(*AccessListReviewCreateEvent); i { case 0: return &v.state @@ -12399,7 +12414,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[69].Exporter = func(v any, i int) any { switch v := v.(*AccessListReviewDeleteEvent); i { case 0: return &v.state @@ -12411,7 +12426,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[70].Exporter = func(v any, i int) any { switch v := v.(*AccessListReviewComplianceEvent); i { case 0: return &v.state @@ -12423,7 +12438,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[71].Exporter = func(v any, i int) any { switch v := v.(*IntegrationEnrollMetadata); i { case 0: return &v.state @@ -12435,7 +12450,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[72].Exporter = func(v any, i int) any { switch v := v.(*UIIntegrationEnrollStartEvent); i { case 0: return &v.state @@ -12447,7 +12462,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[73].Exporter = func(v any, i int) any { switch v := v.(*UIIntegrationEnrollCompleteEvent); i { case 0: return &v.state @@ -12459,7 +12474,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[74].Exporter = func(v any, i int) any { switch v := v.(*EditorChangeEvent); i { case 0: return &v.state @@ -12471,7 +12486,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[75].Exporter = func(v any, i int) any { switch v := v.(*DeviceAuthenticateEvent); i { case 0: return &v.state @@ -12483,7 +12498,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[76].Exporter = func(v any, i int) any { switch v := v.(*DeviceEnrollEvent); i { case 0: return &v.state @@ -12495,7 +12510,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[77].Exporter = func(v any, i int) any { switch v := v.(*FeatureRecommendationEvent); i { case 0: return &v.state @@ -12507,7 +12522,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[78].Exporter = func(v any, i int) any { switch v := v.(*LicenseLimitEvent); i { case 0: return &v.state @@ -12519,7 +12534,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[79].Exporter = func(v any, i int) any { switch v := v.(*DesktopDirectoryShareEvent); i { case 0: return &v.state @@ -12531,7 +12546,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[80].Exporter = func(v any, i int) any { switch v := v.(*DesktopClipboardEvent); i { case 0: return &v.state @@ -12543,7 +12558,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[81].Exporter = func(v any, i int) any { switch v := v.(*TAGExecuteQueryEvent); i { case 0: return &v.state @@ -12555,7 +12570,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[82].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphSecretsScanAuthorizedKeysEvent); i { case 0: return &v.state @@ -12567,7 +12582,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[83].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphSecretsScanSSHPrivateKeysEvent); i { case 0: return &v.state @@ -12579,7 +12594,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[84].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphGitlabScanEvent); i { case 0: return &v.state @@ -12591,7 +12606,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[85].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphAWSScanEvent); i { case 0: return &v.state @@ -12603,7 +12618,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[86].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphAccessPathChangedEvent); i { case 0: return &v.state @@ -12615,7 +12630,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[87].Exporter = func(v any, i int) any { switch v := v.(*UIAccessGraphCrownJewelDiffViewEvent); i { case 0: return &v.state @@ -12627,7 +12642,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[88].Exporter = func(v any, i int) any { switch v := v.(*AccessGraphCrownJewelCreateEvent); i { case 0: return &v.state @@ -12639,7 +12654,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[89].Exporter = func(v any, i int) any { switch v := v.(*ExternalAuditStorageAuthenticateEvent); i { case 0: return &v.state @@ -12651,7 +12666,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[90].Exporter = func(v any, i int) any { switch v := v.(*SecurityReportGetResultEvent); i { case 0: return &v.state @@ -12663,7 +12678,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[91].Exporter = func(v any, i int) any { switch v := v.(*AuditQueryRunEvent); i { case 0: return &v.state @@ -12675,7 +12690,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[92].Exporter = func(v any, i int) any { switch v := v.(*DiscoveryFetchEvent); i { case 0: return &v.state @@ -12687,7 +12702,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[93].Exporter = func(v any, i int) any { switch v := v.(*OktaAccessListSyncEvent); i { case 0: return &v.state @@ -12699,7 +12714,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[94].Exporter = func(v any, i int) any { switch v := v.(*DatabaseUserCreatedEvent); i { case 0: return &v.state @@ -12711,7 +12726,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[95].Exporter = func(v any, i int) any { switch v := v.(*DatabaseUserPermissionsUpdateEvent); i { case 0: return &v.state @@ -12723,7 +12738,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[96].Exporter = func(v any, i int) any { switch v := v.(*SessionRecordingAccessEvent); i { case 0: return &v.state @@ -12735,7 +12750,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[97].Exporter = func(v any, i int) any { switch v := v.(*UserTaskStateEvent); i { case 0: return &v.state @@ -12747,7 +12762,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[98].Exporter = func(v any, i int) any { switch v := v.(*SubmitEventRequest); i { case 0: return &v.state @@ -12759,7 +12774,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[99].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[99].Exporter = func(v any, i int) any { switch v := v.(*SubmitEventResponse); i { case 0: return &v.state @@ -12771,7 +12786,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[100].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[100].Exporter = func(v any, i int) any { switch v := v.(*SubmitEventsRequest); i { case 0: return &v.state @@ -12783,7 +12798,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[101].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[101].Exporter = func(v any, i int) any { switch v := v.(*SubmitEventsResponse); i { case 0: return &v.state @@ -12795,7 +12810,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[102].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[102].Exporter = func(v any, i int) any { switch v := v.(*HelloTeleportRequest); i { case 0: return &v.state @@ -12807,7 +12822,7 @@ func file_prehog_v1alpha_teleport_proto_init() { return nil } } - file_prehog_v1alpha_teleport_proto_msgTypes[103].Exporter = func(v interface{}, i int) interface{} { + file_prehog_v1alpha_teleport_proto_msgTypes[103].Exporter = func(v any, i int) any { switch v := v.(*HelloTeleportResponse); i { case 0: return &v.state @@ -12820,7 +12835,7 @@ func file_prehog_v1alpha_teleport_proto_init() { } } } - file_prehog_v1alpha_teleport_proto_msgTypes[98].OneofWrappers = []interface{}{ + file_prehog_v1alpha_teleport_proto_msgTypes[98].OneofWrappers = []any{ (*SubmitEventRequest_UserLogin)(nil), (*SubmitEventRequest_SsoCreate)(nil), (*SubmitEventRequest_ResourceCreate)(nil), diff --git a/gen/proto/go/teleport/lib/teleterm/v1/access_request.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/access_request.pb.go index af6b8f52a7662..32285bc7daae1 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/access_request.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/access_request.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/access_request.proto @@ -647,7 +647,7 @@ func file_teleport_lib_teleterm_v1_access_request_proto_rawDescGZIP() []byte { } var file_teleport_lib_teleterm_v1_access_request_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_lib_teleterm_v1_access_request_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_access_request_proto_goTypes = []any{ (*AccessRequest)(nil), // 0: teleport.lib.teleterm.v1.AccessRequest (*AccessRequestReview)(nil), // 1: teleport.lib.teleterm.v1.AccessRequestReview (*ResourceID)(nil), // 2: teleport.lib.teleterm.v1.ResourceID @@ -682,7 +682,7 @@ func file_teleport_lib_teleterm_v1_access_request_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AccessRequest); i { case 0: return &v.state @@ -694,7 +694,7 @@ func file_teleport_lib_teleterm_v1_access_request_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AccessRequestReview); i { case 0: return &v.state @@ -706,7 +706,7 @@ func file_teleport_lib_teleterm_v1_access_request_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ResourceID); i { case 0: return &v.state @@ -718,7 +718,7 @@ func file_teleport_lib_teleterm_v1_access_request_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ResourceDetails); i { case 0: return &v.state @@ -730,7 +730,7 @@ func file_teleport_lib_teleterm_v1_access_request_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_access_request_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*Resource); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/v1/app.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/app.pb.go index edb358e0415b5..3843d60854547 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/app.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/app.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/app.proto @@ -343,7 +343,7 @@ func file_teleport_lib_teleterm_v1_app_proto_rawDescGZIP() []byte { } var file_teleport_lib_teleterm_v1_app_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_lib_teleterm_v1_app_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_app_proto_goTypes = []any{ (*App)(nil), // 0: teleport.lib.teleterm.v1.App (*AWSRole)(nil), // 1: teleport.lib.teleterm.v1.AWSRole (*Label)(nil), // 2: teleport.lib.teleterm.v1.Label @@ -365,7 +365,7 @@ func file_teleport_lib_teleterm_v1_app_proto_init() { } file_teleport_lib_teleterm_v1_label_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_app_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_app_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*App); i { case 0: return &v.state @@ -377,7 +377,7 @@ func file_teleport_lib_teleterm_v1_app_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_app_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_app_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AWSRole); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/v1/auth_settings.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/auth_settings.pb.go index da5ecb59f7573..cec1afc4ca243 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/auth_settings.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/auth_settings.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/auth_settings.proto @@ -278,7 +278,7 @@ func file_teleport_lib_teleterm_v1_auth_settings_proto_rawDescGZIP() []byte { } var file_teleport_lib_teleterm_v1_auth_settings_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_lib_teleterm_v1_auth_settings_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_auth_settings_proto_goTypes = []any{ (*AuthSettings)(nil), // 0: teleport.lib.teleterm.v1.AuthSettings (*AuthProvider)(nil), // 1: teleport.lib.teleterm.v1.AuthProvider } @@ -297,7 +297,7 @@ func file_teleport_lib_teleterm_v1_auth_settings_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_auth_settings_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_auth_settings_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*AuthSettings); i { case 0: return &v.state @@ -309,7 +309,7 @@ func file_teleport_lib_teleterm_v1_auth_settings_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_auth_settings_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_auth_settings_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*AuthProvider); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/v1/cluster.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/cluster.pb.go index 3627f16f34bb7..53edc4e45d153 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/cluster.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/cluster.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/cluster.proto @@ -920,7 +920,7 @@ func file_teleport_lib_teleterm_v1_cluster_proto_rawDescGZIP() []byte { var file_teleport_lib_teleterm_v1_cluster_proto_enumTypes = make([]protoimpl.EnumInfo, 2) var file_teleport_lib_teleterm_v1_cluster_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_teleport_lib_teleterm_v1_cluster_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_cluster_proto_goTypes = []any{ (ShowResources)(0), // 0: teleport.lib.teleterm.v1.ShowResources (LoggedInUser_UserType)(0), // 1: teleport.lib.teleterm.v1.LoggedInUser.UserType (*Cluster)(nil), // 2: teleport.lib.teleterm.v1.Cluster @@ -963,7 +963,7 @@ func file_teleport_lib_teleterm_v1_cluster_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Cluster); i { case 0: return &v.state @@ -975,7 +975,7 @@ func file_teleport_lib_teleterm_v1_cluster_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*LoggedInUser); i { case 0: return &v.state @@ -987,7 +987,7 @@ func file_teleport_lib_teleterm_v1_cluster_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*ACL); i { case 0: return &v.state @@ -999,7 +999,7 @@ func file_teleport_lib_teleterm_v1_cluster_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ResourceAccess); i { case 0: return &v.state @@ -1011,7 +1011,7 @@ func file_teleport_lib_teleterm_v1_cluster_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_cluster_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*Features); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/v1/database.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/database.pb.go index 00aeeded52c5d..89a319a34ee19 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/database.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/database.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/database.proto @@ -194,7 +194,7 @@ func file_teleport_lib_teleterm_v1_database_proto_rawDescGZIP() []byte { } var file_teleport_lib_teleterm_v1_database_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_lib_teleterm_v1_database_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_database_proto_goTypes = []any{ (*Database)(nil), // 0: teleport.lib.teleterm.v1.Database (*Label)(nil), // 1: teleport.lib.teleterm.v1.Label } @@ -214,7 +214,7 @@ func file_teleport_lib_teleterm_v1_database_proto_init() { } file_teleport_lib_teleterm_v1_label_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_database_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_database_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Database); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/v1/gateway.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/gateway.pb.go index 9b2399d5bc842..58326c1a9ba4f 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/gateway.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/gateway.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/gateway.proto @@ -321,7 +321,7 @@ func file_teleport_lib_teleterm_v1_gateway_proto_rawDescGZIP() []byte { } var file_teleport_lib_teleterm_v1_gateway_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_lib_teleterm_v1_gateway_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_gateway_proto_goTypes = []any{ (*Gateway)(nil), // 0: teleport.lib.teleterm.v1.Gateway (*GatewayCLICommand)(nil), // 1: teleport.lib.teleterm.v1.GatewayCLICommand } @@ -340,7 +340,7 @@ func file_teleport_lib_teleterm_v1_gateway_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_gateway_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_gateway_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Gateway); i { case 0: return &v.state @@ -352,7 +352,7 @@ func file_teleport_lib_teleterm_v1_gateway_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_gateway_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_gateway_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GatewayCLICommand); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/v1/kube.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/kube.pb.go index 00fb26892dfac..e9fec749a525b 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/kube.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/kube.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/kube.proto @@ -250,7 +250,7 @@ func file_teleport_lib_teleterm_v1_kube_proto_rawDescGZIP() []byte { } var file_teleport_lib_teleterm_v1_kube_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_lib_teleterm_v1_kube_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_kube_proto_goTypes = []any{ (*Kube)(nil), // 0: teleport.lib.teleterm.v1.Kube (*KubeResource)(nil), // 1: teleport.lib.teleterm.v1.KubeResource (*Label)(nil), // 2: teleport.lib.teleterm.v1.Label @@ -272,7 +272,7 @@ func file_teleport_lib_teleterm_v1_kube_proto_init() { } file_teleport_lib_teleterm_v1_label_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_kube_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_kube_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Kube); i { case 0: return &v.state @@ -284,7 +284,7 @@ func file_teleport_lib_teleterm_v1_kube_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_kube_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_kube_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*KubeResource); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/v1/label.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/label.pb.go index 5817c65b12ac5..57964f3e371b0 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/label.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/label.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/label.proto @@ -127,7 +127,7 @@ func file_teleport_lib_teleterm_v1_label_proto_rawDescGZIP() []byte { } var file_teleport_lib_teleterm_v1_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_lib_teleterm_v1_label_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_label_proto_goTypes = []any{ (*Label)(nil), // 0: teleport.lib.teleterm.v1.Label } var file_teleport_lib_teleterm_v1_label_proto_depIdxs = []int32{ @@ -144,7 +144,7 @@ func file_teleport_lib_teleterm_v1_label_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_label_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_label_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Label); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/v1/server.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/server.pb.go index 5fd9cbe28fb76..d9a1a5777bada 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/server.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/server.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/server.proto @@ -184,7 +184,7 @@ func file_teleport_lib_teleterm_v1_server_proto_rawDescGZIP() []byte { } var file_teleport_lib_teleterm_v1_server_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_lib_teleterm_v1_server_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_server_proto_goTypes = []any{ (*Server)(nil), // 0: teleport.lib.teleterm.v1.Server (*Label)(nil), // 1: teleport.lib.teleterm.v1.Label } @@ -204,7 +204,7 @@ func file_teleport_lib_teleterm_v1_server_proto_init() { } file_teleport_lib_teleterm_v1_label_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_server_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_server_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Server); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/v1/service.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/service.pb.go index 8ae4b8672dd6e..901f573a58452 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/service.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/service.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/service.proto @@ -5981,7 +5981,7 @@ func file_teleport_lib_teleterm_v1_service_proto_rawDescGZIP() []byte { var file_teleport_lib_teleterm_v1_service_proto_enumTypes = make([]protoimpl.EnumInfo, 3) var file_teleport_lib_teleterm_v1_service_proto_msgTypes = make([]protoimpl.MessageInfo, 81) -var file_teleport_lib_teleterm_v1_service_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_service_proto_goTypes = []any{ (PasswordlessPrompt)(0), // 0: teleport.lib.teleterm.v1.PasswordlessPrompt (FileTransferDirection)(0), // 1: teleport.lib.teleterm.v1.FileTransferDirection (HeadlessAuthenticationState)(0), // 2: teleport.lib.teleterm.v1.HeadlessAuthenticationState @@ -6235,7 +6235,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { file_teleport_lib_teleterm_v1_server_proto_init() file_teleport_lib_teleterm_v1_usage_events_proto_init() if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*EmptyResponse); i { case 0: return &v.state @@ -6247,7 +6247,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*RemoveClusterRequest); i { case 0: return &v.state @@ -6259,7 +6259,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*GetClusterRequest); i { case 0: return &v.state @@ -6271,7 +6271,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*LogoutRequest); i { case 0: return &v.state @@ -6283,7 +6283,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*StartHeadlessWatcherRequest); i { case 0: return &v.state @@ -6295,7 +6295,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*StartHeadlessWatcherResponse); i { case 0: return &v.state @@ -6307,7 +6307,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*GetAccessRequestRequest); i { case 0: return &v.state @@ -6319,7 +6319,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*GetAccessRequestsRequest); i { case 0: return &v.state @@ -6331,7 +6331,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*GetAccessRequestResponse); i { case 0: return &v.state @@ -6343,7 +6343,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*GetAccessRequestsResponse); i { case 0: return &v.state @@ -6355,7 +6355,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*DeleteAccessRequestRequest); i { case 0: return &v.state @@ -6367,7 +6367,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*CreateAccessRequestRequest); i { case 0: return &v.state @@ -6379,7 +6379,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*CreateAccessRequestResponse); i { case 0: return &v.state @@ -6391,7 +6391,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*AssumeRoleRequest); i { case 0: return &v.state @@ -6403,7 +6403,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*GetRequestableRolesRequest); i { case 0: return &v.state @@ -6415,7 +6415,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*GetRequestableRolesResponse); i { case 0: return &v.state @@ -6427,7 +6427,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*ReviewAccessRequestRequest); i { case 0: return &v.state @@ -6439,7 +6439,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[17].Exporter = func(v any, i int) any { switch v := v.(*ReviewAccessRequestResponse); i { case 0: return &v.state @@ -6451,7 +6451,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[18].Exporter = func(v any, i int) any { switch v := v.(*PromoteAccessRequestRequest); i { case 0: return &v.state @@ -6463,7 +6463,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[19].Exporter = func(v any, i int) any { switch v := v.(*PromoteAccessRequestResponse); i { case 0: return &v.state @@ -6475,7 +6475,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[20].Exporter = func(v any, i int) any { switch v := v.(*GetSuggestedAccessListsRequest); i { case 0: return &v.state @@ -6487,7 +6487,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[21].Exporter = func(v any, i int) any { switch v := v.(*GetSuggestedAccessListsResponse); i { case 0: return &v.state @@ -6499,7 +6499,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[22].Exporter = func(v any, i int) any { switch v := v.(*ListKubernetesResourcesRequest); i { case 0: return &v.state @@ -6511,7 +6511,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[23].Exporter = func(v any, i int) any { switch v := v.(*ListKubernetesResourcesResponse); i { case 0: return &v.state @@ -6523,7 +6523,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[24].Exporter = func(v any, i int) any { switch v := v.(*CredentialInfo); i { case 0: return &v.state @@ -6535,7 +6535,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[25].Exporter = func(v any, i int) any { switch v := v.(*LoginPasswordlessResponse); i { case 0: return &v.state @@ -6547,7 +6547,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[26].Exporter = func(v any, i int) any { switch v := v.(*LoginPasswordlessRequest); i { case 0: return &v.state @@ -6559,7 +6559,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[27].Exporter = func(v any, i int) any { switch v := v.(*FileTransferRequest); i { case 0: return &v.state @@ -6571,7 +6571,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[28].Exporter = func(v any, i int) any { switch v := v.(*FileTransferProgress); i { case 0: return &v.state @@ -6583,7 +6583,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[29].Exporter = func(v any, i int) any { switch v := v.(*LoginRequest); i { case 0: return &v.state @@ -6595,7 +6595,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[30].Exporter = func(v any, i int) any { switch v := v.(*AddClusterRequest); i { case 0: return &v.state @@ -6607,7 +6607,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[31].Exporter = func(v any, i int) any { switch v := v.(*ListClustersRequest); i { case 0: return &v.state @@ -6619,7 +6619,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[32].Exporter = func(v any, i int) any { switch v := v.(*ListClustersResponse); i { case 0: return &v.state @@ -6631,7 +6631,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[33].Exporter = func(v any, i int) any { switch v := v.(*GetDatabasesRequest); i { case 0: return &v.state @@ -6643,7 +6643,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[34].Exporter = func(v any, i int) any { switch v := v.(*ListLeafClustersRequest); i { case 0: return &v.state @@ -6655,7 +6655,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[35].Exporter = func(v any, i int) any { switch v := v.(*ListDatabaseUsersRequest); i { case 0: return &v.state @@ -6667,7 +6667,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[36].Exporter = func(v any, i int) any { switch v := v.(*ListDatabaseUsersResponse); i { case 0: return &v.state @@ -6679,7 +6679,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[37].Exporter = func(v any, i int) any { switch v := v.(*CreateGatewayRequest); i { case 0: return &v.state @@ -6691,7 +6691,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[38].Exporter = func(v any, i int) any { switch v := v.(*ListGatewaysRequest); i { case 0: return &v.state @@ -6703,7 +6703,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[39].Exporter = func(v any, i int) any { switch v := v.(*ListGatewaysResponse); i { case 0: return &v.state @@ -6715,7 +6715,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[40].Exporter = func(v any, i int) any { switch v := v.(*RemoveGatewayRequest); i { case 0: return &v.state @@ -6727,7 +6727,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[41].Exporter = func(v any, i int) any { switch v := v.(*SetGatewayTargetSubresourceNameRequest); i { case 0: return &v.state @@ -6739,7 +6739,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[42].Exporter = func(v any, i int) any { switch v := v.(*SetGatewayLocalPortRequest); i { case 0: return &v.state @@ -6751,7 +6751,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[43].Exporter = func(v any, i int) any { switch v := v.(*GetServersRequest); i { case 0: return &v.state @@ -6763,7 +6763,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[44].Exporter = func(v any, i int) any { switch v := v.(*GetServersResponse); i { case 0: return &v.state @@ -6775,7 +6775,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[45].Exporter = func(v any, i int) any { switch v := v.(*GetDatabasesResponse); i { case 0: return &v.state @@ -6787,7 +6787,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[46].Exporter = func(v any, i int) any { switch v := v.(*GetKubesRequest); i { case 0: return &v.state @@ -6799,7 +6799,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[47].Exporter = func(v any, i int) any { switch v := v.(*GetKubesResponse); i { case 0: return &v.state @@ -6811,7 +6811,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[48].Exporter = func(v any, i int) any { switch v := v.(*GetAppsRequest); i { case 0: return &v.state @@ -6823,7 +6823,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[49].Exporter = func(v any, i int) any { switch v := v.(*GetAppsResponse); i { case 0: return &v.state @@ -6835,7 +6835,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[50].Exporter = func(v any, i int) any { switch v := v.(*GetAuthSettingsRequest); i { case 0: return &v.state @@ -6847,7 +6847,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[51].Exporter = func(v any, i int) any { switch v := v.(*UpdateTshdEventsServerAddressRequest); i { case 0: return &v.state @@ -6859,7 +6859,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[52].Exporter = func(v any, i int) any { switch v := v.(*UpdateTshdEventsServerAddressResponse); i { case 0: return &v.state @@ -6871,7 +6871,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[53].Exporter = func(v any, i int) any { switch v := v.(*UpdateHeadlessAuthenticationStateRequest); i { case 0: return &v.state @@ -6883,7 +6883,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[54].Exporter = func(v any, i int) any { switch v := v.(*UpdateHeadlessAuthenticationStateResponse); i { case 0: return &v.state @@ -6895,7 +6895,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[55].Exporter = func(v any, i int) any { switch v := v.(*CreateConnectMyComputerRoleRequest); i { case 0: return &v.state @@ -6907,7 +6907,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[56].Exporter = func(v any, i int) any { switch v := v.(*CreateConnectMyComputerRoleResponse); i { case 0: return &v.state @@ -6919,7 +6919,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[57].Exporter = func(v any, i int) any { switch v := v.(*CreateConnectMyComputerNodeTokenRequest); i { case 0: return &v.state @@ -6931,7 +6931,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[58].Exporter = func(v any, i int) any { switch v := v.(*CreateConnectMyComputerNodeTokenResponse); i { case 0: return &v.state @@ -6943,7 +6943,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[59].Exporter = func(v any, i int) any { switch v := v.(*WaitForConnectMyComputerNodeJoinRequest); i { case 0: return &v.state @@ -6955,7 +6955,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[60].Exporter = func(v any, i int) any { switch v := v.(*WaitForConnectMyComputerNodeJoinResponse); i { case 0: return &v.state @@ -6967,7 +6967,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[61].Exporter = func(v any, i int) any { switch v := v.(*DeleteConnectMyComputerNodeRequest); i { case 0: return &v.state @@ -6979,7 +6979,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[62].Exporter = func(v any, i int) any { switch v := v.(*DeleteConnectMyComputerNodeResponse); i { case 0: return &v.state @@ -6991,7 +6991,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[63].Exporter = func(v any, i int) any { switch v := v.(*GetConnectMyComputerNodeNameRequest); i { case 0: return &v.state @@ -7003,7 +7003,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[64].Exporter = func(v any, i int) any { switch v := v.(*GetConnectMyComputerNodeNameResponse); i { case 0: return &v.state @@ -7015,7 +7015,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[65].Exporter = func(v any, i int) any { switch v := v.(*ListUnifiedResourcesRequest); i { case 0: return &v.state @@ -7027,7 +7027,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[66].Exporter = func(v any, i int) any { switch v := v.(*SortBy); i { case 0: return &v.state @@ -7039,7 +7039,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[67].Exporter = func(v any, i int) any { switch v := v.(*ListUnifiedResourcesResponse); i { case 0: return &v.state @@ -7051,7 +7051,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[68].Exporter = func(v any, i int) any { switch v := v.(*PaginatedResource); i { case 0: return &v.state @@ -7063,7 +7063,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[69].Exporter = func(v any, i int) any { switch v := v.(*GetUserPreferencesRequest); i { case 0: return &v.state @@ -7075,7 +7075,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[70].Exporter = func(v any, i int) any { switch v := v.(*GetUserPreferencesResponse); i { case 0: return &v.state @@ -7087,7 +7087,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[71].Exporter = func(v any, i int) any { switch v := v.(*UpdateUserPreferencesRequest); i { case 0: return &v.state @@ -7099,7 +7099,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[72].Exporter = func(v any, i int) any { switch v := v.(*UpdateUserPreferencesResponse); i { case 0: return &v.state @@ -7111,7 +7111,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[73].Exporter = func(v any, i int) any { switch v := v.(*UserPreferences); i { case 0: return &v.state @@ -7123,7 +7123,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[74].Exporter = func(v any, i int) any { switch v := v.(*AuthenticateWebDeviceRequest); i { case 0: return &v.state @@ -7135,7 +7135,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[75].Exporter = func(v any, i int) any { switch v := v.(*AuthenticateWebDeviceResponse); i { case 0: return &v.state @@ -7147,7 +7147,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[76].Exporter = func(v any, i int) any { switch v := v.(*LoginPasswordlessRequest_LoginPasswordlessRequestInit); i { case 0: return &v.state @@ -7159,7 +7159,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[77].Exporter = func(v any, i int) any { switch v := v.(*LoginPasswordlessRequest_LoginPasswordlessPINResponse); i { case 0: return &v.state @@ -7171,7 +7171,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[78].Exporter = func(v any, i int) any { switch v := v.(*LoginPasswordlessRequest_LoginPasswordlessCredentialResponse); i { case 0: return &v.state @@ -7183,7 +7183,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[79].Exporter = func(v any, i int) any { switch v := v.(*LoginRequest_LocalParams); i { case 0: return &v.state @@ -7195,7 +7195,7 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_service_proto_msgTypes[80].Exporter = func(v any, i int) any { switch v := v.(*LoginRequest_SsoParams); i { case 0: return &v.state @@ -7208,16 +7208,16 @@ func file_teleport_lib_teleterm_v1_service_proto_init() { } } } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[26].OneofWrappers = []interface{}{ + file_teleport_lib_teleterm_v1_service_proto_msgTypes[26].OneofWrappers = []any{ (*LoginPasswordlessRequest_Init)(nil), (*LoginPasswordlessRequest_Pin)(nil), (*LoginPasswordlessRequest_Credential)(nil), } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[29].OneofWrappers = []interface{}{ + file_teleport_lib_teleterm_v1_service_proto_msgTypes[29].OneofWrappers = []any{ (*LoginRequest_Local)(nil), (*LoginRequest_Sso)(nil), } - file_teleport_lib_teleterm_v1_service_proto_msgTypes[68].OneofWrappers = []interface{}{ + file_teleport_lib_teleterm_v1_service_proto_msgTypes[68].OneofWrappers = []any{ (*PaginatedResource_Database)(nil), (*PaginatedResource_Server)(nil), (*PaginatedResource_Kube)(nil), diff --git a/gen/proto/go/teleport/lib/teleterm/v1/tshd_events_service.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/tshd_events_service.pb.go index afae4d3f639ae..7296d11124055 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/tshd_events_service.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/tshd_events_service.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/tshd_events_service.proto @@ -766,421 +766,6 @@ func (x *PromptMFAResponse) GetTotpCode() string { return "" } -// Request for PromptHardwareKeyPIN. -type PromptHardwareKeyPINRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RootClusterUri string `protobuf:"bytes,1,opt,name=root_cluster_uri,json=rootClusterUri,proto3" json:"root_cluster_uri,omitempty"` - // Specifies if a PIN is optional, allowing the user to set it up if left empty. - PinOptional bool `protobuf:"varint,2,opt,name=pin_optional,json=pinOptional,proto3" json:"pin_optional,omitempty"` -} - -func (x *PromptHardwareKeyPINRequest) Reset() { - *x = PromptHardwareKeyPINRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[12] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *PromptHardwareKeyPINRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*PromptHardwareKeyPINRequest) ProtoMessage() {} - -func (x *PromptHardwareKeyPINRequest) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[12] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use PromptHardwareKeyPINRequest.ProtoReflect.Descriptor instead. -func (*PromptHardwareKeyPINRequest) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{12} -} - -func (x *PromptHardwareKeyPINRequest) GetRootClusterUri() string { - if x != nil { - return x.RootClusterUri - } - return "" -} - -func (x *PromptHardwareKeyPINRequest) GetPinOptional() bool { - if x != nil { - return x.PinOptional - } - return false -} - -// Response for PromptHardwareKeyPIN. -type PromptHardwareKeyPINResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // pin as inputted by the user in the Electron app. - Pin string `protobuf:"bytes,1,opt,name=pin,proto3" json:"pin,omitempty"` -} - -func (x *PromptHardwareKeyPINResponse) Reset() { - *x = PromptHardwareKeyPINResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[13] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *PromptHardwareKeyPINResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*PromptHardwareKeyPINResponse) ProtoMessage() {} - -func (x *PromptHardwareKeyPINResponse) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[13] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use PromptHardwareKeyPINResponse.ProtoReflect.Descriptor instead. -func (*PromptHardwareKeyPINResponse) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{13} -} - -func (x *PromptHardwareKeyPINResponse) GetPin() string { - if x != nil { - return x.Pin - } - return "" -} - -// Request for PromptHardwareKeyTouchRequest. -type PromptHardwareKeyTouchRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RootClusterUri string `protobuf:"bytes,1,opt,name=root_cluster_uri,json=rootClusterUri,proto3" json:"root_cluster_uri,omitempty"` -} - -func (x *PromptHardwareKeyTouchRequest) Reset() { - *x = PromptHardwareKeyTouchRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[14] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *PromptHardwareKeyTouchRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*PromptHardwareKeyTouchRequest) ProtoMessage() {} - -func (x *PromptHardwareKeyTouchRequest) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[14] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use PromptHardwareKeyTouchRequest.ProtoReflect.Descriptor instead. -func (*PromptHardwareKeyTouchRequest) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{14} -} - -func (x *PromptHardwareKeyTouchRequest) GetRootClusterUri() string { - if x != nil { - return x.RootClusterUri - } - return "" -} - -// Response for PromptHardwareKeyTouch. -type PromptHardwareKeyTouchResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields -} - -func (x *PromptHardwareKeyTouchResponse) Reset() { - *x = PromptHardwareKeyTouchResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[15] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *PromptHardwareKeyTouchResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*PromptHardwareKeyTouchResponse) ProtoMessage() {} - -func (x *PromptHardwareKeyTouchResponse) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[15] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use PromptHardwareKeyTouchResponse.ProtoReflect.Descriptor instead. -func (*PromptHardwareKeyTouchResponse) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{15} -} - -// Response for PromptHardwareKeyPINChange. -type PromptHardwareKeyPINChangeRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RootClusterUri string `protobuf:"bytes,1,opt,name=root_cluster_uri,json=rootClusterUri,proto3" json:"root_cluster_uri,omitempty"` -} - -func (x *PromptHardwareKeyPINChangeRequest) Reset() { - *x = PromptHardwareKeyPINChangeRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[16] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *PromptHardwareKeyPINChangeRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*PromptHardwareKeyPINChangeRequest) ProtoMessage() {} - -func (x *PromptHardwareKeyPINChangeRequest) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[16] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use PromptHardwareKeyPINChangeRequest.ProtoReflect.Descriptor instead. -func (*PromptHardwareKeyPINChangeRequest) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{16} -} - -func (x *PromptHardwareKeyPINChangeRequest) GetRootClusterUri() string { - if x != nil { - return x.RootClusterUri - } - return "" -} - -// Response for PromptHardwareKeyPINChange. -type PromptHardwareKeyPINChangeResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // New pin set by the user. - Pin string `protobuf:"bytes,1,opt,name=pin,proto3" json:"pin,omitempty"` - // PUK is needed to change the PIN. - // This is a new PUK if it has not been changed from the default PUK. - Puk string `protobuf:"bytes,2,opt,name=puk,proto3" json:"puk,omitempty"` - // puk_changed is true if the user changed the default PUK. - PukChanged bool `protobuf:"varint,3,opt,name=puk_changed,json=pukChanged,proto3" json:"puk_changed,omitempty"` -} - -func (x *PromptHardwareKeyPINChangeResponse) Reset() { - *x = PromptHardwareKeyPINChangeResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[17] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *PromptHardwareKeyPINChangeResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*PromptHardwareKeyPINChangeResponse) ProtoMessage() {} - -func (x *PromptHardwareKeyPINChangeResponse) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[17] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use PromptHardwareKeyPINChangeResponse.ProtoReflect.Descriptor instead. -func (*PromptHardwareKeyPINChangeResponse) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{17} -} - -func (x *PromptHardwareKeyPINChangeResponse) GetPin() string { - if x != nil { - return x.Pin - } - return "" -} - -func (x *PromptHardwareKeyPINChangeResponse) GetPuk() string { - if x != nil { - return x.Puk - } - return "" -} - -func (x *PromptHardwareKeyPINChangeResponse) GetPukChanged() bool { - if x != nil { - return x.PukChanged - } - return false -} - -// Request for ConfirmHardwareKeySlotOverwrite. -type ConfirmHardwareKeySlotOverwriteRequest struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - RootClusterUri string `protobuf:"bytes,1,opt,name=root_cluster_uri,json=rootClusterUri,proto3" json:"root_cluster_uri,omitempty"` - // Message to display in the prompt. - Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"` -} - -func (x *ConfirmHardwareKeySlotOverwriteRequest) Reset() { - *x = ConfirmHardwareKeySlotOverwriteRequest{} - if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[18] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ConfirmHardwareKeySlotOverwriteRequest) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ConfirmHardwareKeySlotOverwriteRequest) ProtoMessage() {} - -func (x *ConfirmHardwareKeySlotOverwriteRequest) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[18] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ConfirmHardwareKeySlotOverwriteRequest.ProtoReflect.Descriptor instead. -func (*ConfirmHardwareKeySlotOverwriteRequest) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{18} -} - -func (x *ConfirmHardwareKeySlotOverwriteRequest) GetRootClusterUri() string { - if x != nil { - return x.RootClusterUri - } - return "" -} - -func (x *ConfirmHardwareKeySlotOverwriteRequest) GetMessage() string { - if x != nil { - return x.Message - } - return "" -} - -// Response for ConfirmHardwareKeySlotOverwrite. -type ConfirmHardwareKeySlotOverwriteResponse struct { - state protoimpl.MessageState - sizeCache protoimpl.SizeCache - unknownFields protoimpl.UnknownFields - - // If true, the slot will be overridden. - Confirmed bool `protobuf:"varint,1,opt,name=confirmed,proto3" json:"confirmed,omitempty"` -} - -func (x *ConfirmHardwareKeySlotOverwriteResponse) Reset() { - *x = ConfirmHardwareKeySlotOverwriteResponse{} - if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[19] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) - } -} - -func (x *ConfirmHardwareKeySlotOverwriteResponse) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*ConfirmHardwareKeySlotOverwriteResponse) ProtoMessage() {} - -func (x *ConfirmHardwareKeySlotOverwriteResponse) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[19] - if protoimpl.UnsafeEnabled && x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use ConfirmHardwareKeySlotOverwriteResponse.ProtoReflect.Descriptor instead. -func (*ConfirmHardwareKeySlotOverwriteResponse) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{19} -} - -func (x *ConfirmHardwareKeySlotOverwriteResponse) GetConfirmed() bool { - if x != nil { - return x.Confirmed - } - return false -} - // Request for GetUsageReportingSettings. type GetUsageReportingSettingsRequest struct { state protoimpl.MessageState @@ -1191,7 +776,7 @@ type GetUsageReportingSettingsRequest struct { func (x *GetUsageReportingSettingsRequest) Reset() { *x = GetUsageReportingSettingsRequest{} if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[20] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1204,7 +789,7 @@ func (x *GetUsageReportingSettingsRequest) String() string { func (*GetUsageReportingSettingsRequest) ProtoMessage() {} func (x *GetUsageReportingSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[20] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[12] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1217,7 +802,7 @@ func (x *GetUsageReportingSettingsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetUsageReportingSettingsRequest.ProtoReflect.Descriptor instead. func (*GetUsageReportingSettingsRequest) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{20} + return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{12} } // Response for GetUsageReportingSettings. @@ -1232,7 +817,7 @@ type GetUsageReportingSettingsResponse struct { func (x *GetUsageReportingSettingsResponse) Reset() { *x = GetUsageReportingSettingsResponse{} if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[21] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1245,7 +830,7 @@ func (x *GetUsageReportingSettingsResponse) String() string { func (*GetUsageReportingSettingsResponse) ProtoMessage() {} func (x *GetUsageReportingSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[21] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[13] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1258,7 +843,7 @@ func (x *GetUsageReportingSettingsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use GetUsageReportingSettingsResponse.ProtoReflect.Descriptor instead. func (*GetUsageReportingSettingsResponse) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{21} + return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{13} } func (x *GetUsageReportingSettingsResponse) GetUsageReportingSettings() *UsageReportingSettings { @@ -1281,7 +866,7 @@ type UsageReportingSettings struct { func (x *UsageReportingSettings) Reset() { *x = UsageReportingSettings{} if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[22] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1294,7 +879,7 @@ func (x *UsageReportingSettings) String() string { func (*UsageReportingSettings) ProtoMessage() {} func (x *UsageReportingSettings) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[22] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[14] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1307,7 +892,7 @@ func (x *UsageReportingSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use UsageReportingSettings.ProtoReflect.Descriptor instead. func (*UsageReportingSettings) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{22} + return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{14} } func (x *UsageReportingSettings) GetEnabled() bool { @@ -1331,7 +916,7 @@ type ReportUnexpectedVnetShutdownRequest struct { func (x *ReportUnexpectedVnetShutdownRequest) Reset() { *x = ReportUnexpectedVnetShutdownRequest{} if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[23] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1344,7 +929,7 @@ func (x *ReportUnexpectedVnetShutdownRequest) String() string { func (*ReportUnexpectedVnetShutdownRequest) ProtoMessage() {} func (x *ReportUnexpectedVnetShutdownRequest) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[23] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[15] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1357,7 +942,7 @@ func (x *ReportUnexpectedVnetShutdownRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use ReportUnexpectedVnetShutdownRequest.ProtoReflect.Descriptor instead. func (*ReportUnexpectedVnetShutdownRequest) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{23} + return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{15} } func (x *ReportUnexpectedVnetShutdownRequest) GetError() string { @@ -1377,7 +962,7 @@ type ReportUnexpectedVnetShutdownResponse struct { func (x *ReportUnexpectedVnetShutdownResponse) Reset() { *x = ReportUnexpectedVnetShutdownResponse{} if protoimpl.UnsafeEnabled { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[24] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1390,7 +975,7 @@ func (x *ReportUnexpectedVnetShutdownResponse) String() string { func (*ReportUnexpectedVnetShutdownResponse) ProtoMessage() {} func (x *ReportUnexpectedVnetShutdownResponse) ProtoReflect() protoreflect.Message { - mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[24] + mi := &file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[16] if protoimpl.UnsafeEnabled && x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1403,7 +988,7 @@ func (x *ReportUnexpectedVnetShutdownResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use ReportUnexpectedVnetShutdownResponse.ProtoReflect.Descriptor instead. func (*ReportUnexpectedVnetShutdownResponse) Descriptor() ([]byte, []int) { - return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{24} + return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP(), []int{16} } var File_teleport_lib_teleterm_v1_tshd_events_service_proto protoreflect.FileDescriptor @@ -1505,163 +1090,85 @@ var file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDesc = []byte{ 0x5f, 0x75, 0x72, 0x69, 0x22, 0x30, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x46, 0x41, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x74, 0x6f, 0x74, 0x70, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x6f, - 0x74, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x6a, 0x0a, 0x1b, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, - 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x72, 0x6f, 0x6f, 0x74, 0x5f, 0x63, 0x6c, - 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0e, 0x72, 0x6f, 0x6f, 0x74, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x55, 0x72, 0x69, 0x12, - 0x21, 0x0a, 0x0c, 0x70, 0x69, 0x6e, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x70, 0x69, 0x6e, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, - 0x61, 0x6c, 0x22, 0x30, 0x0a, 0x1c, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, - 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x03, 0x70, 0x69, 0x6e, 0x22, 0x49, 0x0a, 0x1d, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, - 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x75, 0x63, 0x68, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x72, 0x6f, 0x6f, 0x74, 0x5f, 0x63, 0x6c, - 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0e, 0x72, 0x6f, 0x6f, 0x74, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x55, 0x72, 0x69, 0x22, - 0x20, 0x0a, 0x1e, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, - 0x65, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x75, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x22, 0x4d, 0x0a, 0x21, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, - 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x72, 0x6f, 0x6f, 0x74, 0x5f, 0x63, - 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x0e, 0x72, 0x6f, 0x6f, 0x74, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x55, 0x72, 0x69, - 0x22, 0x69, 0x0a, 0x22, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, - 0x72, 0x65, 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x6e, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x75, 0x6b, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x75, 0x6b, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x75, - 0x6b, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, - 0x0a, 0x70, 0x75, 0x6b, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x22, 0x6c, 0x0a, 0x26, 0x43, - 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, - 0x79, 0x53, 0x6c, 0x6f, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x77, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65, - 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x28, 0x0a, 0x10, 0x72, 0x6f, 0x6f, 0x74, 0x5f, 0x63, 0x6c, - 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x75, 0x72, 0x69, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0e, 0x72, 0x6f, 0x6f, 0x74, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x55, 0x72, 0x69, 0x12, - 0x18, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x52, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x22, 0x47, 0x0a, 0x27, 0x43, 0x6f, 0x6e, - 0x66, 0x69, 0x72, 0x6d, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x53, - 0x6c, 0x6f, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x77, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x65, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, - 0x65, 0x64, 0x22, 0x22, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, - 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x8f, 0x01, 0x0a, 0x21, 0x47, 0x65, 0x74, 0x55, 0x73, + 0x74, 0x70, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x22, 0x0a, 0x20, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, + 0x67, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x22, 0x8f, 0x01, 0x0a, 0x21, 0x47, + 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, + 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x12, 0x6a, 0x0a, 0x18, 0x75, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, + 0x69, 0x6e, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x30, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, + 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x6a, 0x0a, 0x18, - 0x75, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, - 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x30, - 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, - 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, - 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, - 0x52, 0x16, 0x75, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, - 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x22, 0x32, 0x0a, 0x16, 0x55, 0x73, 0x61, 0x67, - 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, - 0x67, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x22, 0x3b, 0x0a, 0x23, - 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x6e, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, - 0x56, 0x6e, 0x65, 0x74, 0x53, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x26, 0x0a, 0x24, 0x52, 0x65, 0x70, - 0x6f, 0x72, 0x74, 0x55, 0x6e, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x6e, 0x65, - 0x74, 0x53, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x32, 0x93, 0x0b, 0x0a, 0x11, 0x54, 0x73, 0x68, 0x64, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x73, - 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5e, 0x0a, 0x07, 0x52, 0x65, 0x6c, 0x6f, 0x67, - 0x69, 0x6e, 0x12, 0x28, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, - 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, - 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x74, - 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, - 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x79, 0x0a, 0x10, 0x53, 0x65, 0x6e, 0x64, 0x4e, - 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x31, 0x2e, 0x74, 0x65, - 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, - 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x69, 0x66, - 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, - 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, - 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, 0x6f, - 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, - 0x73, 0x65, 0x12, 0xac, 0x01, 0x0a, 0x21, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x6e, 0x64, 0x69, - 0x6e, 0x67, 0x48, 0x65, 0x61, 0x64, 0x6c, 0x65, 0x73, 0x73, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, - 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, - 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, - 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x48, - 0x65, 0x61, 0x64, 0x6c, 0x65, 0x73, 0x73, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x43, 0x2e, 0x74, + 0x69, 0x6e, 0x67, 0x73, 0x52, 0x16, 0x75, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, + 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x22, 0x32, 0x0a, 0x16, + 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, + 0x22, 0x3b, 0x0a, 0x23, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x6e, 0x65, 0x78, 0x70, 0x65, + 0x63, 0x74, 0x65, 0x64, 0x56, 0x6e, 0x65, 0x74, 0x53, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, + 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x22, 0x26, 0x0a, + 0x24, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x6e, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, + 0x64, 0x56, 0x6e, 0x65, 0x74, 0x53, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x32, 0xba, 0x06, 0x0a, 0x11, 0x54, 0x73, 0x68, 0x64, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x5e, 0x0a, 0x07, 0x52, + 0x65, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x28, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, + 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, + 0x31, 0x2e, 0x52, 0x65, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x29, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, + 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6c, 0x6f, + 0x67, 0x69, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x79, 0x0a, 0x10, 0x53, + 0x65, 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, + 0x31, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, + 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x4e, + 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, + 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, + 0x6e, 0x64, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0xac, 0x01, 0x0a, 0x21, 0x53, 0x65, 0x6e, 0x64, 0x50, + 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x48, 0x65, 0x61, 0x64, 0x6c, 0x65, 0x73, 0x73, 0x41, 0x75, + 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x42, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x48, 0x65, 0x61, 0x64, 0x6c, 0x65, 0x73, 0x73, 0x41, 0x75, 0x74, 0x68, 0x65, - 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x12, 0x64, 0x0a, 0x09, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x46, 0x41, 0x12, 0x2a, + 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, + 0x1a, 0x43, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, + 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x6e, 0x64, + 0x50, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x48, 0x65, 0x61, 0x64, 0x6c, 0x65, 0x73, 0x73, 0x41, + 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, + 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x64, 0x0a, 0x09, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, + 0x46, 0x41, 0x12, 0x2a, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, + 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, + 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x46, 0x41, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, - 0x4d, 0x46, 0x41, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x74, 0x65, 0x6c, - 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, - 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x4d, 0x46, 0x41, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x85, 0x01, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6d, - 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, - 0x12, 0x35, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, - 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6d, - 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x36, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, - 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, - 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, - 0x65, 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, - 0x8b, 0x01, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, - 0x72, 0x65, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x75, 0x63, 0x68, 0x12, 0x37, 0x2e, 0x74, 0x65, 0x6c, - 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, - 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, - 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x54, 0x6f, 0x75, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, - 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, - 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, - 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, - 0x54, 0x6f, 0x75, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x97, 0x01, - 0x0a, 0x1a, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, - 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x3b, 0x2e, 0x74, - 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, - 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, - 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, 0x43, 0x68, 0x61, 0x6e, - 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3c, 0x2e, 0x74, 0x65, 0x6c, 0x65, + 0x4d, 0x46, 0x41, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x94, 0x01, 0x0a, 0x19, + 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, + 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, - 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x48, 0x61, 0x72, 0x64, 0x77, - 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x50, 0x49, 0x4e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0xa6, 0x01, 0x0a, 0x1f, 0x43, 0x6f, 0x6e, 0x66, - 0x69, 0x72, 0x6d, 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x53, 0x6c, - 0x6f, 0x74, 0x4f, 0x76, 0x65, 0x72, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x40, 0x2e, 0x74, 0x65, - 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, - 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, 0x48, 0x61, - 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x53, 0x6c, 0x6f, 0x74, 0x4f, 0x76, 0x65, - 0x72, 0x77, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x41, 0x2e, - 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, - 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x72, 0x6d, - 0x48, 0x61, 0x72, 0x64, 0x77, 0x61, 0x72, 0x65, 0x4b, 0x65, 0x79, 0x53, 0x6c, 0x6f, 0x74, 0x4f, - 0x76, 0x65, 0x72, 0x77, 0x72, 0x69, 0x74, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x12, 0x94, 0x01, 0x0a, 0x19, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, - 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x3a, - 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, - 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, - 0x67, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x74, 0x65, 0x6c, - 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, - 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, - 0x70, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x9d, 0x01, 0x0a, 0x1c, 0x52, 0x65, 0x70, 0x6f, - 0x72, 0x74, 0x55, 0x6e, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x6e, 0x65, 0x74, - 0x53, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x12, 0x3d, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, - 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, - 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x6e, 0x65, 0x78, 0x70, 0x65, - 0x63, 0x74, 0x65, 0x64, 0x56, 0x6e, 0x65, 0x74, 0x53, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, - 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, - 0x72, 0x74, 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, - 0x76, 0x31, 0x2e, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x6e, 0x65, 0x78, 0x70, 0x65, 0x63, - 0x74, 0x65, 0x64, 0x56, 0x6e, 0x65, 0x74, 0x53, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x54, 0x5a, 0x52, 0x67, 0x69, 0x74, 0x68, 0x75, - 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x67, 0x72, 0x61, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x61, 0x6c, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x67, 0x65, 0x6e, - 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, - 0x72, 0x74, 0x2f, 0x6c, 0x69, 0x62, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2f, - 0x76, 0x31, 0x3b, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x76, 0x31, 0x62, 0x06, 0x70, - 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, + 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, + 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, + 0x2e, 0x6c, 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, + 0x2e, 0x47, 0x65, 0x74, 0x55, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x69, + 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x12, 0x9d, 0x01, 0x0a, 0x1c, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x6e, 0x65, + 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x6e, 0x65, 0x74, 0x53, 0x68, 0x75, 0x74, 0x64, + 0x6f, 0x77, 0x6e, 0x12, 0x3d, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, + 0x69, 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x52, + 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x6e, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, + 0x6e, 0x65, 0x74, 0x53, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, + 0x73, 0x74, 0x1a, 0x3e, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2e, 0x6c, 0x69, + 0x62, 0x2e, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, + 0x70, 0x6f, 0x72, 0x74, 0x55, 0x6e, 0x65, 0x78, 0x70, 0x65, 0x63, 0x74, 0x65, 0x64, 0x56, 0x6e, + 0x65, 0x74, 0x53, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x42, 0x54, 0x5a, 0x52, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, + 0x2f, 0x67, 0x72, 0x61, 0x76, 0x69, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x2f, 0x74, + 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x67, 0x65, 0x6e, 0x2f, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x2f, 0x67, 0x6f, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x6c, 0x69, + 0x62, 0x2f, 0x74, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x2f, 0x76, 0x31, 0x3b, 0x74, 0x65, + 0x6c, 0x65, 0x74, 0x65, 0x72, 0x6d, 0x76, 0x31, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, } var ( @@ -1676,8 +1183,8 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescGZIP() []byt return file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDescData } -var file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes = make([]protoimpl.MessageInfo, 25) -var file_teleport_lib_teleterm_v1_tshd_events_service_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes = make([]protoimpl.MessageInfo, 17) +var file_teleport_lib_teleterm_v1_tshd_events_service_proto_goTypes = []any{ (*ReloginRequest)(nil), // 0: teleport.lib.teleterm.v1.ReloginRequest (*GatewayCertExpired)(nil), // 1: teleport.lib.teleterm.v1.GatewayCertExpired (*VnetCertExpired)(nil), // 2: teleport.lib.teleterm.v1.VnetCertExpired @@ -1690,48 +1197,32 @@ var file_teleport_lib_teleterm_v1_tshd_events_service_proto_goTypes = []interfac (*SendPendingHeadlessAuthenticationResponse)(nil), // 9: teleport.lib.teleterm.v1.SendPendingHeadlessAuthenticationResponse (*PromptMFARequest)(nil), // 10: teleport.lib.teleterm.v1.PromptMFARequest (*PromptMFAResponse)(nil), // 11: teleport.lib.teleterm.v1.PromptMFAResponse - (*PromptHardwareKeyPINRequest)(nil), // 12: teleport.lib.teleterm.v1.PromptHardwareKeyPINRequest - (*PromptHardwareKeyPINResponse)(nil), // 13: teleport.lib.teleterm.v1.PromptHardwareKeyPINResponse - (*PromptHardwareKeyTouchRequest)(nil), // 14: teleport.lib.teleterm.v1.PromptHardwareKeyTouchRequest - (*PromptHardwareKeyTouchResponse)(nil), // 15: teleport.lib.teleterm.v1.PromptHardwareKeyTouchResponse - (*PromptHardwareKeyPINChangeRequest)(nil), // 16: teleport.lib.teleterm.v1.PromptHardwareKeyPINChangeRequest - (*PromptHardwareKeyPINChangeResponse)(nil), // 17: teleport.lib.teleterm.v1.PromptHardwareKeyPINChangeResponse - (*ConfirmHardwareKeySlotOverwriteRequest)(nil), // 18: teleport.lib.teleterm.v1.ConfirmHardwareKeySlotOverwriteRequest - (*ConfirmHardwareKeySlotOverwriteResponse)(nil), // 19: teleport.lib.teleterm.v1.ConfirmHardwareKeySlotOverwriteResponse - (*GetUsageReportingSettingsRequest)(nil), // 20: teleport.lib.teleterm.v1.GetUsageReportingSettingsRequest - (*GetUsageReportingSettingsResponse)(nil), // 21: teleport.lib.teleterm.v1.GetUsageReportingSettingsResponse - (*UsageReportingSettings)(nil), // 22: teleport.lib.teleterm.v1.UsageReportingSettings - (*ReportUnexpectedVnetShutdownRequest)(nil), // 23: teleport.lib.teleterm.v1.ReportUnexpectedVnetShutdownRequest - (*ReportUnexpectedVnetShutdownResponse)(nil), // 24: teleport.lib.teleterm.v1.ReportUnexpectedVnetShutdownResponse + (*GetUsageReportingSettingsRequest)(nil), // 12: teleport.lib.teleterm.v1.GetUsageReportingSettingsRequest + (*GetUsageReportingSettingsResponse)(nil), // 13: teleport.lib.teleterm.v1.GetUsageReportingSettingsResponse + (*UsageReportingSettings)(nil), // 14: teleport.lib.teleterm.v1.UsageReportingSettings + (*ReportUnexpectedVnetShutdownRequest)(nil), // 15: teleport.lib.teleterm.v1.ReportUnexpectedVnetShutdownRequest + (*ReportUnexpectedVnetShutdownResponse)(nil), // 16: teleport.lib.teleterm.v1.ReportUnexpectedVnetShutdownResponse } var file_teleport_lib_teleterm_v1_tshd_events_service_proto_depIdxs = []int32{ 1, // 0: teleport.lib.teleterm.v1.ReloginRequest.gateway_cert_expired:type_name -> teleport.lib.teleterm.v1.GatewayCertExpired 2, // 1: teleport.lib.teleterm.v1.ReloginRequest.vnet_cert_expired:type_name -> teleport.lib.teleterm.v1.VnetCertExpired 5, // 2: teleport.lib.teleterm.v1.SendNotificationRequest.cannot_proxy_gateway_connection:type_name -> teleport.lib.teleterm.v1.CannotProxyGatewayConnection 6, // 3: teleport.lib.teleterm.v1.SendNotificationRequest.cannot_proxy_vnet_connection:type_name -> teleport.lib.teleterm.v1.CannotProxyVnetConnection - 22, // 4: teleport.lib.teleterm.v1.GetUsageReportingSettingsResponse.usage_reporting_settings:type_name -> teleport.lib.teleterm.v1.UsageReportingSettings + 14, // 4: teleport.lib.teleterm.v1.GetUsageReportingSettingsResponse.usage_reporting_settings:type_name -> teleport.lib.teleterm.v1.UsageReportingSettings 0, // 5: teleport.lib.teleterm.v1.TshdEventsService.Relogin:input_type -> teleport.lib.teleterm.v1.ReloginRequest 4, // 6: teleport.lib.teleterm.v1.TshdEventsService.SendNotification:input_type -> teleport.lib.teleterm.v1.SendNotificationRequest 8, // 7: teleport.lib.teleterm.v1.TshdEventsService.SendPendingHeadlessAuthentication:input_type -> teleport.lib.teleterm.v1.SendPendingHeadlessAuthenticationRequest 10, // 8: teleport.lib.teleterm.v1.TshdEventsService.PromptMFA:input_type -> teleport.lib.teleterm.v1.PromptMFARequest - 12, // 9: teleport.lib.teleterm.v1.TshdEventsService.PromptHardwareKeyPIN:input_type -> teleport.lib.teleterm.v1.PromptHardwareKeyPINRequest - 14, // 10: teleport.lib.teleterm.v1.TshdEventsService.PromptHardwareKeyTouch:input_type -> teleport.lib.teleterm.v1.PromptHardwareKeyTouchRequest - 16, // 11: teleport.lib.teleterm.v1.TshdEventsService.PromptHardwareKeyPINChange:input_type -> teleport.lib.teleterm.v1.PromptHardwareKeyPINChangeRequest - 18, // 12: teleport.lib.teleterm.v1.TshdEventsService.ConfirmHardwareKeySlotOverwrite:input_type -> teleport.lib.teleterm.v1.ConfirmHardwareKeySlotOverwriteRequest - 20, // 13: teleport.lib.teleterm.v1.TshdEventsService.GetUsageReportingSettings:input_type -> teleport.lib.teleterm.v1.GetUsageReportingSettingsRequest - 23, // 14: teleport.lib.teleterm.v1.TshdEventsService.ReportUnexpectedVnetShutdown:input_type -> teleport.lib.teleterm.v1.ReportUnexpectedVnetShutdownRequest - 3, // 15: teleport.lib.teleterm.v1.TshdEventsService.Relogin:output_type -> teleport.lib.teleterm.v1.ReloginResponse - 7, // 16: teleport.lib.teleterm.v1.TshdEventsService.SendNotification:output_type -> teleport.lib.teleterm.v1.SendNotificationResponse - 9, // 17: teleport.lib.teleterm.v1.TshdEventsService.SendPendingHeadlessAuthentication:output_type -> teleport.lib.teleterm.v1.SendPendingHeadlessAuthenticationResponse - 11, // 18: teleport.lib.teleterm.v1.TshdEventsService.PromptMFA:output_type -> teleport.lib.teleterm.v1.PromptMFAResponse - 13, // 19: teleport.lib.teleterm.v1.TshdEventsService.PromptHardwareKeyPIN:output_type -> teleport.lib.teleterm.v1.PromptHardwareKeyPINResponse - 15, // 20: teleport.lib.teleterm.v1.TshdEventsService.PromptHardwareKeyTouch:output_type -> teleport.lib.teleterm.v1.PromptHardwareKeyTouchResponse - 17, // 21: teleport.lib.teleterm.v1.TshdEventsService.PromptHardwareKeyPINChange:output_type -> teleport.lib.teleterm.v1.PromptHardwareKeyPINChangeResponse - 19, // 22: teleport.lib.teleterm.v1.TshdEventsService.ConfirmHardwareKeySlotOverwrite:output_type -> teleport.lib.teleterm.v1.ConfirmHardwareKeySlotOverwriteResponse - 21, // 23: teleport.lib.teleterm.v1.TshdEventsService.GetUsageReportingSettings:output_type -> teleport.lib.teleterm.v1.GetUsageReportingSettingsResponse - 24, // 24: teleport.lib.teleterm.v1.TshdEventsService.ReportUnexpectedVnetShutdown:output_type -> teleport.lib.teleterm.v1.ReportUnexpectedVnetShutdownResponse - 15, // [15:25] is the sub-list for method output_type - 5, // [5:15] is the sub-list for method input_type + 12, // 9: teleport.lib.teleterm.v1.TshdEventsService.GetUsageReportingSettings:input_type -> teleport.lib.teleterm.v1.GetUsageReportingSettingsRequest + 15, // 10: teleport.lib.teleterm.v1.TshdEventsService.ReportUnexpectedVnetShutdown:input_type -> teleport.lib.teleterm.v1.ReportUnexpectedVnetShutdownRequest + 3, // 11: teleport.lib.teleterm.v1.TshdEventsService.Relogin:output_type -> teleport.lib.teleterm.v1.ReloginResponse + 7, // 12: teleport.lib.teleterm.v1.TshdEventsService.SendNotification:output_type -> teleport.lib.teleterm.v1.SendNotificationResponse + 9, // 13: teleport.lib.teleterm.v1.TshdEventsService.SendPendingHeadlessAuthentication:output_type -> teleport.lib.teleterm.v1.SendPendingHeadlessAuthenticationResponse + 11, // 14: teleport.lib.teleterm.v1.TshdEventsService.PromptMFA:output_type -> teleport.lib.teleterm.v1.PromptMFAResponse + 13, // 15: teleport.lib.teleterm.v1.TshdEventsService.GetUsageReportingSettings:output_type -> teleport.lib.teleterm.v1.GetUsageReportingSettingsResponse + 16, // 16: teleport.lib.teleterm.v1.TshdEventsService.ReportUnexpectedVnetShutdown:output_type -> teleport.lib.teleterm.v1.ReportUnexpectedVnetShutdownResponse + 11, // [11:17] is the sub-list for method output_type + 5, // [5:11] is the sub-list for method input_type 5, // [5:5] is the sub-list for extension type_name 5, // [5:5] is the sub-list for extension extendee 0, // [0:5] is the sub-list for field type_name @@ -1743,7 +1234,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ReloginRequest); i { case 0: return &v.state @@ -1755,7 +1246,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*GatewayCertExpired); i { case 0: return &v.state @@ -1767,7 +1258,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*VnetCertExpired); i { case 0: return &v.state @@ -1779,7 +1270,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*ReloginResponse); i { case 0: return &v.state @@ -1791,7 +1282,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*SendNotificationRequest); i { case 0: return &v.state @@ -1803,7 +1294,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*CannotProxyGatewayConnection); i { case 0: return &v.state @@ -1815,7 +1306,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*CannotProxyVnetConnection); i { case 0: return &v.state @@ -1827,7 +1318,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*SendNotificationResponse); i { case 0: return &v.state @@ -1839,7 +1330,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[8].Exporter = func(v any, i int) any { switch v := v.(*SendPendingHeadlessAuthenticationRequest); i { case 0: return &v.state @@ -1851,7 +1342,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[9].Exporter = func(v any, i int) any { switch v := v.(*SendPendingHeadlessAuthenticationResponse); i { case 0: return &v.state @@ -1863,7 +1354,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[10].Exporter = func(v any, i int) any { switch v := v.(*PromptMFARequest); i { case 0: return &v.state @@ -1875,7 +1366,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[11].Exporter = func(v any, i int) any { switch v := v.(*PromptMFAResponse); i { case 0: return &v.state @@ -1887,103 +1378,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PromptHardwareKeyPINRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PromptHardwareKeyPINResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PromptHardwareKeyTouchRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PromptHardwareKeyTouchResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PromptHardwareKeyPINChangeRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*PromptHardwareKeyPINChangeResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfirmHardwareKeySlotOverwriteRequest); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} { - switch v := v.(*ConfirmHardwareKeySlotOverwriteResponse); i { - case 0: - return &v.state - case 1: - return &v.sizeCache - case 2: - return &v.unknownFields - default: - return nil - } - } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[12].Exporter = func(v any, i int) any { switch v := v.(*GetUsageReportingSettingsRequest); i { case 0: return &v.state @@ -1995,7 +1390,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[13].Exporter = func(v any, i int) any { switch v := v.(*GetUsageReportingSettingsResponse); i { case 0: return &v.state @@ -2007,7 +1402,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[14].Exporter = func(v any, i int) any { switch v := v.(*UsageReportingSettings); i { case 0: return &v.state @@ -2019,7 +1414,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[15].Exporter = func(v any, i int) any { switch v := v.(*ReportUnexpectedVnetShutdownRequest); i { case 0: return &v.state @@ -2031,7 +1426,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { return nil } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[16].Exporter = func(v any, i int) any { switch v := v.(*ReportUnexpectedVnetShutdownResponse); i { case 0: return &v.state @@ -2044,11 +1439,11 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { } } } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[0].OneofWrappers = []interface{}{ + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[0].OneofWrappers = []any{ (*ReloginRequest_GatewayCertExpired)(nil), (*ReloginRequest_VnetCertExpired)(nil), } - file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[4].OneofWrappers = []interface{}{ + file_teleport_lib_teleterm_v1_tshd_events_service_proto_msgTypes[4].OneofWrappers = []any{ (*SendNotificationRequest_CannotProxyGatewayConnection)(nil), (*SendNotificationRequest_CannotProxyVnetConnection)(nil), } @@ -2058,7 +1453,7 @@ func file_teleport_lib_teleterm_v1_tshd_events_service_proto_init() { GoPackagePath: reflect.TypeOf(x{}).PkgPath(), RawDescriptor: file_teleport_lib_teleterm_v1_tshd_events_service_proto_rawDesc, NumEnums: 0, - NumMessages: 25, + NumMessages: 17, NumExtensions: 0, NumServices: 1, }, diff --git a/gen/proto/go/teleport/lib/teleterm/v1/usage_events.pb.go b/gen/proto/go/teleport/lib/teleterm/v1/usage_events.pb.go index aac8bdf9ee58b..a31b2d9bc1375 100644 --- a/gen/proto/go/teleport/lib/teleterm/v1/usage_events.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/v1/usage_events.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/v1/usage_events.proto @@ -133,7 +133,7 @@ func file_teleport_lib_teleterm_v1_usage_events_proto_rawDescGZIP() []byte { } var file_teleport_lib_teleterm_v1_usage_events_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_teleport_lib_teleterm_v1_usage_events_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_v1_usage_events_proto_goTypes = []any{ (*ReportUsageEventRequest)(nil), // 0: teleport.lib.teleterm.v1.ReportUsageEventRequest (*v1alpha.SubmitConnectEventRequest)(nil), // 1: prehog.v1alpha.SubmitConnectEventRequest } @@ -152,7 +152,7 @@ func file_teleport_lib_teleterm_v1_usage_events_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_v1_usage_events_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_v1_usage_events_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*ReportUsageEventRequest); i { case 0: return &v.state diff --git a/gen/proto/go/teleport/lib/teleterm/vnet/v1/vnet_service.pb.go b/gen/proto/go/teleport/lib/teleterm/vnet/v1/vnet_service.pb.go index c7992b01c7f86..bde703253407f 100644 --- a/gen/proto/go/teleport/lib/teleterm/vnet/v1/vnet_service.pb.go +++ b/gen/proto/go/teleport/lib/teleterm/vnet/v1/vnet_service.pb.go @@ -16,7 +16,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/teleterm/vnet/v1/vnet_service.proto @@ -525,7 +525,7 @@ func file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_rawDescGZIP() []byte var file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) var file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_goTypes = []interface{}{ +var file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_goTypes = []any{ (BackgroundItemStatus)(0), // 0: teleport.lib.teleterm.vnet.v1.BackgroundItemStatus (*StartRequest)(nil), // 1: teleport.lib.teleterm.vnet.v1.StartRequest (*StartResponse)(nil), // 2: teleport.lib.teleterm.vnet.v1.StartResponse @@ -559,7 +559,7 @@ func file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*StartRequest); i { case 0: return &v.state @@ -571,7 +571,7 @@ func file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_init() { return nil } } - file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*StartResponse); i { case 0: return &v.state @@ -583,7 +583,7 @@ func file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_init() { return nil } } - file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[2].Exporter = func(v any, i int) any { switch v := v.(*StopRequest); i { case 0: return &v.state @@ -595,7 +595,7 @@ func file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_init() { return nil } } - file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[3].Exporter = func(v any, i int) any { switch v := v.(*StopResponse); i { case 0: return &v.state @@ -607,7 +607,7 @@ func file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_init() { return nil } } - file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[4].Exporter = func(v any, i int) any { switch v := v.(*ListDNSZonesRequest); i { case 0: return &v.state @@ -619,7 +619,7 @@ func file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_init() { return nil } } - file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[5].Exporter = func(v any, i int) any { switch v := v.(*ListDNSZonesResponse); i { case 0: return &v.state @@ -631,7 +631,7 @@ func file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_init() { return nil } } - file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[6].Exporter = func(v any, i int) any { switch v := v.(*GetBackgroundItemStatusRequest); i { case 0: return &v.state @@ -643,7 +643,7 @@ func file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_init() { return nil } } - file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_teleterm_vnet_v1_vnet_service_proto_msgTypes[7].Exporter = func(v any, i int) any { switch v := v.(*GetBackgroundItemStatusResponse); i { case 0: return &v.state diff --git a/gen/proto/ts/prehog/v1alpha/teleport_pb.ts b/gen/proto/ts/prehog/v1alpha/teleport_pb.ts index 5b089b63528df..c0ffc0e3c8f11 100644 --- a/gen/proto/ts/prehog/v1alpha/teleport_pb.ts +++ b/gen/proto/ts/prehog/v1alpha/teleport_pb.ts @@ -2635,6 +2635,16 @@ export interface SubmitEventRequest { * @generated from protobuf field: google.protobuf.Timestamp timestamp = 2; */ timestamp?: Timestamp; + /** + * teleport_version is the version of the Teleport auth server that submitted + * the event, without the "v" prefix. + * For example: 16.4.7 + * + * PostHog property: tp.teleport_version + * + * @generated from protobuf field: string teleport_version = 95; + */ + teleportVersion: string; /** * @generated from protobuf oneof: event */ @@ -9871,6 +9881,7 @@ class SubmitEventRequest$Type extends MessageType { super("prehog.v1alpha.SubmitEventRequest", [ { no: 1, name: "cluster_name", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 2, name: "timestamp", kind: "message", T: () => Timestamp }, + { no: 95, name: "teleport_version", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 3, name: "user_login", kind: "message", oneof: "event", T: () => UserLoginEvent }, { no: 4, name: "sso_create", kind: "message", oneof: "event", T: () => SSOCreateEvent }, { no: 5, name: "resource_create", kind: "message", oneof: "event", T: () => ResourceCreateEvent }, @@ -9967,6 +9978,7 @@ class SubmitEventRequest$Type extends MessageType { create(value?: PartialMessage): SubmitEventRequest { const message = globalThis.Object.create((this.messagePrototype!)); message.clusterName = ""; + message.teleportVersion = ""; message.event = { oneofKind: undefined }; if (value !== undefined) reflectionMergePartial(this, message, value); @@ -9983,6 +9995,9 @@ class SubmitEventRequest$Type extends MessageType { case /* google.protobuf.Timestamp timestamp */ 2: message.timestamp = Timestamp.internalBinaryRead(reader, reader.uint32(), options, message.timestamp); break; + case /* string teleport_version */ 95: + message.teleportVersion = reader.string(); + break; case /* prehog.v1alpha.UserLoginEvent user_login */ 3: message.event = { oneofKind: "userLogin", @@ -10547,6 +10562,9 @@ class SubmitEventRequest$Type extends MessageType { /* google.protobuf.Timestamp timestamp = 2; */ if (message.timestamp) Timestamp.internalBinaryWrite(message.timestamp, writer.tag(2, WireType.LengthDelimited).fork(), options).join(); + /* string teleport_version = 95; */ + if (message.teleportVersion !== "") + writer.tag(95, WireType.LengthDelimited).string(message.teleportVersion); /* prehog.v1alpha.UserLoginEvent user_login = 3; */ if (message.event.oneofKind === "userLogin") UserLoginEvent.internalBinaryWrite(message.event.userLogin, writer.tag(3, WireType.LengthDelimited).fork(), options).join(); diff --git a/go.mod b/go.mod index ce2aedd4b2f33..dde919c453c0f 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport -go 1.22.9 +go 1.22.10 require ( cloud.google.com/go/cloudsqlconn v1.9.0 @@ -150,6 +150,7 @@ require ( github.com/okta/okta-sdk-golang/v2 v2.20.0 github.com/opencontainers/go-digest v1.0.0 github.com/opensearch-project/opensearch-go/v2 v2.3.0 + github.com/parquet-go/parquet-go v0.23.0 github.com/pavlo-v-chernykh/keystore-go/v4 v4.5.0 github.com/pelletier/go-toml v1.9.5 github.com/pkg/sftp v1.13.6 @@ -162,7 +163,6 @@ require ( github.com/russellhaering/goxmldsig v1.4.0 github.com/schollz/progressbar/v3 v3.14.2 github.com/scim2/filter-parser/v2 v2.2.0 - github.com/segmentio/parquet-go v0.0.0-20230712180008-5d42db8f0d47 github.com/shirou/gopsutil/v4 v4.24.6 github.com/sigstore/cosign/v2 v2.2.4 github.com/sigstore/sigstore v1.8.3 @@ -205,7 +205,7 @@ require ( google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 google.golang.org/grpc v1.64.1 google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0 - google.golang.org/protobuf v1.34.0 + google.golang.org/protobuf v1.34.2 gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c gopkg.in/dnaeon/go-vcr.v3 v3.2.0 gopkg.in/ini.v1 v1.67.0 @@ -396,7 +396,7 @@ require ( github.com/josharian/native v1.1.0 // indirect github.com/joshlf/testutil v0.0.0-20170608050642-b5d8aa79d93d // indirect github.com/kelseyhightower/envconfig v1.4.0 // indirect - github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/compress v1.17.9 // indirect github.com/klauspost/cpuid/v2 v2.2.7 // indirect github.com/kr/fs v0.1.0 // indirect github.com/kr/pretty v0.3.1 // indirect diff --git a/go.sum b/go.sum index ca4fc55beb9ca..0c8c873742a3b 100644 --- a/go.sum +++ b/go.sum @@ -1757,8 +1757,8 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk= github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA= +github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM= github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= @@ -1975,6 +1975,8 @@ github.com/opensearch-project/opensearch-go/v2 v2.3.0 h1:nQIEMr+A92CkhHrZgUhcfsr github.com/opensearch-project/opensearch-go/v2 v2.3.0/go.mod h1:8LDr9FCgUTVoT+5ESjc2+iaZuldqE+23Iq0r1XeNue8= github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs= github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc= +github.com/parquet-go/parquet-go v0.23.0 h1:dyEU5oiHCtbASyItMCD2tXtT2nPmoPbKpqf0+nnGrmk= +github.com/parquet-go/parquet-go v0.23.0/go.mod h1:MnwbUcFHU6uBYMymKAlPPAw9yh3kE1wWl6Gl1uLdkNk= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pascaldekloe/name v1.0.1 h1:9lnXOHeqeHHnWLbKfH6X98+4+ETVqFqxN09UXSjcMb0= github.com/pascaldekloe/name v1.0.1/go.mod h1:Z//MfYJnH4jVpQ9wkclwu2I2MkHmXTlT9wR5UZScttM= @@ -2128,8 +2130,6 @@ github.com/segmentio/encoding v0.4.0 h1:MEBYvRqiUB2nfR2criEXWqwdY6HJOUrCn5hboVOV github.com/segmentio/encoding v0.4.0/go.mod h1:/d03Cd8PoaDeceuhUUUQWjU0KhWjrmYrWPgtJHYZSnI= github.com/segmentio/ksuid v1.0.4 h1:sBo2BdShXjmcugAMwjugoGUdUV0pcxY5mW4xKRn3v4c= github.com/segmentio/ksuid v1.0.4/go.mod h1:/XUiZBD3kVx5SmUOl55voK5yeAbBNNIed+2O73XgrPE= -github.com/segmentio/parquet-go v0.0.0-20230712180008-5d42db8f0d47 h1:5am1AKPVBj3ncaEsqsGQl/cvsW5mSrO9NSPqWWhH8OA= -github.com/segmentio/parquet-go v0.0.0-20230712180008-5d42db8f0d47/go.mod h1:+J0xQnJjm8DuQUHBO7t57EnmPbstT6+b45+p3DC9k1Q= github.com/sergi/go-diff v1.3.1 h1:xkr+Oxo4BOQKmkn/B9eMK0g5Kg/983T9DqqPHwYqD+8= github.com/sergi/go-diff v1.3.1/go.mod h1:aMJSSKb2lpPvRNec0+w3fl7LP9IOFzdc9Pa4NFbPK1I= github.com/shabbyrobe/gocovmerge v0.0.0-20190829150210-3e036491d500/go.mod h1:+njLrG5wSeoG4Ds61rFgEzKvenR2UHbjMoDHsczxly0= @@ -3148,8 +3148,8 @@ google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqw google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.29.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I= -google.golang.org/protobuf v1.34.0 h1:Qo/qEd2RZPCf2nKuorzksSknv0d3ERwp1vFG38gSmH4= -google.golang.org/protobuf v1.34.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos= +google.golang.org/protobuf v1.34.2 h1:6xV6lTsCfpGD21XK49h7MhtcApnLqkfYgPcdHftf6hg= +google.golang.org/protobuf v1.34.2/go.mod h1:qYOHts0dSfpeUzUFpOMr/WGzszTmLH+DiWniOlNbLDw= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc h1:2gGKlE2+asNV9m7xrywl36YYNnBG5ZQ0r/BOOxqPpmk= gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk= diff --git a/integrations/event-handler/go.mod b/integrations/event-handler/go.mod index c2c98db6f48e4..bd2cacedc594a 100644 --- a/integrations/event-handler/go.mod +++ b/integrations/event-handler/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport/integrations/event-handler -go 1.22.9 +go 1.22.10 require ( github.com/alecthomas/kong v0.9.0 @@ -192,7 +192,7 @@ require ( github.com/julienschmidt/httprouter v1.3.0 // indirect github.com/kelseyhightower/envconfig v1.4.0 // indirect github.com/keys-pub/go-libfido2 v1.5.3-0.20220306005615-8ab03fb1ec27 // indirect - github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/compress v1.17.9 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/kylelemons/godebug v1.1.0 // indirect diff --git a/integrations/event-handler/go.sum b/integrations/event-handler/go.sum index a5305ac56b1d9..23185e767ddef 100644 --- a/integrations/event-handler/go.sum +++ b/integrations/event-handler/go.sum @@ -1295,8 +1295,8 @@ github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA= +github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= diff --git a/integrations/terraform/go.mod b/integrations/terraform/go.mod index 46708aba022bf..eb54785f95ca8 100644 --- a/integrations/terraform/go.mod +++ b/integrations/terraform/go.mod @@ -1,6 +1,6 @@ module github.com/gravitational/teleport/integrations/terraform -go 1.22.9 +go 1.22.10 // Doc generation tooling require github.com/hashicorp/terraform-plugin-docs v0.0.0 // replaced @@ -230,7 +230,7 @@ require ( github.com/julienschmidt/httprouter v1.3.0 // indirect github.com/kelseyhightower/envconfig v1.4.0 // indirect github.com/keys-pub/go-libfido2 v1.5.3-0.20220306005615-8ab03fb1ec27 // indirect - github.com/klauspost/compress v1.17.7 // indirect + github.com/klauspost/compress v1.17.9 // indirect github.com/kr/fs v0.1.0 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect diff --git a/integrations/terraform/go.sum b/integrations/terraform/go.sum index 5114dc2a719b8..3b8dc37509e8e 100644 --- a/integrations/terraform/go.sum +++ b/integrations/terraform/go.sum @@ -1537,8 +1537,8 @@ github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+o github.com/klauspost/asmfmt v1.3.2/go.mod h1:AG8TuvYojzulgDAMCnYn50l/5QV3Bs/tp6j0HLHbNSE= github.com/klauspost/compress v1.11.2/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.15.9/go.mod h1:PhcZ0MbTNciWF3rruxRgKxI5NkcHHrHUDtV4Yw2GlzU= -github.com/klauspost/compress v1.17.7 h1:ehO88t2UGzQK66LMdE8tibEd1ErmzZjNEqWkjLAKQQg= -github.com/klauspost/compress v1.17.7/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= +github.com/klauspost/compress v1.17.9 h1:6KIumPrER1LHsvBVuDa0r5xaG0Es51mhhB9BQB2qeMA= +github.com/klauspost/compress v1.17.9/go.mod h1:Di0epgTjJY877eYKx5yC51cX2A2Vl2ibi7bDH9ttBbw= github.com/klauspost/cpuid/v2 v2.0.9/go.mod h1:FInQzS24/EEf25PyTYn52gqo7WaD8xa0213Md/qVLRg= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/fs v0.1.0 h1:Jskdu9ieNAYnjxsi0LbQp1ulIKZV1LAFgK1tWhpZgl8= @@ -1694,6 +1694,8 @@ github.com/opencontainers/image-spec v1.1.0 h1:8SG7/vwALn54lVB/0yZ/MMwhFrPYtpEHQ github.com/opencontainers/image-spec v1.1.0/go.mod h1:W4s4sFTMaBeK1BQLXbG4AdM2szdn85PY75RI83NrTrM= github.com/opensearch-project/opensearch-go/v2 v2.3.0 h1:nQIEMr+A92CkhHrZgUhcfsrZjibvB3APXf2a1VwCmMQ= github.com/opensearch-project/opensearch-go/v2 v2.3.0/go.mod h1:8LDr9FCgUTVoT+5ESjc2+iaZuldqE+23Iq0r1XeNue8= +github.com/parquet-go/parquet-go v0.23.0 h1:dyEU5oiHCtbASyItMCD2tXtT2nPmoPbKpqf0+nnGrmk= +github.com/parquet-go/parquet-go v0.23.0/go.mod h1:MnwbUcFHU6uBYMymKAlPPAw9yh3kE1wWl6Gl1uLdkNk= github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pascaldekloe/name v1.0.1 h1:9lnXOHeqeHHnWLbKfH6X98+4+ETVqFqxN09UXSjcMb0= github.com/pascaldekloe/name v1.0.1/go.mod h1:Z//MfYJnH4jVpQ9wkclwu2I2MkHmXTlT9wR5UZScttM= @@ -1807,8 +1809,6 @@ github.com/segmentio/asm v1.2.0 h1:9BQrFxC+YOHJlTlHGkTrFWf59nbL3XnCoFLTwDCI7ys= github.com/segmentio/asm v1.2.0/go.mod h1:BqMnlJP91P8d+4ibuonYZw9mfnzI9HfxselHZr5aAcs= github.com/segmentio/encoding v0.4.0 h1:MEBYvRqiUB2nfR2criEXWqwdY6HJOUrCn5hboVOVmy8= github.com/segmentio/encoding v0.4.0/go.mod h1:/d03Cd8PoaDeceuhUUUQWjU0KhWjrmYrWPgtJHYZSnI= -github.com/segmentio/parquet-go v0.0.0-20230712180008-5d42db8f0d47 h1:5am1AKPVBj3ncaEsqsGQl/cvsW5mSrO9NSPqWWhH8OA= -github.com/segmentio/parquet-go v0.0.0-20230712180008-5d42db8f0d47/go.mod h1:+J0xQnJjm8DuQUHBO7t57EnmPbstT6+b45+p3DC9k1Q= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= github.com/sergi/go-diff v1.1.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM= diff --git a/lib/auth/usertasks/usertasksv1/service.go b/lib/auth/usertasks/usertasksv1/service.go index c20d745d05a9b..5a1e388150dd2 100644 --- a/lib/auth/usertasks/usertasksv1/service.go +++ b/lib/auth/usertasks/usertasksv1/service.go @@ -160,7 +160,7 @@ func (s *Service) emitCreateAuditEvent(ctx context.Context, req *usertasksv1.Use func userTaskToUserTaskStateEvent(ut *usertasksv1.UserTask) *usagereporter.UserTaskStateEvent { ret := &usagereporter.UserTaskStateEvent{ TaskType: ut.GetSpec().GetTaskType(), - IssueType: ut.GetSpec().GetTaskType(), + IssueType: ut.GetSpec().GetIssueType(), State: ut.GetSpec().GetState(), } if ut.GetSpec().GetTaskType() == usertasks.TaskTypeDiscoverEC2 { diff --git a/lib/events/athena/consumer.go b/lib/events/athena/consumer.go index 0ee6f43a68492..38fb1e6aee52c 100644 --- a/lib/events/athena/consumer.go +++ b/lib/events/athena/consumer.go @@ -39,7 +39,7 @@ import ( sqsTypes "github.com/aws/aws-sdk-go-v2/service/sqs/types" "github.com/google/uuid" "github.com/gravitational/trace" - "github.com/segmentio/parquet-go" + "github.com/parquet-go/parquet-go" log "github.com/sirupsen/logrus" "github.com/gravitational/teleport" diff --git a/lib/events/athena/consumer_test.go b/lib/events/athena/consumer_test.go index 727814f4d59d0..1aa12c684fcc7 100644 --- a/lib/events/athena/consumer_test.go +++ b/lib/events/athena/consumer_test.go @@ -41,7 +41,7 @@ import ( "github.com/google/uuid" "github.com/gravitational/trace" "github.com/jonboulle/clockwork" - "github.com/segmentio/parquet-go" + "github.com/parquet-go/parquet-go" "github.com/stretchr/testify/require" "github.com/gravitational/teleport" diff --git a/lib/events/athena/querier.go b/lib/events/athena/querier.go index 58d433def4d8e..b8589f168d586 100644 --- a/lib/events/athena/querier.go +++ b/lib/events/athena/querier.go @@ -39,7 +39,7 @@ import ( "github.com/google/uuid" "github.com/gravitational/trace" "github.com/jonboulle/clockwork" - "github.com/segmentio/parquet-go" + "github.com/parquet-go/parquet-go" log "github.com/sirupsen/logrus" "go.opentelemetry.io/otel/attribute" oteltrace "go.opentelemetry.io/otel/trace" diff --git a/lib/multiplexer/test/ping.pb.go b/lib/multiplexer/test/ping.pb.go index 5f9b36680629d..fd603de1cb437 100644 --- a/lib/multiplexer/test/ping.pb.go +++ b/lib/multiplexer/test/ping.pb.go @@ -17,7 +17,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.34.0 +// protoc-gen-go v1.34.2 // protoc (unknown) // source: teleport/lib/multiplexer/test/ping.proto @@ -169,7 +169,7 @@ func file_teleport_lib_multiplexer_test_ping_proto_rawDescGZIP() []byte { } var file_teleport_lib_multiplexer_test_ping_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_teleport_lib_multiplexer_test_ping_proto_goTypes = []interface{}{ +var file_teleport_lib_multiplexer_test_ping_proto_goTypes = []any{ (*Request)(nil), // 0: teleport.lib.multiplexer.test.Request (*Response)(nil), // 1: teleport.lib.multiplexer.test.Response } @@ -189,7 +189,7 @@ func file_teleport_lib_multiplexer_test_ping_proto_init() { return } if !protoimpl.UnsafeEnabled { - file_teleport_lib_multiplexer_test_ping_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_multiplexer_test_ping_proto_msgTypes[0].Exporter = func(v any, i int) any { switch v := v.(*Request); i { case 0: return &v.state @@ -201,7 +201,7 @@ func file_teleport_lib_multiplexer_test_ping_proto_init() { return nil } } - file_teleport_lib_multiplexer_test_ping_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} { + file_teleport_lib_multiplexer_test_ping_proto_msgTypes[1].Exporter = func(v any, i int) any { switch v := v.(*Response); i { case 0: return &v.state diff --git a/lib/srv/db/access_test.go b/lib/srv/db/access_test.go index 63c6dd2db4af6..8ebc172e8e597 100644 --- a/lib/srv/db/access_test.go +++ b/lib/srv/db/access_test.go @@ -32,7 +32,6 @@ import ( "testing" "time" - gspanner "cloud.google.com/go/spanner" "github.com/ClickHouse/ch-go" cqlclient "github.com/datastax/go-cassandra-native-protocol/client" elastic "github.com/elastic/go-elasticsearch/v8" @@ -2133,7 +2132,7 @@ func (c *testContext) dynamodbClient(ctx context.Context, teleportUser, dbServic return db, proxy, nil } -func (c *testContext) spannerClient(ctx context.Context, teleportUser, dbService, dbUser, dbName string) (*gspanner.Client, *alpnproxy.LocalProxy, error) { +func (c *testContext) spannerClient(ctx context.Context, teleportUser, dbService, dbUser, dbName string) (*spanner.SpannerTestClient, *alpnproxy.LocalProxy, error) { route := tlsca.RouteToDatabase{ ServiceName: dbService, Protocol: defaults.ProtocolSpanner, @@ -2146,7 +2145,7 @@ func (c *testContext) spannerClient(ctx context.Context, teleportUser, dbService return nil, nil, trace.Wrap(err) } - db, err := spanner.MakeTestClient(ctx, common.TestClientConfig{ + clt, err := spanner.MakeTestClient(ctx, common.TestClientConfig{ AuthClient: c.authClient, AuthServer: c.authServer, Address: proxy.GetAddr(), @@ -2158,7 +2157,7 @@ func (c *testContext) spannerClient(ctx context.Context, teleportUser, dbService return nil, nil, trace.Wrap(err) } - return db, proxy, nil + return clt, proxy, nil } type roleOptFn func(types.Role) diff --git a/lib/srv/db/spanner/test.go b/lib/srv/db/spanner/test.go index 4a7b5378766cd..44b74085c05bf 100644 --- a/lib/srv/db/spanner/test.go +++ b/lib/srv/db/spanner/test.go @@ -33,6 +33,7 @@ import ( "github.com/sirupsen/logrus" "google.golang.org/api/option" "google.golang.org/grpc" + "google.golang.org/grpc/connectivity" "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" "google.golang.org/grpc/metadata" @@ -47,11 +48,35 @@ import ( "github.com/gravitational/teleport/lib/tlsca" ) -func MakeTestClient(ctx context.Context, config common.TestClientConfig) (*spanner.Client, error) { +// SpannerTestClient wraps a [spanner.Client] and provides direct access to the +// underlying [grpc.ClientConn] of the client. +type SpannerTestClient struct { + ClientConn *grpc.ClientConn + *spanner.Client +} + +// WaitForConnectionState waits until the spanner client's underlying gRPC +// connection transitions into the given state or the context expires. +func (c *SpannerTestClient) WaitForConnectionState(ctx context.Context, wantState connectivity.State) error { + for { + s := c.ClientConn.GetState() + if s == wantState { + return nil + } + if s == connectivity.Shutdown { + return trace.Errorf("spanner test client connection has shutdown") + } + if !c.ClientConn.WaitForStateChange(ctx, s) { + return ctx.Err() + } + } +} + +func MakeTestClient(ctx context.Context, config common.TestClientConfig) (*SpannerTestClient, error) { return makeTestClient(ctx, config, false) } -func makeTestClient(ctx context.Context, config common.TestClientConfig, useTLS bool) (*spanner.Client, error) { +func makeTestClient(ctx context.Context, config common.TestClientConfig, useTLS bool) (*SpannerTestClient, error) { databaseID, err := getDatabaseID(ctx, config.RouteToDatabase, config.AuthServer) if err != nil { return nil, trace.Wrap(err) @@ -68,13 +93,13 @@ func makeTestClient(ctx context.Context, config common.TestClientConfig, useTLS transportOpt = grpc.WithTransportCredentials(insecure.NewCredentials()) } + cc, err := grpc.NewClient(config.Address, transportOpt) + if err != nil { + return nil, trace.Wrap(err) + } + opts := []option.ClientOption{ - // dial with custom transport security - option.WithGRPCDialOption(transportOpt), - // create 1 connection - option.WithGRPCConnectionPool(1), - // connect to the Teleport endpoint - option.WithEndpoint(config.Address), + option.WithGRPCConn(cc), // client should not bring any GCP credentials option.WithoutAuthentication(), } @@ -86,7 +111,10 @@ func makeTestClient(ctx context.Context, config common.TestClientConfig, useTLS if err != nil { return nil, trace.Wrap(err) } - return clt, nil + return &SpannerTestClient{ + ClientConn: cc, + Client: clt, + }, nil } func getDatabaseID(ctx context.Context, route tlsca.RouteToDatabase, getter services.DatabaseServersGetter) (string, error) { diff --git a/lib/srv/db/spanner_test.go b/lib/srv/db/spanner_test.go index ca78f856b89e6..4af7fbdb46cb8 100644 --- a/lib/srv/db/spanner_test.go +++ b/lib/srv/db/spanner_test.go @@ -28,6 +28,7 @@ import ( gspanner "cloud.google.com/go/spanner" "github.com/stretchr/testify/require" + "google.golang.org/grpc/connectivity" "github.com/gravitational/teleport/api/types" "github.com/gravitational/teleport/api/types/events" @@ -234,7 +235,15 @@ func TestAuditSpanner(t *testing.T) { _ = localProxy.Close() }) - require.NoError(t, err) + require.NoError(t, clt.WaitForConnectionState(ctx, connectivity.Ready)) + reconnectingCh := make(chan bool) + go func() { + // we should observe the connection leave the "ready" state after + // it gets an access denied error. + ctx, cancel := context.WithTimeout(ctx, time.Second*10) + defer cancel() + reconnectingCh <- clt.ClientConn.WaitForStateChange(ctx, connectivity.Ready) + }() row, err := pingSpanner(ctx, clt, 42) require.Error(t, err) @@ -246,6 +255,7 @@ func TestAuditSpanner(t *testing.T) { require.True(t, ok) require.Equal(t, "googlesql", dbStart1.DatabaseName) + require.True(t, <-reconnectingCh, "timed out waiting for the spanner client to reconnect") row, err = pingSpanner(ctx, clt, 42) require.Error(t, err) require.ErrorContains(t, err, "access to db denied") @@ -308,7 +318,7 @@ func TestAuditSpanner(t *testing.T) { }) } -func pingSpanner(ctx context.Context, clt *gspanner.Client, want int64) (*gspanner.Row, error) { +func pingSpanner(ctx context.Context, clt *spanner.SpannerTestClient, want int64) (*gspanner.Row, error) { query := gspanner.NewStatement(fmt.Sprintf("SELECT %d", want)) rowIter := clt.Single().Query(ctx, query) defer rowIter.Stop() diff --git a/lib/usagereporter/teleport/usagereporter.go b/lib/usagereporter/teleport/usagereporter.go index d074faa3f5a45..5a1b9dba5822d 100644 --- a/lib/usagereporter/teleport/usagereporter.go +++ b/lib/usagereporter/teleport/usagereporter.go @@ -112,6 +112,7 @@ func (t *StreamingUsageReporter) AnonymizeAndSubmit(events ...Anonymizable) { req := e.Anonymize(t.anonymizer) req.Timestamp = timestamppb.New(t.clock.Now()) req.ClusterName = t.anonymizer.AnonymizeString(t.clusterName.GetClusterName()) + req.TeleportVersion = teleport.Version t.usageReporter.AddEventsToQueue(&req) } } diff --git a/lib/utils/utils_test.go b/lib/utils/utils_test.go index e1625915bb204..075d99b3f9e98 100644 --- a/lib/utils/utils_test.go +++ b/lib/utils/utils_test.go @@ -234,6 +234,16 @@ func TestIsValidHostname(t *testing.T) { hostname: "some-host-1.example.com", assert: require.True, }, + { + name: "only lower case works", + hostname: "only-lower-case-works", + assert: require.True, + }, + { + name: "mixed upper case fails", + hostname: "mixed-UPPER-CASE-fails", + assert: require.False, + }, { name: "one component", hostname: "example", diff --git a/proto/prehog/v1alpha/teleport.proto b/proto/prehog/v1alpha/teleport.proto index aee8d81b6cfc0..f9b2a1c92b81c 100644 --- a/proto/prehog/v1alpha/teleport.proto +++ b/proto/prehog/v1alpha/teleport.proto @@ -1468,6 +1468,13 @@ message SubmitEventRequest { // PostHog timestamp google.protobuf.Timestamp timestamp = 2; + // teleport_version is the version of the Teleport auth server that submitted + // the event, without the "v" prefix. + // For example: 16.4.7 + // + // PostHog property: tp.teleport_version + string teleport_version = 95; + // the event being submitted oneof event { UserLoginEvent user_login = 3; @@ -1613,6 +1620,8 @@ message SubmitEventRequest { SessionRecordingAccessEvent session_recording_access = 93; UserTaskStateEvent user_task_state = 94; + + // note that 95 is used for "teleport_version" above. } reserved 8; // UIOnboardGetStartedClickEvent diff --git a/tool/tctl/common/resource_command.go b/tool/tctl/common/resource_command.go index 180eff4abaa1d..53afa6b324c7a 100644 --- a/tool/tctl/common/resource_command.go +++ b/tool/tctl/common/resource_command.go @@ -1532,6 +1532,8 @@ func (rc *ResourceCommand) Delete(ctx context.Context, client *authclient.Client types.KindInstaller, types.KindUIConfig, types.KindNetworkRestrictions, + types.KindAutoUpdateConfig, + types.KindAutoUpdateVersion, } if !slices.Contains(singletonResources, rc.ref.Kind) && (rc.ref.Kind == "" || rc.ref.Name == "") { return trace.BadParameter("provide a full resource name to delete, for example:\n$ tctl rm cluster/east\n") @@ -1926,6 +1928,16 @@ func (rc *ResourceCommand) Delete(ctx context.Context, client *authclient.Client return trace.Wrap(err) } fmt.Printf("static host user %q has been deleted\n", rc.ref.Name) + case types.KindAutoUpdateConfig: + if err := client.DeleteAutoUpdateConfig(ctx); err != nil { + return trace.Wrap(err) + } + fmt.Printf("AutoUpdateConfig has been deleted\n") + case types.KindAutoUpdateVersion: + if err := client.DeleteAutoUpdateVersion(ctx); err != nil { + return trace.Wrap(err) + } + fmt.Printf("AutoUpdateVersion has been deleted\n") default: return trace.BadParameter("deleting resources of type %q is not supported", rc.ref.Kind) } diff --git a/tool/tctl/common/resource_command_test.go b/tool/tctl/common/resource_command_test.go index 6ec25abb1507d..7307b8ff401e1 100644 --- a/tool/tctl/common/resource_command_test.go +++ b/tool/tctl/common/resource_command_test.go @@ -2318,6 +2318,12 @@ version: v1 protocmp.IgnoreFields(&headerv1.Metadata{}, "revision"), protocmp.Transform(), )) + + // Delete the resource + _, err = runResourceCommand(t, clt, []string{"rm", types.KindAutoUpdateConfig}) + require.NoError(t, err) + _, err = runResourceCommand(t, clt, []string{"get", types.KindAutoUpdateConfig}) + require.ErrorContains(t, err, "autoupdate_config \"autoupdate-config\" doesn't exist") } func testCreateAutoUpdateVersion(t *testing.T, clt *authclient.Client) { @@ -2353,6 +2359,12 @@ version: v1 protocmp.IgnoreFields(&headerv1.Metadata{}, "revision"), protocmp.Transform(), )) + + // Delete the resource + _, err = runResourceCommand(t, clt, []string{"rm", types.KindAutoUpdateVersion}) + require.NoError(t, err) + _, err = runResourceCommand(t, clt, []string{"get", types.KindAutoUpdateVersion}) + require.ErrorContains(t, err, "autoupdate_version \"autoupdate-version\" doesn't exist") } func TestPluginResourceWrapper(t *testing.T) { diff --git a/web/packages/design/src/Menu/MenuItem.tsx b/web/packages/design/src/Menu/MenuItem.tsx index 44afb252629f0..a13f852f5b934 100644 --- a/web/packages/design/src/Menu/MenuItem.tsx +++ b/web/packages/design/src/Menu/MenuItem.tsx @@ -64,7 +64,7 @@ const fromTheme = (props: ThemedMenuItemProps) => { }; }; -const MenuItem = styled.div` +const MenuItem = styled.div.attrs({ role: 'menuitem' })` min-height: 40px; box-sizing: border-box; cursor: ${props => (props.disabled ? 'not-allowed' : 'pointer')}; diff --git a/web/packages/shared/components/ToolTip/HoverTooltip.tsx b/web/packages/shared/components/ToolTip/HoverTooltip.tsx index 2195dce9ee313..e242070ba809f 100644 --- a/web/packages/shared/components/ToolTip/HoverTooltip.tsx +++ b/web/packages/shared/components/ToolTip/HoverTooltip.tsx @@ -28,7 +28,7 @@ type OriginProps = { export const HoverTooltip: React.FC< PropsWithChildren<{ - tipContent: string | undefined; + tipContent?: React.ReactNode; showOnlyOnOverflow?: boolean; className?: string; anchorOrigin?: OriginProps; diff --git a/web/packages/teleport/src/Account/Account.tsx b/web/packages/teleport/src/Account/Account.tsx index 2dbe2a2e8e2b6..27932b0260449 100644 --- a/web/packages/teleport/src/Account/Account.tsx +++ b/web/packages/teleport/src/Account/Account.tsx @@ -61,9 +61,13 @@ export interface EnterpriseComponentProps { export interface AccountPageProps { enterpriseComponent?: React.ComponentType; + userTrustedDevicesComponent?: React.ComponentType; } -export function AccountPage({ enterpriseComponent }: AccountPageProps) { +export function AccountPage({ + enterpriseComponent, + userTrustedDevicesComponent, +}: AccountPageProps) { const ctx = useTeleport(); const storeUser = useStore(ctx.storeUser); const isSso = storeUser.isSso(); @@ -84,6 +88,7 @@ export function AccountPage({ enterpriseComponent }: AccountPageProps) { passwordState={storeUser.getPasswordState()} {...manageDevicesState} enterpriseComponent={enterpriseComponent} + userTrustedDevicesComponent={userTrustedDevicesComponent} onPasswordChange={onPasswordChange} /> ); @@ -115,6 +120,7 @@ export function Account({ canAddPasskeys, enterpriseComponent: EnterpriseComponent, newDeviceUsage, + userTrustedDevicesComponent: TrustedDeviceListComponent, passwordState, onPasswordChange: onPasswordChangeCb, }: AccountProps) { @@ -193,7 +199,7 @@ export function Account({ return ( - + Account Settings @@ -266,6 +272,7 @@ export function Account({ {EnterpriseComponent && ( )} + {TrustedDeviceListComponent && } diff --git a/web/packages/teleport/src/DeviceTrust/types.ts b/web/packages/teleport/src/DeviceTrust/types.ts index 951a8dd77addc..9e4dc3f93b18a 100644 --- a/web/packages/teleport/src/DeviceTrust/types.ts +++ b/web/packages/teleport/src/DeviceTrust/types.ts @@ -23,7 +23,8 @@ export type TrustedDevice = { assetTag: string; osType: TrustedDeviceOSType; enrollStatus: 'enrolled' | 'not enrolled'; - owner?: string; + owner: string; + createTime?: Date; }; export type TrustedDeviceOSType = 'Windows' | 'Linux' | 'macOS'; diff --git a/web/packages/teleport/src/Sessions/SessionList/SessionJoinBtn.test.tsx b/web/packages/teleport/src/Sessions/SessionList/SessionJoinBtn.test.tsx index ef7af1a84ce9f..c9eddc827e38f 100644 --- a/web/packages/teleport/src/Sessions/SessionList/SessionJoinBtn.test.tsx +++ b/web/packages/teleport/src/Sessions/SessionList/SessionJoinBtn.test.tsx @@ -60,7 +60,7 @@ test('all participant modes are properly listed and in the correct order', () => ); // Make sure that the menu items are in the order of observer -> moderator -> peer. - const menuItems = screen.queryAllByRole('link'); + const menuItems = screen.queryAllByRole('menuitem'); expect(menuItems).toHaveLength(3); expect(menuItems[0]).toHaveTextContent('As an Observer'); expect(menuItems[1]).toHaveTextContent('As a Moderator'); diff --git a/web/packages/teleport/src/Users/UserList/UserList.tsx b/web/packages/teleport/src/Users/UserList/UserList.tsx index 53861cd969245..6a626f119500b 100644 --- a/web/packages/teleport/src/Users/UserList/UserList.tsx +++ b/web/packages/teleport/src/Users/UserList/UserList.tsx @@ -20,7 +20,7 @@ import React from 'react'; import { Cell, LabelCell } from 'design/DataTable'; import { MenuButton, MenuItem } from 'shared/components/MenuAction'; -import { User, UserOrigin } from 'teleport/services/user'; +import { Access, User, UserOrigin } from 'teleport/services/user'; import { ClientSearcheableTableWithQueryParamSupport } from 'teleport/components/ClientSearcheableTableWithQueryParamSupport'; export default function UserList({ @@ -29,6 +29,7 @@ export default function UserList({ onEdit, onDelete, onReset, + usersAcl, }: Props) { return ( ( void; onReset: (user: User) => void; onDelete: (user: User) => void; + acl: Access; }) => { + const canEdit = acl.edit; + const canDelete = acl.remove; + + if (!(canEdit || canDelete)) { + return ; + } + if (user.isBot || !user.isLocal) { return ; } @@ -131,11 +142,15 @@ const ActionCell = ({ return ( - onEdit(user)}>Edit... - onReset(user)}> - Reset Authentication... - - onDelete(user)}>Delete... + {canEdit && onEdit(user)}>Edit...} + {canEdit && ( + onReset(user)}> + Reset Authentication... + + )} + {canDelete && ( + onDelete(user)}>Delete... + )} ); @@ -147,4 +162,7 @@ type Props = { onEdit(user: User): void; onDelete(user: User): void; onReset(user: User): void; + // determines if the viewer is able to edit/delete users. This is used + // to conditionally render the edit/delete buttons in the ActionCell + usersAcl: Access; }; diff --git a/web/packages/teleport/src/Users/Users.story.tsx b/web/packages/teleport/src/Users/Users.story.tsx index fc905715582c2..eaccc82097e9a 100644 --- a/web/packages/teleport/src/Users/Users.story.tsx +++ b/web/packages/teleport/src/Users/Users.story.tsx @@ -149,4 +149,12 @@ const sample = { EmailPasswordReset: null, showMauInfo: false, onDismissUsersMauNotice: () => null, + canEditUsers: true, + usersAcl: { + read: true, + edit: false, + remove: true, + list: true, + create: true, + }, }; diff --git a/web/packages/teleport/src/Users/Users.test.tsx b/web/packages/teleport/src/Users/Users.test.tsx index 77ff4c39a91b9..c2916695e22f2 100644 --- a/web/packages/teleport/src/Users/Users.test.tsx +++ b/web/packages/teleport/src/Users/Users.test.tsx @@ -18,14 +18,23 @@ import React from 'react'; import { MemoryRouter } from 'react-router'; -import { render, screen, userEvent } from 'design/utils/testing'; +import { render, screen, userEvent, fireEvent } from 'design/utils/testing'; import { ContextProvider } from 'teleport'; import { createTeleportContext } from 'teleport/mocks/contexts'; +import { Access } from 'teleport/services/user'; import { Users } from './Users'; import { State } from './useUsers'; +const defaultAcl: Access = { + read: true, + edit: true, + remove: true, + list: true, + create: true, +}; + describe('invite collaborators integration', () => { const ctx = createTeleportContext(); @@ -59,6 +68,7 @@ describe('invite collaborators integration', () => { EmailPasswordReset: null, showMauInfo: false, onDismissUsersMauNotice: () => null, + usersAcl: defaultAcl, }; }); @@ -142,6 +152,7 @@ test('Users not equal to MAU Notice', async () => { EmailPasswordReset: null, showMauInfo: true, onDismissUsersMauNotice: jest.fn(), + usersAcl: defaultAcl, }; const { rerender } = render( @@ -205,6 +216,7 @@ describe('email password reset integration', () => { EmailPasswordReset: null, showMauInfo: false, onDismissUsersMauNotice: () => null, + usersAcl: defaultAcl, }; }); @@ -245,3 +257,158 @@ describe('email password reset integration', () => { expect(screen.getByTestId('new-reset-ui')).toBeInTheDocument(); }); }); + +describe('permission handling', () => { + const ctx = createTeleportContext(); + + let props: State; + beforeEach(() => { + props = { + attempt: { + message: 'success', + isSuccess: true, + isProcessing: false, + isFailed: false, + }, + users: [ + { + name: 'tester', + roles: [], + isLocal: true, + }, + ], + fetchRoles: () => Promise.resolve([]), + operation: { + type: 'reset', + user: { name: 'alice@example.com', roles: ['foo'] }, + }, + + onStartCreate: () => undefined, + onStartDelete: () => undefined, + onStartEdit: () => undefined, + onStartReset: () => undefined, + onStartInviteCollaborators: () => undefined, + onClose: () => undefined, + onDelete: () => undefined, + onCreate: () => undefined, + onUpdate: () => undefined, + onReset: () => undefined, + onInviteCollaboratorsClose: () => undefined, + InviteCollaborators: null, + inviteCollaboratorsOpen: false, + onEmailPasswordResetClose: () => undefined, + EmailPasswordReset: null, + showMauInfo: false, + onDismissUsersMauNotice: () => null, + usersAcl: defaultAcl, + }; + }); + + test('displays a disabled Create Users button if lacking permissions', async () => { + const testProps = { + ...props, + usersAcl: { + ...defaultAcl, + edit: false, + }, + }; + render( + + + + + + ); + + expect(screen.getByTestId('create_new_users_button')).toBeDisabled(); + }); + + test('edit and reset options not available in the menu', async () => { + const testProps = { + ...props, + usersAcl: { + ...defaultAcl, + edit: false, + }, + }; + render( + + + + + + ); + + const optionsButton = screen.getByRole('button', { name: /options/i }); + fireEvent.click(optionsButton); + const menuItems = screen.queryAllByRole('menuitem'); + expect(menuItems).toHaveLength(1); + expect(menuItems.some(item => item.textContent.includes('Delete'))).toBe( + true + ); + }); + + test('all options are available in the menu', async () => { + const testProps = { + ...props, + usersAcl: { + read: true, + list: true, + edit: true, + create: true, + remove: true, + }, + }; + render( + + + + + + ); + + expect(screen.getByText('tester')).toBeInTheDocument(); + const optionsButton = screen.getByRole('button', { name: /options/i }); + fireEvent.click(optionsButton); + const menuItems = screen.queryAllByRole('menuitem'); + expect(menuItems).toHaveLength(3); + expect(menuItems.some(item => item.textContent.includes('Delete'))).toBe( + true + ); + expect( + menuItems.some(item => item.textContent.includes('Reset Auth')) + ).toBe(true); + expect(menuItems.some(item => item.textContent.includes('Edit'))).toBe( + true + ); + }); + + test('delete is not available in menu', async () => { + const testProps = { + ...props, + usersAcl: { + read: true, + list: true, + edit: true, + create: true, + remove: false, + }, + }; + render( + + + + + + ); + + expect(screen.getByText('tester')).toBeInTheDocument(); + const optionsButton = screen.getByRole('button', { name: /options/i }); + fireEvent.click(optionsButton); + const menuItems = screen.queryAllByRole('menuitem'); + expect(menuItems).toHaveLength(2); + expect( + menuItems.every(item => item.textContent.includes('Delete')) + ).not.toBe(true); + }); +}); diff --git a/web/packages/teleport/src/Users/Users.tsx b/web/packages/teleport/src/Users/Users.tsx index c03a61418824e..a31fcc19fae76 100644 --- a/web/packages/teleport/src/Users/Users.tsx +++ b/web/packages/teleport/src/Users/Users.tsx @@ -17,8 +17,18 @@ */ import React from 'react'; -import { Indicator, Box, Alert, ButtonPrimary, Link, ButtonIcon } from 'design'; +import { + Indicator, + Box, + Text, + Alert, + ButtonPrimary, + Link, + Flex, + ButtonIcon, +} from 'design'; import { Cross } from 'design/Icon'; +import { HoverTooltip } from 'shared/components/ToolTip'; import { FeatureBox, @@ -47,6 +57,7 @@ export function Users(props: State) { onStartDelete, onStartEdit, onStartReset, + usersAcl, showMauInfo, onDismissUsersMauNotice, onClose, @@ -61,16 +72,65 @@ export function Users(props: State) { EmailPasswordReset, onEmailPasswordResetClose, } = props; + + const requiredPermissions = Object.entries(usersAcl) + .map(([key, value]) => { + if (key === 'edit') { + return { value, label: 'update' }; + } + if (key === 'create') { + return { value, label: 'create' }; + } + }) + .filter(Boolean); + + const isMissingPermissions = requiredPermissions.some(v => !v.value); + return ( - + Users {attempt.isSuccess && ( <> {!InviteCollaborators && ( - - Create New User - + + {/* TODO (avatus): extract this into a new "missing permissions" component. This will + require us to change the internals of HoverTooltip to allow more arbitrary styling of the popover. + */} + + You do not have all of the required permissions. + + + You are missing permissions: + + {requiredPermissions + .filter(perm => !perm.value) + .map(perm => ( + {`users.${perm.label}`} + ))} + + + + ) + } + > + + Create New User + + )} {InviteCollaborators && ( } {attempt.isSuccess && ( Users - - Create New User - + + Create New User + + @@ -511,7 +518,7 @@ exports[`success state 1`] = ` @@ -985,7 +992,7 @@ exports[`success state 1`] = ` { attemptActions.do(() => ctx.userService.fetchUsers().then(setUsers)); }, []); + // if the cluster has billing enabled, and usageBasedBilling, and they haven't acknowledged + // the info yet + const showMauInfo = + ctx.getFeatureFlags().billing && + cfg.isUsageBasedBilling && + !storageService.getUsersMauAcknowledged(); + + const usersAcl = ctx.storeUser.getUserAccess(); + return { attempt, users, fetchRoles, + usersAcl, operation, onStartCreate, onStartDelete,