diff --git a/console/src/app/modules/card/card.component.scss b/console/src/app/modules/card/card.component.scss
index 674176943c..f9f7ecba19 100644
--- a/console/src/app/modules/card/card.component.scss
+++ b/console/src/app/modules/card/card.component.scss
@@ -4,6 +4,7 @@
padding: 1.5rem;
border-radius: .5rem;
padding-top: 1rem;
+ min-width: 350px;
.header {
margin-top: 0;
diff --git a/console/src/app/modules/warn-dialog/warn-dialog.component.scss b/console/src/app/modules/warn-dialog/warn-dialog.component.scss
index be97648b32..b12329dcd5 100644
--- a/console/src/app/modules/warn-dialog/warn-dialog.component.scss
+++ b/console/src/app/modules/warn-dialog/warn-dialog.component.scss
@@ -11,6 +11,10 @@
.action {
display: flex;
+ button {
+ border-radius: .5rem;
+ }
+
.ok-button {
margin-left: .5rem;
}
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.html b/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.html
index ad79e7d455..486a9d6cf0 100644
--- a/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.html
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.html
@@ -40,10 +40,15 @@
-
+
+
+
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.scss b/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.scss
index 990b793c7f..851fdb4fb0 100644
--- a/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.scss
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.scss
@@ -98,3 +98,7 @@
}
}
}
+
+.resendemail {
+ margin-right: 1rem;
+}
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.ts b/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.ts
index 3523f17476..0931878e49 100644
--- a/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.ts
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/auth-user-detail.component.ts
@@ -1,12 +1,24 @@
import { Component, OnDestroy } from '@angular/core';
+import { MatDialog } from '@angular/material/dialog';
import { TranslateService } from '@ngx-translate/core';
import { Subscription } from 'rxjs';
import { ChangeType } from 'src/app/modules/changes/changes.component';
import { UserGrantContext } from 'src/app/modules/user-grants/user-grants-datasource';
-import { Gender, UserAddress, UserEmail, UserPhone, UserProfile, UserView } from 'src/app/proto/generated/auth_pb';
+import {
+ Gender,
+ UserAddress,
+ UserEmail,
+ UserPhone,
+ UserProfile,
+ UserState,
+ UserView,
+} from 'src/app/proto/generated/auth_pb';
import { GrpcAuthService } from 'src/app/services/grpc-auth.service';
import { ToastService } from 'src/app/services/toast.service';
+import { EditDialogType } from '../user-detail/user-detail.component';
+import { EditDialogComponent } from './edit-dialog/edit-dialog.component';
+
@Component({
selector: 'app-auth-user-detail',
templateUrl: './auth-user-detail.component.html',
@@ -26,6 +38,7 @@ export class AuthUserDetailComponent implements OnDestroy {
public ChangeType: any = ChangeType;
public userLoginMustBeDomain: boolean = false;
+ public UserState: any = UserState;
public USERGRANTCONTEXT: UserGrantContext = UserGrantContext.USER;
@@ -33,8 +46,13 @@ export class AuthUserDetailComponent implements OnDestroy {
public translate: TranslateService,
private toast: ToastService,
public userService: GrpcAuthService,
+ private dialog: MatDialog,
) {
this.loading = true;
+ this.refreshUser();
+ }
+
+ refreshUser(): void {
this.userService.GetMyUser().then(user => {
this.user = user.toObject();
this.loading = false;
@@ -81,6 +99,7 @@ export class AuthUserDetailComponent implements OnDestroy {
this.toast.showInfo('USER.TOAST.EMAILSAVED', true);
if (this.user.human) {
this.user.human.email = data.toObject().email;
+ this.refreshUser();
}
}).catch(error => {
this.toast.showError(error);
@@ -90,6 +109,7 @@ export class AuthUserDetailComponent implements OnDestroy {
public enteredPhoneCode(code: string): void {
this.userService.VerifyMyUserPhone(code).then(() => {
this.toast.showInfo('USER.TOAST.PHONESAVED', true);
+ this.refreshUser();
}).catch(error => {
this.toast.showError(error);
});
@@ -99,14 +119,6 @@ export class AuthUserDetailComponent implements OnDestroy {
this.translate.use(language);
}
- public resendEmailVerification(): void {
- this.userService.ResendEmailVerification().then(() => {
- this.toast.showInfo('USER.TOAST.EMAILSAVED', true);
- }).catch(error => {
- this.toast.showError(error);
- });
- }
-
public resendPhoneVerification(): void {
this.userService.ResendPhoneVerification().then(() => {
this.toast.showInfo('USER.TOAST.PHONEVERIFICATIONSENT', true);
@@ -115,11 +127,20 @@ export class AuthUserDetailComponent implements OnDestroy {
});
}
+ public resendEmailVerification(): void {
+ this.userService.ResendMyEmailVerificationMail().then(() => {
+ this.toast.showInfo('USER.TOAST.EMAILVERIFICATIONSENT', true);
+ }).catch(error => {
+ this.toast.showError(error);
+ });
+ }
+
public deletePhone(): void {
this.userService.RemoveMyUserPhone().then(() => {
this.toast.showInfo('USER.TOAST.PHONEREMOVED', true);
if (this.user.human) {
this.user.human.phone = '';
+ this.refreshUser();
}
}).catch(error => {
this.toast.showError(error);
@@ -133,10 +154,54 @@ export class AuthUserDetailComponent implements OnDestroy {
this.toast.showInfo('USER.TOAST.PHONESAVED', true);
if (this.user.human) {
this.user.human.phone = data.toObject().phone;
+ this.refreshUser();
}
}).catch(error => {
this.toast.showError(error);
});
}
}
+
+ public openEditDialog(type: EditDialogType): void {
+ switch (type) {
+ case EditDialogType.PHONE:
+ const dialogRefPhone = this.dialog.open(EditDialogComponent, {
+ data: {
+ confirmKey: 'ACTIONS.SAVE',
+ cancelKey: 'ACTIONS.CANCEL',
+ labelKey: 'ACTIONS.NEWVALUE',
+ titleKey: 'USER.LOGINMETHODS.PHONE.EDITTITLE',
+ descriptionKey: 'USER.LOGINMETHODS.PHONE.EDITDESC',
+ value: this.user.human?.phone,
+ },
+ width: '400px',
+ });
+
+ dialogRefPhone.afterClosed().subscribe(resp => {
+ if (resp) {
+ this.savePhone(resp);
+ }
+ });
+ break;
+ case EditDialogType.EMAIL:
+ const dialogRefEmail = this.dialog.open(EditDialogComponent, {
+ data: {
+ confirmKey: 'ACTIONS.SAVE',
+ cancelKey: 'ACTIONS.CANCEL',
+ labelKey: 'ACTIONS.NEWVALUE',
+ titleKey: 'USER.LOGINMETHODS.EMAIL.EDITTITLE',
+ descriptionKey: 'USER.LOGINMETHODS.EMAIL.EDITDESC',
+ value: this.user.human?.email,
+ },
+ width: '400px',
+ });
+
+ dialogRefEmail.afterClosed().subscribe(resp => {
+ if (resp) {
+ this.saveEmail(resp);
+ }
+ });
+ break;
+ }
+ }
}
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.html b/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.html
new file mode 100644
index 0000000000..72facd2d68
--- /dev/null
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.html
@@ -0,0 +1,20 @@
+
+ {{data.titleKey | translate}}
+
+{{data.descriptionKey | translate}}
+
+
+ {{data.labelKey | translate }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.scss b/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.scss
new file mode 100644
index 0000000000..06520a5471
--- /dev/null
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.scss
@@ -0,0 +1,21 @@
+.formfield {
+ width: 100%;
+}
+
+.desc {
+ font-size: 14px;
+ color: var(--grey);
+}
+
+.action {
+ display: flex;
+ justify-content: flex-end;
+
+ .ok-button {
+ margin-left: .5rem;
+ }
+
+ button {
+ border-radius: .5rem;
+ }
+}
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.spec.ts b/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.spec.ts
new file mode 100644
index 0000000000..9a6503fb60
--- /dev/null
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { CodeDialogComponent } from './code-dialog.component';
+
+describe('CodeDialogComponent', () => {
+ let component: CodeDialogComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [CodeDialogComponent],
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(CodeDialogComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.ts b/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.ts
new file mode 100644
index 0000000000..6ee5ecde6e
--- /dev/null
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/edit-dialog/edit-dialog.component.ts
@@ -0,0 +1,23 @@
+import { Component, Inject } from '@angular/core';
+import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
+
+@Component({
+ selector: 'app-edit-email-dialog',
+ templateUrl: './edit-dialog.component.html',
+ styleUrls: ['./edit-dialog.component.scss'],
+})
+export class EditDialogComponent {
+ public value: string = '';
+ constructor(public dialogRef: MatDialogRef,
+ @Inject(MAT_DIALOG_DATA) public data: any) {
+ this.value = data.value;
+ }
+
+ closeDialog(email: string = ''): void {
+ this.dialogRef.close(email);
+ }
+
+ closeDialogWithValue(value: string = ''): void {
+ this.dialogRef.close(value);
+ }
+}
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.html b/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.html
new file mode 100644
index 0000000000..37c55a531f
--- /dev/null
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.html
@@ -0,0 +1,19 @@
+
+ {{'USER.SENDEMAILDIALOG.TITLE' | translate}} {{data?.number}}
+
+{{'USER.SENDEMAILDIALOG.DESCRIPTION' | translate}}
+
+
+ {{ 'USER.SENDEMAILDIALOG.NEWEMAIL' | translate }}
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.scss b/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.scss
new file mode 100644
index 0000000000..06520a5471
--- /dev/null
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.scss
@@ -0,0 +1,21 @@
+.formfield {
+ width: 100%;
+}
+
+.desc {
+ font-size: 14px;
+ color: var(--grey);
+}
+
+.action {
+ display: flex;
+ justify-content: flex-end;
+
+ .ok-button {
+ margin-left: .5rem;
+ }
+
+ button {
+ border-radius: .5rem;
+ }
+}
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.spec.ts b/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.spec.ts
new file mode 100644
index 0000000000..9a6503fb60
--- /dev/null
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.spec.ts
@@ -0,0 +1,25 @@
+import { async, ComponentFixture, TestBed } from '@angular/core/testing';
+
+import { CodeDialogComponent } from './code-dialog.component';
+
+describe('CodeDialogComponent', () => {
+ let component: CodeDialogComponent;
+ let fixture: ComponentFixture;
+
+ beforeEach(async(() => {
+ TestBed.configureTestingModule({
+ declarations: [CodeDialogComponent],
+ })
+ .compileComponents();
+ }));
+
+ beforeEach(() => {
+ fixture = TestBed.createComponent(CodeDialogComponent);
+ component = fixture.componentInstance;
+ fixture.detectChanges();
+ });
+
+ it('should create', () => {
+ expect(component).toBeTruthy();
+ });
+});
diff --git a/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.ts b/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.ts
new file mode 100644
index 0000000000..79b560d555
--- /dev/null
+++ b/console/src/app/pages/users/user-detail/auth-user-detail/resend-email-dialog/resend-email-dialog.component.ts
@@ -0,0 +1,21 @@
+import { Component, Inject } from '@angular/core';
+import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
+
+@Component({
+ selector: 'app-resend-email-dialog',
+ templateUrl: './resend-email-dialog.component.html',
+ styleUrls: ['./resend-email-dialog.component.scss'],
+})
+export class ResendEmailDialogComponent {
+ public email: string = '';
+ constructor(public dialogRef: MatDialogRef,
+ @Inject(MAT_DIALOG_DATA) public data: any) { }
+
+ closeDialog(email: string = ''): void {
+ this.dialogRef.close(email);
+ }
+
+ closeDialogWithSend(email: string = ''): void {
+ this.dialogRef.close({ send: true, email });
+ }
+}
diff --git a/console/src/app/pages/users/user-detail/contact/contact.component.html b/console/src/app/pages/users/user-detail/contact/contact.component.html
index c4f1be7f08..cb2963cd19 100644
--- a/console/src/app/pages/users/user-detail/contact/contact.component.html
+++ b/console/src/app/pages/users/user-detail/contact/contact.component.html
@@ -1,69 +1,55 @@
-
{{ 'USER.PROFILE.PASSWORD' | translate }}
+
+
{{ 'USER.PROFILE.PASSWORD' | translate }}
+
*********
-
*********
-
+
+
-
{{ 'USER.EMAIL' | translate }}
+
+
{{ 'USER.EMAIL' | translate }}
+
{{human?.email}}
+
{{'USER.EMAILVERIFIED' | translate}}
+
+
{{'USER.NOTVERIFIED' | translate}}
-
-
-
-
-
-
-
-
- {{ 'USER.EMAIL' | translate }}
-
-
-
+
+
+
-
-
+
-
{{ 'USER.PHONE' | translate }}
+
+
{{ 'USER.PHONE' | translate }}
+
{{human?.phone ? human.phone : ('USER.PHONEEMPTY' | translate)}}
+
{{'USER.PHONEVERIFIED' | translate}}
+
+
{{'USER.NOTVERIFIED' | translate}}
-
-
-
-
-
-
+
+
-
-
- {{ 'USER.PHONE' | translate }}
-
-
-
-
\ No newline at end of file
diff --git a/console/src/app/pages/users/user-detail/contact/contact.component.scss b/console/src/app/pages/users/user-detail/contact/contact.component.scss
index 2abb6befc7..8141f72f16 100644
--- a/console/src/app/pages/users/user-detail/contact/contact.component.scss
+++ b/console/src/app/pages/users/user-detail/contact/contact.component.scss
@@ -5,29 +5,57 @@
.method-row {
display: flex;
- align-items: center;
justify-content: space-between;
+ align-items: center;
padding: .5rem;
border-bottom: 1px solid #ffffff20;
flex-wrap: wrap;
- .actions {
- flex: 1;
+ .left {
+ .label {
+ font-size: 13px;
+ margin-bottom: .5rem;
+ min-width: 100px;
+ color: var(--grey);
+ display: block;
+ }
+
+ .name {
+ display: block;
+ margin-bottom: .5rem;
+ }
+
+ .state {
+ font-size: 14px;
+ margin-bottom: .5rem;
+
+ &.verified {
+ color: #85d996;
+ display: block;
+ }
+
+ &.notverified {
+ color: #ff4436;
+ margin-right: 1rem;
+ }
+ }
+
+ .block {
+ display: block;
+ }
+ }
+
+ .right {
+ flex-basis: 70px;
display: flex;
justify-content: flex-end;
- align-items: center;
- flex-direction: column;
- min-width: 150px;
}
- .label {
- font-size: .9rem;
- max-width: 100px;
- color: var(--grey);
- }
-
- .icon {
- margin: .5rem;
+ .verified-icon {
+ font-size: 1.2rem;
+ line-height: 1.2rem;
+ height: 1.2rem;
+ cursor: default;
}
.verify {
@@ -38,6 +66,7 @@
cursor: pointer;
word-wrap: none;
white-space: nowrap;
+ margin-right: 1rem;
&:hover {
text-decoration: underline;
@@ -46,6 +75,6 @@
}
}
-.overflow {
- overflow: auto;
+.mat-form-field-wrapper {
+ padding-bottom: 0 !important;
}
diff --git a/console/src/app/pages/users/user-detail/contact/contact.component.ts b/console/src/app/pages/users/user-detail/contact/contact.component.ts
index d9961df4da..649f600c5f 100644
--- a/console/src/app/pages/users/user-detail/contact/contact.component.ts
+++ b/console/src/app/pages/users/user-detail/contact/contact.component.ts
@@ -1,46 +1,48 @@
-import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { Component, EventEmitter, Input, Output } from '@angular/core';
import { MatDialog } from '@angular/material/dialog';
-import { HumanView as AuthHumanView } from 'src/app/proto/generated/auth_pb';
-import { HumanView as MgmtHumanView } from 'src/app/proto/generated/management_pb';
+import { WarnDialogComponent } from 'src/app/modules/warn-dialog/warn-dialog.component';
+import { HumanView as AuthHumanView, UserState as AuthUserState } from 'src/app/proto/generated/auth_pb';
+import { HumanView as MgmtHumanView, UserState as MgmtUserState } from 'src/app/proto/generated/management_pb';
import { CodeDialogComponent } from '../auth-user-detail/code-dialog/code-dialog.component';
+import { EditDialogType } from '../user-detail/user-detail.component';
@Component({
selector: 'app-contact',
templateUrl: './contact.component.html',
styleUrls: ['./contact.component.scss'],
})
-export class ContactComponent implements OnInit {
+export class ContactComponent {
@Input() disablePhoneCode: boolean = false;
@Input() canWrite: boolean = false;
@Input() human!: AuthHumanView.AsObject | MgmtHumanView.AsObject;
- @Output() savedPhone: EventEmitter
= new EventEmitter();
- @Output() savedEmail: EventEmitter = new EventEmitter();
+ @Input() state!: AuthUserState | MgmtUserState;
+ @Output() editType: EventEmitter = new EventEmitter();
@Output() resendEmailVerification: EventEmitter = new EventEmitter();
@Output() resendPhoneVerification: EventEmitter = new EventEmitter();
@Output() enteredPhoneCode: EventEmitter = new EventEmitter();
@Output() deletedPhone: EventEmitter = new EventEmitter();
+ @Input() public userStateEnum: any;
- public emailEditState: boolean = false;
- public phoneEditState: boolean = false;
+ public EditDialogType: any = EditDialogType;
constructor(private dialog: MatDialog) { }
- ngOnInit(): void {
- }
-
- savePhone(): void {
- this.phoneEditState = false;
- this.savedPhone.emit(this.human.phone);
- }
-
emitDeletePhone(): void {
- this.phoneEditState = false;
- this.deletedPhone.emit();
- }
+ const dialogRef = this.dialog.open(WarnDialogComponent, {
+ data: {
+ confirmKey: 'ACTIONS.DELETE',
+ cancelKey: 'ACTIONS.CANCEL',
+ titleKey: 'USER.LOGINMETHODS.PHONE.DELETETITLE',
+ descriptionKey: 'USER.LOGINMETHODS.PHONE.DELETEDESC',
+ },
+ width: '400px',
+ });
- saveEmail(): void {
- this.emailEditState = false;
- this.savedEmail.emit(this.human.email);
+ dialogRef.afterClosed().subscribe(resp => {
+ if (resp) {
+ this.deletedPhone.emit();
+ }
+ });
}
emitEmailVerification(): void {
@@ -67,4 +69,8 @@ export class ContactComponent implements OnInit {
});
}
}
+
+ public openEditDialog(type: EditDialogType): void {
+ this.editType.emit(type);
+ }
}
diff --git a/console/src/app/pages/users/user-detail/user-detail.module.ts b/console/src/app/pages/users/user-detail/user-detail.module.ts
index 9350912b47..8bc4dd7525 100644
--- a/console/src/app/pages/users/user-detail/user-detail.module.ts
+++ b/console/src/app/pages/users/user-detail/user-detail.module.ts
@@ -34,7 +34,10 @@ import { AuthUserDetailComponent } from './auth-user-detail/auth-user-detail.com
import { AuthUserMfaComponent } from './auth-user-detail/auth-user-mfa/auth-user-mfa.component';
import { CodeDialogComponent } from './auth-user-detail/code-dialog/code-dialog.component';
import { DialogOtpComponent } from './auth-user-detail/dialog-otp/dialog-otp.component';
+import { EditDialogComponent } from './auth-user-detail/edit-dialog/edit-dialog.component';
+import { ResendEmailDialogComponent } from './auth-user-detail/resend-email-dialog/resend-email-dialog.component';
import { ThemeSettingComponent } from './auth-user-detail/theme-setting/theme-setting.component';
+import { ContactComponent } from './contact/contact.component';
import { DetailFormMachineModule } from './detail-form-machine/detail-form-machine.module';
import { DetailFormModule } from './detail-form/detail-form.module';
import { ExternalIdpsComponent } from './external-idps/external-idps.component';
@@ -46,13 +49,13 @@ import { PasswordComponent } from './password/password.component';
import { UserDetailRoutingModule } from './user-detail-routing.module';
import { UserDetailComponent } from './user-detail/user-detail.component';
import { UserMfaComponent } from './user-detail/user-mfa/user-mfa.component';
-import { ContactComponent } from './contact/contact.component';
@NgModule({
declarations: [
AuthUserDetailComponent,
UserDetailComponent,
DialogOtpComponent,
+ EditDialogComponent,
AuthUserMfaComponent,
UserMfaComponent,
ThemeSettingComponent,
@@ -62,6 +65,7 @@ import { ContactComponent } from './contact/contact.component';
MachineKeysComponent,
ExternalIdpsComponent,
ContactComponent,
+ ResendEmailDialogComponent,
],
imports: [
UserDetailRoutingModule,
diff --git a/console/src/app/pages/users/user-detail/user-detail/user-detail.component.html b/console/src/app/pages/users/user-detail/user-detail/user-detail.component.html
index 60e8e523f0..98ba28223e 100644
--- a/console/src/app/pages/users/user-detail/user-detail/user-detail.component.html
+++ b/console/src/app/pages/users/user-detail/user-detail/user-detail.component.html
@@ -67,15 +67,20 @@
-
+
+ refresh
+
- {{ 'USER.PASSWORD.RESENDNOTIFICATION' | translate }}
+ {{'USER.RESENDINITIALEMAIL' | translate}}
diff --git a/console/src/app/pages/users/user-detail/user-detail/user-detail.component.ts b/console/src/app/pages/users/user-detail/user-detail/user-detail.component.ts
index 70fdb0fe5a..65d93bb058 100644
--- a/console/src/app/pages/users/user-detail/user-detail/user-detail.component.ts
+++ b/console/src/app/pages/users/user-detail/user-detail/user-detail.component.ts
@@ -1,9 +1,9 @@
import { Location } from '@angular/common';
-import { Component, OnDestroy, OnInit } from '@angular/core';
+import { Component, OnInit } from '@angular/core';
import { MatDialog } from '@angular/material/dialog';
import { ActivatedRoute } from '@angular/router';
import { TranslateService } from '@ngx-translate/core';
-import { Subscription } from 'rxjs';
+import { take } from 'rxjs/operators';
import { ChangeType } from 'src/app/modules/changes/changes.component';
import { UserGrantContext } from 'src/app/modules/user-grants/user-grants-datasource';
import { WarnDialogComponent } from 'src/app/modules/warn-dialog/warn-dialog.component';
@@ -21,18 +21,24 @@ import {
import { ManagementService } from 'src/app/services/mgmt.service';
import { ToastService } from 'src/app/services/toast.service';
+import { EditDialogComponent } from '../auth-user-detail/edit-dialog/edit-dialog.component';
+import { ResendEmailDialogComponent } from '../auth-user-detail/resend-email-dialog/resend-email-dialog.component';
+
+export enum EditDialogType {
+ PHONE = 1,
+ EMAIL = 2,
+}
+
@Component({
selector: 'app-user-detail',
templateUrl: './user-detail.component.html',
styleUrls: ['./user-detail.component.scss'],
})
-export class UserDetailComponent implements OnInit, OnDestroy {
+export class UserDetailComponent implements OnInit {
public user!: UserView.AsObject;
public genders: Gender[] = [Gender.GENDER_MALE, Gender.GENDER_FEMALE, Gender.GENDER_DIVERSE];
public languages: string[] = ['de', 'en'];
- private subscription: Subscription = new Subscription();
-
public ChangeType: any = ChangeType;
public loading: boolean = false;
@@ -40,6 +46,8 @@ export class UserDetailComponent implements OnInit, OnDestroy {
public copied: string = '';
public USERGRANTCONTEXT: UserGrantContext = UserGrantContext.USER;
+ public EditDialogType: any = EditDialogType;
+
constructor(
public translate: TranslateService,
private route: ActivatedRoute,
@@ -49,8 +57,8 @@ export class UserDetailComponent implements OnInit, OnDestroy {
private dialog: MatDialog,
) { }
- public ngOnInit(): void {
- this.subscription = this.route.params.subscribe(params => {
+ refreshUser(): void {
+ this.route.params.pipe(take(1)).subscribe(params => {
const { id } = params;
this.mgmtUserService.GetUserByID(id).then(user => {
this.user = user.toObject();
@@ -60,8 +68,8 @@ export class UserDetailComponent implements OnInit, OnDestroy {
});
}
- public ngOnDestroy(): void {
- this.subscription.unsubscribe();
+ public ngOnInit(): void {
+ this.refreshUser();
}
public changeState(newState: UserState): void {
@@ -149,6 +157,7 @@ export class UserDetailComponent implements OnInit, OnDestroy {
this.toast.showInfo('USER.TOAST.PHONEREMOVED', true);
if (this.user.human) {
this.user.human.phone = '';
+ this.refreshUser();
}
}).catch(error => {
this.toast.showError(error);
@@ -158,9 +167,10 @@ export class UserDetailComponent implements OnInit, OnDestroy {
public saveEmail(email: string): void {
if (this.user.id && email) {
this.mgmtUserService.SaveUserEmail(this.user.id, email).then((data: UserEmail) => {
- this.toast.showInfo('USER.TOAST.EMAILSENT', true);
+ this.toast.showInfo('USER.TOAST.EMAILSAVED', true);
if (this.user.human) {
this.user.human.email = data.toObject().email;
+ this.refreshUser();
}
}).catch(error => {
this.toast.showError(error);
@@ -175,6 +185,7 @@ export class UserDetailComponent implements OnInit, OnDestroy {
this.toast.showInfo('USER.TOAST.PHONESAVED', true);
if (this.user.human) {
this.user.human.phone = data.toObject().phone;
+ this.refreshUser();
}
}).catch(error => {
this.toast.showError(error);
@@ -217,4 +228,63 @@ export class UserDetailComponent implements OnInit, OnDestroy {
}
});
}
+
+ public resendInitEmail(): void {
+ const dialogRef = this.dialog.open(ResendEmailDialogComponent, {
+ width: '400px',
+ });
+
+ dialogRef.afterClosed().subscribe(resp => {
+ if (resp.send && this.user.id) {
+ this.mgmtUserService.ResendInitialMail(this.user.id, resp.email ?? '').then(() => {
+ this.toast.showInfo('USER.TOAST.INITEMAILSENT', true);
+ }).catch(error => {
+ this.toast.showError(error);
+ });
+ }
+ });
+ }
+
+ public openEditDialog(type: EditDialogType): void {
+ switch (type) {
+ case EditDialogType.PHONE:
+ const dialogRefPhone = this.dialog.open(EditDialogComponent, {
+ data: {
+ confirmKey: 'ACTIONS.SAVE',
+ cancelKey: 'ACTIONS.CANCEL',
+ labelKey: 'ACTIONS.NEWVALUE',
+ titleKey: 'USER.LOGINMETHODS.PHONE.EDITTITLE',
+ descriptionKey: 'USER.LOGINMETHODS.PHONE.EDITDESC',
+ value: this.user.human?.phone,
+ },
+ width: '400px',
+ });
+
+ dialogRefPhone.afterClosed().subscribe(resp => {
+ if (resp) {
+ this.savePhone(resp);
+ }
+ });
+ break;
+ case EditDialogType.EMAIL:
+ const dialogRefEmail = this.dialog.open(EditDialogComponent, {
+ data: {
+ confirmKey: 'ACTIONS.SAVE',
+ cancelKey: 'ACTIONS.CANCEL',
+ labelKey: 'ACTIONS.NEWVALUE',
+ titleKey: 'USER.LOGINMETHODS.EMAIL.EDITTITLE',
+ descriptionKey: 'USER.LOGINMETHODS.EMAIL.EDITDESC',
+ value: this.user.human?.email,
+ },
+ width: '400px',
+ });
+
+ dialogRefEmail.afterClosed().subscribe(resp => {
+ if (resp) {
+ this.saveEmail(resp);
+ }
+ });
+ break;
+ }
+ }
}
diff --git a/console/src/app/services/grpc-auth.service.ts b/console/src/app/services/grpc-auth.service.ts
index 3b471e14ce..67d5f4def4 100644
--- a/console/src/app/services/grpc-auth.service.ts
+++ b/console/src/app/services/grpc-auth.service.ts
@@ -249,6 +249,12 @@ export class GrpcAuthService {
return this.grpcService.auth.changeMyUserEmail(req);
}
+ public ResendMyEmailVerificationMail(): Promise {
+ return this.grpcService.auth.resendMyEmailVerificationMail(
+ new Empty(),
+ );
+ }
+
public RemoveMyUserPhone(): Promise {
return this.grpcService.auth.removeMyUserPhone(
new Empty(),
diff --git a/console/src/app/services/mgmt.service.ts b/console/src/app/services/mgmt.service.ts
index e006f9232b..e3e61180b4 100644
--- a/console/src/app/services/mgmt.service.ts
+++ b/console/src/app/services/mgmt.service.ts
@@ -40,6 +40,7 @@ import {
IdpSearchResponse,
IdpUpdate,
IdpView,
+ InitialMailRequest,
LoginName,
LoginPolicy,
LoginPolicyRequest,
@@ -786,6 +787,16 @@ export class ManagementService {
return this.grpcService.mgmt.resendEmailVerificationMail(req);
}
+ public ResendInitialMail(userId: string, newemail: string): Promise {
+ const req = new InitialMailRequest();
+ if (newemail) {
+ req.setEmail(newemail);
+ }
+ req.setId(userId);
+
+ return this.grpcService.mgmt.resendInitialMail(req);
+ }
+
public ResendPhoneVerification(id: string): Promise {
const req = new UserID();
req.setId(id);
diff --git a/console/src/assets/i18n/de.json b/console/src/assets/i18n/de.json
index 4d96e8cc46..8869315d36 100644
--- a/console/src/assets/i18n/de.json
+++ b/console/src/assets/i18n/de.json
@@ -77,7 +77,9 @@
"LOGIN":"Einloggen",
"EDIT":"Bearbeiten",
"PIN":"Anpinnen",
- "CONFIGURE":"Konfigurieren"
+ "CONFIGURE":"Konfigurieren",
+ "SEND":"Senden",
+ "NEWVALUE":"Neuer Wert"
},
"ERRORS": {
"REQUIRED": "Bitte fülle alle benötigten Felder aus.",
@@ -112,6 +114,11 @@
"DELETE_TITLE":"User löschen",
"DELETE_DESCRIPTION":"Sie sind im Begriff einen Benutzer endgültig zu löschen. Wollen Sie dies wirklich tun?"
},
+ "SENDEMAILDIALOG":{
+ "TITLE":"Email Benachrichtigung senden",
+ "DESCRIPTION":"Klicken Sie den untenstehenden Button um ein verifizierungs Email an die aktuelle Adresse zu versenden oder ändern Sie die Emailadresse in dem Feld.",
+ "NEWEMAIL":"Neue Email"
+ },
"TABLE":{
"DEACTIVATE":"Deaktivieren",
"ACTIVATE":"Aktivieren",
@@ -241,6 +248,10 @@
},
"EMAIL": "E-Mail",
"PHONE": "Telefonnummer",
+ "PHONEEMPTY":"Keine Telefonnummer hinterlegt",
+ "PHONEVERIFIED":"Telefonnummer bestätigt.",
+ "EMAILVERIFIED":"Email verifiziert",
+ "NOTVERIFIED":"nicht verifiziert",
"PREFERRED_LOGINNAME":"Bevorzugter Loginname",
"LOGINMETHODS": {
"TITLE": "Kontaktinformationen",
@@ -248,12 +259,18 @@
"EMAIL": {
"TITLE": "E-Mail",
"VALID": "Validiert",
- "RESEND": "Verifikationsmail erneut senden"
+ "RESEND": "Verifikationsmail erneut senden",
+ "EDITTITLE":"Email ändern",
+ "EDITDESC":"Geben Sie die neue Email in dem darunterliegenden Feld ein!"
},
"PHONE": {
"TITLE": "Telefon",
"VALID": "Validiert",
- "RESEND": "Verifikationsnachricht erneut senden"
+ "RESEND": "Verifikationsnachricht erneut senden",
+ "EDITTITLE":"Nummer ändern",
+ "EDITDESC":"Geben Sie die neue Nummer in dem darunterliegenden Feld ein!",
+ "DELETETITLE":"Telefonnummer löschen",
+ "DELETEDESC":"Wollen Sie die Telefonnummer wirklich löschen?"
},
"RESENDCODE": "Code erneut senden",
"ENTERCODE":"Verifizieren",
@@ -294,10 +311,13 @@
"SIGNEDOUT_BTN":"Anmelden",
"EDITACCOUNT":"Konto bearbeiten",
"ADDACCOUNT":"Konto hinzufügen",
+ "RESENDINITIALEMAIL":"Neue Initialisierungsmail senden",
+ "RESENDEMAILNOTIFICATION":"Benachrichtigungsmail senden",
"TOAST": {
"CREATED":"Benutzer erfolgreich erstellt.",
"SAVED":"Profil gespeichert.",
"EMAILSAVED":"E-Mail gespeichert.",
+ "INITEMAILSENT":"Initialisierung Email gesendet.",
"PHONESAVED":"Telefonnummer gespeichert.",
"PHONEREMOVED":"Telefonnummer gelöscht.",
"PHONEVERIFIED":"Telefonnummer bestätigt.",
diff --git a/console/src/assets/i18n/en.json b/console/src/assets/i18n/en.json
index a0a9700ecd..e5e6f78bd3 100644
--- a/console/src/assets/i18n/en.json
+++ b/console/src/assets/i18n/en.json
@@ -77,7 +77,9 @@
"LOGIN":"Login",
"EDIT":"Edit",
"PIN":"Pin / Unpin",
- "CONFIGURE":"Configure"
+ "CONFIGURE":"Configure",
+ "SEND":"Send",
+ "NEWVALUE":"New Value"
},
"ERRORS": {
"REQUIRED": "Some required fields are missing.",
@@ -112,6 +114,11 @@
"DELETE_TITLE":"Delete User",
"DELETE_DESCRIPTION":"You are about to permanently delete a user. Are you sure?"
},
+ "SENDEMAILDIALOG":{
+ "TITLE":"Send Email Notification",
+ "DESCRIPTION":"Click the button below to send a notification to the current email address or change the email address in the field.",
+ "NEWEMAIL":"New email address"
+ },
"TABLE":{
"DEACTIVATE":"Deactivate",
"ACTIVATE":"Activate",
@@ -240,7 +247,11 @@
"NOTEQUAL":"The passwords provided do not match."
},
"EMAIL": "E-mail",
- "PHONE": "Phone Number",
+ "PHONE": "Phonenumber",
+ "PHONEEMPTY":"No phonenumber defined",
+ "PHONEVERIFIED":"Phonenumber verified.",
+ "EMAILVERIFIED":"Email verified",
+ "NOTVERIFIED":"not verified",
"PREFERRED_LOGINNAME":"Preferred Loginname",
"LOGINMETHODS": {
"TITLE": "Contact Information",
@@ -248,12 +259,18 @@
"EMAIL": {
"TITLE": "E-mail",
"VALID": "validated",
- "RESEND": "Resend Verification E-mail"
+ "RESEND": "Resend Verification E-mail",
+ "EDITTITLE":"Change Email",
+ "EDITDESC":"Enter the new email in the field below."
},
"PHONE": {
"TITLE": "Phone",
"VALID": "validated",
- "RESEND": "Resend Verification Text Message"
+ "RESEND": "Resend Verification Text Message",
+ "EDITTITLE":"Change number",
+ "EDITDESC":"Enter the new phonenumber in the field below.",
+ "DELETETITLE":"Delete Phonenumber",
+ "DELETEDESC":"Do you really want to delete the phonenumber"
},
"RESENDCODE": "Resend Code",
"ENTERCODE":"Verify",
@@ -294,10 +311,13 @@
"SIGNEDOUT_BTN":"Sign In",
"EDITACCOUNT":"Edit Account",
"ADDACCOUNT":"Log in With Another Account",
+ "RESENDINITIALEMAIL":"Send new initialisation mail",
+ "RESENDEMAILNOTIFICATION":"Resend Email notification",
"TOAST": {
"CREATED":"User created successfully.",
"SAVED":"Profile saved successfully.",
"EMAILSAVED":"E-mail saved successfully.",
+ "INITEMAILSENT":"Initializing mail sent.",
"PHONESAVED":"Phone saved successfully.",
"PHONEREMOVED":"Phone has been removed.",
"PHONEVERIFIED":"Phone verified successfully.",
diff --git a/console/src/index.html b/console/src/index.html
index b63d62074b..5e48f270bc 100644
--- a/console/src/index.html
+++ b/console/src/index.html
@@ -11,6 +11,7 @@
+
diff --git a/internal/api/grpc/management/user.go b/internal/api/grpc/management/user.go
index 8df25d31eb..f40f86317c 100644
--- a/internal/api/grpc/management/user.go
+++ b/internal/api/grpc/management/user.go
@@ -195,6 +195,11 @@ func (s *Server) SetInitialPassword(ctx context.Context, request *management.Pas
return &empty.Empty{}, err
}
+func (s *Server) ResendInitialMail(ctx context.Context, request *management.InitialMailRequest) (*empty.Empty, error) {
+ err := s.user.ResendInitialMail(ctx, request.Id, request.Email)
+ return &empty.Empty{}, err
+}
+
func (s *Server) SearchUserExternalIDPs(ctx context.Context, request *management.ExternalIDPSearchRequest) (*management.ExternalIDPSearchResponse, error) {
externalIDP, err := s.user.SearchExternalIDPs(ctx, externalIDPSearchRequestToModel(request))
if err != nil {
diff --git a/internal/management/repository/eventsourcing/eventstore/user.go b/internal/management/repository/eventsourcing/eventstore/user.go
index f35fa09a11..c8579062ff 100644
--- a/internal/management/repository/eventsourcing/eventstore/user.go
+++ b/internal/management/repository/eventsourcing/eventstore/user.go
@@ -10,6 +10,7 @@ import (
usr_grant_event "github.com/caos/zitadel/internal/usergrant/repository/eventsourcing"
"github.com/caos/logging"
+
"github.com/caos/zitadel/internal/api/authz"
"github.com/caos/zitadel/internal/config/systemdefaults"
"github.com/caos/zitadel/internal/errors"
@@ -238,6 +239,10 @@ func (repo *UserRepo) RequestSetPassword(ctx context.Context, id string, notifyT
return repo.UserEvents.RequestSetPassword(ctx, id, notifyType)
}
+func (repo *UserRepo) ResendInitialMail(ctx context.Context, userID, email string) error {
+ return repo.UserEvents.ResendInitialMail(ctx, userID, email)
+}
+
func (repo *UserRepo) ProfileByID(ctx context.Context, userID string) (*usr_model.Profile, error) {
user, err := repo.UserByID(ctx, userID)
if err != nil {
diff --git a/internal/management/repository/user.go b/internal/management/repository/user.go
index 93380aca50..58f4bdeda1 100644
--- a/internal/management/repository/user.go
+++ b/internal/management/repository/user.go
@@ -54,4 +54,6 @@ type UserRepository interface {
ChangeAddress(ctx context.Context, address *model.Address) (*model.Address, error)
SearchUserMemberships(ctx context.Context, request *model.UserMembershipSearchRequest) (*model.UserMembershipSearchResponse, error)
+
+ ResendInitialMail(ctx context.Context, userID, email string) error
}
diff --git a/internal/static/i18n/de.yaml b/internal/static/i18n/de.yaml
index 1627d3a467..2c6dec4c5f 100644
--- a/internal/static/i18n/de.yaml
+++ b/internal/static/i18n/de.yaml
@@ -12,6 +12,8 @@ Errors:
AlreadyInactive: Benutzer ist bereits deaktiviert
NotInactive: Benutzer ist nicht inaktiv
ShouldBeActiveOrInitial: Benutzer ist nicht aktiv oder initialisiert
+ AlreadyInitialised: Benutzer ist bereits initialisiert
+ NotInitialised: Benutzer ist noch nicht initialisiert
NotLocked: Benutzer ist nicht gesperrt
NoChanges: Keine Änderungen gefunden
InitCodeNotFound: Kein Initialisierungs Code gefunden
diff --git a/internal/static/i18n/en.yaml b/internal/static/i18n/en.yaml
index ea82b37b42..7f82bfa7c7 100644
--- a/internal/static/i18n/en.yaml
+++ b/internal/static/i18n/en.yaml
@@ -12,6 +12,8 @@ Errors:
AlreadyInactive: User already inactive
NotInactive: User is not inactive
ShouldBeActiveOrInitial: User is not active or inital
+ AlreadyInitialised: User is already initialised
+ NotInitialised: User is not yet initialised
NotLocked: User is not locked
NoChanges: No changes found
InitCodeNotFound: Initialization Code not found
diff --git a/internal/user/repository/eventsourcing/eventstore.go b/internal/user/repository/eventsourcing/eventstore.go
index 623acc2091..05a60c85d3 100644
--- a/internal/user/repository/eventsourcing/eventstore.go
+++ b/internal/user/repository/eventsourcing/eventstore.go
@@ -737,6 +737,9 @@ func (es *UserEventstore) RequestSetPassword(ctx context.Context, userID string,
if user.Human == nil {
return errors.ThrowPreconditionFailed(nil, "EVENT-33ywz", "Errors.User.NotHuman")
}
+ if user.State == usr_model.UserStateInitial {
+ return errors.ThrowPreconditionFailed(nil, "EVENT-Hs11s", "Errors.User.NotInitialised")
+ }
passwordCode := new(model.PasswordCode)
err = es.generatePasswordCode(passwordCode, notifyType)
@@ -754,6 +757,35 @@ func (es *UserEventstore) RequestSetPassword(ctx context.Context, userID string,
return nil
}
+func (es *UserEventstore) ResendInitialMail(ctx context.Context, userID, email string) error {
+ if userID == "" {
+ return caos_errs.ThrowPreconditionFailed(nil, "EVENT-G4bmn", "Errors.User.UserIDMissing")
+ }
+ user, err := es.UserByID(ctx, userID)
+ if err != nil {
+ return err
+ }
+ if user.Human == nil {
+ return errors.ThrowPreconditionFailed(nil, "EVENT-Hfsww", "Errors.User.NotHuman")
+ }
+ if user.State != usr_model.UserStateInitial {
+ return errors.ThrowPreconditionFailed(nil, "EVENT-BGbbe", "Errors.User.AlreadyInitialised")
+ }
+ err = user.GenerateInitCodeIfNeeded(es.InitializeUserCode)
+ if err != nil {
+ return err
+ }
+
+ repoUser := model.UserFromModel(user)
+ agg := ResendInitialPasswordAggregate(es.AggregateCreator(), repoUser, user.InitCode, email)
+ err = es_sdk.Push(ctx, es.PushAggregates, repoUser.AppendEvents, agg)
+ if err != nil {
+ return err
+ }
+ es.userCache.cacheUser(repoUser)
+ return nil
+}
+
func (es *UserEventstore) PasswordCodeSent(ctx context.Context, userID string) error {
if userID == "" {
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-s09ow", "Errors.User.UserIDMissing")
@@ -946,6 +978,9 @@ func (es *UserEventstore) ChangeEmail(ctx context.Context, email *usr_model.Emai
if user.Human == nil {
return nil, errors.ThrowPreconditionFailed(nil, "EVENT-tgBdL", "Errors.User.NotHuman")
}
+ if user.State == usr_model.UserStateInitial {
+ return nil, errors.ThrowPreconditionFailed(nil, "EVENT-3H4q", "Errors.User.NotInitialised")
+ }
emailCode, err := email.GenerateEmailCodeIfNeeded(es.EmailVerificationCode)
if err != nil {
@@ -1018,6 +1053,9 @@ func (es *UserEventstore) CreateEmailVerificationCode(ctx context.Context, userI
if user.Human == nil {
return errors.ThrowPreconditionFailed(nil, "EVENT-hqUZP", "Errors.User.NotHuman")
}
+ if user.State == usr_model.UserStateInitial {
+ return errors.ThrowPreconditionFailed(nil, "EVENT-E3fbw", "Errors.User.NotInitialised")
+ }
if user.Email == nil {
return caos_errs.ThrowPreconditionFailed(nil, "EVENT-pdo9s", "Errors.User.EmailNotFound")
}
diff --git a/internal/user/repository/eventsourcing/eventstore_mock_test.go b/internal/user/repository/eventsourcing/eventstore_mock_test.go
index ec0e0cc9e0..cf222718df 100644
--- a/internal/user/repository/eventsourcing/eventstore_mock_test.go
+++ b/internal/user/repository/eventsourcing/eventstore_mock_test.go
@@ -4,15 +4,15 @@ import (
"encoding/json"
"time"
- "github.com/caos/zitadel/internal/id"
+ "github.com/golang/mock/gomock"
mock_cache "github.com/caos/zitadel/internal/cache/mock"
"github.com/caos/zitadel/internal/crypto"
"github.com/caos/zitadel/internal/eventstore/mock"
es_models "github.com/caos/zitadel/internal/eventstore/models"
+ "github.com/caos/zitadel/internal/id"
global_model "github.com/caos/zitadel/internal/model"
"github.com/caos/zitadel/internal/user/repository/eventsourcing/model"
- "github.com/golang/mock/gomock"
)
func GetMockedEventstore(ctrl *gomock.Controller, mockEs *mock.MockEventstore) *UserEventstore {
@@ -162,11 +162,18 @@ func GetMockManipulateUserWithPasswordAndEmailCodeGen(ctrl *gomock.Controller, u
return GetMockedEventstoreWithPw(ctrl, mockEs, false, true, false, true)
}
-func GetMockManipulateUserWithEmailCodeGen(ctrl *gomock.Controller, user model.User) *UserEventstore {
+func GetMockManipulateUserWithEmailCodeGen(ctrl *gomock.Controller, user model.User, verified bool) *UserEventstore {
data, _ := json.Marshal(user)
events := []*es_models.Event{
{AggregateID: "AggregateID", AggregateVersion: "v1", Sequence: 1, Type: model.UserAdded, Data: data},
}
+ if verified {
+ email, _ := json.Marshal(model.Email{EmailAddress: "address"})
+ events = append(events,
+ &es_models.Event{AggregateID: "AggregateID", AggregateVersion: "v1", Sequence: 2, Type: model.HumanEmailVerified},
+ &es_models.Event{AggregateID: "AggregateID", AggregateVersion: "v1", Sequence: 3, Type: model.HumanEmailChanged, Data: email},
+ )
+ }
mockEs := mock.NewMockEventstore(ctrl)
mockEs.EXPECT().FilterEvents(gomock.Any(), gomock.Any()).Return(events, nil)
mockEs.EXPECT().AggregateCreator().Return(es_models.NewAggregateCreator("TEST"))
@@ -186,12 +193,15 @@ func GetMockManipulateUserWithPhoneCodeGen(ctrl *gomock.Controller, user model.U
return GetMockedEventstoreWithPw(ctrl, mockEs, false, false, true, false)
}
-func GetMockManipulateUserWithPasswordCodeGen(ctrl *gomock.Controller, user model.User) *UserEventstore {
+func GetMockManipulateUserWithPasswordCodeGen(ctrl *gomock.Controller, user model.User, verified bool) *UserEventstore {
data, _ := json.Marshal(user)
code, _ := json.Marshal(user.PasswordCode)
events := []*es_models.Event{
{AggregateID: "AggregateID", AggregateVersion: "v1", Sequence: 1, Type: model.UserAdded, Data: data},
- {AggregateID: "AggregateID", AggregateVersion: "v1", Sequence: 1, Type: model.UserPasswordCodeAdded, Data: code},
+ {AggregateID: "AggregateID", AggregateVersion: "v1", Sequence: 2, Type: model.UserPasswordCodeAdded, Data: code},
+ }
+ if verified {
+ events = append(events, &es_models.Event{AggregateID: "AggregateID", AggregateVersion: "v1", Sequence: 3, Type: model.HumanEmailVerified})
}
mockEs := mock.NewMockEventstore(ctrl)
mockEs.EXPECT().FilterEvents(gomock.Any(), gomock.Any()).Return(events, nil)
@@ -382,7 +392,7 @@ func GetMockManipulateUserVerifiedPhone(ctrl *gomock.Controller) *UserEventstore
return GetMockedEventstore(ctrl, mockEs)
}
-func GetMockManipulateUserFull(ctrl *gomock.Controller) *UserEventstore {
+func GetMockManipulateUserFull(ctrl *gomock.Controller, verified bool) *UserEventstore {
user := model.Human{
Profile: &model.Profile{
DisplayName: "DisplayName",
@@ -407,6 +417,9 @@ func GetMockManipulateUserFull(ctrl *gomock.Controller) *UserEventstore {
events := []*es_models.Event{
{AggregateID: "AggregateID", AggregateVersion: "v1", Sequence: 1, Type: model.UserAdded, Data: dataUser},
}
+ if verified {
+ events = append(events, &es_models.Event{AggregateID: "AggregateID", AggregateVersion: "v1", Sequence: 2, Type: model.HumanEmailVerified})
+ }
mockEs := mock.NewMockEventstore(ctrl)
mockEs.EXPECT().FilterEvents(gomock.Any(), gomock.Any()).Return(events, nil)
mockEs.EXPECT().AggregateCreator().Return(es_models.NewAggregateCreator("TEST"))
diff --git a/internal/user/repository/eventsourcing/eventstore_test.go b/internal/user/repository/eventsourcing/eventstore_test.go
index 9dba522daf..8dbd61a2b0 100644
--- a/internal/user/repository/eventsourcing/eventstore_test.go
+++ b/internal/user/repository/eventsourcing/eventstore_test.go
@@ -3,7 +3,6 @@ package eventsourcing
import (
"context"
"encoding/json"
- iam_model "github.com/caos/zitadel/internal/iam/model"
"net"
"testing"
"time"
@@ -15,6 +14,7 @@ import (
"github.com/caos/zitadel/internal/crypto"
caos_errs "github.com/caos/zitadel/internal/errors"
es_models "github.com/caos/zitadel/internal/eventstore/models"
+ iam_model "github.com/caos/zitadel/internal/iam/model"
"github.com/caos/zitadel/internal/user/model"
repo_model "github.com/caos/zitadel/internal/user/repository/eventsourcing/model"
)
@@ -1287,7 +1287,7 @@ func TestPasswordID(t *testing.T) {
{
name: "get by id, ok",
args: args{
- es: GetMockManipulateUserFull(ctrl),
+ es: GetMockManipulateUserFull(ctrl, false),
ctx: authz.NewMockContext("orgID", "userID"),
user: &model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}},
},
@@ -1366,7 +1366,7 @@ func TestSetOneTimePassword(t *testing.T) {
{
name: "create one time pw",
args: args{
- es: GetMockManipulateUserWithPasswordCodeGen(ctrl, repo_model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"}, Human: &repo_model.Human{}}),
+ es: GetMockManipulateUserWithPasswordCodeGen(ctrl, repo_model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"}, Human: &repo_model.Human{Email: &repo_model.Email{EmailAddress: "email"}}}, true),
ctx: authz.NewMockContext("orgID", "userID"),
policy: &iam_model.PasswordComplexityPolicyView{},
password: &model.Password{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"}, SecretString: "Password"},
@@ -1516,8 +1516,10 @@ func TestCheckPassword(t *testing.T) {
Algorithm: "hash",
Crypted: []byte("password"),
}},
+ Email: &repo_model.Email{EmailAddress: "email"},
},
},
+ true,
),
ctx: authz.NewMockContext("orgID", "userID"),
userID: "userID",
@@ -1582,8 +1584,10 @@ func TestSetPassword(t *testing.T) {
KeyID: "id",
Crypted: []byte("code"),
}},
+ Email: &repo_model.Email{EmailAddress: "email"},
},
},
+ true,
),
ctx: authz.NewMockContext("orgID", "userID"),
policy: &iam_model.PasswordComplexityPolicyView{},
@@ -1627,8 +1631,11 @@ func TestSetPassword(t *testing.T) {
es: GetMockManipulateUserWithPasswordCodeGen(ctrl,
repo_model.User{
ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"},
- Human: &repo_model.Human{},
+ Human: &repo_model.Human{
+ Email: &repo_model.Email{EmailAddress: "email"},
+ },
},
+ true,
),
ctx: authz.NewMockContext("orgID", "userID"),
policy: &iam_model.PasswordComplexityPolicyView{},
@@ -1653,8 +1660,10 @@ func TestSetPassword(t *testing.T) {
KeyID: "id",
Crypted: []byte("code2"),
}},
+ Email: &repo_model.Email{EmailAddress: "email"},
},
},
+ true,
),
ctx: authz.NewMockContext("orgID", "userID"),
policy: &iam_model.PasswordComplexityPolicyView{},
@@ -1759,8 +1768,11 @@ func TestChangePassword(t *testing.T) {
es: GetMockManipulateUserWithPasswordCodeGen(ctrl,
repo_model.User{
ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"},
- Human: &repo_model.Human{},
+ Human: &repo_model.Human{
+ Email: &repo_model.Email{EmailAddress: "email"},
+ },
},
+ true,
),
ctx: authz.NewMockContext("orgID", "userID"),
policy: &iam_model.PasswordComplexityPolicyView{},
@@ -1784,8 +1796,10 @@ func TestChangePassword(t *testing.T) {
Algorithm: "hash",
Crypted: []byte("older"),
}},
+ Email: &repo_model.Email{EmailAddress: "email"},
},
},
+ true,
),
ctx: authz.NewMockContext("orgID", "userID"),
policy: &iam_model.PasswordComplexityPolicyView{},
@@ -1859,7 +1873,12 @@ func TestRequestSetPassword(t *testing.T) {
{
name: "create pw",
args: args{
- es: GetMockManipulateUserWithPasswordCodeGen(ctrl, repo_model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"}, Human: &repo_model.Human{}}),
+ es: GetMockManipulateUserWithPasswordCodeGen(ctrl, repo_model.User{
+ ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"},
+ Human: &repo_model.Human{
+ Email: &repo_model.Email{EmailAddress: "email"},
+ }},
+ true),
ctx: authz.NewMockContext("orgID", "userID"),
userID: "AggregateID",
notifyType: model.NotificationTypeEmail,
@@ -1868,6 +1887,18 @@ func TestRequestSetPassword(t *testing.T) {
password: &model.Password{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, ChangeRequired: false},
},
},
+ {
+ name: "initial state",
+ args: args{
+ es: GetMockManipulateUserWithPasswordCodeGen(ctrl, repo_model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"}, Human: &repo_model.Human{}}, false),
+ ctx: authz.NewMockContext("orgID", "userID"),
+ userID: "AggregateID",
+ notifyType: model.NotificationTypeEmail,
+ },
+ res: res{
+ errFunc: caos_errs.IsPreconditionFailed,
+ },
+ },
{
name: "empty userid",
args: args{
@@ -1905,6 +1936,84 @@ func TestRequestSetPassword(t *testing.T) {
}
}
+func TestResendInitialMail(t *testing.T) {
+ ctrl := gomock.NewController(t)
+ type args struct {
+ es *UserEventstore
+ ctx context.Context
+ userID string
+ mail string
+ }
+ type res struct {
+ password *model.Password
+ errFunc func(err error) bool
+ }
+ tests := []struct {
+ name string
+ args args
+ res res
+ }{
+ {
+ name: "resend ok",
+ args: args{
+ es: GetMockManipulateUserWithInitCode(ctrl, repo_model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"}, Human: &repo_model.Human{}}),
+ ctx: authz.NewMockContext("orgID", "userID"),
+ userID: "AggregateID",
+ mail: "",
+ },
+ res: res{
+ password: &model.Password{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, ChangeRequired: false},
+ },
+ },
+ {
+ name: "resend with email ok",
+ args: args{
+ es: GetMockManipulateUserWithInitCode(ctrl, repo_model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID"}, Human: &repo_model.Human{}}),
+ ctx: authz.NewMockContext("orgID", "userID"),
+ userID: "AggregateID",
+ mail: "email",
+ },
+ res: res{
+ password: &model.Password{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, ChangeRequired: false},
+ },
+ },
+ {
+ name: "empty userid",
+ args: args{
+ es: GetMockManipulateUser(ctrl),
+ mail: "",
+ },
+ res: res{
+ errFunc: caos_errs.IsPreconditionFailed,
+ },
+ },
+ {
+ name: "existing user not found",
+ args: args{
+ es: GetMockManipulateUserNoEvents(ctrl),
+ ctx: authz.NewMockContext("orgID", "userID"),
+ userID: "AggregateID",
+ mail: "",
+ },
+ res: res{
+ errFunc: caos_errs.IsNotFound,
+ },
+ },
+ }
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ err := tt.args.es.ResendInitialMail(tt.args.ctx, tt.args.userID, tt.args.mail)
+
+ if tt.res.errFunc == nil && err != nil {
+ t.Errorf("should not get err")
+ }
+ if tt.res.errFunc != nil && !tt.res.errFunc(err) {
+ t.Errorf("got wrong err: %v ", err)
+ }
+ })
+ }
+}
+
func TestPasswordCodeSent(t *testing.T) {
ctrl := gomock.NewController(t)
type args struct {
@@ -2170,7 +2279,7 @@ func TestProfileByID(t *testing.T) {
{
name: "get by id, ok",
args: args{
- es: GetMockManipulateUserFull(ctrl),
+ es: GetMockManipulateUserFull(ctrl, false),
ctx: authz.NewMockContext("orgID", "userID"),
user: &model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, Human: &model.Human{}},
},
@@ -2237,7 +2346,7 @@ func TestChangeProfile(t *testing.T) {
{
name: "get by id, ok",
args: args{
- es: GetMockManipulateUserFull(ctrl),
+ es: GetMockManipulateUserFull(ctrl, false),
ctx: authz.NewMockContext("orgID", "userID"),
profile: &model.Profile{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, FirstName: "FirstName Changed", LastName: "LastName Changed"},
},
@@ -2304,7 +2413,7 @@ func TestEmailByID(t *testing.T) {
{
name: "get by id, ok",
args: args{
- es: GetMockManipulateUserFull(ctrl),
+ es: GetMockManipulateUserFull(ctrl, false),
ctx: authz.NewMockContext("orgID", "userID"),
user: &model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}},
},
@@ -2371,7 +2480,7 @@ func TestChangeEmail(t *testing.T) {
{
name: "change email address, verified",
args: args{
- es: GetMockManipulateUserFull(ctrl),
+ es: GetMockManipulateUserFull(ctrl, true),
ctx: authz.NewMockContext("orgID", "userID"),
email: &model.Email{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, EmailAddress: "EmailAddressChanged", IsEmailVerified: true},
},
@@ -2389,7 +2498,7 @@ func TestChangeEmail(t *testing.T) {
Profile: &repo_model.Profile{DisplayName: "DisplayName"},
Email: &repo_model.Email{EmailAddress: "EmailAddress"},
},
- }),
+ }, true),
ctx: authz.NewMockContext("orgID", "userID"),
email: &model.Email{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, EmailAddress: "EmailAddressChanged", IsEmailVerified: false},
},
@@ -2397,6 +2506,24 @@ func TestChangeEmail(t *testing.T) {
email: &model.Email{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, EmailAddress: "EmailAddressChanged", IsEmailVerified: false},
},
},
+ {
+ name: "user state initial",
+ args: args{
+ es: GetMockManipulateUserWithEmailCodeGen(ctrl, repo_model.User{
+ ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1},
+ UserName: "UserName",
+ Human: &repo_model.Human{
+ Profile: &repo_model.Profile{DisplayName: "DisplayName"},
+ Email: &repo_model.Email{EmailAddress: "EmailAddress"},
+ },
+ }, false),
+ ctx: authz.NewMockContext("orgID", "userID"),
+ email: &model.Email{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, EmailAddress: "EmailAddressChanged", IsEmailVerified: false},
+ },
+ res: res{
+ errFunc: caos_errs.IsPreconditionFailed,
+ },
+ },
{
name: "empty userid",
args: args{
@@ -2423,7 +2550,9 @@ func TestChangeEmail(t *testing.T) {
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
result, err := tt.args.es.ChangeEmail(tt.args.ctx, tt.args.email)
-
+ if (tt.res.errFunc != nil && !tt.res.errFunc(err)) || (tt.res.errFunc == nil && err != nil) {
+ t.Errorf("got wrong err: %v ", err)
+ }
if tt.res.errFunc == nil && result.AggregateID == "" {
t.Errorf("result has no id")
}
@@ -2433,9 +2562,6 @@ func TestChangeEmail(t *testing.T) {
if tt.res.errFunc == nil && result.IsEmailVerified != tt.res.email.IsEmailVerified {
t.Errorf("got wrong result change required: expected: %v, actual: %v ", tt.res.email.IsEmailVerified, result.IsEmailVerified)
}
- if tt.res.errFunc != nil && !tt.res.errFunc(err) {
- t.Errorf("got wrong err: %v ", err)
- }
})
}
}
@@ -2551,12 +2677,30 @@ func TestCreateEmailVerificationCode(t *testing.T) {
Human: &repo_model.Human{
Profile: &repo_model.Profile{DisplayName: "DisplayName"},
Email: &repo_model.Email{EmailAddress: "EmailAddress"},
- }}),
+ }}, true),
ctx: authz.NewMockContext("orgID", "userID"),
userID: "userID",
},
res: res{},
},
+ {
+ name: "initial state",
+ args: args{
+ es: GetMockManipulateUserWithEmailCodeGen(ctrl, repo_model.User{
+ ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1},
+ UserName: "UserName",
+ Human: &repo_model.Human{
+ Profile: &repo_model.Profile{DisplayName: "DisplayName"},
+ Email: &repo_model.Email{EmailAddress: "EmailAddress"},
+ },
+ }, false),
+ ctx: authz.NewMockContext("orgID", "userID"),
+ userID: "userID",
+ },
+ res: res{
+ errFunc: caos_errs.IsPreconditionFailed,
+ },
+ },
{
name: "empty userid",
args: args{
@@ -2606,7 +2750,7 @@ func TestCreateEmailVerificationCode(t *testing.T) {
err := tt.args.es.CreateEmailVerificationCode(tt.args.ctx, tt.args.userID)
if tt.res.errFunc == nil && err != nil {
- t.Errorf("should not ger err")
+ t.Errorf("should not get err, got: %v", err)
}
if tt.res.errFunc != nil && !tt.res.errFunc(err) {
t.Errorf("got wrong err: %v ", err)
@@ -2695,7 +2839,7 @@ func TestPhoneByID(t *testing.T) {
{
name: "get by id, ok",
args: args{
- es: GetMockManipulateUserFull(ctrl),
+ es: GetMockManipulateUserFull(ctrl, false),
ctx: authz.NewMockContext("orgID", "userID"),
user: &model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}},
},
@@ -2762,7 +2906,7 @@ func TestChangePhone(t *testing.T) {
{
name: "change phone, verified",
args: args{
- es: GetMockManipulateUserFull(ctrl),
+ es: GetMockManipulateUserFull(ctrl, false),
ctx: authz.NewMockContext("orgID", "userID"),
phone: &model.Phone{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, PhoneNumber: "0711234567", IsPhoneVerified: true},
},
@@ -3149,7 +3293,7 @@ func TestAddressByID(t *testing.T) {
{
name: "get by id, ok",
args: args{
- es: GetMockManipulateUserFull(ctrl),
+ es: GetMockManipulateUserFull(ctrl, false),
ctx: authz.NewMockContext("orgID", "userID"),
user: &model.User{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}},
},
@@ -3216,7 +3360,7 @@ func TestChangeAddress(t *testing.T) {
{
name: "change address ok",
args: args{
- es: GetMockManipulateUserFull(ctrl),
+ es: GetMockManipulateUserFull(ctrl, false),
ctx: authz.NewMockContext("orgID", "userID"),
address: &model.Address{ObjectRoot: es_models.ObjectRoot{AggregateID: "AggregateID", Sequence: 1}, Country: "CountryChanged"},
},
diff --git a/internal/user/repository/eventsourcing/model/user_human.go b/internal/user/repository/eventsourcing/model/user_human.go
index d707ff5b67..c091cc5b26 100644
--- a/internal/user/repository/eventsourcing/model/user_human.go
+++ b/internal/user/repository/eventsourcing/model/user_human.go
@@ -189,7 +189,7 @@ func (h *Human) AppendEvent(event *es_models.Event) (err error) {
}
func (h *Human) ComputeObject() {
- if h.State == int32(model.UserStateUnspecified) {
+ if h.State == int32(model.UserStateUnspecified) || h.State == int32(model.UserStateInitial) {
if h.Email != nil && h.IsEmailVerified {
h.State = int32(model.UserStateActive)
} else {
diff --git a/internal/user/repository/eventsourcing/user.go b/internal/user/repository/eventsourcing/user.go
index 3dcf50a0d4..2c5f568dfc 100644
--- a/internal/user/repository/eventsourcing/user.go
+++ b/internal/user/repository/eventsourcing/user.go
@@ -2,14 +2,15 @@ package eventsourcing
import (
"context"
- "github.com/caos/zitadel/internal/api/authz"
- iam_es_model "github.com/caos/zitadel/internal/iam/repository/eventsourcing/model"
"strings"
+ "github.com/caos/zitadel/internal/api/authz"
"github.com/caos/zitadel/internal/errors"
es_models "github.com/caos/zitadel/internal/eventstore/models"
es_sdk "github.com/caos/zitadel/internal/eventstore/sdk"
+ iam_es_model "github.com/caos/zitadel/internal/iam/repository/eventsourcing/model"
org_es_model "github.com/caos/zitadel/internal/org/repository/eventsourcing/model"
+ usr_model "github.com/caos/zitadel/internal/user/model"
"github.com/caos/zitadel/internal/user/repository/eventsourcing/model"
)
@@ -454,6 +455,25 @@ func RequestSetPassword(aggCreator *es_models.AggregateCreator, user *model.User
}
}
+func ResendInitialPasswordAggregate(aggCreator *es_models.AggregateCreator, user *model.User, code *usr_model.InitUserCode, email string) func(ctx context.Context) (*es_models.Aggregate, error) {
+ return func(ctx context.Context) (*es_models.Aggregate, error) {
+ if code == nil {
+ return nil, errors.ThrowPreconditionFailed(nil, "EVENT-dfs3q", "Errors.Internal")
+ }
+ agg, err := UserAggregate(ctx, aggCreator, user)
+ if err != nil {
+ return nil, err
+ }
+ if email != "" && user.Email != nil && email != user.Email.EmailAddress {
+ agg, err = agg.AppendEvent(model.HumanEmailChanged, map[string]interface{}{"email": email})
+ if err != nil {
+ return nil, err
+ }
+ }
+ return agg.AppendEvent(model.InitializedHumanCodeAdded, code)
+ }
+}
+
func PasswordCodeSentAggregate(aggCreator *es_models.AggregateCreator, user *model.User) func(ctx context.Context) (*es_models.Aggregate, error) {
return func(ctx context.Context) (*es_models.Aggregate, error) {
agg, err := UserAggregate(ctx, aggCreator, user)
diff --git a/internal/user/repository/eventsourcing/user_test.go b/internal/user/repository/eventsourcing/user_test.go
index 9e5917b150..bd7000a55c 100644
--- a/internal/user/repository/eventsourcing/user_test.go
+++ b/internal/user/repository/eventsourcing/user_test.go
@@ -5,11 +5,11 @@ import (
"testing"
"time"
- "github.com/caos/zitadel/internal/crypto"
-
"github.com/caos/zitadel/internal/api/authz"
+ "github.com/caos/zitadel/internal/crypto"
caos_errs "github.com/caos/zitadel/internal/errors"
"github.com/caos/zitadel/internal/eventstore/models"
+ usr_model "github.com/caos/zitadel/internal/user/model"
"github.com/caos/zitadel/internal/user/repository/eventsourcing/model"
)
@@ -1199,6 +1199,114 @@ func TestRequestSetPasswordAggregate(t *testing.T) {
}
}
+func TestResendInitialPasswordAggregate(t *testing.T) {
+ type args struct {
+ ctx context.Context
+ user *model.User
+ aggCreator *models.AggregateCreator
+ initcode *usr_model.InitUserCode
+ email string
+ }
+ type res struct {
+ eventLen int
+ eventType models.EventType
+ errFunc func(err error) bool
+ }
+ tests := []struct {
+ name string
+ args args
+ res res
+ }{
+ {
+ name: "resend initial password aggregate ok",
+ args: args{
+ ctx: authz.NewMockContext("orgID", "userID"),
+ user: &model.User{
+ ObjectRoot: models.ObjectRoot{AggregateID: "ID"},
+ UserName: "UserName",
+ Human: &model.Human{
+ Profile: &model.Profile{DisplayName: "DisplayName"},
+ Email: &model.Email{},
+ },
+ },
+ aggCreator: models.NewAggregateCreator("Test"),
+ initcode: &usr_model.InitUserCode{Expiry: time.Hour * 1},
+ },
+ res: res{
+ eventLen: 1,
+ },
+ },
+ {
+ name: "resend initial password with same email ok",
+ args: args{
+ ctx: authz.NewMockContext("orgID", "userID"),
+ user: &model.User{
+ ObjectRoot: models.ObjectRoot{AggregateID: "ID"},
+ UserName: "UserName",
+ Human: &model.Human{
+ Profile: &model.Profile{DisplayName: "DisplayName"},
+ Email: &model.Email{EmailAddress: "email"},
+ },
+ },
+ aggCreator: models.NewAggregateCreator("Test"),
+ initcode: &usr_model.InitUserCode{Expiry: time.Hour * 1},
+ email: "email",
+ },
+ res: res{
+ eventLen: 1,
+ },
+ },
+ {
+ name: "resend initial password with new email ok",
+ args: args{
+ ctx: authz.NewMockContext("orgID", "userID"),
+ user: &model.User{
+ ObjectRoot: models.ObjectRoot{AggregateID: "ID"},
+ UserName: "UserName",
+ Human: &model.Human{
+ Profile: &model.Profile{DisplayName: "DisplayName"},
+ Email: &model.Email{EmailAddress: "old"},
+ },
+ },
+ aggCreator: models.NewAggregateCreator("Test"),
+ initcode: &usr_model.InitUserCode{Expiry: time.Hour * 1},
+ email: "new",
+ },
+ res: res{
+ eventLen: 2,
+ },
+ },
+ {
+ name: "request nil",
+ args: args{
+ ctx: authz.NewMockContext("orgID", "userID"),
+ user: &model.User{
+ ObjectRoot: models.ObjectRoot{AggregateID: "ID"},
+ UserName: "UserName",
+ Human: &model.Human{
+ Profile: &model.Profile{DisplayName: "DisplayName"},
+ },
+ },
+ aggCreator: models.NewAggregateCreator("Test"),
+ },
+ res: res{
+ errFunc: caos_errs.IsPreconditionFailed,
+ },
+ },
+ }
+ for _, tt := range tests {
+ t.Run(tt.name, func(t *testing.T) {
+ agg, err := ResendInitialPasswordAggregate(tt.args.aggCreator, tt.args.user, tt.args.initcode, tt.args.email)(tt.args.ctx)
+ if (tt.res.errFunc == nil && err != nil) || (tt.res.errFunc != nil && !tt.res.errFunc(err)) {
+ t.Errorf("got wrong err: %v ", err)
+ }
+ if tt.res.errFunc == nil && len(agg.Events) != tt.res.eventLen {
+ t.Errorf("got wrong event len: expected: %v, actual: %v ", tt.res.eventLen, len(agg.Events))
+ }
+ })
+ }
+}
+
func TestPasswordCodeSentAggregate(t *testing.T) {
type args struct {
ctx context.Context
diff --git a/pkg/grpc/management/management.pb.authoptions.go b/pkg/grpc/management/management.pb.authoptions.go
index 43f03c28ee..f849b45597 100644
--- a/pkg/grpc/management/management.pb.authoptions.go
+++ b/pkg/grpc/management/management.pb.authoptions.go
@@ -184,6 +184,11 @@ var ManagementService_AuthMethods = authz.MethodMapping{
CheckParam: "",
},
+ "/caos.zitadel.management.api.v1.ManagementService/ResendInitialMail": authz.Option{
+ Permission: "user.write",
+ CheckParam: "",
+ },
+
"/caos.zitadel.management.api.v1.ManagementService/SearchUserMemberships": authz.Option{
Permission: "user.membership.read",
CheckParam: "",
diff --git a/pkg/grpc/management/management.pb.go b/pkg/grpc/management/management.pb.go
index fed9cf0b52..b1086f381c 100644
--- a/pkg/grpc/management/management.pb.go
+++ b/pkg/grpc/management/management.pb.go
@@ -1,13 +1,11 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
-// versions:
-// protoc-gen-go v1.25.0
-// protoc v3.11.3
// source: management.proto
package management
import (
context "context"
+ fmt "fmt"
_ "github.com/caos/zitadel/internal/protoc/protoc-gen-authoption/authoption"
message "github.com/caos/zitadel/pkg/grpc/message"
_ "github.com/envoyproxy/protoc-gen-validate/validate"
@@ -20,22 +18,19 @@ import (
grpc "google.golang.org/grpc"
codes "google.golang.org/grpc/codes"
status "google.golang.org/grpc/status"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- reflect "reflect"
- sync "sync"
+ math "math"
)
-const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
-)
+// Reference imports to suppress errors if they are not otherwise used.
+var _ = proto.Marshal
+var _ = fmt.Errorf
+var _ = math.Inf
-// This is a compile-time assertion that a sufficiently up-to-date version
-// of the legacy proto package is being used.
-const _ = proto.ProtoPackageIsVersion4
+// This is a compile-time assertion to ensure that this generated file
+// is compatible with the proto package it is being compiled against.
+// A compilation error at this line likely means your copy of the
+// proto package needs to be updated.
+const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
type IamSetupStep int32
@@ -45,45 +40,24 @@ const (
IamSetupStep_iam_setup_step_2 IamSetupStep = 2
)
-// Enum value maps for IamSetupStep.
-var (
- IamSetupStep_name = map[int32]string{
- 0: "iam_setup_step_UNDEFINED",
- 1: "iam_setup_step_1",
- 2: "iam_setup_step_2",
- }
- IamSetupStep_value = map[string]int32{
- "iam_setup_step_UNDEFINED": 0,
- "iam_setup_step_1": 1,
- "iam_setup_step_2": 2,
- }
-)
+var IamSetupStep_name = map[int32]string{
+ 0: "iam_setup_step_UNDEFINED",
+ 1: "iam_setup_step_1",
+ 2: "iam_setup_step_2",
+}
-func (x IamSetupStep) Enum() *IamSetupStep {
- p := new(IamSetupStep)
- *p = x
- return p
+var IamSetupStep_value = map[string]int32{
+ "iam_setup_step_UNDEFINED": 0,
+ "iam_setup_step_1": 1,
+ "iam_setup_step_2": 2,
}
func (x IamSetupStep) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(IamSetupStep_name, int32(x))
}
-func (IamSetupStep) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[0].Descriptor()
-}
-
-func (IamSetupStep) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[0]
-}
-
-func (x IamSetupStep) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use IamSetupStep.Descriptor instead.
func (IamSetupStep) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{0}
+ return fileDescriptor_edc174f991dc0a25, []int{0}
}
type UserState int32
@@ -98,53 +72,32 @@ const (
UserState_USERSTATE_INITIAL UserState = 6
)
-// Enum value maps for UserState.
-var (
- UserState_name = map[int32]string{
- 0: "USERSTATE_UNSPECIFIED",
- 1: "USERSTATE_ACTIVE",
- 2: "USERSTATE_INACTIVE",
- 3: "USERSTATE_DELETED",
- 4: "USERSTATE_LOCKED",
- 5: "USERSTATE_SUSPEND",
- 6: "USERSTATE_INITIAL",
- }
- UserState_value = map[string]int32{
- "USERSTATE_UNSPECIFIED": 0,
- "USERSTATE_ACTIVE": 1,
- "USERSTATE_INACTIVE": 2,
- "USERSTATE_DELETED": 3,
- "USERSTATE_LOCKED": 4,
- "USERSTATE_SUSPEND": 5,
- "USERSTATE_INITIAL": 6,
- }
-)
+var UserState_name = map[int32]string{
+ 0: "USERSTATE_UNSPECIFIED",
+ 1: "USERSTATE_ACTIVE",
+ 2: "USERSTATE_INACTIVE",
+ 3: "USERSTATE_DELETED",
+ 4: "USERSTATE_LOCKED",
+ 5: "USERSTATE_SUSPEND",
+ 6: "USERSTATE_INITIAL",
+}
-func (x UserState) Enum() *UserState {
- p := new(UserState)
- *p = x
- return p
+var UserState_value = map[string]int32{
+ "USERSTATE_UNSPECIFIED": 0,
+ "USERSTATE_ACTIVE": 1,
+ "USERSTATE_INACTIVE": 2,
+ "USERSTATE_DELETED": 3,
+ "USERSTATE_LOCKED": 4,
+ "USERSTATE_SUSPEND": 5,
+ "USERSTATE_INITIAL": 6,
}
func (x UserState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserState_name, int32(x))
}
-func (UserState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[1].Descriptor()
-}
-
-func (UserState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[1]
-}
-
-func (x UserState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserState.Descriptor instead.
func (UserState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{1}
+ return fileDescriptor_edc174f991dc0a25, []int{1}
}
type Gender int32
@@ -156,47 +109,26 @@ const (
Gender_GENDER_DIVERSE Gender = 3
)
-// Enum value maps for Gender.
-var (
- Gender_name = map[int32]string{
- 0: "GENDER_UNSPECIFIED",
- 1: "GENDER_FEMALE",
- 2: "GENDER_MALE",
- 3: "GENDER_DIVERSE",
- }
- Gender_value = map[string]int32{
- "GENDER_UNSPECIFIED": 0,
- "GENDER_FEMALE": 1,
- "GENDER_MALE": 2,
- "GENDER_DIVERSE": 3,
- }
-)
+var Gender_name = map[int32]string{
+ 0: "GENDER_UNSPECIFIED",
+ 1: "GENDER_FEMALE",
+ 2: "GENDER_MALE",
+ 3: "GENDER_DIVERSE",
+}
-func (x Gender) Enum() *Gender {
- p := new(Gender)
- *p = x
- return p
+var Gender_value = map[string]int32{
+ "GENDER_UNSPECIFIED": 0,
+ "GENDER_FEMALE": 1,
+ "GENDER_MALE": 2,
+ "GENDER_DIVERSE": 3,
}
func (x Gender) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(Gender_name, int32(x))
}
-func (Gender) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[2].Descriptor()
-}
-
-func (Gender) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[2]
-}
-
-func (x Gender) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use Gender.Descriptor instead.
func (Gender) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{2}
+ return fileDescriptor_edc174f991dc0a25, []int{2}
}
type MachineKeyType int32
@@ -206,43 +138,22 @@ const (
MachineKeyType_MACHINEKEY_JSON MachineKeyType = 1
)
-// Enum value maps for MachineKeyType.
-var (
- MachineKeyType_name = map[int32]string{
- 0: "MACHINEKEY_UNSPECIFIED",
- 1: "MACHINEKEY_JSON",
- }
- MachineKeyType_value = map[string]int32{
- "MACHINEKEY_UNSPECIFIED": 0,
- "MACHINEKEY_JSON": 1,
- }
-)
+var MachineKeyType_name = map[int32]string{
+ 0: "MACHINEKEY_UNSPECIFIED",
+ 1: "MACHINEKEY_JSON",
+}
-func (x MachineKeyType) Enum() *MachineKeyType {
- p := new(MachineKeyType)
- *p = x
- return p
+var MachineKeyType_value = map[string]int32{
+ "MACHINEKEY_UNSPECIFIED": 0,
+ "MACHINEKEY_JSON": 1,
}
func (x MachineKeyType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MachineKeyType_name, int32(x))
}
-func (MachineKeyType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[3].Descriptor()
-}
-
-func (MachineKeyType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[3]
-}
-
-func (x MachineKeyType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MachineKeyType.Descriptor instead.
func (MachineKeyType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{3}
+ return fileDescriptor_edc174f991dc0a25, []int{3}
}
type UserSearchKey int32
@@ -259,57 +170,36 @@ const (
UserSearchKey_USERSEARCHKEY_TYPE UserSearchKey = 8
)
-// Enum value maps for UserSearchKey.
-var (
- UserSearchKey_name = map[int32]string{
- 0: "USERSEARCHKEY_UNSPECIFIED",
- 1: "USERSEARCHKEY_USER_NAME",
- 2: "USERSEARCHKEY_FIRST_NAME",
- 3: "USERSEARCHKEY_LAST_NAME",
- 4: "USERSEARCHKEY_NICK_NAME",
- 5: "USERSEARCHKEY_DISPLAY_NAME",
- 6: "USERSEARCHKEY_EMAIL",
- 7: "USERSEARCHKEY_STATE",
- 8: "USERSEARCHKEY_TYPE",
- }
- UserSearchKey_value = map[string]int32{
- "USERSEARCHKEY_UNSPECIFIED": 0,
- "USERSEARCHKEY_USER_NAME": 1,
- "USERSEARCHKEY_FIRST_NAME": 2,
- "USERSEARCHKEY_LAST_NAME": 3,
- "USERSEARCHKEY_NICK_NAME": 4,
- "USERSEARCHKEY_DISPLAY_NAME": 5,
- "USERSEARCHKEY_EMAIL": 6,
- "USERSEARCHKEY_STATE": 7,
- "USERSEARCHKEY_TYPE": 8,
- }
-)
+var UserSearchKey_name = map[int32]string{
+ 0: "USERSEARCHKEY_UNSPECIFIED",
+ 1: "USERSEARCHKEY_USER_NAME",
+ 2: "USERSEARCHKEY_FIRST_NAME",
+ 3: "USERSEARCHKEY_LAST_NAME",
+ 4: "USERSEARCHKEY_NICK_NAME",
+ 5: "USERSEARCHKEY_DISPLAY_NAME",
+ 6: "USERSEARCHKEY_EMAIL",
+ 7: "USERSEARCHKEY_STATE",
+ 8: "USERSEARCHKEY_TYPE",
+}
-func (x UserSearchKey) Enum() *UserSearchKey {
- p := new(UserSearchKey)
- *p = x
- return p
+var UserSearchKey_value = map[string]int32{
+ "USERSEARCHKEY_UNSPECIFIED": 0,
+ "USERSEARCHKEY_USER_NAME": 1,
+ "USERSEARCHKEY_FIRST_NAME": 2,
+ "USERSEARCHKEY_LAST_NAME": 3,
+ "USERSEARCHKEY_NICK_NAME": 4,
+ "USERSEARCHKEY_DISPLAY_NAME": 5,
+ "USERSEARCHKEY_EMAIL": 6,
+ "USERSEARCHKEY_STATE": 7,
+ "USERSEARCHKEY_TYPE": 8,
}
func (x UserSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserSearchKey_name, int32(x))
}
-func (UserSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[4].Descriptor()
-}
-
-func (UserSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[4]
-}
-
-func (x UserSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserSearchKey.Descriptor instead.
func (UserSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{4}
+ return fileDescriptor_edc174f991dc0a25, []int{4}
}
type SearchMethod int32
@@ -328,61 +218,40 @@ const (
SearchMethod_SEARCHMETHOD_LIST_CONTAINS SearchMethod = 10
)
-// Enum value maps for SearchMethod.
-var (
- SearchMethod_name = map[int32]string{
- 0: "SEARCHMETHOD_EQUALS",
- 1: "SEARCHMETHOD_STARTS_WITH",
- 2: "SEARCHMETHOD_CONTAINS",
- 3: "SEARCHMETHOD_EQUALS_IGNORE_CASE",
- 4: "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE",
- 5: "SEARCHMETHOD_CONTAINS_IGNORE_CASE",
- 6: "SEARCHMETHOD_NOT_EQUALS",
- 7: "SEARCHMETHOD_GREATER_THAN",
- 8: "SEARCHMETHOD_LESS_THAN",
- 9: "SEARCHMETHOD_IS_ONE_OF",
- 10: "SEARCHMETHOD_LIST_CONTAINS",
- }
- SearchMethod_value = map[string]int32{
- "SEARCHMETHOD_EQUALS": 0,
- "SEARCHMETHOD_STARTS_WITH": 1,
- "SEARCHMETHOD_CONTAINS": 2,
- "SEARCHMETHOD_EQUALS_IGNORE_CASE": 3,
- "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE": 4,
- "SEARCHMETHOD_CONTAINS_IGNORE_CASE": 5,
- "SEARCHMETHOD_NOT_EQUALS": 6,
- "SEARCHMETHOD_GREATER_THAN": 7,
- "SEARCHMETHOD_LESS_THAN": 8,
- "SEARCHMETHOD_IS_ONE_OF": 9,
- "SEARCHMETHOD_LIST_CONTAINS": 10,
- }
-)
+var SearchMethod_name = map[int32]string{
+ 0: "SEARCHMETHOD_EQUALS",
+ 1: "SEARCHMETHOD_STARTS_WITH",
+ 2: "SEARCHMETHOD_CONTAINS",
+ 3: "SEARCHMETHOD_EQUALS_IGNORE_CASE",
+ 4: "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE",
+ 5: "SEARCHMETHOD_CONTAINS_IGNORE_CASE",
+ 6: "SEARCHMETHOD_NOT_EQUALS",
+ 7: "SEARCHMETHOD_GREATER_THAN",
+ 8: "SEARCHMETHOD_LESS_THAN",
+ 9: "SEARCHMETHOD_IS_ONE_OF",
+ 10: "SEARCHMETHOD_LIST_CONTAINS",
+}
-func (x SearchMethod) Enum() *SearchMethod {
- p := new(SearchMethod)
- *p = x
- return p
+var SearchMethod_value = map[string]int32{
+ "SEARCHMETHOD_EQUALS": 0,
+ "SEARCHMETHOD_STARTS_WITH": 1,
+ "SEARCHMETHOD_CONTAINS": 2,
+ "SEARCHMETHOD_EQUALS_IGNORE_CASE": 3,
+ "SEARCHMETHOD_STARTS_WITH_IGNORE_CASE": 4,
+ "SEARCHMETHOD_CONTAINS_IGNORE_CASE": 5,
+ "SEARCHMETHOD_NOT_EQUALS": 6,
+ "SEARCHMETHOD_GREATER_THAN": 7,
+ "SEARCHMETHOD_LESS_THAN": 8,
+ "SEARCHMETHOD_IS_ONE_OF": 9,
+ "SEARCHMETHOD_LIST_CONTAINS": 10,
}
func (x SearchMethod) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(SearchMethod_name, int32(x))
}
-func (SearchMethod) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[5].Descriptor()
-}
-
-func (SearchMethod) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[5]
-}
-
-func (x SearchMethod) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use SearchMethod.Descriptor instead.
func (SearchMethod) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{5}
+ return fileDescriptor_edc174f991dc0a25, []int{5}
}
type MfaType int32
@@ -393,45 +262,24 @@ const (
MfaType_MFATYPE_OTP MfaType = 2
)
-// Enum value maps for MfaType.
-var (
- MfaType_name = map[int32]string{
- 0: "MFATYPE_UNSPECIFIED",
- 1: "MFATYPE_SMS",
- 2: "MFATYPE_OTP",
- }
- MfaType_value = map[string]int32{
- "MFATYPE_UNSPECIFIED": 0,
- "MFATYPE_SMS": 1,
- "MFATYPE_OTP": 2,
- }
-)
+var MfaType_name = map[int32]string{
+ 0: "MFATYPE_UNSPECIFIED",
+ 1: "MFATYPE_SMS",
+ 2: "MFATYPE_OTP",
+}
-func (x MfaType) Enum() *MfaType {
- p := new(MfaType)
- *p = x
- return p
+var MfaType_value = map[string]int32{
+ "MFATYPE_UNSPECIFIED": 0,
+ "MFATYPE_SMS": 1,
+ "MFATYPE_OTP": 2,
}
func (x MfaType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MfaType_name, int32(x))
}
-func (MfaType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[6].Descriptor()
-}
-
-func (MfaType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[6]
-}
-
-func (x MfaType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MfaType.Descriptor instead.
func (MfaType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{6}
+ return fileDescriptor_edc174f991dc0a25, []int{6}
}
type MFAState int32
@@ -443,47 +291,26 @@ const (
MFAState_MFASTATE_REMOVED MFAState = 3
)
-// Enum value maps for MFAState.
-var (
- MFAState_name = map[int32]string{
- 0: "MFASTATE_UNSPECIFIED",
- 1: "MFASTATE_NOT_READY",
- 2: "MFASTATE_READY",
- 3: "MFASTATE_REMOVED",
- }
- MFAState_value = map[string]int32{
- "MFASTATE_UNSPECIFIED": 0,
- "MFASTATE_NOT_READY": 1,
- "MFASTATE_READY": 2,
- "MFASTATE_REMOVED": 3,
- }
-)
+var MFAState_name = map[int32]string{
+ 0: "MFASTATE_UNSPECIFIED",
+ 1: "MFASTATE_NOT_READY",
+ 2: "MFASTATE_READY",
+ 3: "MFASTATE_REMOVED",
+}
-func (x MFAState) Enum() *MFAState {
- p := new(MFAState)
- *p = x
- return p
+var MFAState_value = map[string]int32{
+ "MFASTATE_UNSPECIFIED": 0,
+ "MFASTATE_NOT_READY": 1,
+ "MFASTATE_READY": 2,
+ "MFASTATE_REMOVED": 3,
}
func (x MFAState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MFAState_name, int32(x))
}
-func (MFAState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[7].Descriptor()
-}
-
-func (MFAState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[7]
-}
-
-func (x MFAState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MFAState.Descriptor instead.
func (MFAState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{7}
+ return fileDescriptor_edc174f991dc0a25, []int{7}
}
type NotificationType int32
@@ -493,43 +320,22 @@ const (
NotificationType_NOTIFICATIONTYPE_SMS NotificationType = 1
)
-// Enum value maps for NotificationType.
-var (
- NotificationType_name = map[int32]string{
- 0: "NOTIFICATIONTYPE_EMAIL",
- 1: "NOTIFICATIONTYPE_SMS",
- }
- NotificationType_value = map[string]int32{
- "NOTIFICATIONTYPE_EMAIL": 0,
- "NOTIFICATIONTYPE_SMS": 1,
- }
-)
+var NotificationType_name = map[int32]string{
+ 0: "NOTIFICATIONTYPE_EMAIL",
+ 1: "NOTIFICATIONTYPE_SMS",
+}
-func (x NotificationType) Enum() *NotificationType {
- p := new(NotificationType)
- *p = x
- return p
+var NotificationType_value = map[string]int32{
+ "NOTIFICATIONTYPE_EMAIL": 0,
+ "NOTIFICATIONTYPE_SMS": 1,
}
func (x NotificationType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(NotificationType_name, int32(x))
}
-func (NotificationType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[8].Descriptor()
-}
-
-func (NotificationType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[8]
-}
-
-func (x NotificationType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use NotificationType.Descriptor instead.
func (NotificationType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{8}
+ return fileDescriptor_edc174f991dc0a25, []int{8}
}
type PolicyState int32
@@ -541,47 +347,26 @@ const (
PolicyState_POLICYSTATE_DELETED PolicyState = 3
)
-// Enum value maps for PolicyState.
-var (
- PolicyState_name = map[int32]string{
- 0: "POLICYSTATE_UNSPECIFIED",
- 1: "POLICYSTATE_ACTIVE",
- 2: "POLICYSTATE_INACTIVE",
- 3: "POLICYSTATE_DELETED",
- }
- PolicyState_value = map[string]int32{
- "POLICYSTATE_UNSPECIFIED": 0,
- "POLICYSTATE_ACTIVE": 1,
- "POLICYSTATE_INACTIVE": 2,
- "POLICYSTATE_DELETED": 3,
- }
-)
+var PolicyState_name = map[int32]string{
+ 0: "POLICYSTATE_UNSPECIFIED",
+ 1: "POLICYSTATE_ACTIVE",
+ 2: "POLICYSTATE_INACTIVE",
+ 3: "POLICYSTATE_DELETED",
+}
-func (x PolicyState) Enum() *PolicyState {
- p := new(PolicyState)
- *p = x
- return p
+var PolicyState_value = map[string]int32{
+ "POLICYSTATE_UNSPECIFIED": 0,
+ "POLICYSTATE_ACTIVE": 1,
+ "POLICYSTATE_INACTIVE": 2,
+ "POLICYSTATE_DELETED": 3,
}
func (x PolicyState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(PolicyState_name, int32(x))
}
-func (PolicyState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[9].Descriptor()
-}
-
-func (PolicyState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[9]
-}
-
-func (x PolicyState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use PolicyState.Descriptor instead.
func (PolicyState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{9}
+ return fileDescriptor_edc174f991dc0a25, []int{9}
}
type OrgState int32
@@ -592,45 +377,24 @@ const (
OrgState_ORGSTATE_INACTIVE OrgState = 2
)
-// Enum value maps for OrgState.
-var (
- OrgState_name = map[int32]string{
- 0: "ORGSTATE_UNSPECIFIED",
- 1: "ORGSTATE_ACTIVE",
- 2: "ORGSTATE_INACTIVE",
- }
- OrgState_value = map[string]int32{
- "ORGSTATE_UNSPECIFIED": 0,
- "ORGSTATE_ACTIVE": 1,
- "ORGSTATE_INACTIVE": 2,
- }
-)
+var OrgState_name = map[int32]string{
+ 0: "ORGSTATE_UNSPECIFIED",
+ 1: "ORGSTATE_ACTIVE",
+ 2: "ORGSTATE_INACTIVE",
+}
-func (x OrgState) Enum() *OrgState {
- p := new(OrgState)
- *p = x
- return p
+var OrgState_value = map[string]int32{
+ "ORGSTATE_UNSPECIFIED": 0,
+ "ORGSTATE_ACTIVE": 1,
+ "ORGSTATE_INACTIVE": 2,
}
func (x OrgState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgState_name, int32(x))
}
-func (OrgState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[10].Descriptor()
-}
-
-func (OrgState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[10]
-}
-
-func (x OrgState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgState.Descriptor instead.
func (OrgState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{10}
+ return fileDescriptor_edc174f991dc0a25, []int{10}
}
type OrgDomainValidationType int32
@@ -641,45 +405,24 @@ const (
OrgDomainValidationType_ORGDOMAINVALIDATIONTYPE_DNS OrgDomainValidationType = 2
)
-// Enum value maps for OrgDomainValidationType.
-var (
- OrgDomainValidationType_name = map[int32]string{
- 0: "ORGDOMAINVALIDATIONTYPE_UNSPECIFIED",
- 1: "ORGDOMAINVALIDATIONTYPE_HTTP",
- 2: "ORGDOMAINVALIDATIONTYPE_DNS",
- }
- OrgDomainValidationType_value = map[string]int32{
- "ORGDOMAINVALIDATIONTYPE_UNSPECIFIED": 0,
- "ORGDOMAINVALIDATIONTYPE_HTTP": 1,
- "ORGDOMAINVALIDATIONTYPE_DNS": 2,
- }
-)
+var OrgDomainValidationType_name = map[int32]string{
+ 0: "ORGDOMAINVALIDATIONTYPE_UNSPECIFIED",
+ 1: "ORGDOMAINVALIDATIONTYPE_HTTP",
+ 2: "ORGDOMAINVALIDATIONTYPE_DNS",
+}
-func (x OrgDomainValidationType) Enum() *OrgDomainValidationType {
- p := new(OrgDomainValidationType)
- *p = x
- return p
+var OrgDomainValidationType_value = map[string]int32{
+ "ORGDOMAINVALIDATIONTYPE_UNSPECIFIED": 0,
+ "ORGDOMAINVALIDATIONTYPE_HTTP": 1,
+ "ORGDOMAINVALIDATIONTYPE_DNS": 2,
}
func (x OrgDomainValidationType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgDomainValidationType_name, int32(x))
}
-func (OrgDomainValidationType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[11].Descriptor()
-}
-
-func (OrgDomainValidationType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[11]
-}
-
-func (x OrgDomainValidationType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgDomainValidationType.Descriptor instead.
func (OrgDomainValidationType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{11}
+ return fileDescriptor_edc174f991dc0a25, []int{11}
}
type OrgDomainSearchKey int32
@@ -689,43 +432,22 @@ const (
OrgDomainSearchKey_ORGDOMAINSEARCHKEY_DOMAIN OrgDomainSearchKey = 1
)
-// Enum value maps for OrgDomainSearchKey.
-var (
- OrgDomainSearchKey_name = map[int32]string{
- 0: "ORGDOMAINSEARCHKEY_UNSPECIFIED",
- 1: "ORGDOMAINSEARCHKEY_DOMAIN",
- }
- OrgDomainSearchKey_value = map[string]int32{
- "ORGDOMAINSEARCHKEY_UNSPECIFIED": 0,
- "ORGDOMAINSEARCHKEY_DOMAIN": 1,
- }
-)
+var OrgDomainSearchKey_name = map[int32]string{
+ 0: "ORGDOMAINSEARCHKEY_UNSPECIFIED",
+ 1: "ORGDOMAINSEARCHKEY_DOMAIN",
+}
-func (x OrgDomainSearchKey) Enum() *OrgDomainSearchKey {
- p := new(OrgDomainSearchKey)
- *p = x
- return p
+var OrgDomainSearchKey_value = map[string]int32{
+ "ORGDOMAINSEARCHKEY_UNSPECIFIED": 0,
+ "ORGDOMAINSEARCHKEY_DOMAIN": 1,
}
func (x OrgDomainSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgDomainSearchKey_name, int32(x))
}
-func (OrgDomainSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[12].Descriptor()
-}
-
-func (OrgDomainSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[12]
-}
-
-func (x OrgDomainSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgDomainSearchKey.Descriptor instead.
func (OrgDomainSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{12}
+ return fileDescriptor_edc174f991dc0a25, []int{12}
}
type OrgMemberSearchKey int32
@@ -738,49 +460,28 @@ const (
OrgMemberSearchKey_ORGMEMBERSEARCHKEY_USER_ID OrgMemberSearchKey = 4
)
-// Enum value maps for OrgMemberSearchKey.
-var (
- OrgMemberSearchKey_name = map[int32]string{
- 0: "ORGMEMBERSEARCHKEY_UNSPECIFIED",
- 1: "ORGMEMBERSEARCHKEY_FIRST_NAME",
- 2: "ORGMEMBERSEARCHKEY_LAST_NAME",
- 3: "ORGMEMBERSEARCHKEY_EMAIL",
- 4: "ORGMEMBERSEARCHKEY_USER_ID",
- }
- OrgMemberSearchKey_value = map[string]int32{
- "ORGMEMBERSEARCHKEY_UNSPECIFIED": 0,
- "ORGMEMBERSEARCHKEY_FIRST_NAME": 1,
- "ORGMEMBERSEARCHKEY_LAST_NAME": 2,
- "ORGMEMBERSEARCHKEY_EMAIL": 3,
- "ORGMEMBERSEARCHKEY_USER_ID": 4,
- }
-)
+var OrgMemberSearchKey_name = map[int32]string{
+ 0: "ORGMEMBERSEARCHKEY_UNSPECIFIED",
+ 1: "ORGMEMBERSEARCHKEY_FIRST_NAME",
+ 2: "ORGMEMBERSEARCHKEY_LAST_NAME",
+ 3: "ORGMEMBERSEARCHKEY_EMAIL",
+ 4: "ORGMEMBERSEARCHKEY_USER_ID",
+}
-func (x OrgMemberSearchKey) Enum() *OrgMemberSearchKey {
- p := new(OrgMemberSearchKey)
- *p = x
- return p
+var OrgMemberSearchKey_value = map[string]int32{
+ "ORGMEMBERSEARCHKEY_UNSPECIFIED": 0,
+ "ORGMEMBERSEARCHKEY_FIRST_NAME": 1,
+ "ORGMEMBERSEARCHKEY_LAST_NAME": 2,
+ "ORGMEMBERSEARCHKEY_EMAIL": 3,
+ "ORGMEMBERSEARCHKEY_USER_ID": 4,
}
func (x OrgMemberSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OrgMemberSearchKey_name, int32(x))
}
-func (OrgMemberSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[13].Descriptor()
-}
-
-func (OrgMemberSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[13]
-}
-
-func (x OrgMemberSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OrgMemberSearchKey.Descriptor instead.
func (OrgMemberSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{13}
+ return fileDescriptor_edc174f991dc0a25, []int{13}
}
type ProjectSearchKey int32
@@ -790,43 +491,22 @@ const (
ProjectSearchKey_PROJECTSEARCHKEY_PROJECT_NAME ProjectSearchKey = 1
)
-// Enum value maps for ProjectSearchKey.
-var (
- ProjectSearchKey_name = map[int32]string{
- 0: "PROJECTSEARCHKEY_UNSPECIFIED",
- 1: "PROJECTSEARCHKEY_PROJECT_NAME",
- }
- ProjectSearchKey_value = map[string]int32{
- "PROJECTSEARCHKEY_UNSPECIFIED": 0,
- "PROJECTSEARCHKEY_PROJECT_NAME": 1,
- }
-)
+var ProjectSearchKey_name = map[int32]string{
+ 0: "PROJECTSEARCHKEY_UNSPECIFIED",
+ 1: "PROJECTSEARCHKEY_PROJECT_NAME",
+}
-func (x ProjectSearchKey) Enum() *ProjectSearchKey {
- p := new(ProjectSearchKey)
- *p = x
- return p
+var ProjectSearchKey_value = map[string]int32{
+ "PROJECTSEARCHKEY_UNSPECIFIED": 0,
+ "PROJECTSEARCHKEY_PROJECT_NAME": 1,
}
func (x ProjectSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectSearchKey_name, int32(x))
}
-func (ProjectSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[14].Descriptor()
-}
-
-func (ProjectSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[14]
-}
-
-func (x ProjectSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectSearchKey.Descriptor instead.
func (ProjectSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{14}
+ return fileDescriptor_edc174f991dc0a25, []int{14}
}
type ProjectState int32
@@ -837,45 +517,24 @@ const (
ProjectState_PROJECTSTATE_INACTIVE ProjectState = 2
)
-// Enum value maps for ProjectState.
-var (
- ProjectState_name = map[int32]string{
- 0: "PROJECTSTATE_UNSPECIFIED",
- 1: "PROJECTSTATE_ACTIVE",
- 2: "PROJECTSTATE_INACTIVE",
- }
- ProjectState_value = map[string]int32{
- "PROJECTSTATE_UNSPECIFIED": 0,
- "PROJECTSTATE_ACTIVE": 1,
- "PROJECTSTATE_INACTIVE": 2,
- }
-)
+var ProjectState_name = map[int32]string{
+ 0: "PROJECTSTATE_UNSPECIFIED",
+ 1: "PROJECTSTATE_ACTIVE",
+ 2: "PROJECTSTATE_INACTIVE",
+}
-func (x ProjectState) Enum() *ProjectState {
- p := new(ProjectState)
- *p = x
- return p
+var ProjectState_value = map[string]int32{
+ "PROJECTSTATE_UNSPECIFIED": 0,
+ "PROJECTSTATE_ACTIVE": 1,
+ "PROJECTSTATE_INACTIVE": 2,
}
func (x ProjectState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectState_name, int32(x))
}
-func (ProjectState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[15].Descriptor()
-}
-
-func (ProjectState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[15]
-}
-
-func (x ProjectState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectState.Descriptor instead.
func (ProjectState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{15}
+ return fileDescriptor_edc174f991dc0a25, []int{15}
}
type ProjectRoleSearchKey int32
@@ -886,45 +545,24 @@ const (
ProjectRoleSearchKey_PROJECTROLESEARCHKEY_DISPLAY_NAME ProjectRoleSearchKey = 2
)
-// Enum value maps for ProjectRoleSearchKey.
-var (
- ProjectRoleSearchKey_name = map[int32]string{
- 0: "PROJECTROLESEARCHKEY_UNSPECIFIED",
- 1: "PROJECTROLESEARCHKEY_KEY",
- 2: "PROJECTROLESEARCHKEY_DISPLAY_NAME",
- }
- ProjectRoleSearchKey_value = map[string]int32{
- "PROJECTROLESEARCHKEY_UNSPECIFIED": 0,
- "PROJECTROLESEARCHKEY_KEY": 1,
- "PROJECTROLESEARCHKEY_DISPLAY_NAME": 2,
- }
-)
+var ProjectRoleSearchKey_name = map[int32]string{
+ 0: "PROJECTROLESEARCHKEY_UNSPECIFIED",
+ 1: "PROJECTROLESEARCHKEY_KEY",
+ 2: "PROJECTROLESEARCHKEY_DISPLAY_NAME",
+}
-func (x ProjectRoleSearchKey) Enum() *ProjectRoleSearchKey {
- p := new(ProjectRoleSearchKey)
- *p = x
- return p
+var ProjectRoleSearchKey_value = map[string]int32{
+ "PROJECTROLESEARCHKEY_UNSPECIFIED": 0,
+ "PROJECTROLESEARCHKEY_KEY": 1,
+ "PROJECTROLESEARCHKEY_DISPLAY_NAME": 2,
}
func (x ProjectRoleSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectRoleSearchKey_name, int32(x))
}
-func (ProjectRoleSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[16].Descriptor()
-}
-
-func (ProjectRoleSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[16]
-}
-
-func (x ProjectRoleSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectRoleSearchKey.Descriptor instead.
func (ProjectRoleSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{16}
+ return fileDescriptor_edc174f991dc0a25, []int{16}
}
type ProjectMemberSearchKey int32
@@ -938,51 +576,30 @@ const (
ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_USER_NAME ProjectMemberSearchKey = 5
)
-// Enum value maps for ProjectMemberSearchKey.
-var (
- ProjectMemberSearchKey_name = map[int32]string{
- 0: "PROJECTMEMBERSEARCHKEY_UNSPECIFIED",
- 1: "PROJECTMEMBERSEARCHKEY_FIRST_NAME",
- 2: "PROJECTMEMBERSEARCHKEY_LAST_NAME",
- 3: "PROJECTMEMBERSEARCHKEY_EMAIL",
- 4: "PROJECTMEMBERSEARCHKEY_USER_ID",
- 5: "PROJECTMEMBERSEARCHKEY_USER_NAME",
- }
- ProjectMemberSearchKey_value = map[string]int32{
- "PROJECTMEMBERSEARCHKEY_UNSPECIFIED": 0,
- "PROJECTMEMBERSEARCHKEY_FIRST_NAME": 1,
- "PROJECTMEMBERSEARCHKEY_LAST_NAME": 2,
- "PROJECTMEMBERSEARCHKEY_EMAIL": 3,
- "PROJECTMEMBERSEARCHKEY_USER_ID": 4,
- "PROJECTMEMBERSEARCHKEY_USER_NAME": 5,
- }
-)
+var ProjectMemberSearchKey_name = map[int32]string{
+ 0: "PROJECTMEMBERSEARCHKEY_UNSPECIFIED",
+ 1: "PROJECTMEMBERSEARCHKEY_FIRST_NAME",
+ 2: "PROJECTMEMBERSEARCHKEY_LAST_NAME",
+ 3: "PROJECTMEMBERSEARCHKEY_EMAIL",
+ 4: "PROJECTMEMBERSEARCHKEY_USER_ID",
+ 5: "PROJECTMEMBERSEARCHKEY_USER_NAME",
+}
-func (x ProjectMemberSearchKey) Enum() *ProjectMemberSearchKey {
- p := new(ProjectMemberSearchKey)
- *p = x
- return p
+var ProjectMemberSearchKey_value = map[string]int32{
+ "PROJECTMEMBERSEARCHKEY_UNSPECIFIED": 0,
+ "PROJECTMEMBERSEARCHKEY_FIRST_NAME": 1,
+ "PROJECTMEMBERSEARCHKEY_LAST_NAME": 2,
+ "PROJECTMEMBERSEARCHKEY_EMAIL": 3,
+ "PROJECTMEMBERSEARCHKEY_USER_ID": 4,
+ "PROJECTMEMBERSEARCHKEY_USER_NAME": 5,
}
func (x ProjectMemberSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectMemberSearchKey_name, int32(x))
}
-func (ProjectMemberSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[17].Descriptor()
-}
-
-func (ProjectMemberSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[17]
-}
-
-func (x ProjectMemberSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectMemberSearchKey.Descriptor instead.
func (ProjectMemberSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{17}
+ return fileDescriptor_edc174f991dc0a25, []int{17}
}
type AppState int32
@@ -993,45 +610,24 @@ const (
AppState_APPSTATE_INACTIVE AppState = 2
)
-// Enum value maps for AppState.
-var (
- AppState_name = map[int32]string{
- 0: "APPSTATE_UNSPECIFIED",
- 1: "APPSTATE_ACTIVE",
- 2: "APPSTATE_INACTIVE",
- }
- AppState_value = map[string]int32{
- "APPSTATE_UNSPECIFIED": 0,
- "APPSTATE_ACTIVE": 1,
- "APPSTATE_INACTIVE": 2,
- }
-)
+var AppState_name = map[int32]string{
+ 0: "APPSTATE_UNSPECIFIED",
+ 1: "APPSTATE_ACTIVE",
+ 2: "APPSTATE_INACTIVE",
+}
-func (x AppState) Enum() *AppState {
- p := new(AppState)
- *p = x
- return p
+var AppState_value = map[string]int32{
+ "APPSTATE_UNSPECIFIED": 0,
+ "APPSTATE_ACTIVE": 1,
+ "APPSTATE_INACTIVE": 2,
}
func (x AppState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(AppState_name, int32(x))
}
-func (AppState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[18].Descriptor()
-}
-
-func (AppState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[18]
-}
-
-func (x AppState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use AppState.Descriptor instead.
func (AppState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{18}
+ return fileDescriptor_edc174f991dc0a25, []int{18}
}
type OIDCVersion int32
@@ -1040,41 +636,20 @@ const (
OIDCVersion_OIDCV1_0 OIDCVersion = 0
)
-// Enum value maps for OIDCVersion.
-var (
- OIDCVersion_name = map[int32]string{
- 0: "OIDCV1_0",
- }
- OIDCVersion_value = map[string]int32{
- "OIDCV1_0": 0,
- }
-)
+var OIDCVersion_name = map[int32]string{
+ 0: "OIDCV1_0",
+}
-func (x OIDCVersion) Enum() *OIDCVersion {
- p := new(OIDCVersion)
- *p = x
- return p
+var OIDCVersion_value = map[string]int32{
+ "OIDCV1_0": 0,
}
func (x OIDCVersion) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCVersion_name, int32(x))
}
-func (OIDCVersion) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[19].Descriptor()
-}
-
-func (OIDCVersion) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[19]
-}
-
-func (x OIDCVersion) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCVersion.Descriptor instead.
func (OIDCVersion) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{19}
+ return fileDescriptor_edc174f991dc0a25, []int{19}
}
type OIDCTokenType int32
@@ -1084,43 +659,22 @@ const (
OIDCTokenType_OIDCTokenType_JWT OIDCTokenType = 1
)
-// Enum value maps for OIDCTokenType.
-var (
- OIDCTokenType_name = map[int32]string{
- 0: "OIDCTokenType_Bearer",
- 1: "OIDCTokenType_JWT",
- }
- OIDCTokenType_value = map[string]int32{
- "OIDCTokenType_Bearer": 0,
- "OIDCTokenType_JWT": 1,
- }
-)
+var OIDCTokenType_name = map[int32]string{
+ 0: "OIDCTokenType_Bearer",
+ 1: "OIDCTokenType_JWT",
+}
-func (x OIDCTokenType) Enum() *OIDCTokenType {
- p := new(OIDCTokenType)
- *p = x
- return p
+var OIDCTokenType_value = map[string]int32{
+ "OIDCTokenType_Bearer": 0,
+ "OIDCTokenType_JWT": 1,
}
func (x OIDCTokenType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCTokenType_name, int32(x))
}
-func (OIDCTokenType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[20].Descriptor()
-}
-
-func (OIDCTokenType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[20]
-}
-
-func (x OIDCTokenType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCTokenType.Descriptor instead.
func (OIDCTokenType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{20}
+ return fileDescriptor_edc174f991dc0a25, []int{20}
}
type OIDCResponseType int32
@@ -1131,45 +685,24 @@ const (
OIDCResponseType_OIDCRESPONSETYPE_ID_TOKEN_TOKEN OIDCResponseType = 2
)
-// Enum value maps for OIDCResponseType.
-var (
- OIDCResponseType_name = map[int32]string{
- 0: "OIDCRESPONSETYPE_CODE",
- 1: "OIDCRESPONSETYPE_ID_TOKEN",
- 2: "OIDCRESPONSETYPE_ID_TOKEN_TOKEN",
- }
- OIDCResponseType_value = map[string]int32{
- "OIDCRESPONSETYPE_CODE": 0,
- "OIDCRESPONSETYPE_ID_TOKEN": 1,
- "OIDCRESPONSETYPE_ID_TOKEN_TOKEN": 2,
- }
-)
+var OIDCResponseType_name = map[int32]string{
+ 0: "OIDCRESPONSETYPE_CODE",
+ 1: "OIDCRESPONSETYPE_ID_TOKEN",
+ 2: "OIDCRESPONSETYPE_ID_TOKEN_TOKEN",
+}
-func (x OIDCResponseType) Enum() *OIDCResponseType {
- p := new(OIDCResponseType)
- *p = x
- return p
+var OIDCResponseType_value = map[string]int32{
+ "OIDCRESPONSETYPE_CODE": 0,
+ "OIDCRESPONSETYPE_ID_TOKEN": 1,
+ "OIDCRESPONSETYPE_ID_TOKEN_TOKEN": 2,
}
func (x OIDCResponseType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCResponseType_name, int32(x))
}
-func (OIDCResponseType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[21].Descriptor()
-}
-
-func (OIDCResponseType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[21]
-}
-
-func (x OIDCResponseType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCResponseType.Descriptor instead.
func (OIDCResponseType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{21}
+ return fileDescriptor_edc174f991dc0a25, []int{21}
}
type OIDCGrantType int32
@@ -1180,45 +713,24 @@ const (
OIDCGrantType_OIDCGRANTTYPE_REFRESH_TOKEN OIDCGrantType = 2
)
-// Enum value maps for OIDCGrantType.
-var (
- OIDCGrantType_name = map[int32]string{
- 0: "OIDCGRANTTYPE_AUTHORIZATION_CODE",
- 1: "OIDCGRANTTYPE_IMPLICIT",
- 2: "OIDCGRANTTYPE_REFRESH_TOKEN",
- }
- OIDCGrantType_value = map[string]int32{
- "OIDCGRANTTYPE_AUTHORIZATION_CODE": 0,
- "OIDCGRANTTYPE_IMPLICIT": 1,
- "OIDCGRANTTYPE_REFRESH_TOKEN": 2,
- }
-)
+var OIDCGrantType_name = map[int32]string{
+ 0: "OIDCGRANTTYPE_AUTHORIZATION_CODE",
+ 1: "OIDCGRANTTYPE_IMPLICIT",
+ 2: "OIDCGRANTTYPE_REFRESH_TOKEN",
+}
-func (x OIDCGrantType) Enum() *OIDCGrantType {
- p := new(OIDCGrantType)
- *p = x
- return p
+var OIDCGrantType_value = map[string]int32{
+ "OIDCGRANTTYPE_AUTHORIZATION_CODE": 0,
+ "OIDCGRANTTYPE_IMPLICIT": 1,
+ "OIDCGRANTTYPE_REFRESH_TOKEN": 2,
}
func (x OIDCGrantType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCGrantType_name, int32(x))
}
-func (OIDCGrantType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[22].Descriptor()
-}
-
-func (OIDCGrantType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[22]
-}
-
-func (x OIDCGrantType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCGrantType.Descriptor instead.
func (OIDCGrantType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{22}
+ return fileDescriptor_edc174f991dc0a25, []int{22}
}
type OIDCApplicationType int32
@@ -1229,45 +741,24 @@ const (
OIDCApplicationType_OIDCAPPLICATIONTYPE_NATIVE OIDCApplicationType = 2
)
-// Enum value maps for OIDCApplicationType.
-var (
- OIDCApplicationType_name = map[int32]string{
- 0: "OIDCAPPLICATIONTYPE_WEB",
- 1: "OIDCAPPLICATIONTYPE_USER_AGENT",
- 2: "OIDCAPPLICATIONTYPE_NATIVE",
- }
- OIDCApplicationType_value = map[string]int32{
- "OIDCAPPLICATIONTYPE_WEB": 0,
- "OIDCAPPLICATIONTYPE_USER_AGENT": 1,
- "OIDCAPPLICATIONTYPE_NATIVE": 2,
- }
-)
+var OIDCApplicationType_name = map[int32]string{
+ 0: "OIDCAPPLICATIONTYPE_WEB",
+ 1: "OIDCAPPLICATIONTYPE_USER_AGENT",
+ 2: "OIDCAPPLICATIONTYPE_NATIVE",
+}
-func (x OIDCApplicationType) Enum() *OIDCApplicationType {
- p := new(OIDCApplicationType)
- *p = x
- return p
+var OIDCApplicationType_value = map[string]int32{
+ "OIDCAPPLICATIONTYPE_WEB": 0,
+ "OIDCAPPLICATIONTYPE_USER_AGENT": 1,
+ "OIDCAPPLICATIONTYPE_NATIVE": 2,
}
func (x OIDCApplicationType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCApplicationType_name, int32(x))
}
-func (OIDCApplicationType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[23].Descriptor()
-}
-
-func (OIDCApplicationType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[23]
-}
-
-func (x OIDCApplicationType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCApplicationType.Descriptor instead.
func (OIDCApplicationType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{23}
+ return fileDescriptor_edc174f991dc0a25, []int{23}
}
type OIDCAuthMethodType int32
@@ -1278,45 +769,24 @@ const (
OIDCAuthMethodType_OIDCAUTHMETHODTYPE_NONE OIDCAuthMethodType = 2
)
-// Enum value maps for OIDCAuthMethodType.
-var (
- OIDCAuthMethodType_name = map[int32]string{
- 0: "OIDCAUTHMETHODTYPE_BASIC",
- 1: "OIDCAUTHMETHODTYPE_POST",
- 2: "OIDCAUTHMETHODTYPE_NONE",
- }
- OIDCAuthMethodType_value = map[string]int32{
- "OIDCAUTHMETHODTYPE_BASIC": 0,
- "OIDCAUTHMETHODTYPE_POST": 1,
- "OIDCAUTHMETHODTYPE_NONE": 2,
- }
-)
+var OIDCAuthMethodType_name = map[int32]string{
+ 0: "OIDCAUTHMETHODTYPE_BASIC",
+ 1: "OIDCAUTHMETHODTYPE_POST",
+ 2: "OIDCAUTHMETHODTYPE_NONE",
+}
-func (x OIDCAuthMethodType) Enum() *OIDCAuthMethodType {
- p := new(OIDCAuthMethodType)
- *p = x
- return p
+var OIDCAuthMethodType_value = map[string]int32{
+ "OIDCAUTHMETHODTYPE_BASIC": 0,
+ "OIDCAUTHMETHODTYPE_POST": 1,
+ "OIDCAUTHMETHODTYPE_NONE": 2,
}
func (x OIDCAuthMethodType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCAuthMethodType_name, int32(x))
}
-func (OIDCAuthMethodType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[24].Descriptor()
-}
-
-func (OIDCAuthMethodType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[24]
-}
-
-func (x OIDCAuthMethodType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCAuthMethodType.Descriptor instead.
func (OIDCAuthMethodType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{24}
+ return fileDescriptor_edc174f991dc0a25, []int{24}
}
type ApplicationSearchKey int32
@@ -1326,43 +796,22 @@ const (
ApplicationSearchKey_APPLICATIONSEARCHKEY_APP_NAME ApplicationSearchKey = 1
)
-// Enum value maps for ApplicationSearchKey.
-var (
- ApplicationSearchKey_name = map[int32]string{
- 0: "APPLICATIONSERACHKEY_UNSPECIFIED",
- 1: "APPLICATIONSEARCHKEY_APP_NAME",
- }
- ApplicationSearchKey_value = map[string]int32{
- "APPLICATIONSERACHKEY_UNSPECIFIED": 0,
- "APPLICATIONSEARCHKEY_APP_NAME": 1,
- }
-)
+var ApplicationSearchKey_name = map[int32]string{
+ 0: "APPLICATIONSERACHKEY_UNSPECIFIED",
+ 1: "APPLICATIONSEARCHKEY_APP_NAME",
+}
-func (x ApplicationSearchKey) Enum() *ApplicationSearchKey {
- p := new(ApplicationSearchKey)
- *p = x
- return p
+var ApplicationSearchKey_value = map[string]int32{
+ "APPLICATIONSERACHKEY_UNSPECIFIED": 0,
+ "APPLICATIONSEARCHKEY_APP_NAME": 1,
}
func (x ApplicationSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ApplicationSearchKey_name, int32(x))
}
-func (ApplicationSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[25].Descriptor()
-}
-
-func (ApplicationSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[25]
-}
-
-func (x ApplicationSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ApplicationSearchKey.Descriptor instead.
func (ApplicationSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{25}
+ return fileDescriptor_edc174f991dc0a25, []int{25}
}
type ProjectGrantState int32
@@ -1373,45 +822,24 @@ const (
ProjectGrantState_PROJECTGRANTSTATE_INACTIVE ProjectGrantState = 2
)
-// Enum value maps for ProjectGrantState.
-var (
- ProjectGrantState_name = map[int32]string{
- 0: "PROJECTGRANTSTATE_UNSPECIFIED",
- 1: "PROJECTGRANTSTATE_ACTIVE",
- 2: "PROJECTGRANTSTATE_INACTIVE",
- }
- ProjectGrantState_value = map[string]int32{
- "PROJECTGRANTSTATE_UNSPECIFIED": 0,
- "PROJECTGRANTSTATE_ACTIVE": 1,
- "PROJECTGRANTSTATE_INACTIVE": 2,
- }
-)
+var ProjectGrantState_name = map[int32]string{
+ 0: "PROJECTGRANTSTATE_UNSPECIFIED",
+ 1: "PROJECTGRANTSTATE_ACTIVE",
+ 2: "PROJECTGRANTSTATE_INACTIVE",
+}
-func (x ProjectGrantState) Enum() *ProjectGrantState {
- p := new(ProjectGrantState)
- *p = x
- return p
+var ProjectGrantState_value = map[string]int32{
+ "PROJECTGRANTSTATE_UNSPECIFIED": 0,
+ "PROJECTGRANTSTATE_ACTIVE": 1,
+ "PROJECTGRANTSTATE_INACTIVE": 2,
}
func (x ProjectGrantState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectGrantState_name, int32(x))
}
-func (ProjectGrantState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[26].Descriptor()
-}
-
-func (ProjectGrantState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[26]
-}
-
-func (x ProjectGrantState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectGrantState.Descriptor instead.
func (ProjectGrantState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{26}
+ return fileDescriptor_edc174f991dc0a25, []int{26}
}
type ProjectGrantSearchKey int32
@@ -1422,45 +850,24 @@ const (
ProjectGrantSearchKey_PROJECTGRANTSEARCHKEY_ROLE_KEY ProjectGrantSearchKey = 2
)
-// Enum value maps for ProjectGrantSearchKey.
-var (
- ProjectGrantSearchKey_name = map[int32]string{
- 0: "PROJECTGRANTSEARCHKEY_UNSPECIFIED",
- 1: "PROJECTGRANTSEARCHKEY_PROJECT_NAME",
- 2: "PROJECTGRANTSEARCHKEY_ROLE_KEY",
- }
- ProjectGrantSearchKey_value = map[string]int32{
- "PROJECTGRANTSEARCHKEY_UNSPECIFIED": 0,
- "PROJECTGRANTSEARCHKEY_PROJECT_NAME": 1,
- "PROJECTGRANTSEARCHKEY_ROLE_KEY": 2,
- }
-)
+var ProjectGrantSearchKey_name = map[int32]string{
+ 0: "PROJECTGRANTSEARCHKEY_UNSPECIFIED",
+ 1: "PROJECTGRANTSEARCHKEY_PROJECT_NAME",
+ 2: "PROJECTGRANTSEARCHKEY_ROLE_KEY",
+}
-func (x ProjectGrantSearchKey) Enum() *ProjectGrantSearchKey {
- p := new(ProjectGrantSearchKey)
- *p = x
- return p
+var ProjectGrantSearchKey_value = map[string]int32{
+ "PROJECTGRANTSEARCHKEY_UNSPECIFIED": 0,
+ "PROJECTGRANTSEARCHKEY_PROJECT_NAME": 1,
+ "PROJECTGRANTSEARCHKEY_ROLE_KEY": 2,
}
func (x ProjectGrantSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectGrantSearchKey_name, int32(x))
}
-func (ProjectGrantSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[27].Descriptor()
-}
-
-func (ProjectGrantSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[27]
-}
-
-func (x ProjectGrantSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectGrantSearchKey.Descriptor instead.
func (ProjectGrantSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{27}
+ return fileDescriptor_edc174f991dc0a25, []int{27}
}
type ProjectGrantMemberSearchKey int32
@@ -1474,51 +881,30 @@ const (
ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_USER_NAME ProjectGrantMemberSearchKey = 5
)
-// Enum value maps for ProjectGrantMemberSearchKey.
-var (
- ProjectGrantMemberSearchKey_name = map[int32]string{
- 0: "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED",
- 1: "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME",
- 2: "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME",
- 3: "PROJECTGRANTMEMBERSEARCHKEY_EMAIL",
- 4: "PROJECTGRANTMEMBERSEARCHKEY_USER_ID",
- 5: "PROJECTGRANTMEMBERSEARCHKEY_USER_NAME",
- }
- ProjectGrantMemberSearchKey_value = map[string]int32{
- "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED": 0,
- "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME": 1,
- "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME": 2,
- "PROJECTGRANTMEMBERSEARCHKEY_EMAIL": 3,
- "PROJECTGRANTMEMBERSEARCHKEY_USER_ID": 4,
- "PROJECTGRANTMEMBERSEARCHKEY_USER_NAME": 5,
- }
-)
+var ProjectGrantMemberSearchKey_name = map[int32]string{
+ 0: "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED",
+ 1: "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME",
+ 2: "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME",
+ 3: "PROJECTGRANTMEMBERSEARCHKEY_EMAIL",
+ 4: "PROJECTGRANTMEMBERSEARCHKEY_USER_ID",
+ 5: "PROJECTGRANTMEMBERSEARCHKEY_USER_NAME",
+}
-func (x ProjectGrantMemberSearchKey) Enum() *ProjectGrantMemberSearchKey {
- p := new(ProjectGrantMemberSearchKey)
- *p = x
- return p
+var ProjectGrantMemberSearchKey_value = map[string]int32{
+ "PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED": 0,
+ "PROJECTGRANTMEMBERSEARCHKEY_FIRST_NAME": 1,
+ "PROJECTGRANTMEMBERSEARCHKEY_LAST_NAME": 2,
+ "PROJECTGRANTMEMBERSEARCHKEY_EMAIL": 3,
+ "PROJECTGRANTMEMBERSEARCHKEY_USER_ID": 4,
+ "PROJECTGRANTMEMBERSEARCHKEY_USER_NAME": 5,
}
func (x ProjectGrantMemberSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectGrantMemberSearchKey_name, int32(x))
}
-func (ProjectGrantMemberSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[28].Descriptor()
-}
-
-func (ProjectGrantMemberSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[28]
-}
-
-func (x ProjectGrantMemberSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectGrantMemberSearchKey.Descriptor instead.
func (ProjectGrantMemberSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{28}
+ return fileDescriptor_edc174f991dc0a25, []int{28}
}
type UserGrantState int32
@@ -1529,45 +915,24 @@ const (
UserGrantState_USERGRANTSTATE_INACTIVE UserGrantState = 2
)
-// Enum value maps for UserGrantState.
-var (
- UserGrantState_name = map[int32]string{
- 0: "USERGRANTSTATE_UNSPECIFIED",
- 1: "USERGRANTSTATE_ACTIVE",
- 2: "USERGRANTSTATE_INACTIVE",
- }
- UserGrantState_value = map[string]int32{
- "USERGRANTSTATE_UNSPECIFIED": 0,
- "USERGRANTSTATE_ACTIVE": 1,
- "USERGRANTSTATE_INACTIVE": 2,
- }
-)
+var UserGrantState_name = map[int32]string{
+ 0: "USERGRANTSTATE_UNSPECIFIED",
+ 1: "USERGRANTSTATE_ACTIVE",
+ 2: "USERGRANTSTATE_INACTIVE",
+}
-func (x UserGrantState) Enum() *UserGrantState {
- p := new(UserGrantState)
- *p = x
- return p
+var UserGrantState_value = map[string]int32{
+ "USERGRANTSTATE_UNSPECIFIED": 0,
+ "USERGRANTSTATE_ACTIVE": 1,
+ "USERGRANTSTATE_INACTIVE": 2,
}
func (x UserGrantState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserGrantState_name, int32(x))
}
-func (UserGrantState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[29].Descriptor()
-}
-
-func (UserGrantState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[29]
-}
-
-func (x UserGrantState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserGrantState.Descriptor instead.
func (UserGrantState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{29}
+ return fileDescriptor_edc174f991dc0a25, []int{29}
}
type UserGrantSearchKey int32
@@ -1589,67 +954,46 @@ const (
UserGrantSearchKey_USERGRANTSEARCHKEY_DISPLAY_NAME UserGrantSearchKey = 13
)
-// Enum value maps for UserGrantSearchKey.
-var (
- UserGrantSearchKey_name = map[int32]string{
- 0: "USERGRANTSEARCHKEY_UNSPECIFIED",
- 1: "USERGRANTSEARCHKEY_PROJECT_ID",
- 2: "USERGRANTSEARCHKEY_USER_ID",
- 3: "USERGRANTSEARCHKEY_ORG_ID",
- 4: "USERGRANTSEARCHKEY_ROLE_KEY",
- 5: "USERGRANTSEARCHKEY_GRANT_ID",
- 6: "USERGRANTSEARCHKEY_USER_NAME",
- 7: "USERGRANTSEARCHKEY_FIRST_NAME",
- 8: "USERGRANTSEARCHKEY_LAST_NAME",
- 9: "USERGRANTSEARCHKEY_EMAIL",
- 10: "USERGRANTSEARCHKEY_ORG_NAME",
- 11: "USERGRANTSEARCHKEY_ORG_DOMAIN",
- 12: "USERGRANTSEARCHKEY_PROJECT_NAME",
- 13: "USERGRANTSEARCHKEY_DISPLAY_NAME",
- }
- UserGrantSearchKey_value = map[string]int32{
- "USERGRANTSEARCHKEY_UNSPECIFIED": 0,
- "USERGRANTSEARCHKEY_PROJECT_ID": 1,
- "USERGRANTSEARCHKEY_USER_ID": 2,
- "USERGRANTSEARCHKEY_ORG_ID": 3,
- "USERGRANTSEARCHKEY_ROLE_KEY": 4,
- "USERGRANTSEARCHKEY_GRANT_ID": 5,
- "USERGRANTSEARCHKEY_USER_NAME": 6,
- "USERGRANTSEARCHKEY_FIRST_NAME": 7,
- "USERGRANTSEARCHKEY_LAST_NAME": 8,
- "USERGRANTSEARCHKEY_EMAIL": 9,
- "USERGRANTSEARCHKEY_ORG_NAME": 10,
- "USERGRANTSEARCHKEY_ORG_DOMAIN": 11,
- "USERGRANTSEARCHKEY_PROJECT_NAME": 12,
- "USERGRANTSEARCHKEY_DISPLAY_NAME": 13,
- }
-)
+var UserGrantSearchKey_name = map[int32]string{
+ 0: "USERGRANTSEARCHKEY_UNSPECIFIED",
+ 1: "USERGRANTSEARCHKEY_PROJECT_ID",
+ 2: "USERGRANTSEARCHKEY_USER_ID",
+ 3: "USERGRANTSEARCHKEY_ORG_ID",
+ 4: "USERGRANTSEARCHKEY_ROLE_KEY",
+ 5: "USERGRANTSEARCHKEY_GRANT_ID",
+ 6: "USERGRANTSEARCHKEY_USER_NAME",
+ 7: "USERGRANTSEARCHKEY_FIRST_NAME",
+ 8: "USERGRANTSEARCHKEY_LAST_NAME",
+ 9: "USERGRANTSEARCHKEY_EMAIL",
+ 10: "USERGRANTSEARCHKEY_ORG_NAME",
+ 11: "USERGRANTSEARCHKEY_ORG_DOMAIN",
+ 12: "USERGRANTSEARCHKEY_PROJECT_NAME",
+ 13: "USERGRANTSEARCHKEY_DISPLAY_NAME",
+}
-func (x UserGrantSearchKey) Enum() *UserGrantSearchKey {
- p := new(UserGrantSearchKey)
- *p = x
- return p
+var UserGrantSearchKey_value = map[string]int32{
+ "USERGRANTSEARCHKEY_UNSPECIFIED": 0,
+ "USERGRANTSEARCHKEY_PROJECT_ID": 1,
+ "USERGRANTSEARCHKEY_USER_ID": 2,
+ "USERGRANTSEARCHKEY_ORG_ID": 3,
+ "USERGRANTSEARCHKEY_ROLE_KEY": 4,
+ "USERGRANTSEARCHKEY_GRANT_ID": 5,
+ "USERGRANTSEARCHKEY_USER_NAME": 6,
+ "USERGRANTSEARCHKEY_FIRST_NAME": 7,
+ "USERGRANTSEARCHKEY_LAST_NAME": 8,
+ "USERGRANTSEARCHKEY_EMAIL": 9,
+ "USERGRANTSEARCHKEY_ORG_NAME": 10,
+ "USERGRANTSEARCHKEY_ORG_DOMAIN": 11,
+ "USERGRANTSEARCHKEY_PROJECT_NAME": 12,
+ "USERGRANTSEARCHKEY_DISPLAY_NAME": 13,
}
func (x UserGrantSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserGrantSearchKey_name, int32(x))
}
-func (UserGrantSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[30].Descriptor()
-}
-
-func (UserGrantSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[30]
-}
-
-func (x UserGrantSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserGrantSearchKey.Descriptor instead.
func (UserGrantSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{30}
+ return fileDescriptor_edc174f991dc0a25, []int{30}
}
type UserMembershipSearchKey int32
@@ -1660,45 +1004,24 @@ const (
UserMembershipSearchKey_USERMEMBERSHIPSEARCHKEY_OBJECT_ID UserMembershipSearchKey = 2
)
-// Enum value maps for UserMembershipSearchKey.
-var (
- UserMembershipSearchKey_name = map[int32]string{
- 0: "USERMEMBERSHIPSEARCHKEY_UNSPECIFIED",
- 1: "USERMEMBERSHIPSEARCHKEY_TYPE",
- 2: "USERMEMBERSHIPSEARCHKEY_OBJECT_ID",
- }
- UserMembershipSearchKey_value = map[string]int32{
- "USERMEMBERSHIPSEARCHKEY_UNSPECIFIED": 0,
- "USERMEMBERSHIPSEARCHKEY_TYPE": 1,
- "USERMEMBERSHIPSEARCHKEY_OBJECT_ID": 2,
- }
-)
+var UserMembershipSearchKey_name = map[int32]string{
+ 0: "USERMEMBERSHIPSEARCHKEY_UNSPECIFIED",
+ 1: "USERMEMBERSHIPSEARCHKEY_TYPE",
+ 2: "USERMEMBERSHIPSEARCHKEY_OBJECT_ID",
+}
-func (x UserMembershipSearchKey) Enum() *UserMembershipSearchKey {
- p := new(UserMembershipSearchKey)
- *p = x
- return p
+var UserMembershipSearchKey_value = map[string]int32{
+ "USERMEMBERSHIPSEARCHKEY_UNSPECIFIED": 0,
+ "USERMEMBERSHIPSEARCHKEY_TYPE": 1,
+ "USERMEMBERSHIPSEARCHKEY_OBJECT_ID": 2,
}
func (x UserMembershipSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(UserMembershipSearchKey_name, int32(x))
}
-func (UserMembershipSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[31].Descriptor()
-}
-
-func (UserMembershipSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[31]
-}
-
-func (x UserMembershipSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use UserMembershipSearchKey.Descriptor instead.
func (UserMembershipSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{31}
+ return fileDescriptor_edc174f991dc0a25, []int{31}
}
type MemberType int32
@@ -1710,47 +1033,26 @@ const (
MemberType_MEMBERTYPE_PROJECT_GRANT MemberType = 3
)
-// Enum value maps for MemberType.
-var (
- MemberType_name = map[int32]string{
- 0: "MEMBERTYPE_UNSPECIFIED",
- 1: "MEMBERTYPE_ORGANISATION",
- 2: "MEMBERTYPE_PROJECT",
- 3: "MEMBERTYPE_PROJECT_GRANT",
- }
- MemberType_value = map[string]int32{
- "MEMBERTYPE_UNSPECIFIED": 0,
- "MEMBERTYPE_ORGANISATION": 1,
- "MEMBERTYPE_PROJECT": 2,
- "MEMBERTYPE_PROJECT_GRANT": 3,
- }
-)
+var MemberType_name = map[int32]string{
+ 0: "MEMBERTYPE_UNSPECIFIED",
+ 1: "MEMBERTYPE_ORGANISATION",
+ 2: "MEMBERTYPE_PROJECT",
+ 3: "MEMBERTYPE_PROJECT_GRANT",
+}
-func (x MemberType) Enum() *MemberType {
- p := new(MemberType)
- *p = x
- return p
+var MemberType_value = map[string]int32{
+ "MEMBERTYPE_UNSPECIFIED": 0,
+ "MEMBERTYPE_ORGANISATION": 1,
+ "MEMBERTYPE_PROJECT": 2,
+ "MEMBERTYPE_PROJECT_GRANT": 3,
}
func (x MemberType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MemberType_name, int32(x))
}
-func (MemberType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[32].Descriptor()
-}
-
-func (MemberType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[32]
-}
-
-func (x MemberType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MemberType.Descriptor instead.
func (MemberType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{32}
+ return fileDescriptor_edc174f991dc0a25, []int{32}
}
type IdpStylingType int32
@@ -1760,43 +1062,22 @@ const (
IdpStylingType_IDPSTYLINGTYPE_GOOGLE IdpStylingType = 1
)
-// Enum value maps for IdpStylingType.
-var (
- IdpStylingType_name = map[int32]string{
- 0: "IDPSTYLINGTYPE_UNSPECIFIED",
- 1: "IDPSTYLINGTYPE_GOOGLE",
- }
- IdpStylingType_value = map[string]int32{
- "IDPSTYLINGTYPE_UNSPECIFIED": 0,
- "IDPSTYLINGTYPE_GOOGLE": 1,
- }
-)
+var IdpStylingType_name = map[int32]string{
+ 0: "IDPSTYLINGTYPE_UNSPECIFIED",
+ 1: "IDPSTYLINGTYPE_GOOGLE",
+}
-func (x IdpStylingType) Enum() *IdpStylingType {
- p := new(IdpStylingType)
- *p = x
- return p
+var IdpStylingType_value = map[string]int32{
+ "IDPSTYLINGTYPE_UNSPECIFIED": 0,
+ "IDPSTYLINGTYPE_GOOGLE": 1,
}
func (x IdpStylingType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(IdpStylingType_name, int32(x))
}
-func (IdpStylingType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[33].Descriptor()
-}
-
-func (IdpStylingType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[33]
-}
-
-func (x IdpStylingType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use IdpStylingType.Descriptor instead.
func (IdpStylingType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{33}
+ return fileDescriptor_edc174f991dc0a25, []int{33}
}
type IdpState int32
@@ -1807,45 +1088,24 @@ const (
IdpState_IDPCONFIGSTATE_INACTIVE IdpState = 2
)
-// Enum value maps for IdpState.
-var (
- IdpState_name = map[int32]string{
- 0: "IDPCONFIGSTATE_UNSPECIFIED",
- 1: "IDPCONFIGSTATE_ACTIVE",
- 2: "IDPCONFIGSTATE_INACTIVE",
- }
- IdpState_value = map[string]int32{
- "IDPCONFIGSTATE_UNSPECIFIED": 0,
- "IDPCONFIGSTATE_ACTIVE": 1,
- "IDPCONFIGSTATE_INACTIVE": 2,
- }
-)
+var IdpState_name = map[int32]string{
+ 0: "IDPCONFIGSTATE_UNSPECIFIED",
+ 1: "IDPCONFIGSTATE_ACTIVE",
+ 2: "IDPCONFIGSTATE_INACTIVE",
+}
-func (x IdpState) Enum() *IdpState {
- p := new(IdpState)
- *p = x
- return p
+var IdpState_value = map[string]int32{
+ "IDPCONFIGSTATE_UNSPECIFIED": 0,
+ "IDPCONFIGSTATE_ACTIVE": 1,
+ "IDPCONFIGSTATE_INACTIVE": 2,
}
func (x IdpState) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(IdpState_name, int32(x))
}
-func (IdpState) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[34].Descriptor()
-}
-
-func (IdpState) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[34]
-}
-
-func (x IdpState) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use IdpState.Descriptor instead.
func (IdpState) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{34}
+ return fileDescriptor_edc174f991dc0a25, []int{34}
}
type OIDCMappingField int32
@@ -1856,45 +1116,24 @@ const (
OIDCMappingField_OIDCMAPPINGFIELD_EMAIL OIDCMappingField = 2
)
-// Enum value maps for OIDCMappingField.
-var (
- OIDCMappingField_name = map[int32]string{
- 0: "OIDCMAPPINGFIELD_UNSPECIFIED",
- 1: "OIDCMAPPINGFIELD_PREFERRED_USERNAME",
- 2: "OIDCMAPPINGFIELD_EMAIL",
- }
- OIDCMappingField_value = map[string]int32{
- "OIDCMAPPINGFIELD_UNSPECIFIED": 0,
- "OIDCMAPPINGFIELD_PREFERRED_USERNAME": 1,
- "OIDCMAPPINGFIELD_EMAIL": 2,
- }
-)
+var OIDCMappingField_name = map[int32]string{
+ 0: "OIDCMAPPINGFIELD_UNSPECIFIED",
+ 1: "OIDCMAPPINGFIELD_PREFERRED_USERNAME",
+ 2: "OIDCMAPPINGFIELD_EMAIL",
+}
-func (x OIDCMappingField) Enum() *OIDCMappingField {
- p := new(OIDCMappingField)
- *p = x
- return p
+var OIDCMappingField_value = map[string]int32{
+ "OIDCMAPPINGFIELD_UNSPECIFIED": 0,
+ "OIDCMAPPINGFIELD_PREFERRED_USERNAME": 1,
+ "OIDCMAPPINGFIELD_EMAIL": 2,
}
func (x OIDCMappingField) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(OIDCMappingField_name, int32(x))
}
-func (OIDCMappingField) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[35].Descriptor()
-}
-
-func (OIDCMappingField) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[35]
-}
-
-func (x OIDCMappingField) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use OIDCMappingField.Descriptor instead.
func (OIDCMappingField) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{35}
+ return fileDescriptor_edc174f991dc0a25, []int{35}
}
type IdpSearchKey int32
@@ -1906,47 +1145,26 @@ const (
IdpSearchKey_IDPSEARCHKEY_PROVIDER_TYPE IdpSearchKey = 3
)
-// Enum value maps for IdpSearchKey.
-var (
- IdpSearchKey_name = map[int32]string{
- 0: "IDPSEARCHKEY_UNSPECIFIED",
- 1: "IDPSEARCHKEY_IDP_CONFIG_ID",
- 2: "IDPSEARCHKEY_NAME",
- 3: "IDPSEARCHKEY_PROVIDER_TYPE",
- }
- IdpSearchKey_value = map[string]int32{
- "IDPSEARCHKEY_UNSPECIFIED": 0,
- "IDPSEARCHKEY_IDP_CONFIG_ID": 1,
- "IDPSEARCHKEY_NAME": 2,
- "IDPSEARCHKEY_PROVIDER_TYPE": 3,
- }
-)
+var IdpSearchKey_name = map[int32]string{
+ 0: "IDPSEARCHKEY_UNSPECIFIED",
+ 1: "IDPSEARCHKEY_IDP_CONFIG_ID",
+ 2: "IDPSEARCHKEY_NAME",
+ 3: "IDPSEARCHKEY_PROVIDER_TYPE",
+}
-func (x IdpSearchKey) Enum() *IdpSearchKey {
- p := new(IdpSearchKey)
- *p = x
- return p
+var IdpSearchKey_value = map[string]int32{
+ "IDPSEARCHKEY_UNSPECIFIED": 0,
+ "IDPSEARCHKEY_IDP_CONFIG_ID": 1,
+ "IDPSEARCHKEY_NAME": 2,
+ "IDPSEARCHKEY_PROVIDER_TYPE": 3,
}
func (x IdpSearchKey) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(IdpSearchKey_name, int32(x))
}
-func (IdpSearchKey) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[36].Descriptor()
-}
-
-func (IdpSearchKey) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[36]
-}
-
-func (x IdpSearchKey) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use IdpSearchKey.Descriptor instead.
func (IdpSearchKey) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{36}
+ return fileDescriptor_edc174f991dc0a25, []int{36}
}
type IdpType int32
@@ -1957,45 +1175,24 @@ const (
IdpType_IDPTYPE_SAML IdpType = 2
)
-// Enum value maps for IdpType.
-var (
- IdpType_name = map[int32]string{
- 0: "IDPTYPE_UNSPECIFIED",
- 1: "IDPTYPE_OIDC",
- 2: "IDPTYPE_SAML",
- }
- IdpType_value = map[string]int32{
- "IDPTYPE_UNSPECIFIED": 0,
- "IDPTYPE_OIDC": 1,
- "IDPTYPE_SAML": 2,
- }
-)
+var IdpType_name = map[int32]string{
+ 0: "IDPTYPE_UNSPECIFIED",
+ 1: "IDPTYPE_OIDC",
+ 2: "IDPTYPE_SAML",
+}
-func (x IdpType) Enum() *IdpType {
- p := new(IdpType)
- *p = x
- return p
+var IdpType_value = map[string]int32{
+ "IDPTYPE_UNSPECIFIED": 0,
+ "IDPTYPE_OIDC": 1,
+ "IDPTYPE_SAML": 2,
}
func (x IdpType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(IdpType_name, int32(x))
}
-func (IdpType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[37].Descriptor()
-}
-
-func (IdpType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[37]
-}
-
-func (x IdpType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use IdpType.Descriptor instead.
func (IdpType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{37}
+ return fileDescriptor_edc174f991dc0a25, []int{37}
}
type IdpProviderType int32
@@ -2006,45 +1203,24 @@ const (
IdpProviderType_IDPPROVIDERTYPE_ORG IdpProviderType = 2
)
-// Enum value maps for IdpProviderType.
-var (
- IdpProviderType_name = map[int32]string{
- 0: "IDPPROVIDERTYPE_UNSPECIFIED",
- 1: "IDPPROVIDERTYPE_SYSTEM",
- 2: "IDPPROVIDERTYPE_ORG",
- }
- IdpProviderType_value = map[string]int32{
- "IDPPROVIDERTYPE_UNSPECIFIED": 0,
- "IDPPROVIDERTYPE_SYSTEM": 1,
- "IDPPROVIDERTYPE_ORG": 2,
- }
-)
+var IdpProviderType_name = map[int32]string{
+ 0: "IDPPROVIDERTYPE_UNSPECIFIED",
+ 1: "IDPPROVIDERTYPE_SYSTEM",
+ 2: "IDPPROVIDERTYPE_ORG",
+}
-func (x IdpProviderType) Enum() *IdpProviderType {
- p := new(IdpProviderType)
- *p = x
- return p
+var IdpProviderType_value = map[string]int32{
+ "IDPPROVIDERTYPE_UNSPECIFIED": 0,
+ "IDPPROVIDERTYPE_SYSTEM": 1,
+ "IDPPROVIDERTYPE_ORG": 2,
}
func (x IdpProviderType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(IdpProviderType_name, int32(x))
}
-func (IdpProviderType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[38].Descriptor()
-}
-
-func (IdpProviderType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[38]
-}
-
-func (x IdpProviderType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use IdpProviderType.Descriptor instead.
func (IdpProviderType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{38}
+ return fileDescriptor_edc174f991dc0a25, []int{38}
}
//ProjectType is deprecated, remove as soon as console is ready
@@ -2056,45 +1232,24 @@ const (
ProjectType_PROJECTTYPE_GRANTED ProjectType = 2
)
-// Enum value maps for ProjectType.
-var (
- ProjectType_name = map[int32]string{
- 0: "PROJECTTYPE_UNSPECIFIED",
- 1: "PROJECTTYPE_OWNED",
- 2: "PROJECTTYPE_GRANTED",
- }
- ProjectType_value = map[string]int32{
- "PROJECTTYPE_UNSPECIFIED": 0,
- "PROJECTTYPE_OWNED": 1,
- "PROJECTTYPE_GRANTED": 2,
- }
-)
+var ProjectType_name = map[int32]string{
+ 0: "PROJECTTYPE_UNSPECIFIED",
+ 1: "PROJECTTYPE_OWNED",
+ 2: "PROJECTTYPE_GRANTED",
+}
-func (x ProjectType) Enum() *ProjectType {
- p := new(ProjectType)
- *p = x
- return p
+var ProjectType_value = map[string]int32{
+ "PROJECTTYPE_UNSPECIFIED": 0,
+ "PROJECTTYPE_OWNED": 1,
+ "PROJECTTYPE_GRANTED": 2,
}
func (x ProjectType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(ProjectType_name, int32(x))
}
-func (ProjectType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[39].Descriptor()
-}
-
-func (ProjectType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[39]
-}
-
-func (x ProjectType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use ProjectType.Descriptor instead.
func (ProjectType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{39}
+ return fileDescriptor_edc174f991dc0a25, []int{39}
}
type SecondFactorType int32
@@ -2105,45 +1260,24 @@ const (
SecondFactorType_SECONDFACTORTYPE_U2F SecondFactorType = 2
)
-// Enum value maps for SecondFactorType.
-var (
- SecondFactorType_name = map[int32]string{
- 0: "SECONDFACTORTYPE_UNSPECIFIED",
- 1: "SECONDFACTORTYPE_OTP",
- 2: "SECONDFACTORTYPE_U2F",
- }
- SecondFactorType_value = map[string]int32{
- "SECONDFACTORTYPE_UNSPECIFIED": 0,
- "SECONDFACTORTYPE_OTP": 1,
- "SECONDFACTORTYPE_U2F": 2,
- }
-)
+var SecondFactorType_name = map[int32]string{
+ 0: "SECONDFACTORTYPE_UNSPECIFIED",
+ 1: "SECONDFACTORTYPE_OTP",
+ 2: "SECONDFACTORTYPE_U2F",
+}
-func (x SecondFactorType) Enum() *SecondFactorType {
- p := new(SecondFactorType)
- *p = x
- return p
+var SecondFactorType_value = map[string]int32{
+ "SECONDFACTORTYPE_UNSPECIFIED": 0,
+ "SECONDFACTORTYPE_OTP": 1,
+ "SECONDFACTORTYPE_U2F": 2,
}
func (x SecondFactorType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(SecondFactorType_name, int32(x))
}
-func (SecondFactorType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[40].Descriptor()
-}
-
-func (SecondFactorType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[40]
-}
-
-func (x SecondFactorType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use SecondFactorType.Descriptor instead.
func (SecondFactorType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{40}
+ return fileDescriptor_edc174f991dc0a25, []int{40}
}
type MultiFactorType int32
@@ -2153,770 +1287,632 @@ const (
MultiFactorType_MULTIFACTORTYPE_U2F_WITH_PIN MultiFactorType = 1
)
-// Enum value maps for MultiFactorType.
-var (
- MultiFactorType_name = map[int32]string{
- 0: "MULTIFACTORTYPE_UNSPECIFIED",
- 1: "MULTIFACTORTYPE_U2F_WITH_PIN",
- }
- MultiFactorType_value = map[string]int32{
- "MULTIFACTORTYPE_UNSPECIFIED": 0,
- "MULTIFACTORTYPE_U2F_WITH_PIN": 1,
- }
-)
+var MultiFactorType_name = map[int32]string{
+ 0: "MULTIFACTORTYPE_UNSPECIFIED",
+ 1: "MULTIFACTORTYPE_U2F_WITH_PIN",
+}
-func (x MultiFactorType) Enum() *MultiFactorType {
- p := new(MultiFactorType)
- *p = x
- return p
+var MultiFactorType_value = map[string]int32{
+ "MULTIFACTORTYPE_UNSPECIFIED": 0,
+ "MULTIFACTORTYPE_U2F_WITH_PIN": 1,
}
func (x MultiFactorType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
+ return proto.EnumName(MultiFactorType_name, int32(x))
}
-func (MultiFactorType) Descriptor() protoreflect.EnumDescriptor {
- return file_management_proto_enumTypes[41].Descriptor()
-}
-
-func (MultiFactorType) Type() protoreflect.EnumType {
- return &file_management_proto_enumTypes[41]
-}
-
-func (x MultiFactorType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
-}
-
-// Deprecated: Use MultiFactorType.Descriptor instead.
func (MultiFactorType) EnumDescriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{41}
+ return fileDescriptor_edc174f991dc0a25, []int{41}
}
type ZitadelDocs struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Issuer string `protobuf:"bytes,1,opt,name=issuer,proto3" json:"issuer,omitempty"`
- DiscoveryEndpoint string `protobuf:"bytes,2,opt,name=discovery_endpoint,json=discoveryEndpoint,proto3" json:"discovery_endpoint,omitempty"`
+ Issuer string `protobuf:"bytes,1,opt,name=issuer,proto3" json:"issuer,omitempty"`
+ DiscoveryEndpoint string `protobuf:"bytes,2,opt,name=discovery_endpoint,json=discoveryEndpoint,proto3" json:"discovery_endpoint,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ZitadelDocs) Reset() {
- *x = ZitadelDocs{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ZitadelDocs) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ZitadelDocs) ProtoMessage() {}
-
-func (x *ZitadelDocs) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[0]
- 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 ZitadelDocs.ProtoReflect.Descriptor instead.
+func (m *ZitadelDocs) Reset() { *m = ZitadelDocs{} }
+func (m *ZitadelDocs) String() string { return proto.CompactTextString(m) }
+func (*ZitadelDocs) ProtoMessage() {}
func (*ZitadelDocs) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{0}
+ return fileDescriptor_edc174f991dc0a25, []int{0}
}
-func (x *ZitadelDocs) GetIssuer() string {
- if x != nil {
- return x.Issuer
+func (m *ZitadelDocs) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ZitadelDocs.Unmarshal(m, b)
+}
+func (m *ZitadelDocs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ZitadelDocs.Marshal(b, m, deterministic)
+}
+func (m *ZitadelDocs) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ZitadelDocs.Merge(m, src)
+}
+func (m *ZitadelDocs) XXX_Size() int {
+ return xxx_messageInfo_ZitadelDocs.Size(m)
+}
+func (m *ZitadelDocs) XXX_DiscardUnknown() {
+ xxx_messageInfo_ZitadelDocs.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ZitadelDocs proto.InternalMessageInfo
+
+func (m *ZitadelDocs) GetIssuer() string {
+ if m != nil {
+ return m.Issuer
}
return ""
}
-func (x *ZitadelDocs) GetDiscoveryEndpoint() string {
- if x != nil {
- return x.DiscoveryEndpoint
+func (m *ZitadelDocs) GetDiscoveryEndpoint() string {
+ if m != nil {
+ return m.DiscoveryEndpoint
}
return ""
}
type Iam struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- GlobalOrgId string `protobuf:"bytes,1,opt,name=global_org_id,json=globalOrgId,proto3" json:"global_org_id,omitempty"`
- IamProjectId string `protobuf:"bytes,2,opt,name=iam_project_id,json=iamProjectId,proto3" json:"iam_project_id,omitempty"`
- SetUpDone IamSetupStep `protobuf:"varint,3,opt,name=set_up_done,json=setUpDone,proto3,enum=caos.zitadel.management.api.v1.IamSetupStep" json:"set_up_done,omitempty"`
- SetUpStarted IamSetupStep `protobuf:"varint,4,opt,name=set_up_started,json=setUpStarted,proto3,enum=caos.zitadel.management.api.v1.IamSetupStep" json:"set_up_started,omitempty"`
+ GlobalOrgId string `protobuf:"bytes,1,opt,name=global_org_id,json=globalOrgId,proto3" json:"global_org_id,omitempty"`
+ IamProjectId string `protobuf:"bytes,2,opt,name=iam_project_id,json=iamProjectId,proto3" json:"iam_project_id,omitempty"`
+ SetUpDone IamSetupStep `protobuf:"varint,3,opt,name=set_up_done,json=setUpDone,proto3,enum=caos.zitadel.management.api.v1.IamSetupStep" json:"set_up_done,omitempty"`
+ SetUpStarted IamSetupStep `protobuf:"varint,4,opt,name=set_up_started,json=setUpStarted,proto3,enum=caos.zitadel.management.api.v1.IamSetupStep" json:"set_up_started,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Iam) Reset() {
- *x = Iam{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Iam) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Iam) ProtoMessage() {}
-
-func (x *Iam) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[1]
- 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 Iam.ProtoReflect.Descriptor instead.
+func (m *Iam) Reset() { *m = Iam{} }
+func (m *Iam) String() string { return proto.CompactTextString(m) }
+func (*Iam) ProtoMessage() {}
func (*Iam) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{1}
+ return fileDescriptor_edc174f991dc0a25, []int{1}
}
-func (x *Iam) GetGlobalOrgId() string {
- if x != nil {
- return x.GlobalOrgId
+func (m *Iam) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Iam.Unmarshal(m, b)
+}
+func (m *Iam) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Iam.Marshal(b, m, deterministic)
+}
+func (m *Iam) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Iam.Merge(m, src)
+}
+func (m *Iam) XXX_Size() int {
+ return xxx_messageInfo_Iam.Size(m)
+}
+func (m *Iam) XXX_DiscardUnknown() {
+ xxx_messageInfo_Iam.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Iam proto.InternalMessageInfo
+
+func (m *Iam) GetGlobalOrgId() string {
+ if m != nil {
+ return m.GlobalOrgId
}
return ""
}
-func (x *Iam) GetIamProjectId() string {
- if x != nil {
- return x.IamProjectId
+func (m *Iam) GetIamProjectId() string {
+ if m != nil {
+ return m.IamProjectId
}
return ""
}
-func (x *Iam) GetSetUpDone() IamSetupStep {
- if x != nil {
- return x.SetUpDone
+func (m *Iam) GetSetUpDone() IamSetupStep {
+ if m != nil {
+ return m.SetUpDone
}
return IamSetupStep_iam_setup_step_UNDEFINED
}
-func (x *Iam) GetSetUpStarted() IamSetupStep {
- if x != nil {
- return x.SetUpStarted
+func (m *Iam) GetSetUpStarted() IamSetupStep {
+ if m != nil {
+ return m.SetUpStarted
}
return IamSetupStep_iam_setup_step_UNDEFINED
}
type ChangeRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- SecId string `protobuf:"bytes,2,opt,name=sec_id,json=secId,proto3" json:"sec_id,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- SequenceOffset uint64 `protobuf:"varint,4,opt,name=sequence_offset,json=sequenceOffset,proto3" json:"sequence_offset,omitempty"`
- Asc bool `protobuf:"varint,5,opt,name=asc,proto3" json:"asc,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ SecId string `protobuf:"bytes,2,opt,name=sec_id,json=secId,proto3" json:"sec_id,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ SequenceOffset uint64 `protobuf:"varint,4,opt,name=sequence_offset,json=sequenceOffset,proto3" json:"sequence_offset,omitempty"`
+ Asc bool `protobuf:"varint,5,opt,name=asc,proto3" json:"asc,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ChangeRequest) Reset() {
- *x = ChangeRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ChangeRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ChangeRequest) ProtoMessage() {}
-
-func (x *ChangeRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[2]
- 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 ChangeRequest.ProtoReflect.Descriptor instead.
+func (m *ChangeRequest) Reset() { *m = ChangeRequest{} }
+func (m *ChangeRequest) String() string { return proto.CompactTextString(m) }
+func (*ChangeRequest) ProtoMessage() {}
func (*ChangeRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{2}
+ return fileDescriptor_edc174f991dc0a25, []int{2}
}
-func (x *ChangeRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *ChangeRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ChangeRequest.Unmarshal(m, b)
+}
+func (m *ChangeRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ChangeRequest.Marshal(b, m, deterministic)
+}
+func (m *ChangeRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ChangeRequest.Merge(m, src)
+}
+func (m *ChangeRequest) XXX_Size() int {
+ return xxx_messageInfo_ChangeRequest.Size(m)
+}
+func (m *ChangeRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ChangeRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ChangeRequest proto.InternalMessageInfo
+
+func (m *ChangeRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ChangeRequest) GetSecId() string {
- if x != nil {
- return x.SecId
+func (m *ChangeRequest) GetSecId() string {
+ if m != nil {
+ return m.SecId
}
return ""
}
-func (x *ChangeRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ChangeRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ChangeRequest) GetSequenceOffset() uint64 {
- if x != nil {
- return x.SequenceOffset
+func (m *ChangeRequest) GetSequenceOffset() uint64 {
+ if m != nil {
+ return m.SequenceOffset
}
return 0
}
-func (x *ChangeRequest) GetAsc() bool {
- if x != nil {
- return x.Asc
+func (m *ChangeRequest) GetAsc() bool {
+ if m != nil {
+ return m.Asc
}
return false
}
type Changes struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Changes []*Change `protobuf:"bytes,1,rep,name=changes,proto3" json:"changes,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Changes []*Change `protobuf:"bytes,1,rep,name=changes,proto3" json:"changes,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Changes) Reset() {
- *x = Changes{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Changes) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Changes) ProtoMessage() {}
-
-func (x *Changes) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[3]
- 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 Changes.ProtoReflect.Descriptor instead.
+func (m *Changes) Reset() { *m = Changes{} }
+func (m *Changes) String() string { return proto.CompactTextString(m) }
+func (*Changes) ProtoMessage() {}
func (*Changes) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{3}
+ return fileDescriptor_edc174f991dc0a25, []int{3}
}
-func (x *Changes) GetChanges() []*Change {
- if x != nil {
- return x.Changes
+func (m *Changes) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Changes.Unmarshal(m, b)
+}
+func (m *Changes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Changes.Marshal(b, m, deterministic)
+}
+func (m *Changes) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Changes.Merge(m, src)
+}
+func (m *Changes) XXX_Size() int {
+ return xxx_messageInfo_Changes.Size(m)
+}
+func (m *Changes) XXX_DiscardUnknown() {
+ xxx_messageInfo_Changes.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Changes proto.InternalMessageInfo
+
+func (m *Changes) GetChanges() []*Change {
+ if m != nil {
+ return m.Changes
}
return nil
}
-func (x *Changes) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *Changes) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *Changes) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *Changes) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
type Change struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,1,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- EventType *message.LocalizedMessage `protobuf:"bytes,2,opt,name=event_type,json=eventType,proto3" json:"event_type,omitempty"`
- Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
- EditorId string `protobuf:"bytes,4,opt,name=editor_id,json=editorId,proto3" json:"editor_id,omitempty"`
- Editor string `protobuf:"bytes,5,opt,name=editor,proto3" json:"editor,omitempty"`
- Data *_struct.Struct `protobuf:"bytes,6,opt,name=data,proto3" json:"data,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,1,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ EventType *message.LocalizedMessage `protobuf:"bytes,2,opt,name=event_type,json=eventType,proto3" json:"event_type,omitempty"`
+ Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ EditorId string `protobuf:"bytes,4,opt,name=editor_id,json=editorId,proto3" json:"editor_id,omitempty"`
+ Editor string `protobuf:"bytes,5,opt,name=editor,proto3" json:"editor,omitempty"`
+ Data *_struct.Struct `protobuf:"bytes,6,opt,name=data,proto3" json:"data,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Change) Reset() {
- *x = Change{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Change) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Change) ProtoMessage() {}
-
-func (x *Change) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[4]
- 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 Change.ProtoReflect.Descriptor instead.
+func (m *Change) Reset() { *m = Change{} }
+func (m *Change) String() string { return proto.CompactTextString(m) }
+func (*Change) ProtoMessage() {}
func (*Change) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{4}
+ return fileDescriptor_edc174f991dc0a25, []int{4}
}
-func (x *Change) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Change) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Change.Unmarshal(m, b)
+}
+func (m *Change) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Change.Marshal(b, m, deterministic)
+}
+func (m *Change) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Change.Merge(m, src)
+}
+func (m *Change) XXX_Size() int {
+ return xxx_messageInfo_Change.Size(m)
+}
+func (m *Change) XXX_DiscardUnknown() {
+ xxx_messageInfo_Change.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Change proto.InternalMessageInfo
+
+func (m *Change) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Change) GetEventType() *message.LocalizedMessage {
- if x != nil {
- return x.EventType
+func (m *Change) GetEventType() *message.LocalizedMessage {
+ if m != nil {
+ return m.EventType
}
return nil
}
-func (x *Change) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *Change) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *Change) GetEditorId() string {
- if x != nil {
- return x.EditorId
+func (m *Change) GetEditorId() string {
+ if m != nil {
+ return m.EditorId
}
return ""
}
-func (x *Change) GetEditor() string {
- if x != nil {
- return x.Editor
+func (m *Change) GetEditor() string {
+ if m != nil {
+ return m.Editor
}
return ""
}
-func (x *Change) GetData() *_struct.Struct {
- if x != nil {
- return x.Data
+func (m *Change) GetData() *_struct.Struct {
+ if m != nil {
+ return m.Data
}
return nil
}
type ApplicationID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationID) Reset() {
- *x = ApplicationID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationID) ProtoMessage() {}
-
-func (x *ApplicationID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[5]
- 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 ApplicationID.ProtoReflect.Descriptor instead.
+func (m *ApplicationID) Reset() { *m = ApplicationID{} }
+func (m *ApplicationID) String() string { return proto.CompactTextString(m) }
+func (*ApplicationID) ProtoMessage() {}
func (*ApplicationID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{5}
+ return fileDescriptor_edc174f991dc0a25, []int{5}
}
-func (x *ApplicationID) GetId() string {
- if x != nil {
- return x.Id
+func (m *ApplicationID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationID.Unmarshal(m, b)
+}
+func (m *ApplicationID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationID.Marshal(b, m, deterministic)
+}
+func (m *ApplicationID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationID.Merge(m, src)
+}
+func (m *ApplicationID) XXX_Size() int {
+ return xxx_messageInfo_ApplicationID.Size(m)
+}
+func (m *ApplicationID) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationID proto.InternalMessageInfo
+
+func (m *ApplicationID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ApplicationID) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ApplicationID) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
type ProjectID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectID) Reset() {
- *x = ProjectID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectID) ProtoMessage() {}
-
-func (x *ProjectID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[6]
- 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 ProjectID.ProtoReflect.Descriptor instead.
+func (m *ProjectID) Reset() { *m = ProjectID{} }
+func (m *ProjectID) String() string { return proto.CompactTextString(m) }
+func (*ProjectID) ProtoMessage() {}
func (*ProjectID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{6}
+ return fileDescriptor_edc174f991dc0a25, []int{6}
}
-func (x *ProjectID) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectID.Unmarshal(m, b)
+}
+func (m *ProjectID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectID.Marshal(b, m, deterministic)
+}
+func (m *ProjectID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectID.Merge(m, src)
+}
+func (m *ProjectID) XXX_Size() int {
+ return xxx_messageInfo_ProjectID.Size(m)
+}
+func (m *ProjectID) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectID proto.InternalMessageInfo
+
+func (m *ProjectID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type UserID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserID) Reset() {
- *x = UserID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserID) ProtoMessage() {}
-
-func (x *UserID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[7]
- 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 UserID.ProtoReflect.Descriptor instead.
+func (m *UserID) Reset() { *m = UserID{} }
+func (m *UserID) String() string { return proto.CompactTextString(m) }
+func (*UserID) ProtoMessage() {}
func (*UserID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{7}
+ return fileDescriptor_edc174f991dc0a25, []int{7}
}
-func (x *UserID) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserID.Unmarshal(m, b)
+}
+func (m *UserID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserID.Marshal(b, m, deterministic)
+}
+func (m *UserID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserID.Merge(m, src)
+}
+func (m *UserID) XXX_Size() int {
+ return xxx_messageInfo_UserID.Size(m)
+}
+func (m *UserID) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserID proto.InternalMessageInfo
+
+func (m *UserID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type LoginName struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- LoginName string `protobuf:"bytes,1,opt,name=login_name,json=loginName,proto3" json:"login_name,omitempty"`
+ LoginName string `protobuf:"bytes,1,opt,name=login_name,json=loginName,proto3" json:"login_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *LoginName) Reset() {
- *x = LoginName{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *LoginName) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*LoginName) ProtoMessage() {}
-
-func (x *LoginName) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[8]
- 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 LoginName.ProtoReflect.Descriptor instead.
+func (m *LoginName) Reset() { *m = LoginName{} }
+func (m *LoginName) String() string { return proto.CompactTextString(m) }
+func (*LoginName) ProtoMessage() {}
func (*LoginName) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{8}
+ return fileDescriptor_edc174f991dc0a25, []int{8}
}
-func (x *LoginName) GetLoginName() string {
- if x != nil {
- return x.LoginName
+func (m *LoginName) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_LoginName.Unmarshal(m, b)
+}
+func (m *LoginName) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_LoginName.Marshal(b, m, deterministic)
+}
+func (m *LoginName) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_LoginName.Merge(m, src)
+}
+func (m *LoginName) XXX_Size() int {
+ return xxx_messageInfo_LoginName.Size(m)
+}
+func (m *LoginName) XXX_DiscardUnknown() {
+ xxx_messageInfo_LoginName.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_LoginName proto.InternalMessageInfo
+
+func (m *LoginName) GetLoginName() string {
+ if m != nil {
+ return m.LoginName
}
return ""
}
type UniqueUserRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UniqueUserRequest) Reset() {
- *x = UniqueUserRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UniqueUserRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UniqueUserRequest) ProtoMessage() {}
-
-func (x *UniqueUserRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[9]
- 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 UniqueUserRequest.ProtoReflect.Descriptor instead.
+func (m *UniqueUserRequest) Reset() { *m = UniqueUserRequest{} }
+func (m *UniqueUserRequest) String() string { return proto.CompactTextString(m) }
+func (*UniqueUserRequest) ProtoMessage() {}
func (*UniqueUserRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{9}
+ return fileDescriptor_edc174f991dc0a25, []int{9}
}
-func (x *UniqueUserRequest) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UniqueUserRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UniqueUserRequest.Unmarshal(m, b)
+}
+func (m *UniqueUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UniqueUserRequest.Marshal(b, m, deterministic)
+}
+func (m *UniqueUserRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UniqueUserRequest.Merge(m, src)
+}
+func (m *UniqueUserRequest) XXX_Size() int {
+ return xxx_messageInfo_UniqueUserRequest.Size(m)
+}
+func (m *UniqueUserRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UniqueUserRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UniqueUserRequest proto.InternalMessageInfo
+
+func (m *UniqueUserRequest) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UniqueUserRequest) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UniqueUserRequest) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
type UniqueUserResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- IsUnique bool `protobuf:"varint,1,opt,name=is_unique,json=isUnique,proto3" json:"is_unique,omitempty"`
+ IsUnique bool `protobuf:"varint,1,opt,name=is_unique,json=isUnique,proto3" json:"is_unique,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UniqueUserResponse) Reset() {
- *x = UniqueUserResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UniqueUserResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UniqueUserResponse) ProtoMessage() {}
-
-func (x *UniqueUserResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[10]
- 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 UniqueUserResponse.ProtoReflect.Descriptor instead.
+func (m *UniqueUserResponse) Reset() { *m = UniqueUserResponse{} }
+func (m *UniqueUserResponse) String() string { return proto.CompactTextString(m) }
+func (*UniqueUserResponse) ProtoMessage() {}
func (*UniqueUserResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{10}
+ return fileDescriptor_edc174f991dc0a25, []int{10}
}
-func (x *UniqueUserResponse) GetIsUnique() bool {
- if x != nil {
- return x.IsUnique
+func (m *UniqueUserResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UniqueUserResponse.Unmarshal(m, b)
+}
+func (m *UniqueUserResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UniqueUserResponse.Marshal(b, m, deterministic)
+}
+func (m *UniqueUserResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UniqueUserResponse.Merge(m, src)
+}
+func (m *UniqueUserResponse) XXX_Size() int {
+ return xxx_messageInfo_UniqueUserResponse.Size(m)
+}
+func (m *UniqueUserResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UniqueUserResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UniqueUserResponse proto.InternalMessageInfo
+
+func (m *UniqueUserResponse) GetIsUnique() bool {
+ if m != nil {
+ return m.IsUnique
}
return false
}
type CreateUserRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
UserName string `protobuf:"bytes,1,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- // Types that are assignable to User:
+ // Types that are valid to be assigned to User:
// *CreateUserRequest_Human
// *CreateUserRequest_Machine
- User isCreateUserRequest_User `protobuf_oneof:"user"`
+ User isCreateUserRequest_User `protobuf_oneof:"user"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *CreateUserRequest) Reset() {
- *x = CreateUserRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *CreateUserRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*CreateUserRequest) ProtoMessage() {}
-
-func (x *CreateUserRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[11]
- 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 CreateUserRequest.ProtoReflect.Descriptor instead.
+func (m *CreateUserRequest) Reset() { *m = CreateUserRequest{} }
+func (m *CreateUserRequest) String() string { return proto.CompactTextString(m) }
+func (*CreateUserRequest) ProtoMessage() {}
func (*CreateUserRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{11}
+ return fileDescriptor_edc174f991dc0a25, []int{11}
}
-func (x *CreateUserRequest) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *CreateUserRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_CreateUserRequest.Unmarshal(m, b)
+}
+func (m *CreateUserRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_CreateUserRequest.Marshal(b, m, deterministic)
+}
+func (m *CreateUserRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_CreateUserRequest.Merge(m, src)
+}
+func (m *CreateUserRequest) XXX_Size() int {
+ return xxx_messageInfo_CreateUserRequest.Size(m)
+}
+func (m *CreateUserRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_CreateUserRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CreateUserRequest proto.InternalMessageInfo
+
+func (m *CreateUserRequest) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (m *CreateUserRequest) GetUser() isCreateUserRequest_User {
- if m != nil {
- return m.User
- }
- return nil
-}
-
-func (x *CreateUserRequest) GetHuman() *CreateHumanRequest {
- if x, ok := x.GetUser().(*CreateUserRequest_Human); ok {
- return x.Human
- }
- return nil
-}
-
-func (x *CreateUserRequest) GetMachine() *CreateMachineRequest {
- if x, ok := x.GetUser().(*CreateUserRequest_Machine); ok {
- return x.Machine
- }
- return nil
-}
-
type isCreateUserRequest_User interface {
isCreateUserRequest_User()
}
@@ -2933,332 +1929,316 @@ func (*CreateUserRequest_Human) isCreateUserRequest_User() {}
func (*CreateUserRequest_Machine) isCreateUserRequest_User() {}
-type CreateHumanRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- FirstName string `protobuf:"bytes,1,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,2,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,3,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,4,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,5,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- Email string `protobuf:"bytes,6,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,7,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Phone string `protobuf:"bytes,8,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,9,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Country string `protobuf:"bytes,10,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,11,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,12,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,13,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,14,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Password string `protobuf:"bytes,15,opt,name=password,proto3" json:"password,omitempty"`
-}
-
-func (x *CreateHumanRequest) Reset() {
- *x = CreateHumanRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *CreateHumanRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*CreateHumanRequest) ProtoMessage() {}
-
-func (x *CreateHumanRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_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 CreateHumanRequest.ProtoReflect.Descriptor instead.
-func (*CreateHumanRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{12}
-}
-
-func (x *CreateHumanRequest) GetFirstName() string {
- if x != nil {
- return x.FirstName
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetLastName() string {
- if x != nil {
- return x.LastName
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetNickName() string {
- if x != nil {
- return x.NickName
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetGender() Gender {
- if x != nil {
- return x.Gender
- }
- return Gender_GENDER_UNSPECIFIED
-}
-
-func (x *CreateHumanRequest) GetEmail() string {
- if x != nil {
- return x.Email
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
- }
- return false
-}
-
-func (x *CreateHumanRequest) GetPhone() string {
- if x != nil {
- return x.Phone
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
- }
- return false
-}
-
-func (x *CreateHumanRequest) GetCountry() string {
- if x != nil {
- return x.Country
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetLocality() string {
- if x != nil {
- return x.Locality
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetRegion() string {
- if x != nil {
- return x.Region
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
- }
- return ""
-}
-
-func (x *CreateHumanRequest) GetPassword() string {
- if x != nil {
- return x.Password
- }
- return ""
-}
-
-type CreateMachineRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
-}
-
-func (x *CreateMachineRequest) Reset() {
- *x = CreateMachineRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *CreateMachineRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*CreateMachineRequest) ProtoMessage() {}
-
-func (x *CreateMachineRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_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 CreateMachineRequest.ProtoReflect.Descriptor instead.
-func (*CreateMachineRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{13}
-}
-
-func (x *CreateMachineRequest) GetName() string {
- if x != nil {
- return x.Name
- }
- return ""
-}
-
-func (x *CreateMachineRequest) GetDescription() string {
- if x != nil {
- return x.Description
- }
- return ""
-}
-
-type UserResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
- UserName string `protobuf:"bytes,6,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- // Types that are assignable to User:
- // *UserResponse_Human
- // *UserResponse_Machine
- User isUserResponse_User `protobuf_oneof:"user"`
-}
-
-func (x *UserResponse) Reset() {
- *x = UserResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserResponse) ProtoMessage() {}
-
-func (x *UserResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_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 UserResponse.ProtoReflect.Descriptor instead.
-func (*UserResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{14}
-}
-
-func (x *UserResponse) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
-}
-
-func (x *UserResponse) GetState() UserState {
- if x != nil {
- return x.State
- }
- return UserState_USERSTATE_UNSPECIFIED
-}
-
-func (x *UserResponse) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
- }
- return nil
-}
-
-func (x *UserResponse) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
- }
- return nil
-}
-
-func (x *UserResponse) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
- }
- return 0
-}
-
-func (x *UserResponse) GetUserName() string {
- if x != nil {
- return x.UserName
- }
- return ""
-}
-
-func (m *UserResponse) GetUser() isUserResponse_User {
+func (m *CreateUserRequest) GetUser() isCreateUserRequest_User {
if m != nil {
return m.User
}
return nil
}
-func (x *UserResponse) GetHuman() *HumanResponse {
- if x, ok := x.GetUser().(*UserResponse_Human); ok {
+func (m *CreateUserRequest) GetHuman() *CreateHumanRequest {
+ if x, ok := m.GetUser().(*CreateUserRequest_Human); ok {
return x.Human
}
return nil
}
-func (x *UserResponse) GetMachine() *MachineResponse {
- if x, ok := x.GetUser().(*UserResponse_Machine); ok {
+func (m *CreateUserRequest) GetMachine() *CreateMachineRequest {
+ if x, ok := m.GetUser().(*CreateUserRequest_Machine); ok {
return x.Machine
}
return nil
}
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*CreateUserRequest) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*CreateUserRequest_Human)(nil),
+ (*CreateUserRequest_Machine)(nil),
+ }
+}
+
+type CreateHumanRequest struct {
+ FirstName string `protobuf:"bytes,1,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,2,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,3,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,4,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,5,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Email string `protobuf:"bytes,6,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,7,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Phone string `protobuf:"bytes,8,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,9,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Country string `protobuf:"bytes,10,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,11,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,12,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,13,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,14,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Password string `protobuf:"bytes,15,opt,name=password,proto3" json:"password,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *CreateHumanRequest) Reset() { *m = CreateHumanRequest{} }
+func (m *CreateHumanRequest) String() string { return proto.CompactTextString(m) }
+func (*CreateHumanRequest) ProtoMessage() {}
+func (*CreateHumanRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_edc174f991dc0a25, []int{12}
+}
+
+func (m *CreateHumanRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_CreateHumanRequest.Unmarshal(m, b)
+}
+func (m *CreateHumanRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_CreateHumanRequest.Marshal(b, m, deterministic)
+}
+func (m *CreateHumanRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_CreateHumanRequest.Merge(m, src)
+}
+func (m *CreateHumanRequest) XXX_Size() int {
+ return xxx_messageInfo_CreateHumanRequest.Size(m)
+}
+func (m *CreateHumanRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_CreateHumanRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CreateHumanRequest proto.InternalMessageInfo
+
+func (m *CreateHumanRequest) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetLastName() string {
+ if m != nil {
+ return m.LastName
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetNickName() string {
+ if m != nil {
+ return m.NickName
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetGender() Gender {
+ if m != nil {
+ return m.Gender
+ }
+ return Gender_GENDER_UNSPECIFIED
+}
+
+func (m *CreateHumanRequest) GetEmail() string {
+ if m != nil {
+ return m.Email
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
+ }
+ return false
+}
+
+func (m *CreateHumanRequest) GetPhone() string {
+ if m != nil {
+ return m.Phone
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
+ }
+ return false
+}
+
+func (m *CreateHumanRequest) GetCountry() string {
+ if m != nil {
+ return m.Country
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetLocality() string {
+ if m != nil {
+ return m.Locality
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetRegion() string {
+ if m != nil {
+ return m.Region
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
+ }
+ return ""
+}
+
+func (m *CreateHumanRequest) GetPassword() string {
+ if m != nil {
+ return m.Password
+ }
+ return ""
+}
+
+type CreateMachineRequest struct {
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *CreateMachineRequest) Reset() { *m = CreateMachineRequest{} }
+func (m *CreateMachineRequest) String() string { return proto.CompactTextString(m) }
+func (*CreateMachineRequest) ProtoMessage() {}
+func (*CreateMachineRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_edc174f991dc0a25, []int{13}
+}
+
+func (m *CreateMachineRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_CreateMachineRequest.Unmarshal(m, b)
+}
+func (m *CreateMachineRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_CreateMachineRequest.Marshal(b, m, deterministic)
+}
+func (m *CreateMachineRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_CreateMachineRequest.Merge(m, src)
+}
+func (m *CreateMachineRequest) XXX_Size() int {
+ return xxx_messageInfo_CreateMachineRequest.Size(m)
+}
+func (m *CreateMachineRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_CreateMachineRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_CreateMachineRequest proto.InternalMessageInfo
+
+func (m *CreateMachineRequest) GetName() string {
+ if m != nil {
+ return m.Name
+ }
+ return ""
+}
+
+func (m *CreateMachineRequest) GetDescription() string {
+ if m != nil {
+ return m.Description
+ }
+ return ""
+}
+
+type UserResponse struct {
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserName string `protobuf:"bytes,6,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ // Types that are valid to be assigned to User:
+ // *UserResponse_Human
+ // *UserResponse_Machine
+ User isUserResponse_User `protobuf_oneof:"user"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *UserResponse) Reset() { *m = UserResponse{} }
+func (m *UserResponse) String() string { return proto.CompactTextString(m) }
+func (*UserResponse) ProtoMessage() {}
+func (*UserResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_edc174f991dc0a25, []int{14}
+}
+
+func (m *UserResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserResponse.Unmarshal(m, b)
+}
+func (m *UserResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserResponse.Marshal(b, m, deterministic)
+}
+func (m *UserResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserResponse.Merge(m, src)
+}
+func (m *UserResponse) XXX_Size() int {
+ return xxx_messageInfo_UserResponse.Size(m)
+}
+func (m *UserResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserResponse proto.InternalMessageInfo
+
+func (m *UserResponse) GetId() string {
+ if m != nil {
+ return m.Id
+ }
+ return ""
+}
+
+func (m *UserResponse) GetState() UserState {
+ if m != nil {
+ return m.State
+ }
+ return UserState_USERSTATE_UNSPECIFIED
+}
+
+func (m *UserResponse) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
+ }
+ return nil
+}
+
+func (m *UserResponse) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
+ }
+ return nil
+}
+
+func (m *UserResponse) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
+ }
+ return 0
+}
+
+func (m *UserResponse) GetUserName() string {
+ if m != nil {
+ return m.UserName
+ }
+ return ""
+}
+
type isUserResponse_User interface {
isUserResponse_User()
}
@@ -3275,11 +2255,36 @@ func (*UserResponse_Human) isUserResponse_User() {}
func (*UserResponse_Machine) isUserResponse_User() {}
-type UserView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
+func (m *UserResponse) GetUser() isUserResponse_User {
+ if m != nil {
+ return m.User
+ }
+ return nil
+}
+func (m *UserResponse) GetHuman() *HumanResponse {
+ if x, ok := m.GetUser().(*UserResponse_Human); ok {
+ return x.Human
+ }
+ return nil
+}
+
+func (m *UserResponse) GetMachine() *MachineResponse {
+ if x, ok := m.GetUser().(*UserResponse_Machine); ok {
+ return x.Machine
+ }
+ return nil
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*UserResponse) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*UserResponse_Human)(nil),
+ (*UserResponse_Machine)(nil),
+ }
+}
+
+type UserView struct {
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
State UserState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserState" json:"state,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
@@ -3290,133 +2295,108 @@ type UserView struct {
LastLogin *timestamp.Timestamp `protobuf:"bytes,8,opt,name=last_login,json=lastLogin,proto3" json:"last_login,omitempty"`
ResourceOwner string `protobuf:"bytes,9,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
UserName string `protobuf:"bytes,10,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- // Types that are assignable to User:
+ // Types that are valid to be assigned to User:
// *UserView_Human
// *UserView_Machine
- User isUserView_User `protobuf_oneof:"user"`
+ User isUserView_User `protobuf_oneof:"user"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserView) Reset() {
- *x = UserView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserView) ProtoMessage() {}
-
-func (x *UserView) ProtoReflect() protoreflect.Message {
- mi := &file_management_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 UserView.ProtoReflect.Descriptor instead.
+func (m *UserView) Reset() { *m = UserView{} }
+func (m *UserView) String() string { return proto.CompactTextString(m) }
+func (*UserView) ProtoMessage() {}
func (*UserView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{15}
+ return fileDescriptor_edc174f991dc0a25, []int{15}
}
-func (x *UserView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserView.Unmarshal(m, b)
+}
+func (m *UserView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserView.Marshal(b, m, deterministic)
+}
+func (m *UserView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserView.Merge(m, src)
+}
+func (m *UserView) XXX_Size() int {
+ return xxx_messageInfo_UserView.Size(m)
+}
+func (m *UserView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserView proto.InternalMessageInfo
+
+func (m *UserView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserView) GetState() UserState {
- if x != nil {
- return x.State
+func (m *UserView) GetState() UserState {
+ if m != nil {
+ return m.State
}
return UserState_USERSTATE_UNSPECIFIED
}
-func (x *UserView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserView) GetLoginNames() []string {
- if x != nil {
- return x.LoginNames
- }
- return nil
-}
-
-func (x *UserView) GetPreferredLoginName() string {
- if x != nil {
- return x.PreferredLoginName
- }
- return ""
-}
-
-func (x *UserView) GetLastLogin() *timestamp.Timestamp {
- if x != nil {
- return x.LastLogin
- }
- return nil
-}
-
-func (x *UserView) GetResourceOwner() string {
- if x != nil {
- return x.ResourceOwner
- }
- return ""
-}
-
-func (x *UserView) GetUserName() string {
- if x != nil {
- return x.UserName
- }
- return ""
-}
-
-func (m *UserView) GetUser() isUserView_User {
+func (m *UserView) GetLoginNames() []string {
if m != nil {
- return m.User
+ return m.LoginNames
}
return nil
}
-func (x *UserView) GetHuman() *HumanView {
- if x, ok := x.GetUser().(*UserView_Human); ok {
- return x.Human
+func (m *UserView) GetPreferredLoginName() string {
+ if m != nil {
+ return m.PreferredLoginName
+ }
+ return ""
+}
+
+func (m *UserView) GetLastLogin() *timestamp.Timestamp {
+ if m != nil {
+ return m.LastLogin
}
return nil
}
-func (x *UserView) GetMachine() *MachineView {
- if x, ok := x.GetUser().(*UserView_Machine); ok {
- return x.Machine
+func (m *UserView) GetResourceOwner() string {
+ if m != nil {
+ return m.ResourceOwner
}
- return nil
+ return ""
+}
+
+func (m *UserView) GetUserName() string {
+ if m != nil {
+ return m.UserName
+ }
+ return ""
}
type isUserView_User interface {
@@ -3435,4440 +2415,4040 @@ func (*UserView_Human) isUserView_User() {}
func (*UserView_Machine) isUserView_User() {}
+func (m *UserView) GetUser() isUserView_User {
+ if m != nil {
+ return m.User
+ }
+ return nil
+}
+
+func (m *UserView) GetHuman() *HumanView {
+ if x, ok := m.GetUser().(*UserView_Human); ok {
+ return x.Human
+ }
+ return nil
+}
+
+func (m *UserView) GetMachine() *MachineView {
+ if x, ok := m.GetUser().(*UserView_Machine); ok {
+ return x.Machine
+ }
+ return nil
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*UserView) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*UserView_Human)(nil),
+ (*UserView_Machine)(nil),
+ }
+}
+
type HumanResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- FirstName string `protobuf:"bytes,1,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,2,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,8,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Phone string `protobuf:"bytes,9,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,10,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Country string `protobuf:"bytes,11,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,12,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,13,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,14,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,15,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ FirstName string `protobuf:"bytes,1,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,2,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,8,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Phone string `protobuf:"bytes,9,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,10,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Country string `protobuf:"bytes,11,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,12,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,13,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,14,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,15,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *HumanResponse) Reset() {
- *x = HumanResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *HumanResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*HumanResponse) ProtoMessage() {}
-
-func (x *HumanResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_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 HumanResponse.ProtoReflect.Descriptor instead.
+func (m *HumanResponse) Reset() { *m = HumanResponse{} }
+func (m *HumanResponse) String() string { return proto.CompactTextString(m) }
+func (*HumanResponse) ProtoMessage() {}
func (*HumanResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{16}
+ return fileDescriptor_edc174f991dc0a25, []int{16}
}
-func (x *HumanResponse) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *HumanResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_HumanResponse.Unmarshal(m, b)
+}
+func (m *HumanResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_HumanResponse.Marshal(b, m, deterministic)
+}
+func (m *HumanResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_HumanResponse.Merge(m, src)
+}
+func (m *HumanResponse) XXX_Size() int {
+ return xxx_messageInfo_HumanResponse.Size(m)
+}
+func (m *HumanResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_HumanResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_HumanResponse proto.InternalMessageInfo
+
+func (m *HumanResponse) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *HumanResponse) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *HumanResponse) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *HumanResponse) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *HumanResponse) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *HumanResponse) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *HumanResponse) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *HumanResponse) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *HumanResponse) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *HumanResponse) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *HumanResponse) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *HumanResponse) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *HumanResponse) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *HumanResponse) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *HumanResponse) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *HumanResponse) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *HumanResponse) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *HumanResponse) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *HumanResponse) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *HumanResponse) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *HumanResponse) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *HumanResponse) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *HumanResponse) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *HumanResponse) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *HumanResponse) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *HumanResponse) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *HumanResponse) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *HumanResponse) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *HumanResponse) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
type HumanView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- PasswordChanged *timestamp.Timestamp `protobuf:"bytes,1,opt,name=password_changed,json=passwordChanged,proto3" json:"password_changed,omitempty"`
- FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- DisplayName string `protobuf:"bytes,4,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- NickName string `protobuf:"bytes,5,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- Email string `protobuf:"bytes,8,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,9,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Phone string `protobuf:"bytes,10,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,11,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Country string `protobuf:"bytes,12,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,13,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,14,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,15,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,16,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ PasswordChanged *timestamp.Timestamp `protobuf:"bytes,1,opt,name=password_changed,json=passwordChanged,proto3" json:"password_changed,omitempty"`
+ FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ DisplayName string `protobuf:"bytes,4,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ NickName string `protobuf:"bytes,5,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Email string `protobuf:"bytes,8,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,9,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Phone string `protobuf:"bytes,10,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,11,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Country string `protobuf:"bytes,12,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,13,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,14,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,15,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,16,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *HumanView) Reset() {
- *x = HumanView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[17]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *HumanView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*HumanView) ProtoMessage() {}
-
-func (x *HumanView) ProtoReflect() protoreflect.Message {
- mi := &file_management_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 HumanView.ProtoReflect.Descriptor instead.
+func (m *HumanView) Reset() { *m = HumanView{} }
+func (m *HumanView) String() string { return proto.CompactTextString(m) }
+func (*HumanView) ProtoMessage() {}
func (*HumanView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{17}
+ return fileDescriptor_edc174f991dc0a25, []int{17}
}
-func (x *HumanView) GetPasswordChanged() *timestamp.Timestamp {
- if x != nil {
- return x.PasswordChanged
+func (m *HumanView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_HumanView.Unmarshal(m, b)
+}
+func (m *HumanView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_HumanView.Marshal(b, m, deterministic)
+}
+func (m *HumanView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_HumanView.Merge(m, src)
+}
+func (m *HumanView) XXX_Size() int {
+ return xxx_messageInfo_HumanView.Size(m)
+}
+func (m *HumanView) XXX_DiscardUnknown() {
+ xxx_messageInfo_HumanView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_HumanView proto.InternalMessageInfo
+
+func (m *HumanView) GetPasswordChanged() *timestamp.Timestamp {
+ if m != nil {
+ return m.PasswordChanged
}
return nil
}
-func (x *HumanView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *HumanView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *HumanView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *HumanView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *HumanView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *HumanView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *HumanView) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *HumanView) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *HumanView) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *HumanView) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *HumanView) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *HumanView) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *HumanView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *HumanView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *HumanView) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *HumanView) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *HumanView) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *HumanView) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *HumanView) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *HumanView) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *HumanView) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *HumanView) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *HumanView) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *HumanView) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *HumanView) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *HumanView) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *HumanView) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *HumanView) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *HumanView) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *HumanView) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
type MachineResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MachineResponse) Reset() {
- *x = MachineResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[18]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MachineResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MachineResponse) ProtoMessage() {}
-
-func (x *MachineResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_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 MachineResponse.ProtoReflect.Descriptor instead.
+func (m *MachineResponse) Reset() { *m = MachineResponse{} }
+func (m *MachineResponse) String() string { return proto.CompactTextString(m) }
+func (*MachineResponse) ProtoMessage() {}
func (*MachineResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{18}
+ return fileDescriptor_edc174f991dc0a25, []int{18}
}
-func (x *MachineResponse) GetName() string {
- if x != nil {
- return x.Name
+func (m *MachineResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MachineResponse.Unmarshal(m, b)
+}
+func (m *MachineResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MachineResponse.Marshal(b, m, deterministic)
+}
+func (m *MachineResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MachineResponse.Merge(m, src)
+}
+func (m *MachineResponse) XXX_Size() int {
+ return xxx_messageInfo_MachineResponse.Size(m)
+}
+func (m *MachineResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_MachineResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MachineResponse proto.InternalMessageInfo
+
+func (m *MachineResponse) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *MachineResponse) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *MachineResponse) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
type MachineView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- LastKeyAdded *timestamp.Timestamp `protobuf:"bytes,1,opt,name=last_key_added,json=lastKeyAdded,proto3" json:"last_key_added,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
+ LastKeyAdded *timestamp.Timestamp `protobuf:"bytes,1,opt,name=last_key_added,json=lastKeyAdded,proto3" json:"last_key_added,omitempty"`
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MachineView) Reset() {
- *x = MachineView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[19]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MachineView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MachineView) ProtoMessage() {}
-
-func (x *MachineView) ProtoReflect() protoreflect.Message {
- mi := &file_management_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 MachineView.ProtoReflect.Descriptor instead.
+func (m *MachineView) Reset() { *m = MachineView{} }
+func (m *MachineView) String() string { return proto.CompactTextString(m) }
+func (*MachineView) ProtoMessage() {}
func (*MachineView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{19}
+ return fileDescriptor_edc174f991dc0a25, []int{19}
}
-func (x *MachineView) GetLastKeyAdded() *timestamp.Timestamp {
- if x != nil {
- return x.LastKeyAdded
+func (m *MachineView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MachineView.Unmarshal(m, b)
+}
+func (m *MachineView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MachineView.Marshal(b, m, deterministic)
+}
+func (m *MachineView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MachineView.Merge(m, src)
+}
+func (m *MachineView) XXX_Size() int {
+ return xxx_messageInfo_MachineView.Size(m)
+}
+func (m *MachineView) XXX_DiscardUnknown() {
+ xxx_messageInfo_MachineView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MachineView proto.InternalMessageInfo
+
+func (m *MachineView) GetLastKeyAdded() *timestamp.Timestamp {
+ if m != nil {
+ return m.LastKeyAdded
}
return nil
}
-func (x *MachineView) GetName() string {
- if x != nil {
- return x.Name
+func (m *MachineView) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *MachineView) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *MachineView) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
type UpdateMachineRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Description string `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateMachineRequest) Reset() {
- *x = UpdateMachineRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[20]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateMachineRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateMachineRequest) ProtoMessage() {}
-
-func (x *UpdateMachineRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[20]
- 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 UpdateMachineRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateMachineRequest) Reset() { *m = UpdateMachineRequest{} }
+func (m *UpdateMachineRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateMachineRequest) ProtoMessage() {}
func (*UpdateMachineRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{20}
+ return fileDescriptor_edc174f991dc0a25, []int{20}
}
-func (x *UpdateMachineRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateMachineRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateMachineRequest.Unmarshal(m, b)
+}
+func (m *UpdateMachineRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateMachineRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateMachineRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateMachineRequest.Merge(m, src)
+}
+func (m *UpdateMachineRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateMachineRequest.Size(m)
+}
+func (m *UpdateMachineRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateMachineRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateMachineRequest proto.InternalMessageInfo
+
+func (m *UpdateMachineRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateMachineRequest) GetDescription() string {
- if x != nil {
- return x.Description
+func (m *UpdateMachineRequest) GetDescription() string {
+ if m != nil {
+ return m.Description
}
return ""
}
type AddMachineKeyRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Type MachineKeyType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MachineKeyType" json:"type,omitempty"`
- ExpirationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Type MachineKeyType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MachineKeyType" json:"type,omitempty"`
+ ExpirationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AddMachineKeyRequest) Reset() {
- *x = AddMachineKeyRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[21]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AddMachineKeyRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AddMachineKeyRequest) ProtoMessage() {}
-
-func (x *AddMachineKeyRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[21]
- 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 AddMachineKeyRequest.ProtoReflect.Descriptor instead.
+func (m *AddMachineKeyRequest) Reset() { *m = AddMachineKeyRequest{} }
+func (m *AddMachineKeyRequest) String() string { return proto.CompactTextString(m) }
+func (*AddMachineKeyRequest) ProtoMessage() {}
func (*AddMachineKeyRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{21}
+ return fileDescriptor_edc174f991dc0a25, []int{21}
}
-func (x *AddMachineKeyRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *AddMachineKeyRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AddMachineKeyRequest.Unmarshal(m, b)
+}
+func (m *AddMachineKeyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AddMachineKeyRequest.Marshal(b, m, deterministic)
+}
+func (m *AddMachineKeyRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AddMachineKeyRequest.Merge(m, src)
+}
+func (m *AddMachineKeyRequest) XXX_Size() int {
+ return xxx_messageInfo_AddMachineKeyRequest.Size(m)
+}
+func (m *AddMachineKeyRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_AddMachineKeyRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AddMachineKeyRequest proto.InternalMessageInfo
+
+func (m *AddMachineKeyRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *AddMachineKeyRequest) GetType() MachineKeyType {
- if x != nil {
- return x.Type
+func (m *AddMachineKeyRequest) GetType() MachineKeyType {
+ if m != nil {
+ return m.Type
}
return MachineKeyType_MACHINEKEY_UNSPECIFIED
}
-func (x *AddMachineKeyRequest) GetExpirationDate() *timestamp.Timestamp {
- if x != nil {
- return x.ExpirationDate
+func (m *AddMachineKeyRequest) GetExpirationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ExpirationDate
}
return nil
}
type AddMachineKeyResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
- Type MachineKeyType `protobuf:"varint,4,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MachineKeyType" json:"type,omitempty"`
- ExpirationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
- KeyDetails []byte `protobuf:"bytes,6,opt,name=key_details,json=keyDetails,proto3" json:"key_details,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Type MachineKeyType `protobuf:"varint,4,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MachineKeyType" json:"type,omitempty"`
+ ExpirationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
+ KeyDetails []byte `protobuf:"bytes,6,opt,name=key_details,json=keyDetails,proto3" json:"key_details,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AddMachineKeyResponse) Reset() {
- *x = AddMachineKeyResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[22]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AddMachineKeyResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AddMachineKeyResponse) ProtoMessage() {}
-
-func (x *AddMachineKeyResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[22]
- 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 AddMachineKeyResponse.ProtoReflect.Descriptor instead.
+func (m *AddMachineKeyResponse) Reset() { *m = AddMachineKeyResponse{} }
+func (m *AddMachineKeyResponse) String() string { return proto.CompactTextString(m) }
+func (*AddMachineKeyResponse) ProtoMessage() {}
func (*AddMachineKeyResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{22}
+ return fileDescriptor_edc174f991dc0a25, []int{22}
}
-func (x *AddMachineKeyResponse) GetId() string {
- if x != nil {
- return x.Id
+func (m *AddMachineKeyResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AddMachineKeyResponse.Unmarshal(m, b)
+}
+func (m *AddMachineKeyResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AddMachineKeyResponse.Marshal(b, m, deterministic)
+}
+func (m *AddMachineKeyResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AddMachineKeyResponse.Merge(m, src)
+}
+func (m *AddMachineKeyResponse) XXX_Size() int {
+ return xxx_messageInfo_AddMachineKeyResponse.Size(m)
+}
+func (m *AddMachineKeyResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_AddMachineKeyResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AddMachineKeyResponse proto.InternalMessageInfo
+
+func (m *AddMachineKeyResponse) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *AddMachineKeyResponse) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *AddMachineKeyResponse) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *AddMachineKeyResponse) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *AddMachineKeyResponse) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *AddMachineKeyResponse) GetType() MachineKeyType {
- if x != nil {
- return x.Type
+func (m *AddMachineKeyResponse) GetType() MachineKeyType {
+ if m != nil {
+ return m.Type
}
return MachineKeyType_MACHINEKEY_UNSPECIFIED
}
-func (x *AddMachineKeyResponse) GetExpirationDate() *timestamp.Timestamp {
- if x != nil {
- return x.ExpirationDate
+func (m *AddMachineKeyResponse) GetExpirationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ExpirationDate
}
return nil
}
-func (x *AddMachineKeyResponse) GetKeyDetails() []byte {
- if x != nil {
- return x.KeyDetails
+func (m *AddMachineKeyResponse) GetKeyDetails() []byte {
+ if m != nil {
+ return m.KeyDetails
}
return nil
}
type MachineKeyIDRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- KeyId string `protobuf:"bytes,2,opt,name=key_id,json=keyId,proto3" json:"key_id,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ KeyId string `protobuf:"bytes,2,opt,name=key_id,json=keyId,proto3" json:"key_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MachineKeyIDRequest) Reset() {
- *x = MachineKeyIDRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[23]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MachineKeyIDRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MachineKeyIDRequest) ProtoMessage() {}
-
-func (x *MachineKeyIDRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[23]
- 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 MachineKeyIDRequest.ProtoReflect.Descriptor instead.
+func (m *MachineKeyIDRequest) Reset() { *m = MachineKeyIDRequest{} }
+func (m *MachineKeyIDRequest) String() string { return proto.CompactTextString(m) }
+func (*MachineKeyIDRequest) ProtoMessage() {}
func (*MachineKeyIDRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{23}
+ return fileDescriptor_edc174f991dc0a25, []int{23}
}
-func (x *MachineKeyIDRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *MachineKeyIDRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MachineKeyIDRequest.Unmarshal(m, b)
+}
+func (m *MachineKeyIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MachineKeyIDRequest.Marshal(b, m, deterministic)
+}
+func (m *MachineKeyIDRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MachineKeyIDRequest.Merge(m, src)
+}
+func (m *MachineKeyIDRequest) XXX_Size() int {
+ return xxx_messageInfo_MachineKeyIDRequest.Size(m)
+}
+func (m *MachineKeyIDRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_MachineKeyIDRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MachineKeyIDRequest proto.InternalMessageInfo
+
+func (m *MachineKeyIDRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *MachineKeyIDRequest) GetKeyId() string {
- if x != nil {
- return x.KeyId
+func (m *MachineKeyIDRequest) GetKeyId() string {
+ if m != nil {
+ return m.KeyId
}
return ""
}
type MachineKeyView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Type MachineKeyType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MachineKeyType" json:"type,omitempty"`
- Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ExpirationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Type MachineKeyType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MachineKeyType" json:"type,omitempty"`
+ Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ExpirationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=expiration_date,json=expirationDate,proto3" json:"expiration_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MachineKeyView) Reset() {
- *x = MachineKeyView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[24]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MachineKeyView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MachineKeyView) ProtoMessage() {}
-
-func (x *MachineKeyView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[24]
- 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 MachineKeyView.ProtoReflect.Descriptor instead.
+func (m *MachineKeyView) Reset() { *m = MachineKeyView{} }
+func (m *MachineKeyView) String() string { return proto.CompactTextString(m) }
+func (*MachineKeyView) ProtoMessage() {}
func (*MachineKeyView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{24}
+ return fileDescriptor_edc174f991dc0a25, []int{24}
}
-func (x *MachineKeyView) GetId() string {
- if x != nil {
- return x.Id
+func (m *MachineKeyView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MachineKeyView.Unmarshal(m, b)
+}
+func (m *MachineKeyView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MachineKeyView.Marshal(b, m, deterministic)
+}
+func (m *MachineKeyView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MachineKeyView.Merge(m, src)
+}
+func (m *MachineKeyView) XXX_Size() int {
+ return xxx_messageInfo_MachineKeyView.Size(m)
+}
+func (m *MachineKeyView) XXX_DiscardUnknown() {
+ xxx_messageInfo_MachineKeyView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MachineKeyView proto.InternalMessageInfo
+
+func (m *MachineKeyView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *MachineKeyView) GetType() MachineKeyType {
- if x != nil {
- return x.Type
+func (m *MachineKeyView) GetType() MachineKeyType {
+ if m != nil {
+ return m.Type
}
return MachineKeyType_MACHINEKEY_UNSPECIFIED
}
-func (x *MachineKeyView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *MachineKeyView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *MachineKeyView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *MachineKeyView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *MachineKeyView) GetExpirationDate() *timestamp.Timestamp {
- if x != nil {
- return x.ExpirationDate
+func (m *MachineKeyView) GetExpirationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ExpirationDate
}
return nil
}
type MachineKeySearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Asc bool `protobuf:"varint,3,opt,name=asc,proto3" json:"asc,omitempty"`
- UserId string `protobuf:"bytes,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Asc bool `protobuf:"varint,3,opt,name=asc,proto3" json:"asc,omitempty"`
+ UserId string `protobuf:"bytes,4,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MachineKeySearchRequest) Reset() {
- *x = MachineKeySearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[25]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MachineKeySearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MachineKeySearchRequest) ProtoMessage() {}
-
-func (x *MachineKeySearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[25]
- 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 MachineKeySearchRequest.ProtoReflect.Descriptor instead.
+func (m *MachineKeySearchRequest) Reset() { *m = MachineKeySearchRequest{} }
+func (m *MachineKeySearchRequest) String() string { return proto.CompactTextString(m) }
+func (*MachineKeySearchRequest) ProtoMessage() {}
func (*MachineKeySearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{25}
+ return fileDescriptor_edc174f991dc0a25, []int{25}
}
-func (x *MachineKeySearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *MachineKeySearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MachineKeySearchRequest.Unmarshal(m, b)
+}
+func (m *MachineKeySearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MachineKeySearchRequest.Marshal(b, m, deterministic)
+}
+func (m *MachineKeySearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MachineKeySearchRequest.Merge(m, src)
+}
+func (m *MachineKeySearchRequest) XXX_Size() int {
+ return xxx_messageInfo_MachineKeySearchRequest.Size(m)
+}
+func (m *MachineKeySearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_MachineKeySearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MachineKeySearchRequest proto.InternalMessageInfo
+
+func (m *MachineKeySearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *MachineKeySearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *MachineKeySearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *MachineKeySearchRequest) GetAsc() bool {
- if x != nil {
- return x.Asc
+func (m *MachineKeySearchRequest) GetAsc() bool {
+ if m != nil {
+ return m.Asc
}
return false
}
-func (x *MachineKeySearchRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *MachineKeySearchRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
type MachineKeySearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*MachineKeyView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*MachineKeyView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MachineKeySearchResponse) Reset() {
- *x = MachineKeySearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[26]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MachineKeySearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MachineKeySearchResponse) ProtoMessage() {}
-
-func (x *MachineKeySearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[26]
- 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 MachineKeySearchResponse.ProtoReflect.Descriptor instead.
+func (m *MachineKeySearchResponse) Reset() { *m = MachineKeySearchResponse{} }
+func (m *MachineKeySearchResponse) String() string { return proto.CompactTextString(m) }
+func (*MachineKeySearchResponse) ProtoMessage() {}
func (*MachineKeySearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{26}
+ return fileDescriptor_edc174f991dc0a25, []int{26}
}
-func (x *MachineKeySearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *MachineKeySearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MachineKeySearchResponse.Unmarshal(m, b)
+}
+func (m *MachineKeySearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MachineKeySearchResponse.Marshal(b, m, deterministic)
+}
+func (m *MachineKeySearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MachineKeySearchResponse.Merge(m, src)
+}
+func (m *MachineKeySearchResponse) XXX_Size() int {
+ return xxx_messageInfo_MachineKeySearchResponse.Size(m)
+}
+func (m *MachineKeySearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_MachineKeySearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MachineKeySearchResponse proto.InternalMessageInfo
+
+func (m *MachineKeySearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *MachineKeySearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *MachineKeySearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *MachineKeySearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *MachineKeySearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *MachineKeySearchResponse) GetResult() []*MachineKeyView {
- if x != nil {
- return x.Result
+func (m *MachineKeySearchResponse) GetResult() []*MachineKeyView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *MachineKeySearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *MachineKeySearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *MachineKeySearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *MachineKeySearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type UserSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- SortingColumn UserSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.management.api.v1.UserSearchKey" json:"sorting_column,omitempty"`
- Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
- Queries []*UserSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ SortingColumn UserSearchKey `protobuf:"varint,3,opt,name=sorting_column,json=sortingColumn,proto3,enum=caos.zitadel.management.api.v1.UserSearchKey" json:"sorting_column,omitempty"`
+ Asc bool `protobuf:"varint,4,opt,name=asc,proto3" json:"asc,omitempty"`
+ Queries []*UserSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserSearchRequest) Reset() {
- *x = UserSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[27]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserSearchRequest) ProtoMessage() {}
-
-func (x *UserSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[27]
- 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 UserSearchRequest.ProtoReflect.Descriptor instead.
+func (m *UserSearchRequest) Reset() { *m = UserSearchRequest{} }
+func (m *UserSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*UserSearchRequest) ProtoMessage() {}
func (*UserSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{27}
+ return fileDescriptor_edc174f991dc0a25, []int{27}
}
-func (x *UserSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserSearchRequest.Unmarshal(m, b)
+}
+func (m *UserSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *UserSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserSearchRequest.Merge(m, src)
+}
+func (m *UserSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_UserSearchRequest.Size(m)
+}
+func (m *UserSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserSearchRequest proto.InternalMessageInfo
+
+func (m *UserSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserSearchRequest) GetSortingColumn() UserSearchKey {
- if x != nil {
- return x.SortingColumn
+func (m *UserSearchRequest) GetSortingColumn() UserSearchKey {
+ if m != nil {
+ return m.SortingColumn
}
return UserSearchKey_USERSEARCHKEY_UNSPECIFIED
}
-func (x *UserSearchRequest) GetAsc() bool {
- if x != nil {
- return x.Asc
+func (m *UserSearchRequest) GetAsc() bool {
+ if m != nil {
+ return m.Asc
}
return false
}
-func (x *UserSearchRequest) GetQueries() []*UserSearchQuery {
- if x != nil {
- return x.Queries
+func (m *UserSearchRequest) GetQueries() []*UserSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type UserSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key UserSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key UserSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserSearchQuery) Reset() {
- *x = UserSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[28]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserSearchQuery) ProtoMessage() {}
-
-func (x *UserSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[28]
- 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 UserSearchQuery.ProtoReflect.Descriptor instead.
+func (m *UserSearchQuery) Reset() { *m = UserSearchQuery{} }
+func (m *UserSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*UserSearchQuery) ProtoMessage() {}
func (*UserSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{28}
+ return fileDescriptor_edc174f991dc0a25, []int{28}
}
-func (x *UserSearchQuery) GetKey() UserSearchKey {
- if x != nil {
- return x.Key
+func (m *UserSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserSearchQuery.Unmarshal(m, b)
+}
+func (m *UserSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *UserSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserSearchQuery.Merge(m, src)
+}
+func (m *UserSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_UserSearchQuery.Size(m)
+}
+func (m *UserSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserSearchQuery proto.InternalMessageInfo
+
+func (m *UserSearchQuery) GetKey() UserSearchKey {
+ if m != nil {
+ return m.Key
}
return UserSearchKey_USERSEARCHKEY_UNSPECIFIED
}
-func (x *UserSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *UserSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *UserSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *UserSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type UserSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*UserView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*UserView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserSearchResponse) Reset() {
- *x = UserSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[29]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserSearchResponse) ProtoMessage() {}
-
-func (x *UserSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[29]
- 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 UserSearchResponse.ProtoReflect.Descriptor instead.
+func (m *UserSearchResponse) Reset() { *m = UserSearchResponse{} }
+func (m *UserSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*UserSearchResponse) ProtoMessage() {}
func (*UserSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{29}
+ return fileDescriptor_edc174f991dc0a25, []int{29}
}
-func (x *UserSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserSearchResponse.Unmarshal(m, b)
+}
+func (m *UserSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *UserSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserSearchResponse.Merge(m, src)
+}
+func (m *UserSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_UserSearchResponse.Size(m)
+}
+func (m *UserSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserSearchResponse proto.InternalMessageInfo
+
+func (m *UserSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *UserSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *UserSearchResponse) GetResult() []*UserView {
- if x != nil {
- return x.Result
+func (m *UserSearchResponse) GetResult() []*UserView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *UserSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *UserSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *UserSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *UserSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type UserProfile struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserProfile) Reset() {
- *x = UserProfile{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[30]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserProfile) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserProfile) ProtoMessage() {}
-
-func (x *UserProfile) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[30]
- 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 UserProfile.ProtoReflect.Descriptor instead.
+func (m *UserProfile) Reset() { *m = UserProfile{} }
+func (m *UserProfile) String() string { return proto.CompactTextString(m) }
+func (*UserProfile) ProtoMessage() {}
func (*UserProfile) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{30}
+ return fileDescriptor_edc174f991dc0a25, []int{30}
}
-func (x *UserProfile) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserProfile) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserProfile.Unmarshal(m, b)
+}
+func (m *UserProfile) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserProfile.Marshal(b, m, deterministic)
+}
+func (m *UserProfile) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserProfile.Merge(m, src)
+}
+func (m *UserProfile) XXX_Size() int {
+ return xxx_messageInfo_UserProfile.Size(m)
+}
+func (m *UserProfile) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserProfile.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserProfile proto.InternalMessageInfo
+
+func (m *UserProfile) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserProfile) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UserProfile) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UserProfile) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UserProfile) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UserProfile) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UserProfile) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UserProfile) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UserProfile) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *UserProfile) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *UserProfile) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UserProfile) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UserProfile) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *UserProfile) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserProfile) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserProfile) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserProfile) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserProfile) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserProfile) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserProfileView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
- Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- LoginNames []string `protobuf:"bytes,11,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
- PreferredLoginName string `protobuf:"bytes,12,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,6,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,7,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,10,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ LoginNames []string `protobuf:"bytes,11,rep,name=login_names,json=loginNames,proto3" json:"login_names,omitempty"`
+ PreferredLoginName string `protobuf:"bytes,12,opt,name=preferred_login_name,json=preferredLoginName,proto3" json:"preferred_login_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserProfileView) Reset() {
- *x = UserProfileView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[31]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserProfileView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserProfileView) ProtoMessage() {}
-
-func (x *UserProfileView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[31]
- 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 UserProfileView.ProtoReflect.Descriptor instead.
+func (m *UserProfileView) Reset() { *m = UserProfileView{} }
+func (m *UserProfileView) String() string { return proto.CompactTextString(m) }
+func (*UserProfileView) ProtoMessage() {}
func (*UserProfileView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{31}
+ return fileDescriptor_edc174f991dc0a25, []int{31}
}
-func (x *UserProfileView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserProfileView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserProfileView.Unmarshal(m, b)
+}
+func (m *UserProfileView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserProfileView.Marshal(b, m, deterministic)
+}
+func (m *UserProfileView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserProfileView.Merge(m, src)
+}
+func (m *UserProfileView) XXX_Size() int {
+ return xxx_messageInfo_UserProfileView.Size(m)
+}
+func (m *UserProfileView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserProfileView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserProfileView proto.InternalMessageInfo
+
+func (m *UserProfileView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserProfileView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UserProfileView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UserProfileView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UserProfileView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UserProfileView) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UserProfileView) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UserProfileView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UserProfileView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *UserProfileView) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *UserProfileView) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UserProfileView) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UserProfileView) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
-func (x *UserProfileView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserProfileView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserProfileView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserProfileView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserProfileView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserProfileView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserProfileView) GetLoginNames() []string {
- if x != nil {
- return x.LoginNames
+func (m *UserProfileView) GetLoginNames() []string {
+ if m != nil {
+ return m.LoginNames
}
return nil
}
-func (x *UserProfileView) GetPreferredLoginName() string {
- if x != nil {
- return x.PreferredLoginName
+func (m *UserProfileView) GetPreferredLoginName() string {
+ if m != nil {
+ return m.PreferredLoginName
}
return ""
}
type UpdateUserProfileRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
- PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
- Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ FirstName string `protobuf:"bytes,2,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,3,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ NickName string `protobuf:"bytes,4,opt,name=nick_name,json=nickName,proto3" json:"nick_name,omitempty"`
+ PreferredLanguage string `protobuf:"bytes,5,opt,name=preferred_language,json=preferredLanguage,proto3" json:"preferred_language,omitempty"`
+ Gender Gender `protobuf:"varint,6,opt,name=gender,proto3,enum=caos.zitadel.management.api.v1.Gender" json:"gender,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserProfileRequest) Reset() {
- *x = UpdateUserProfileRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[32]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserProfileRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserProfileRequest) ProtoMessage() {}
-
-func (x *UpdateUserProfileRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[32]
- 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 UpdateUserProfileRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserProfileRequest) Reset() { *m = UpdateUserProfileRequest{} }
+func (m *UpdateUserProfileRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserProfileRequest) ProtoMessage() {}
func (*UpdateUserProfileRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{32}
+ return fileDescriptor_edc174f991dc0a25, []int{32}
}
-func (x *UpdateUserProfileRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateUserProfileRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserProfileRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserProfileRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserProfileRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserProfileRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserProfileRequest.Merge(m, src)
+}
+func (m *UpdateUserProfileRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserProfileRequest.Size(m)
+}
+func (m *UpdateUserProfileRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserProfileRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserProfileRequest proto.InternalMessageInfo
+
+func (m *UpdateUserProfileRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateUserProfileRequest) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UpdateUserProfileRequest) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UpdateUserProfileRequest) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UpdateUserProfileRequest) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UpdateUserProfileRequest) GetNickName() string {
- if x != nil {
- return x.NickName
+func (m *UpdateUserProfileRequest) GetNickName() string {
+ if m != nil {
+ return m.NickName
}
return ""
}
-func (x *UpdateUserProfileRequest) GetPreferredLanguage() string {
- if x != nil {
- return x.PreferredLanguage
+func (m *UpdateUserProfileRequest) GetPreferredLanguage() string {
+ if m != nil {
+ return m.PreferredLanguage
}
return ""
}
-func (x *UpdateUserProfileRequest) GetGender() Gender {
- if x != nil {
- return x.Gender
+func (m *UpdateUserProfileRequest) GetGender() Gender {
+ if m != nil {
+ return m.Gender
}
return Gender_GENDER_UNSPECIFIED
}
type UpdateUserUserNameRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserUserNameRequest) Reset() {
- *x = UpdateUserUserNameRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[33]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserUserNameRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserUserNameRequest) ProtoMessage() {}
-
-func (x *UpdateUserUserNameRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[33]
- 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 UpdateUserUserNameRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserUserNameRequest) Reset() { *m = UpdateUserUserNameRequest{} }
+func (m *UpdateUserUserNameRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserUserNameRequest) ProtoMessage() {}
func (*UpdateUserUserNameRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{33}
+ return fileDescriptor_edc174f991dc0a25, []int{33}
}
-func (x *UpdateUserUserNameRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateUserUserNameRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserUserNameRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserUserNameRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserUserNameRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserUserNameRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserUserNameRequest.Merge(m, src)
+}
+func (m *UpdateUserUserNameRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserUserNameRequest.Size(m)
+}
+func (m *UpdateUserUserNameRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserUserNameRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserUserNameRequest proto.InternalMessageInfo
+
+func (m *UpdateUserUserNameRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateUserUserNameRequest) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UpdateUserUserNameRequest) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
type UserEmail struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserEmail) Reset() {
- *x = UserEmail{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[34]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserEmail) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserEmail) ProtoMessage() {}
-
-func (x *UserEmail) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[34]
- 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 UserEmail.ProtoReflect.Descriptor instead.
+func (m *UserEmail) Reset() { *m = UserEmail{} }
+func (m *UserEmail) String() string { return proto.CompactTextString(m) }
+func (*UserEmail) ProtoMessage() {}
func (*UserEmail) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{34}
+ return fileDescriptor_edc174f991dc0a25, []int{34}
}
-func (x *UserEmail) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserEmail) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserEmail.Unmarshal(m, b)
+}
+func (m *UserEmail) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserEmail.Marshal(b, m, deterministic)
+}
+func (m *UserEmail) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserEmail.Merge(m, src)
+}
+func (m *UserEmail) XXX_Size() int {
+ return xxx_messageInfo_UserEmail.Size(m)
+}
+func (m *UserEmail) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserEmail.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserEmail proto.InternalMessageInfo
+
+func (m *UserEmail) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserEmail) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserEmail) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UserEmail) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *UserEmail) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *UserEmail) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserEmail) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserEmail) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserEmail) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserEmail) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserEmail) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserEmailView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserEmailView) Reset() {
- *x = UserEmailView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[35]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserEmailView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserEmailView) ProtoMessage() {}
-
-func (x *UserEmailView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[35]
- 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 UserEmailView.ProtoReflect.Descriptor instead.
+func (m *UserEmailView) Reset() { *m = UserEmailView{} }
+func (m *UserEmailView) String() string { return proto.CompactTextString(m) }
+func (*UserEmailView) ProtoMessage() {}
func (*UserEmailView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{35}
+ return fileDescriptor_edc174f991dc0a25, []int{35}
}
-func (x *UserEmailView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserEmailView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserEmailView.Unmarshal(m, b)
+}
+func (m *UserEmailView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserEmailView.Marshal(b, m, deterministic)
+}
+func (m *UserEmailView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserEmailView.Merge(m, src)
+}
+func (m *UserEmailView) XXX_Size() int {
+ return xxx_messageInfo_UserEmailView.Size(m)
+}
+func (m *UserEmailView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserEmailView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserEmailView proto.InternalMessageInfo
+
+func (m *UserEmailView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserEmailView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserEmailView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UserEmailView) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *UserEmailView) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
-func (x *UserEmailView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserEmailView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserEmailView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserEmailView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserEmailView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserEmailView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UpdateUserEmailRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
- IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ IsEmailVerified bool `protobuf:"varint,3,opt,name=is_email_verified,json=isEmailVerified,proto3" json:"is_email_verified,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserEmailRequest) Reset() {
- *x = UpdateUserEmailRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[36]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserEmailRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserEmailRequest) ProtoMessage() {}
-
-func (x *UpdateUserEmailRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[36]
- 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 UpdateUserEmailRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserEmailRequest) Reset() { *m = UpdateUserEmailRequest{} }
+func (m *UpdateUserEmailRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserEmailRequest) ProtoMessage() {}
func (*UpdateUserEmailRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{36}
+ return fileDescriptor_edc174f991dc0a25, []int{36}
}
-func (x *UpdateUserEmailRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateUserEmailRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserEmailRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserEmailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserEmailRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserEmailRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserEmailRequest.Merge(m, src)
+}
+func (m *UpdateUserEmailRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserEmailRequest.Size(m)
+}
+func (m *UpdateUserEmailRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserEmailRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserEmailRequest proto.InternalMessageInfo
+
+func (m *UpdateUserEmailRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateUserEmailRequest) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UpdateUserEmailRequest) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UpdateUserEmailRequest) GetIsEmailVerified() bool {
- if x != nil {
- return x.IsEmailVerified
+func (m *UpdateUserEmailRequest) GetIsEmailVerified() bool {
+ if m != nil {
+ return m.IsEmailVerified
}
return false
}
type UserPhone struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserPhone) Reset() {
- *x = UserPhone{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[37]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserPhone) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserPhone) ProtoMessage() {}
-
-func (x *UserPhone) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[37]
- 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 UserPhone.ProtoReflect.Descriptor instead.
+func (m *UserPhone) Reset() { *m = UserPhone{} }
+func (m *UserPhone) String() string { return proto.CompactTextString(m) }
+func (*UserPhone) ProtoMessage() {}
func (*UserPhone) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{37}
+ return fileDescriptor_edc174f991dc0a25, []int{37}
}
-func (x *UserPhone) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserPhone) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserPhone.Unmarshal(m, b)
+}
+func (m *UserPhone) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserPhone.Marshal(b, m, deterministic)
+}
+func (m *UserPhone) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserPhone.Merge(m, src)
+}
+func (m *UserPhone) XXX_Size() int {
+ return xxx_messageInfo_UserPhone.Size(m)
+}
+func (m *UserPhone) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserPhone.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserPhone proto.InternalMessageInfo
+
+func (m *UserPhone) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserPhone) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UserPhone) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *UserPhone) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *UserPhone) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *UserPhone) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserPhone) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserPhone) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserPhone) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserPhone) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserPhone) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserPhoneView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserPhoneView) Reset() {
- *x = UserPhoneView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[38]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserPhoneView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserPhoneView) ProtoMessage() {}
-
-func (x *UserPhoneView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[38]
- 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 UserPhoneView.ProtoReflect.Descriptor instead.
+func (m *UserPhoneView) Reset() { *m = UserPhoneView{} }
+func (m *UserPhoneView) String() string { return proto.CompactTextString(m) }
+func (*UserPhoneView) ProtoMessage() {}
func (*UserPhoneView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{38}
+ return fileDescriptor_edc174f991dc0a25, []int{38}
}
-func (x *UserPhoneView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserPhoneView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserPhoneView.Unmarshal(m, b)
+}
+func (m *UserPhoneView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserPhoneView.Marshal(b, m, deterministic)
+}
+func (m *UserPhoneView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserPhoneView.Merge(m, src)
+}
+func (m *UserPhoneView) XXX_Size() int {
+ return xxx_messageInfo_UserPhoneView.Size(m)
+}
+func (m *UserPhoneView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserPhoneView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserPhoneView proto.InternalMessageInfo
+
+func (m *UserPhoneView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserPhoneView) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UserPhoneView) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *UserPhoneView) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *UserPhoneView) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
-func (x *UserPhoneView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserPhoneView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserPhoneView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserPhoneView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserPhoneView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserPhoneView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UpdateUserPhoneRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
- IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Phone string `protobuf:"bytes,2,opt,name=phone,proto3" json:"phone,omitempty"`
+ IsPhoneVerified bool `protobuf:"varint,3,opt,name=is_phone_verified,json=isPhoneVerified,proto3" json:"is_phone_verified,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserPhoneRequest) Reset() {
- *x = UpdateUserPhoneRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[39]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserPhoneRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserPhoneRequest) ProtoMessage() {}
-
-func (x *UpdateUserPhoneRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[39]
- 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 UpdateUserPhoneRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserPhoneRequest) Reset() { *m = UpdateUserPhoneRequest{} }
+func (m *UpdateUserPhoneRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserPhoneRequest) ProtoMessage() {}
func (*UpdateUserPhoneRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{39}
+ return fileDescriptor_edc174f991dc0a25, []int{39}
}
-func (x *UpdateUserPhoneRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateUserPhoneRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserPhoneRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserPhoneRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserPhoneRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserPhoneRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserPhoneRequest.Merge(m, src)
+}
+func (m *UpdateUserPhoneRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserPhoneRequest.Size(m)
+}
+func (m *UpdateUserPhoneRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserPhoneRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserPhoneRequest proto.InternalMessageInfo
+
+func (m *UpdateUserPhoneRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateUserPhoneRequest) GetPhone() string {
- if x != nil {
- return x.Phone
+func (m *UpdateUserPhoneRequest) GetPhone() string {
+ if m != nil {
+ return m.Phone
}
return ""
}
-func (x *UpdateUserPhoneRequest) GetIsPhoneVerified() bool {
- if x != nil {
- return x.IsPhoneVerified
+func (m *UpdateUserPhoneRequest) GetIsPhoneVerified() bool {
+ if m != nil {
+ return m.IsPhoneVerified
}
return false
}
type UserAddress struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserAddress) Reset() {
- *x = UserAddress{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[40]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserAddress) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserAddress) ProtoMessage() {}
-
-func (x *UserAddress) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[40]
- 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 UserAddress.ProtoReflect.Descriptor instead.
+func (m *UserAddress) Reset() { *m = UserAddress{} }
+func (m *UserAddress) String() string { return proto.CompactTextString(m) }
+func (*UserAddress) ProtoMessage() {}
func (*UserAddress) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{40}
+ return fileDescriptor_edc174f991dc0a25, []int{40}
}
-func (x *UserAddress) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserAddress) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserAddress.Unmarshal(m, b)
+}
+func (m *UserAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserAddress.Marshal(b, m, deterministic)
+}
+func (m *UserAddress) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserAddress.Merge(m, src)
+}
+func (m *UserAddress) XXX_Size() int {
+ return xxx_messageInfo_UserAddress.Size(m)
+}
+func (m *UserAddress) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserAddress.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserAddress proto.InternalMessageInfo
+
+func (m *UserAddress) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserAddress) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UserAddress) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UserAddress) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UserAddress) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UserAddress) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UserAddress) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UserAddress) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UserAddress) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UserAddress) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UserAddress) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *UserAddress) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserAddress) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserAddress) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserAddress) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserAddress) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserAddress) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UserAddressView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserAddressView) Reset() {
- *x = UserAddressView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[41]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserAddressView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserAddressView) ProtoMessage() {}
-
-func (x *UserAddressView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[41]
- 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 UserAddressView.ProtoReflect.Descriptor instead.
+func (m *UserAddressView) Reset() { *m = UserAddressView{} }
+func (m *UserAddressView) String() string { return proto.CompactTextString(m) }
+func (*UserAddressView) ProtoMessage() {}
func (*UserAddressView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{41}
+ return fileDescriptor_edc174f991dc0a25, []int{41}
}
-func (x *UserAddressView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserAddressView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserAddressView.Unmarshal(m, b)
+}
+func (m *UserAddressView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserAddressView.Marshal(b, m, deterministic)
+}
+func (m *UserAddressView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserAddressView.Merge(m, src)
+}
+func (m *UserAddressView) XXX_Size() int {
+ return xxx_messageInfo_UserAddressView.Size(m)
+}
+func (m *UserAddressView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserAddressView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserAddressView proto.InternalMessageInfo
+
+func (m *UserAddressView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserAddressView) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UserAddressView) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UserAddressView) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UserAddressView) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UserAddressView) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UserAddressView) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UserAddressView) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UserAddressView) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UserAddressView) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UserAddressView) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
-func (x *UserAddressView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserAddressView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserAddressView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserAddressView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserAddressView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserAddressView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type UpdateUserAddressRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
- Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
- PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
- Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
- StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Country string `protobuf:"bytes,2,opt,name=country,proto3" json:"country,omitempty"`
+ Locality string `protobuf:"bytes,3,opt,name=locality,proto3" json:"locality,omitempty"`
+ PostalCode string `protobuf:"bytes,4,opt,name=postal_code,json=postalCode,proto3" json:"postal_code,omitempty"`
+ Region string `protobuf:"bytes,5,opt,name=region,proto3" json:"region,omitempty"`
+ StreetAddress string `protobuf:"bytes,6,opt,name=street_address,json=streetAddress,proto3" json:"street_address,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UpdateUserAddressRequest) Reset() {
- *x = UpdateUserAddressRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[42]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UpdateUserAddressRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateUserAddressRequest) ProtoMessage() {}
-
-func (x *UpdateUserAddressRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[42]
- 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 UpdateUserAddressRequest.ProtoReflect.Descriptor instead.
+func (m *UpdateUserAddressRequest) Reset() { *m = UpdateUserAddressRequest{} }
+func (m *UpdateUserAddressRequest) String() string { return proto.CompactTextString(m) }
+func (*UpdateUserAddressRequest) ProtoMessage() {}
func (*UpdateUserAddressRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{42}
+ return fileDescriptor_edc174f991dc0a25, []int{42}
}
-func (x *UpdateUserAddressRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *UpdateUserAddressRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UpdateUserAddressRequest.Unmarshal(m, b)
+}
+func (m *UpdateUserAddressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UpdateUserAddressRequest.Marshal(b, m, deterministic)
+}
+func (m *UpdateUserAddressRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UpdateUserAddressRequest.Merge(m, src)
+}
+func (m *UpdateUserAddressRequest) XXX_Size() int {
+ return xxx_messageInfo_UpdateUserAddressRequest.Size(m)
+}
+func (m *UpdateUserAddressRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UpdateUserAddressRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UpdateUserAddressRequest proto.InternalMessageInfo
+
+func (m *UpdateUserAddressRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UpdateUserAddressRequest) GetCountry() string {
- if x != nil {
- return x.Country
+func (m *UpdateUserAddressRequest) GetCountry() string {
+ if m != nil {
+ return m.Country
}
return ""
}
-func (x *UpdateUserAddressRequest) GetLocality() string {
- if x != nil {
- return x.Locality
+func (m *UpdateUserAddressRequest) GetLocality() string {
+ if m != nil {
+ return m.Locality
}
return ""
}
-func (x *UpdateUserAddressRequest) GetPostalCode() string {
- if x != nil {
- return x.PostalCode
+func (m *UpdateUserAddressRequest) GetPostalCode() string {
+ if m != nil {
+ return m.PostalCode
}
return ""
}
-func (x *UpdateUserAddressRequest) GetRegion() string {
- if x != nil {
- return x.Region
+func (m *UpdateUserAddressRequest) GetRegion() string {
+ if m != nil {
+ return m.Region
}
return ""
}
-func (x *UpdateUserAddressRequest) GetStreetAddress() string {
- if x != nil {
- return x.StreetAddress
+func (m *UpdateUserAddressRequest) GetStreetAddress() string {
+ if m != nil {
+ return m.StreetAddress
}
return ""
}
type UserMultiFactors struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Mfas []*UserMultiFactor `protobuf:"bytes,1,rep,name=mfas,proto3" json:"mfas,omitempty"`
+ Mfas []*UserMultiFactor `protobuf:"bytes,1,rep,name=mfas,proto3" json:"mfas,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserMultiFactors) Reset() {
- *x = UserMultiFactors{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[43]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserMultiFactors) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserMultiFactors) ProtoMessage() {}
-
-func (x *UserMultiFactors) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[43]
- 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 UserMultiFactors.ProtoReflect.Descriptor instead.
+func (m *UserMultiFactors) Reset() { *m = UserMultiFactors{} }
+func (m *UserMultiFactors) String() string { return proto.CompactTextString(m) }
+func (*UserMultiFactors) ProtoMessage() {}
func (*UserMultiFactors) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{43}
+ return fileDescriptor_edc174f991dc0a25, []int{43}
}
-func (x *UserMultiFactors) GetMfas() []*UserMultiFactor {
- if x != nil {
- return x.Mfas
+func (m *UserMultiFactors) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserMultiFactors.Unmarshal(m, b)
+}
+func (m *UserMultiFactors) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserMultiFactors.Marshal(b, m, deterministic)
+}
+func (m *UserMultiFactors) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserMultiFactors.Merge(m, src)
+}
+func (m *UserMultiFactors) XXX_Size() int {
+ return xxx_messageInfo_UserMultiFactors.Size(m)
+}
+func (m *UserMultiFactors) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserMultiFactors.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserMultiFactors proto.InternalMessageInfo
+
+func (m *UserMultiFactors) GetMfas() []*UserMultiFactor {
+ if m != nil {
+ return m.Mfas
}
return nil
}
type UserMultiFactor struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Type MfaType `protobuf:"varint,1,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MfaType" json:"type,omitempty"`
- State MFAState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.MFAState" json:"state,omitempty"`
+ Type MfaType `protobuf:"varint,1,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.MfaType" json:"type,omitempty"`
+ State MFAState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.MFAState" json:"state,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserMultiFactor) Reset() {
- *x = UserMultiFactor{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[44]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserMultiFactor) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserMultiFactor) ProtoMessage() {}
-
-func (x *UserMultiFactor) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[44]
- 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 UserMultiFactor.ProtoReflect.Descriptor instead.
+func (m *UserMultiFactor) Reset() { *m = UserMultiFactor{} }
+func (m *UserMultiFactor) String() string { return proto.CompactTextString(m) }
+func (*UserMultiFactor) ProtoMessage() {}
func (*UserMultiFactor) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{44}
+ return fileDescriptor_edc174f991dc0a25, []int{44}
}
-func (x *UserMultiFactor) GetType() MfaType {
- if x != nil {
- return x.Type
+func (m *UserMultiFactor) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserMultiFactor.Unmarshal(m, b)
+}
+func (m *UserMultiFactor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserMultiFactor.Marshal(b, m, deterministic)
+}
+func (m *UserMultiFactor) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserMultiFactor.Merge(m, src)
+}
+func (m *UserMultiFactor) XXX_Size() int {
+ return xxx_messageInfo_UserMultiFactor.Size(m)
+}
+func (m *UserMultiFactor) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserMultiFactor.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserMultiFactor proto.InternalMessageInfo
+
+func (m *UserMultiFactor) GetType() MfaType {
+ if m != nil {
+ return m.Type
}
return MfaType_MFATYPE_UNSPECIFIED
}
-func (x *UserMultiFactor) GetState() MFAState {
- if x != nil {
- return x.State
+func (m *UserMultiFactor) GetState() MFAState {
+ if m != nil {
+ return m.State
}
return MFAState_MFASTATE_UNSPECIFIED
}
type PasswordRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordRequest) Reset() {
- *x = PasswordRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[45]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordRequest) ProtoMessage() {}
-
-func (x *PasswordRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[45]
- 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 PasswordRequest.ProtoReflect.Descriptor instead.
+func (m *PasswordRequest) Reset() { *m = PasswordRequest{} }
+func (m *PasswordRequest) String() string { return proto.CompactTextString(m) }
+func (*PasswordRequest) ProtoMessage() {}
func (*PasswordRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{45}
+ return fileDescriptor_edc174f991dc0a25, []int{45}
}
-func (x *PasswordRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *PasswordRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordRequest.Unmarshal(m, b)
+}
+func (m *PasswordRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordRequest.Marshal(b, m, deterministic)
+}
+func (m *PasswordRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordRequest.Merge(m, src)
+}
+func (m *PasswordRequest) XXX_Size() int {
+ return xxx_messageInfo_PasswordRequest.Size(m)
+}
+func (m *PasswordRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordRequest proto.InternalMessageInfo
+
+func (m *PasswordRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *PasswordRequest) GetPassword() string {
- if x != nil {
- return x.Password
+func (m *PasswordRequest) GetPassword() string {
+ if m != nil {
+ return m.Password
}
return ""
}
type SetPasswordNotificationRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Type NotificationType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.NotificationType" json:"type,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Type NotificationType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.NotificationType" json:"type,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *SetPasswordNotificationRequest) Reset() {
- *x = SetPasswordNotificationRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[46]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *SetPasswordNotificationRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SetPasswordNotificationRequest) ProtoMessage() {}
-
-func (x *SetPasswordNotificationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[46]
- 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 SetPasswordNotificationRequest.ProtoReflect.Descriptor instead.
+func (m *SetPasswordNotificationRequest) Reset() { *m = SetPasswordNotificationRequest{} }
+func (m *SetPasswordNotificationRequest) String() string { return proto.CompactTextString(m) }
+func (*SetPasswordNotificationRequest) ProtoMessage() {}
func (*SetPasswordNotificationRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{46}
+ return fileDescriptor_edc174f991dc0a25, []int{46}
}
-func (x *SetPasswordNotificationRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *SetPasswordNotificationRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SetPasswordNotificationRequest.Unmarshal(m, b)
+}
+func (m *SetPasswordNotificationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SetPasswordNotificationRequest.Marshal(b, m, deterministic)
+}
+func (m *SetPasswordNotificationRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SetPasswordNotificationRequest.Merge(m, src)
+}
+func (m *SetPasswordNotificationRequest) XXX_Size() int {
+ return xxx_messageInfo_SetPasswordNotificationRequest.Size(m)
+}
+func (m *SetPasswordNotificationRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_SetPasswordNotificationRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SetPasswordNotificationRequest proto.InternalMessageInfo
+
+func (m *SetPasswordNotificationRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *SetPasswordNotificationRequest) GetType() NotificationType {
- if x != nil {
- return x.Type
+func (m *SetPasswordNotificationRequest) GetType() NotificationType {
+ if m != nil {
+ return m.Type
}
return NotificationType_NOTIFICATIONTYPE_EMAIL
}
+type InitialMailRequest struct {
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Email string `protobuf:"bytes,2,opt,name=email,proto3" json:"email,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *InitialMailRequest) Reset() { *m = InitialMailRequest{} }
+func (m *InitialMailRequest) String() string { return proto.CompactTextString(m) }
+func (*InitialMailRequest) ProtoMessage() {}
+func (*InitialMailRequest) Descriptor() ([]byte, []int) {
+ return fileDescriptor_edc174f991dc0a25, []int{47}
+}
+
+func (m *InitialMailRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_InitialMailRequest.Unmarshal(m, b)
+}
+func (m *InitialMailRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_InitialMailRequest.Marshal(b, m, deterministic)
+}
+func (m *InitialMailRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_InitialMailRequest.Merge(m, src)
+}
+func (m *InitialMailRequest) XXX_Size() int {
+ return xxx_messageInfo_InitialMailRequest.Size(m)
+}
+func (m *InitialMailRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_InitialMailRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_InitialMailRequest proto.InternalMessageInfo
+
+func (m *InitialMailRequest) GetId() string {
+ if m != nil {
+ return m.Id
+ }
+ return ""
+}
+
+func (m *InitialMailRequest) GetEmail() string {
+ if m != nil {
+ return m.Email
+ }
+ return ""
+}
+
type OrgIamPolicyView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserLoginMustBeDomain bool `protobuf:"varint,1,opt,name=user_login_must_be_domain,json=userLoginMustBeDomain,proto3" json:"user_login_must_be_domain,omitempty"`
- Default bool `protobuf:"varint,2,opt,name=default,proto3" json:"default,omitempty"`
+ UserLoginMustBeDomain bool `protobuf:"varint,1,opt,name=user_login_must_be_domain,json=userLoginMustBeDomain,proto3" json:"user_login_must_be_domain,omitempty"`
+ Default bool `protobuf:"varint,2,opt,name=default,proto3" json:"default,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgIamPolicyView) Reset() {
- *x = OrgIamPolicyView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[47]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgIamPolicyView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgIamPolicyView) ProtoMessage() {}
-
-func (x *OrgIamPolicyView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[47]
- 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 OrgIamPolicyView.ProtoReflect.Descriptor instead.
+func (m *OrgIamPolicyView) Reset() { *m = OrgIamPolicyView{} }
+func (m *OrgIamPolicyView) String() string { return proto.CompactTextString(m) }
+func (*OrgIamPolicyView) ProtoMessage() {}
func (*OrgIamPolicyView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{47}
+ return fileDescriptor_edc174f991dc0a25, []int{48}
}
-func (x *OrgIamPolicyView) GetUserLoginMustBeDomain() bool {
- if x != nil {
- return x.UserLoginMustBeDomain
+func (m *OrgIamPolicyView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgIamPolicyView.Unmarshal(m, b)
+}
+func (m *OrgIamPolicyView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgIamPolicyView.Marshal(b, m, deterministic)
+}
+func (m *OrgIamPolicyView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgIamPolicyView.Merge(m, src)
+}
+func (m *OrgIamPolicyView) XXX_Size() int {
+ return xxx_messageInfo_OrgIamPolicyView.Size(m)
+}
+func (m *OrgIamPolicyView) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgIamPolicyView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgIamPolicyView proto.InternalMessageInfo
+
+func (m *OrgIamPolicyView) GetUserLoginMustBeDomain() bool {
+ if m != nil {
+ return m.UserLoginMustBeDomain
}
return false
}
-func (x *OrgIamPolicyView) GetDefault() bool {
- if x != nil {
- return x.Default
+func (m *OrgIamPolicyView) GetDefault() bool {
+ if m != nil {
+ return m.Default
}
return false
}
type OrgCreateRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgCreateRequest) Reset() {
- *x = OrgCreateRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[48]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgCreateRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgCreateRequest) ProtoMessage() {}
-
-func (x *OrgCreateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[48]
- 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 OrgCreateRequest.ProtoReflect.Descriptor instead.
+func (m *OrgCreateRequest) Reset() { *m = OrgCreateRequest{} }
+func (m *OrgCreateRequest) String() string { return proto.CompactTextString(m) }
+func (*OrgCreateRequest) ProtoMessage() {}
func (*OrgCreateRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{48}
+ return fileDescriptor_edc174f991dc0a25, []int{49}
}
-func (x *OrgCreateRequest) GetName() string {
- if x != nil {
- return x.Name
+func (m *OrgCreateRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgCreateRequest.Unmarshal(m, b)
+}
+func (m *OrgCreateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgCreateRequest.Marshal(b, m, deterministic)
+}
+func (m *OrgCreateRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgCreateRequest.Merge(m, src)
+}
+func (m *OrgCreateRequest) XXX_Size() int {
+ return xxx_messageInfo_OrgCreateRequest.Size(m)
+}
+func (m *OrgCreateRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgCreateRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgCreateRequest proto.InternalMessageInfo
+
+func (m *OrgCreateRequest) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
type Org struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- State OrgState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.OrgState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
- Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ State OrgState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.OrgState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
+ Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Org) Reset() {
- *x = Org{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[49]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Org) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Org) ProtoMessage() {}
-
-func (x *Org) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[49]
- 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 Org.ProtoReflect.Descriptor instead.
+func (m *Org) Reset() { *m = Org{} }
+func (m *Org) String() string { return proto.CompactTextString(m) }
+func (*Org) ProtoMessage() {}
func (*Org) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{49}
+ return fileDescriptor_edc174f991dc0a25, []int{50}
}
-func (x *Org) GetId() string {
- if x != nil {
- return x.Id
+func (m *Org) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Org.Unmarshal(m, b)
+}
+func (m *Org) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Org.Marshal(b, m, deterministic)
+}
+func (m *Org) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Org.Merge(m, src)
+}
+func (m *Org) XXX_Size() int {
+ return xxx_messageInfo_Org.Size(m)
+}
+func (m *Org) XXX_DiscardUnknown() {
+ xxx_messageInfo_Org.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Org proto.InternalMessageInfo
+
+func (m *Org) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *Org) GetState() OrgState {
- if x != nil {
- return x.State
+func (m *Org) GetState() OrgState {
+ if m != nil {
+ return m.State
}
return OrgState_ORGSTATE_UNSPECIFIED
}
-func (x *Org) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *Org) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *Org) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Org) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Org) GetName() string {
- if x != nil {
- return x.Name
+func (m *Org) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *Org) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *Org) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type OrgView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- State OrgState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.OrgState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
- Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ State OrgState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.OrgState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
+ Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgView) Reset() {
- *x = OrgView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[50]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgView) ProtoMessage() {}
-
-func (x *OrgView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[50]
- 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 OrgView.ProtoReflect.Descriptor instead.
+func (m *OrgView) Reset() { *m = OrgView{} }
+func (m *OrgView) String() string { return proto.CompactTextString(m) }
+func (*OrgView) ProtoMessage() {}
func (*OrgView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{50}
+ return fileDescriptor_edc174f991dc0a25, []int{51}
}
-func (x *OrgView) GetId() string {
- if x != nil {
- return x.Id
+func (m *OrgView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgView.Unmarshal(m, b)
+}
+func (m *OrgView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgView.Marshal(b, m, deterministic)
+}
+func (m *OrgView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgView.Merge(m, src)
+}
+func (m *OrgView) XXX_Size() int {
+ return xxx_messageInfo_OrgView.Size(m)
+}
+func (m *OrgView) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgView proto.InternalMessageInfo
+
+func (m *OrgView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *OrgView) GetState() OrgState {
- if x != nil {
- return x.State
+func (m *OrgView) GetState() OrgState {
+ if m != nil {
+ return m.State
}
return OrgState_ORGSTATE_UNSPECIFIED
}
-func (x *OrgView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *OrgView) GetName() string {
- if x != nil {
- return x.Name
+func (m *OrgView) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *OrgView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type Domain struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Domain) Reset() {
- *x = Domain{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[51]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Domain) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Domain) ProtoMessage() {}
-
-func (x *Domain) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[51]
- 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 Domain.ProtoReflect.Descriptor instead.
+func (m *Domain) Reset() { *m = Domain{} }
+func (m *Domain) String() string { return proto.CompactTextString(m) }
+func (*Domain) ProtoMessage() {}
func (*Domain) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{51}
+ return fileDescriptor_edc174f991dc0a25, []int{52}
}
-func (x *Domain) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *Domain) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Domain.Unmarshal(m, b)
+}
+func (m *Domain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Domain.Marshal(b, m, deterministic)
+}
+func (m *Domain) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Domain.Merge(m, src)
+}
+func (m *Domain) XXX_Size() int {
+ return xxx_messageInfo_Domain.Size(m)
+}
+func (m *Domain) XXX_DiscardUnknown() {
+ xxx_messageInfo_Domain.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Domain proto.InternalMessageInfo
+
+func (m *Domain) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type OrgDomain struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
- Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
- Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
+ Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
+ Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomain) Reset() {
- *x = OrgDomain{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[52]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomain) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomain) ProtoMessage() {}
-
-func (x *OrgDomain) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[52]
- 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 OrgDomain.ProtoReflect.Descriptor instead.
+func (m *OrgDomain) Reset() { *m = OrgDomain{} }
+func (m *OrgDomain) String() string { return proto.CompactTextString(m) }
+func (*OrgDomain) ProtoMessage() {}
func (*OrgDomain) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{52}
+ return fileDescriptor_edc174f991dc0a25, []int{53}
}
-func (x *OrgDomain) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *OrgDomain) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomain.Unmarshal(m, b)
+}
+func (m *OrgDomain) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomain.Marshal(b, m, deterministic)
+}
+func (m *OrgDomain) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomain.Merge(m, src)
+}
+func (m *OrgDomain) XXX_Size() int {
+ return xxx_messageInfo_OrgDomain.Size(m)
+}
+func (m *OrgDomain) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomain.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomain proto.InternalMessageInfo
+
+func (m *OrgDomain) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *OrgDomain) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgDomain) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgDomain) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgDomain) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *OrgDomain) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *OrgDomain) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
-func (x *OrgDomain) GetVerified() bool {
- if x != nil {
- return x.Verified
+func (m *OrgDomain) GetVerified() bool {
+ if m != nil {
+ return m.Verified
}
return false
}
-func (x *OrgDomain) GetPrimary() bool {
- if x != nil {
- return x.Primary
+func (m *OrgDomain) GetPrimary() bool {
+ if m != nil {
+ return m.Primary
}
return false
}
-func (x *OrgDomain) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgDomain) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type OrgDomainView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
- Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
- Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
- ValidationType OrgDomainValidationType `protobuf:"varint,8,opt,name=validation_type,json=validationType,proto3,enum=caos.zitadel.management.api.v1.OrgDomainValidationType" json:"validation_type,omitempty"`
+ OrgId string `protobuf:"bytes,1,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,2,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Domain string `protobuf:"bytes,4,opt,name=domain,proto3" json:"domain,omitempty"`
+ Verified bool `protobuf:"varint,5,opt,name=verified,proto3" json:"verified,omitempty"`
+ Primary bool `protobuf:"varint,6,opt,name=primary,proto3" json:"primary,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ValidationType OrgDomainValidationType `protobuf:"varint,8,opt,name=validation_type,json=validationType,proto3,enum=caos.zitadel.management.api.v1.OrgDomainValidationType" json:"validation_type,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainView) Reset() {
- *x = OrgDomainView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[53]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainView) ProtoMessage() {}
-
-func (x *OrgDomainView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[53]
- 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 OrgDomainView.ProtoReflect.Descriptor instead.
+func (m *OrgDomainView) Reset() { *m = OrgDomainView{} }
+func (m *OrgDomainView) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainView) ProtoMessage() {}
func (*OrgDomainView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{53}
+ return fileDescriptor_edc174f991dc0a25, []int{54}
}
-func (x *OrgDomainView) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *OrgDomainView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainView.Unmarshal(m, b)
+}
+func (m *OrgDomainView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainView.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainView.Merge(m, src)
+}
+func (m *OrgDomainView) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainView.Size(m)
+}
+func (m *OrgDomainView) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainView proto.InternalMessageInfo
+
+func (m *OrgDomainView) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *OrgDomainView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgDomainView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgDomainView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgDomainView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *OrgDomainView) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *OrgDomainView) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
-func (x *OrgDomainView) GetVerified() bool {
- if x != nil {
- return x.Verified
+func (m *OrgDomainView) GetVerified() bool {
+ if m != nil {
+ return m.Verified
}
return false
}
-func (x *OrgDomainView) GetPrimary() bool {
- if x != nil {
- return x.Primary
+func (m *OrgDomainView) GetPrimary() bool {
+ if m != nil {
+ return m.Primary
}
return false
}
-func (x *OrgDomainView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgDomainView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *OrgDomainView) GetValidationType() OrgDomainValidationType {
- if x != nil {
- return x.ValidationType
+func (m *OrgDomainView) GetValidationType() OrgDomainValidationType {
+ if m != nil {
+ return m.ValidationType
}
return OrgDomainValidationType_ORGDOMAINVALIDATIONTYPE_UNSPECIFIED
}
type AddOrgDomainRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AddOrgDomainRequest) Reset() {
- *x = AddOrgDomainRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[54]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AddOrgDomainRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AddOrgDomainRequest) ProtoMessage() {}
-
-func (x *AddOrgDomainRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[54]
- 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 AddOrgDomainRequest.ProtoReflect.Descriptor instead.
+func (m *AddOrgDomainRequest) Reset() { *m = AddOrgDomainRequest{} }
+func (m *AddOrgDomainRequest) String() string { return proto.CompactTextString(m) }
+func (*AddOrgDomainRequest) ProtoMessage() {}
func (*AddOrgDomainRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{54}
+ return fileDescriptor_edc174f991dc0a25, []int{55}
}
-func (x *AddOrgDomainRequest) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *AddOrgDomainRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AddOrgDomainRequest.Unmarshal(m, b)
+}
+func (m *AddOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AddOrgDomainRequest.Marshal(b, m, deterministic)
+}
+func (m *AddOrgDomainRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AddOrgDomainRequest.Merge(m, src)
+}
+func (m *AddOrgDomainRequest) XXX_Size() int {
+ return xxx_messageInfo_AddOrgDomainRequest.Size(m)
+}
+func (m *AddOrgDomainRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_AddOrgDomainRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AddOrgDomainRequest proto.InternalMessageInfo
+
+func (m *AddOrgDomainRequest) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type OrgDomainValidationRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
- Type OrgDomainValidationType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.OrgDomainValidationType" json:"type,omitempty"`
+ Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ Type OrgDomainValidationType `protobuf:"varint,2,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.OrgDomainValidationType" json:"type,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainValidationRequest) Reset() {
- *x = OrgDomainValidationRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[55]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainValidationRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainValidationRequest) ProtoMessage() {}
-
-func (x *OrgDomainValidationRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[55]
- 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 OrgDomainValidationRequest.ProtoReflect.Descriptor instead.
+func (m *OrgDomainValidationRequest) Reset() { *m = OrgDomainValidationRequest{} }
+func (m *OrgDomainValidationRequest) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainValidationRequest) ProtoMessage() {}
func (*OrgDomainValidationRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{55}
+ return fileDescriptor_edc174f991dc0a25, []int{56}
}
-func (x *OrgDomainValidationRequest) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *OrgDomainValidationRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainValidationRequest.Unmarshal(m, b)
+}
+func (m *OrgDomainValidationRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainValidationRequest.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainValidationRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainValidationRequest.Merge(m, src)
+}
+func (m *OrgDomainValidationRequest) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainValidationRequest.Size(m)
+}
+func (m *OrgDomainValidationRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainValidationRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainValidationRequest proto.InternalMessageInfo
+
+func (m *OrgDomainValidationRequest) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
-func (x *OrgDomainValidationRequest) GetType() OrgDomainValidationType {
- if x != nil {
- return x.Type
+func (m *OrgDomainValidationRequest) GetType() OrgDomainValidationType {
+ if m != nil {
+ return m.Type
}
return OrgDomainValidationType_ORGDOMAINVALIDATIONTYPE_UNSPECIFIED
}
type OrgDomainValidationResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
- Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
+ Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"`
+ Url string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainValidationResponse) Reset() {
- *x = OrgDomainValidationResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[56]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainValidationResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainValidationResponse) ProtoMessage() {}
-
-func (x *OrgDomainValidationResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[56]
- 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 OrgDomainValidationResponse.ProtoReflect.Descriptor instead.
+func (m *OrgDomainValidationResponse) Reset() { *m = OrgDomainValidationResponse{} }
+func (m *OrgDomainValidationResponse) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainValidationResponse) ProtoMessage() {}
func (*OrgDomainValidationResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{56}
+ return fileDescriptor_edc174f991dc0a25, []int{57}
}
-func (x *OrgDomainValidationResponse) GetToken() string {
- if x != nil {
- return x.Token
+func (m *OrgDomainValidationResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainValidationResponse.Unmarshal(m, b)
+}
+func (m *OrgDomainValidationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainValidationResponse.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainValidationResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainValidationResponse.Merge(m, src)
+}
+func (m *OrgDomainValidationResponse) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainValidationResponse.Size(m)
+}
+func (m *OrgDomainValidationResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainValidationResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainValidationResponse proto.InternalMessageInfo
+
+func (m *OrgDomainValidationResponse) GetToken() string {
+ if m != nil {
+ return m.Token
}
return ""
}
-func (x *OrgDomainValidationResponse) GetUrl() string {
- if x != nil {
- return x.Url
+func (m *OrgDomainValidationResponse) GetUrl() string {
+ if m != nil {
+ return m.Url
}
return ""
}
type ValidateOrgDomainRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ValidateOrgDomainRequest) Reset() {
- *x = ValidateOrgDomainRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[57]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ValidateOrgDomainRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ValidateOrgDomainRequest) ProtoMessage() {}
-
-func (x *ValidateOrgDomainRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[57]
- 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 ValidateOrgDomainRequest.ProtoReflect.Descriptor instead.
+func (m *ValidateOrgDomainRequest) Reset() { *m = ValidateOrgDomainRequest{} }
+func (m *ValidateOrgDomainRequest) String() string { return proto.CompactTextString(m) }
+func (*ValidateOrgDomainRequest) ProtoMessage() {}
func (*ValidateOrgDomainRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{57}
+ return fileDescriptor_edc174f991dc0a25, []int{58}
}
-func (x *ValidateOrgDomainRequest) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *ValidateOrgDomainRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ValidateOrgDomainRequest.Unmarshal(m, b)
+}
+func (m *ValidateOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ValidateOrgDomainRequest.Marshal(b, m, deterministic)
+}
+func (m *ValidateOrgDomainRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ValidateOrgDomainRequest.Merge(m, src)
+}
+func (m *ValidateOrgDomainRequest) XXX_Size() int {
+ return xxx_messageInfo_ValidateOrgDomainRequest.Size(m)
+}
+func (m *ValidateOrgDomainRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ValidateOrgDomainRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ValidateOrgDomainRequest proto.InternalMessageInfo
+
+func (m *ValidateOrgDomainRequest) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type PrimaryOrgDomainRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PrimaryOrgDomainRequest) Reset() {
- *x = PrimaryOrgDomainRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[58]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PrimaryOrgDomainRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PrimaryOrgDomainRequest) ProtoMessage() {}
-
-func (x *PrimaryOrgDomainRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[58]
- 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 PrimaryOrgDomainRequest.ProtoReflect.Descriptor instead.
+func (m *PrimaryOrgDomainRequest) Reset() { *m = PrimaryOrgDomainRequest{} }
+func (m *PrimaryOrgDomainRequest) String() string { return proto.CompactTextString(m) }
+func (*PrimaryOrgDomainRequest) ProtoMessage() {}
func (*PrimaryOrgDomainRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{58}
+ return fileDescriptor_edc174f991dc0a25, []int{59}
}
-func (x *PrimaryOrgDomainRequest) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *PrimaryOrgDomainRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PrimaryOrgDomainRequest.Unmarshal(m, b)
+}
+func (m *PrimaryOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PrimaryOrgDomainRequest.Marshal(b, m, deterministic)
+}
+func (m *PrimaryOrgDomainRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PrimaryOrgDomainRequest.Merge(m, src)
+}
+func (m *PrimaryOrgDomainRequest) XXX_Size() int {
+ return xxx_messageInfo_PrimaryOrgDomainRequest.Size(m)
+}
+func (m *PrimaryOrgDomainRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_PrimaryOrgDomainRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PrimaryOrgDomainRequest proto.InternalMessageInfo
+
+func (m *PrimaryOrgDomainRequest) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type RemoveOrgDomainRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ Domain string `protobuf:"bytes,1,opt,name=domain,proto3" json:"domain,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *RemoveOrgDomainRequest) Reset() {
- *x = RemoveOrgDomainRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[59]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *RemoveOrgDomainRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*RemoveOrgDomainRequest) ProtoMessage() {}
-
-func (x *RemoveOrgDomainRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[59]
- 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 RemoveOrgDomainRequest.ProtoReflect.Descriptor instead.
+func (m *RemoveOrgDomainRequest) Reset() { *m = RemoveOrgDomainRequest{} }
+func (m *RemoveOrgDomainRequest) String() string { return proto.CompactTextString(m) }
+func (*RemoveOrgDomainRequest) ProtoMessage() {}
func (*RemoveOrgDomainRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{59}
+ return fileDescriptor_edc174f991dc0a25, []int{60}
}
-func (x *RemoveOrgDomainRequest) GetDomain() string {
- if x != nil {
- return x.Domain
+func (m *RemoveOrgDomainRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_RemoveOrgDomainRequest.Unmarshal(m, b)
+}
+func (m *RemoveOrgDomainRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_RemoveOrgDomainRequest.Marshal(b, m, deterministic)
+}
+func (m *RemoveOrgDomainRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_RemoveOrgDomainRequest.Merge(m, src)
+}
+func (m *RemoveOrgDomainRequest) XXX_Size() int {
+ return xxx_messageInfo_RemoveOrgDomainRequest.Size(m)
+}
+func (m *RemoveOrgDomainRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_RemoveOrgDomainRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_RemoveOrgDomainRequest proto.InternalMessageInfo
+
+func (m *RemoveOrgDomainRequest) GetDomain() string {
+ if m != nil {
+ return m.Domain
}
return ""
}
type OrgDomainSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*OrgDomainView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*OrgDomainView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainSearchResponse) Reset() {
- *x = OrgDomainSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[60]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainSearchResponse) ProtoMessage() {}
-
-func (x *OrgDomainSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[60]
- 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 OrgDomainSearchResponse.ProtoReflect.Descriptor instead.
+func (m *OrgDomainSearchResponse) Reset() { *m = OrgDomainSearchResponse{} }
+func (m *OrgDomainSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainSearchResponse) ProtoMessage() {}
func (*OrgDomainSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{60}
+ return fileDescriptor_edc174f991dc0a25, []int{61}
}
-func (x *OrgDomainSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgDomainSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainSearchResponse.Unmarshal(m, b)
+}
+func (m *OrgDomainSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainSearchResponse.Merge(m, src)
+}
+func (m *OrgDomainSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainSearchResponse.Size(m)
+}
+func (m *OrgDomainSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainSearchResponse proto.InternalMessageInfo
+
+func (m *OrgDomainSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgDomainSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgDomainSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgDomainSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *OrgDomainSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *OrgDomainSearchResponse) GetResult() []*OrgDomainView {
- if x != nil {
- return x.Result
+func (m *OrgDomainSearchResponse) GetResult() []*OrgDomainView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *OrgDomainSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *OrgDomainSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *OrgDomainSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *OrgDomainSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type OrgDomainSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*OrgDomainSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*OrgDomainSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainSearchRequest) Reset() {
- *x = OrgDomainSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[61]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainSearchRequest) ProtoMessage() {}
-
-func (x *OrgDomainSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[61]
- 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 OrgDomainSearchRequest.ProtoReflect.Descriptor instead.
+func (m *OrgDomainSearchRequest) Reset() { *m = OrgDomainSearchRequest{} }
+func (m *OrgDomainSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainSearchRequest) ProtoMessage() {}
func (*OrgDomainSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{61}
+ return fileDescriptor_edc174f991dc0a25, []int{62}
}
-func (x *OrgDomainSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgDomainSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainSearchRequest.Unmarshal(m, b)
+}
+func (m *OrgDomainSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainSearchRequest.Merge(m, src)
+}
+func (m *OrgDomainSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainSearchRequest.Size(m)
+}
+func (m *OrgDomainSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainSearchRequest proto.InternalMessageInfo
+
+func (m *OrgDomainSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgDomainSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgDomainSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgDomainSearchRequest) GetQueries() []*OrgDomainSearchQuery {
- if x != nil {
- return x.Queries
+func (m *OrgDomainSearchRequest) GetQueries() []*OrgDomainSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type OrgDomainSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key OrgDomainSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.OrgDomainSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key OrgDomainSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.OrgDomainSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgDomainSearchQuery) Reset() {
- *x = OrgDomainSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[62]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgDomainSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgDomainSearchQuery) ProtoMessage() {}
-
-func (x *OrgDomainSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[62]
- 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 OrgDomainSearchQuery.ProtoReflect.Descriptor instead.
+func (m *OrgDomainSearchQuery) Reset() { *m = OrgDomainSearchQuery{} }
+func (m *OrgDomainSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*OrgDomainSearchQuery) ProtoMessage() {}
func (*OrgDomainSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{62}
+ return fileDescriptor_edc174f991dc0a25, []int{63}
}
-func (x *OrgDomainSearchQuery) GetKey() OrgDomainSearchKey {
- if x != nil {
- return x.Key
+func (m *OrgDomainSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgDomainSearchQuery.Unmarshal(m, b)
+}
+func (m *OrgDomainSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgDomainSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *OrgDomainSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgDomainSearchQuery.Merge(m, src)
+}
+func (m *OrgDomainSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_OrgDomainSearchQuery.Size(m)
+}
+func (m *OrgDomainSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgDomainSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgDomainSearchQuery proto.InternalMessageInfo
+
+func (m *OrgDomainSearchQuery) GetKey() OrgDomainSearchKey {
+ if m != nil {
+ return m.Key
}
return OrgDomainSearchKey_ORGDOMAINSEARCHKEY_UNSPECIFIED
}
-func (x *OrgDomainSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *OrgDomainSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *OrgDomainSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *OrgDomainSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type OrgMemberRoles struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberRoles) Reset() {
- *x = OrgMemberRoles{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[63]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberRoles) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberRoles) ProtoMessage() {}
-
-func (x *OrgMemberRoles) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[63]
- 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 OrgMemberRoles.ProtoReflect.Descriptor instead.
+func (m *OrgMemberRoles) Reset() { *m = OrgMemberRoles{} }
+func (m *OrgMemberRoles) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberRoles) ProtoMessage() {}
func (*OrgMemberRoles) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{63}
+ return fileDescriptor_edc174f991dc0a25, []int{64}
}
-func (x *OrgMemberRoles) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *OrgMemberRoles) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberRoles.Unmarshal(m, b)
+}
+func (m *OrgMemberRoles) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberRoles.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberRoles) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberRoles.Merge(m, src)
+}
+func (m *OrgMemberRoles) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberRoles.Size(m)
+}
+func (m *OrgMemberRoles) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberRoles.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberRoles proto.InternalMessageInfo
+
+func (m *OrgMemberRoles) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type OrgMember struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMember) Reset() {
- *x = OrgMember{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[64]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMember) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMember) ProtoMessage() {}
-
-func (x *OrgMember) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[64]
- 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 OrgMember.ProtoReflect.Descriptor instead.
+func (m *OrgMember) Reset() { *m = OrgMember{} }
+func (m *OrgMember) String() string { return proto.CompactTextString(m) }
+func (*OrgMember) ProtoMessage() {}
func (*OrgMember) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{64}
+ return fileDescriptor_edc174f991dc0a25, []int{65}
}
-func (x *OrgMember) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *OrgMember) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMember.Unmarshal(m, b)
+}
+func (m *OrgMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMember.Marshal(b, m, deterministic)
+}
+func (m *OrgMember) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMember.Merge(m, src)
+}
+func (m *OrgMember) XXX_Size() int {
+ return xxx_messageInfo_OrgMember.Size(m)
+}
+func (m *OrgMember) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMember.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMember proto.InternalMessageInfo
+
+func (m *OrgMember) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *OrgMember) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *OrgMember) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *OrgMember) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgMember) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *OrgMember) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgMember) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgMember) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgMember) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type AddOrgMemberRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *AddOrgMemberRequest) Reset() {
- *x = AddOrgMemberRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[65]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *AddOrgMemberRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*AddOrgMemberRequest) ProtoMessage() {}
-
-func (x *AddOrgMemberRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[65]
- 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 AddOrgMemberRequest.ProtoReflect.Descriptor instead.
+func (m *AddOrgMemberRequest) Reset() { *m = AddOrgMemberRequest{} }
+func (m *AddOrgMemberRequest) String() string { return proto.CompactTextString(m) }
+func (*AddOrgMemberRequest) ProtoMessage() {}
func (*AddOrgMemberRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{65}
+ return fileDescriptor_edc174f991dc0a25, []int{66}
}
-func (x *AddOrgMemberRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *AddOrgMemberRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_AddOrgMemberRequest.Unmarshal(m, b)
+}
+func (m *AddOrgMemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_AddOrgMemberRequest.Marshal(b, m, deterministic)
+}
+func (m *AddOrgMemberRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_AddOrgMemberRequest.Merge(m, src)
+}
+func (m *AddOrgMemberRequest) XXX_Size() int {
+ return xxx_messageInfo_AddOrgMemberRequest.Size(m)
+}
+func (m *AddOrgMemberRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_AddOrgMemberRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_AddOrgMemberRequest proto.InternalMessageInfo
+
+func (m *AddOrgMemberRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *AddOrgMemberRequest) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *AddOrgMemberRequest) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ChangeOrgMemberRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ChangeOrgMemberRequest) Reset() {
- *x = ChangeOrgMemberRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[66]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ChangeOrgMemberRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ChangeOrgMemberRequest) ProtoMessage() {}
-
-func (x *ChangeOrgMemberRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[66]
- 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 ChangeOrgMemberRequest.ProtoReflect.Descriptor instead.
+func (m *ChangeOrgMemberRequest) Reset() { *m = ChangeOrgMemberRequest{} }
+func (m *ChangeOrgMemberRequest) String() string { return proto.CompactTextString(m) }
+func (*ChangeOrgMemberRequest) ProtoMessage() {}
func (*ChangeOrgMemberRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{66}
+ return fileDescriptor_edc174f991dc0a25, []int{67}
}
-func (x *ChangeOrgMemberRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ChangeOrgMemberRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ChangeOrgMemberRequest.Unmarshal(m, b)
+}
+func (m *ChangeOrgMemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ChangeOrgMemberRequest.Marshal(b, m, deterministic)
+}
+func (m *ChangeOrgMemberRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ChangeOrgMemberRequest.Merge(m, src)
+}
+func (m *ChangeOrgMemberRequest) XXX_Size() int {
+ return xxx_messageInfo_ChangeOrgMemberRequest.Size(m)
+}
+func (m *ChangeOrgMemberRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ChangeOrgMemberRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ChangeOrgMemberRequest proto.InternalMessageInfo
+
+func (m *ChangeOrgMemberRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ChangeOrgMemberRequest) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ChangeOrgMemberRequest) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type RemoveOrgMemberRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *RemoveOrgMemberRequest) Reset() {
- *x = RemoveOrgMemberRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[67]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *RemoveOrgMemberRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*RemoveOrgMemberRequest) ProtoMessage() {}
-
-func (x *RemoveOrgMemberRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[67]
- 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 RemoveOrgMemberRequest.ProtoReflect.Descriptor instead.
+func (m *RemoveOrgMemberRequest) Reset() { *m = RemoveOrgMemberRequest{} }
+func (m *RemoveOrgMemberRequest) String() string { return proto.CompactTextString(m) }
+func (*RemoveOrgMemberRequest) ProtoMessage() {}
func (*RemoveOrgMemberRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{67}
+ return fileDescriptor_edc174f991dc0a25, []int{68}
}
-func (x *RemoveOrgMemberRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *RemoveOrgMemberRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_RemoveOrgMemberRequest.Unmarshal(m, b)
+}
+func (m *RemoveOrgMemberRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_RemoveOrgMemberRequest.Marshal(b, m, deterministic)
+}
+func (m *RemoveOrgMemberRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_RemoveOrgMemberRequest.Merge(m, src)
+}
+func (m *RemoveOrgMemberRequest) XXX_Size() int {
+ return xxx_messageInfo_RemoveOrgMemberRequest.Size(m)
+}
+func (m *RemoveOrgMemberRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_RemoveOrgMemberRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_RemoveOrgMemberRequest proto.InternalMessageInfo
+
+func (m *RemoveOrgMemberRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
type OrgMemberSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*OrgMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*OrgMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberSearchResponse) Reset() {
- *x = OrgMemberSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[68]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberSearchResponse) ProtoMessage() {}
-
-func (x *OrgMemberSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[68]
- 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 OrgMemberSearchResponse.ProtoReflect.Descriptor instead.
+func (m *OrgMemberSearchResponse) Reset() { *m = OrgMemberSearchResponse{} }
+func (m *OrgMemberSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberSearchResponse) ProtoMessage() {}
func (*OrgMemberSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{68}
+ return fileDescriptor_edc174f991dc0a25, []int{69}
}
-func (x *OrgMemberSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgMemberSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberSearchResponse.Unmarshal(m, b)
+}
+func (m *OrgMemberSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberSearchResponse.Merge(m, src)
+}
+func (m *OrgMemberSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberSearchResponse.Size(m)
+}
+func (m *OrgMemberSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberSearchResponse proto.InternalMessageInfo
+
+func (m *OrgMemberSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgMemberSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgMemberSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgMemberSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *OrgMemberSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *OrgMemberSearchResponse) GetResult() []*OrgMemberView {
- if x != nil {
- return x.Result
+func (m *OrgMemberSearchResponse) GetResult() []*OrgMemberView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *OrgMemberSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *OrgMemberSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *OrgMemberSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *OrgMemberSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type OrgMemberView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
- UserName string `protobuf:"bytes,6,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
- FirstName string `protobuf:"bytes,8,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,9,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- DisplayName string `protobuf:"bytes,10,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserName string `protobuf:"bytes,6,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Email string `protobuf:"bytes,7,opt,name=email,proto3" json:"email,omitempty"`
+ FirstName string `protobuf:"bytes,8,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,9,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ DisplayName string `protobuf:"bytes,10,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberView) Reset() {
- *x = OrgMemberView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[69]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberView) ProtoMessage() {}
-
-func (x *OrgMemberView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[69]
- 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 OrgMemberView.ProtoReflect.Descriptor instead.
+func (m *OrgMemberView) Reset() { *m = OrgMemberView{} }
+func (m *OrgMemberView) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberView) ProtoMessage() {}
func (*OrgMemberView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{69}
+ return fileDescriptor_edc174f991dc0a25, []int{70}
}
-func (x *OrgMemberView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *OrgMemberView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberView.Unmarshal(m, b)
+}
+func (m *OrgMemberView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberView.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberView.Merge(m, src)
+}
+func (m *OrgMemberView) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberView.Size(m)
+}
+func (m *OrgMemberView) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberView proto.InternalMessageInfo
+
+func (m *OrgMemberView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *OrgMemberView) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *OrgMemberView) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *OrgMemberView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *OrgMemberView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *OrgMemberView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *OrgMemberView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *OrgMemberView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *OrgMemberView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *OrgMemberView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *OrgMemberView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *OrgMemberView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *OrgMemberView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *OrgMemberView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *OrgMemberView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *OrgMemberView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *OrgMemberView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *OrgMemberView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *OrgMemberView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
type OrgMemberSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*OrgMemberSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*OrgMemberSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberSearchRequest) Reset() {
- *x = OrgMemberSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[70]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberSearchRequest) ProtoMessage() {}
-
-func (x *OrgMemberSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[70]
- 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 OrgMemberSearchRequest.ProtoReflect.Descriptor instead.
+func (m *OrgMemberSearchRequest) Reset() { *m = OrgMemberSearchRequest{} }
+func (m *OrgMemberSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberSearchRequest) ProtoMessage() {}
func (*OrgMemberSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{70}
+ return fileDescriptor_edc174f991dc0a25, []int{71}
}
-func (x *OrgMemberSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *OrgMemberSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberSearchRequest.Unmarshal(m, b)
+}
+func (m *OrgMemberSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberSearchRequest.Merge(m, src)
+}
+func (m *OrgMemberSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberSearchRequest.Size(m)
+}
+func (m *OrgMemberSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberSearchRequest proto.InternalMessageInfo
+
+func (m *OrgMemberSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *OrgMemberSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *OrgMemberSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *OrgMemberSearchRequest) GetQueries() []*OrgMemberSearchQuery {
- if x != nil {
- return x.Queries
+func (m *OrgMemberSearchRequest) GetQueries() []*OrgMemberSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type OrgMemberSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key OrgMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.OrgMemberSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key OrgMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.OrgMemberSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OrgMemberSearchQuery) Reset() {
- *x = OrgMemberSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[71]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OrgMemberSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OrgMemberSearchQuery) ProtoMessage() {}
-
-func (x *OrgMemberSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[71]
- 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 OrgMemberSearchQuery.ProtoReflect.Descriptor instead.
+func (m *OrgMemberSearchQuery) Reset() { *m = OrgMemberSearchQuery{} }
+func (m *OrgMemberSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*OrgMemberSearchQuery) ProtoMessage() {}
func (*OrgMemberSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{71}
+ return fileDescriptor_edc174f991dc0a25, []int{72}
}
-func (x *OrgMemberSearchQuery) GetKey() OrgMemberSearchKey {
- if x != nil {
- return x.Key
+func (m *OrgMemberSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OrgMemberSearchQuery.Unmarshal(m, b)
+}
+func (m *OrgMemberSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OrgMemberSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *OrgMemberSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OrgMemberSearchQuery.Merge(m, src)
+}
+func (m *OrgMemberSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_OrgMemberSearchQuery.Size(m)
+}
+func (m *OrgMemberSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_OrgMemberSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OrgMemberSearchQuery proto.InternalMessageInfo
+
+func (m *OrgMemberSearchQuery) GetKey() OrgMemberSearchKey {
+ if m != nil {
+ return m.Key
}
return OrgMemberSearchKey_ORGMEMBERSEARCHKEY_UNSPECIFIED
}
-func (x *OrgMemberSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *OrgMemberSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *OrgMemberSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *OrgMemberSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type ProjectCreateRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
- ProjectRoleAssertion bool `protobuf:"varint,2,opt,name=project_role_assertion,json=projectRoleAssertion,proto3" json:"project_role_assertion,omitempty"`
- ProjectRoleCheck bool `protobuf:"varint,3,opt,name=project_role_check,json=projectRoleCheck,proto3" json:"project_role_check,omitempty"`
+ Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
+ ProjectRoleAssertion bool `protobuf:"varint,2,opt,name=project_role_assertion,json=projectRoleAssertion,proto3" json:"project_role_assertion,omitempty"`
+ ProjectRoleCheck bool `protobuf:"varint,3,opt,name=project_role_check,json=projectRoleCheck,proto3" json:"project_role_check,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectCreateRequest) Reset() {
- *x = ProjectCreateRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[72]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectCreateRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectCreateRequest) ProtoMessage() {}
-
-func (x *ProjectCreateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[72]
- 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 ProjectCreateRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectCreateRequest) Reset() { *m = ProjectCreateRequest{} }
+func (m *ProjectCreateRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectCreateRequest) ProtoMessage() {}
func (*ProjectCreateRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{72}
+ return fileDescriptor_edc174f991dc0a25, []int{73}
}
-func (x *ProjectCreateRequest) GetName() string {
- if x != nil {
- return x.Name
+func (m *ProjectCreateRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectCreateRequest.Unmarshal(m, b)
+}
+func (m *ProjectCreateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectCreateRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectCreateRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectCreateRequest.Merge(m, src)
+}
+func (m *ProjectCreateRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectCreateRequest.Size(m)
+}
+func (m *ProjectCreateRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectCreateRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectCreateRequest proto.InternalMessageInfo
+
+func (m *ProjectCreateRequest) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *ProjectCreateRequest) GetProjectRoleAssertion() bool {
- if x != nil {
- return x.ProjectRoleAssertion
+func (m *ProjectCreateRequest) GetProjectRoleAssertion() bool {
+ if m != nil {
+ return m.ProjectRoleAssertion
}
return false
}
-func (x *ProjectCreateRequest) GetProjectRoleCheck() bool {
- if x != nil {
- return x.ProjectRoleCheck
+func (m *ProjectCreateRequest) GetProjectRoleCheck() bool {
+ if m != nil {
+ return m.ProjectRoleCheck
}
return false
}
type ProjectUpdateRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- ProjectRoleAssertion bool `protobuf:"varint,3,opt,name=project_role_assertion,json=projectRoleAssertion,proto3" json:"project_role_assertion,omitempty"`
- ProjectRoleCheck bool `protobuf:"varint,4,opt,name=project_role_check,json=projectRoleCheck,proto3" json:"project_role_check,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ ProjectRoleAssertion bool `protobuf:"varint,3,opt,name=project_role_assertion,json=projectRoleAssertion,proto3" json:"project_role_assertion,omitempty"`
+ ProjectRoleCheck bool `protobuf:"varint,4,opt,name=project_role_check,json=projectRoleCheck,proto3" json:"project_role_check,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectUpdateRequest) Reset() {
- *x = ProjectUpdateRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[73]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectUpdateRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectUpdateRequest) ProtoMessage() {}
-
-func (x *ProjectUpdateRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[73]
- 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 ProjectUpdateRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectUpdateRequest) Reset() { *m = ProjectUpdateRequest{} }
+func (m *ProjectUpdateRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectUpdateRequest) ProtoMessage() {}
func (*ProjectUpdateRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{73}
+ return fileDescriptor_edc174f991dc0a25, []int{74}
}
-func (x *ProjectUpdateRequest) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectUpdateRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectUpdateRequest.Unmarshal(m, b)
+}
+func (m *ProjectUpdateRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectUpdateRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectUpdateRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectUpdateRequest.Merge(m, src)
+}
+func (m *ProjectUpdateRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectUpdateRequest.Size(m)
+}
+func (m *ProjectUpdateRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectUpdateRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectUpdateRequest proto.InternalMessageInfo
+
+func (m *ProjectUpdateRequest) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectUpdateRequest) GetName() string {
- if x != nil {
- return x.Name
+func (m *ProjectUpdateRequest) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *ProjectUpdateRequest) GetProjectRoleAssertion() bool {
- if x != nil {
- return x.ProjectRoleAssertion
+func (m *ProjectUpdateRequest) GetProjectRoleAssertion() bool {
+ if m != nil {
+ return m.ProjectRoleAssertion
}
return false
}
-func (x *ProjectUpdateRequest) GetProjectRoleCheck() bool {
- if x != nil {
- return x.ProjectRoleCheck
+func (m *ProjectUpdateRequest) GetProjectRoleCheck() bool {
+ if m != nil {
+ return m.ProjectRoleCheck
}
return false
}
type ProjectSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectSearchResponse) Reset() {
- *x = ProjectSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[74]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectSearchResponse) ProtoMessage() {}
-
-func (x *ProjectSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[74]
- 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 ProjectSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectSearchResponse) Reset() { *m = ProjectSearchResponse{} }
+func (m *ProjectSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectSearchResponse) ProtoMessage() {}
func (*ProjectSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{74}
+ return fileDescriptor_edc174f991dc0a25, []int{75}
}
-func (x *ProjectSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectSearchResponse.Merge(m, src)
+}
+func (m *ProjectSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectSearchResponse.Size(m)
+}
+func (m *ProjectSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectSearchResponse) GetResult() []*ProjectView {
- if x != nil {
- return x.Result
+func (m *ProjectSearchResponse) GetResult() []*ProjectView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *ProjectSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *ProjectSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *ProjectSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *ProjectSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type ProjectView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
State ProjectState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectState" json:"state,omitempty"`
@@ -7878,281 +6458,249 @@ type ProjectView struct {
Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
ProjectRoleAssertion bool `protobuf:"varint,8,opt,name=project_role_assertion,json=projectRoleAssertion,proto3" json:"project_role_assertion,omitempty"`
ProjectRoleCheck bool `protobuf:"varint,9,opt,name=project_role_check,json=projectRoleCheck,proto3" json:"project_role_check,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectView) Reset() {
- *x = ProjectView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[75]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectView) ProtoMessage() {}
-
-func (x *ProjectView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[75]
- 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 ProjectView.ProtoReflect.Descriptor instead.
+func (m *ProjectView) Reset() { *m = ProjectView{} }
+func (m *ProjectView) String() string { return proto.CompactTextString(m) }
+func (*ProjectView) ProtoMessage() {}
func (*ProjectView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{75}
+ return fileDescriptor_edc174f991dc0a25, []int{76}
}
-func (x *ProjectView) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectView.Unmarshal(m, b)
+}
+func (m *ProjectView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectView.Marshal(b, m, deterministic)
+}
+func (m *ProjectView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectView.Merge(m, src)
+}
+func (m *ProjectView) XXX_Size() int {
+ return xxx_messageInfo_ProjectView.Size(m)
+}
+func (m *ProjectView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectView proto.InternalMessageInfo
+
+func (m *ProjectView) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectView) GetName() string {
- if x != nil {
- return x.Name
+func (m *ProjectView) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *ProjectView) GetState() ProjectState {
- if x != nil {
- return x.State
+func (m *ProjectView) GetState() ProjectState {
+ if m != nil {
+ return m.State
}
return ProjectState_PROJECTSTATE_UNSPECIFIED
}
-func (x *ProjectView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectView) GetResourceOwner() string {
- if x != nil {
- return x.ResourceOwner
+func (m *ProjectView) GetResourceOwner() string {
+ if m != nil {
+ return m.ResourceOwner
}
return ""
}
-func (x *ProjectView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *ProjectView) GetProjectRoleAssertion() bool {
- if x != nil {
- return x.ProjectRoleAssertion
+func (m *ProjectView) GetProjectRoleAssertion() bool {
+ if m != nil {
+ return m.ProjectRoleAssertion
}
return false
}
-func (x *ProjectView) GetProjectRoleCheck() bool {
- if x != nil {
- return x.ProjectRoleCheck
+func (m *ProjectView) GetProjectRoleCheck() bool {
+ if m != nil {
+ return m.ProjectRoleCheck
}
return false
}
type ProjectSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectSearchRequest) Reset() {
- *x = ProjectSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[76]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectSearchRequest) ProtoMessage() {}
-
-func (x *ProjectSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[76]
- 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 ProjectSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectSearchRequest) Reset() { *m = ProjectSearchRequest{} }
+func (m *ProjectSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectSearchRequest) ProtoMessage() {}
func (*ProjectSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{76}
+ return fileDescriptor_edc174f991dc0a25, []int{77}
}
-func (x *ProjectSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectSearchRequest.Merge(m, src)
+}
+func (m *ProjectSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectSearchRequest.Size(m)
+}
+func (m *ProjectSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ProjectSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ProjectSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectSearchQuery) Reset() {
- *x = ProjectSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[77]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectSearchQuery) ProtoMessage() {}
-
-func (x *ProjectSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[77]
- 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 ProjectSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ProjectSearchQuery) Reset() { *m = ProjectSearchQuery{} }
+func (m *ProjectSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ProjectSearchQuery) ProtoMessage() {}
func (*ProjectSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{77}
+ return fileDescriptor_edc174f991dc0a25, []int{78}
}
-func (x *ProjectSearchQuery) GetKey() ProjectSearchKey {
- if x != nil {
- return x.Key
+func (m *ProjectSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectSearchQuery.Unmarshal(m, b)
+}
+func (m *ProjectSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ProjectSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectSearchQuery.Merge(m, src)
+}
+func (m *ProjectSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ProjectSearchQuery.Size(m)
+}
+func (m *ProjectSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectSearchQuery proto.InternalMessageInfo
+
+func (m *ProjectSearchQuery) GetKey() ProjectSearchKey {
+ if m != nil {
+ return m.Key
}
return ProjectSearchKey_PROJECTSEARCHKEY_UNSPECIFIED
}
-func (x *ProjectSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ProjectSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ProjectSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ProjectSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type Projects struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Projects []*Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
+ Projects []*Project `protobuf:"bytes,1,rep,name=projects,proto3" json:"projects,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Projects) Reset() {
- *x = Projects{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[78]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Projects) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Projects) ProtoMessage() {}
-
-func (x *Projects) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[78]
- 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 Projects.ProtoReflect.Descriptor instead.
+func (m *Projects) Reset() { *m = Projects{} }
+func (m *Projects) String() string { return proto.CompactTextString(m) }
+func (*Projects) ProtoMessage() {}
func (*Projects) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{78}
+ return fileDescriptor_edc174f991dc0a25, []int{79}
}
-func (x *Projects) GetProjects() []*Project {
- if x != nil {
- return x.Projects
+func (m *Projects) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Projects.Unmarshal(m, b)
+}
+func (m *Projects) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Projects.Marshal(b, m, deterministic)
+}
+func (m *Projects) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Projects.Merge(m, src)
+}
+func (m *Projects) XXX_Size() int {
+ return xxx_messageInfo_Projects.Size(m)
+}
+func (m *Projects) XXX_DiscardUnknown() {
+ xxx_messageInfo_Projects.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Projects proto.InternalMessageInfo
+
+func (m *Projects) GetProjects() []*Project {
+ if m != nil {
+ return m.Projects
}
return nil
}
type Project struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
State ProjectState `protobuf:"varint,3,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectState" json:"state,omitempty"`
@@ -8161,1502 +6709,1325 @@ type Project struct {
Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
ProjectRoleAssertion bool `protobuf:"varint,7,opt,name=project_role_assertion,json=projectRoleAssertion,proto3" json:"project_role_assertion,omitempty"`
ProjectRoleCheck bool `protobuf:"varint,8,opt,name=project_role_check,json=projectRoleCheck,proto3" json:"project_role_check,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Project) Reset() {
- *x = Project{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[79]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Project) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Project) ProtoMessage() {}
-
-func (x *Project) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[79]
- 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 Project.ProtoReflect.Descriptor instead.
+func (m *Project) Reset() { *m = Project{} }
+func (m *Project) String() string { return proto.CompactTextString(m) }
+func (*Project) ProtoMessage() {}
func (*Project) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{79}
+ return fileDescriptor_edc174f991dc0a25, []int{80}
}
-func (x *Project) GetId() string {
- if x != nil {
- return x.Id
+func (m *Project) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Project.Unmarshal(m, b)
+}
+func (m *Project) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Project.Marshal(b, m, deterministic)
+}
+func (m *Project) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Project.Merge(m, src)
+}
+func (m *Project) XXX_Size() int {
+ return xxx_messageInfo_Project.Size(m)
+}
+func (m *Project) XXX_DiscardUnknown() {
+ xxx_messageInfo_Project.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Project proto.InternalMessageInfo
+
+func (m *Project) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *Project) GetName() string {
- if x != nil {
- return x.Name
+func (m *Project) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *Project) GetState() ProjectState {
- if x != nil {
- return x.State
+func (m *Project) GetState() ProjectState {
+ if m != nil {
+ return m.State
}
return ProjectState_PROJECTSTATE_UNSPECIFIED
}
-func (x *Project) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Project) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Project) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *Project) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *Project) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *Project) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *Project) GetProjectRoleAssertion() bool {
- if x != nil {
- return x.ProjectRoleAssertion
+func (m *Project) GetProjectRoleAssertion() bool {
+ if m != nil {
+ return m.ProjectRoleAssertion
}
return false
}
-func (x *Project) GetProjectRoleCheck() bool {
- if x != nil {
- return x.ProjectRoleCheck
+func (m *Project) GetProjectRoleCheck() bool {
+ if m != nil {
+ return m.ProjectRoleCheck
}
return false
}
type ProjectMemberRoles struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberRoles) Reset() {
- *x = ProjectMemberRoles{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[80]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberRoles) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberRoles) ProtoMessage() {}
-
-func (x *ProjectMemberRoles) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[80]
- 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 ProjectMemberRoles.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberRoles) Reset() { *m = ProjectMemberRoles{} }
+func (m *ProjectMemberRoles) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberRoles) ProtoMessage() {}
func (*ProjectMemberRoles) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{80}
+ return fileDescriptor_edc174f991dc0a25, []int{81}
}
-func (x *ProjectMemberRoles) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMemberRoles) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberRoles.Unmarshal(m, b)
+}
+func (m *ProjectMemberRoles) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberRoles.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberRoles) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberRoles.Merge(m, src)
+}
+func (m *ProjectMemberRoles) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberRoles.Size(m)
+}
+func (m *ProjectMemberRoles) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberRoles.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberRoles proto.InternalMessageInfo
+
+func (m *ProjectMemberRoles) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectMember struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMember) Reset() {
- *x = ProjectMember{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[81]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMember) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMember) ProtoMessage() {}
-
-func (x *ProjectMember) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[81]
- 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 ProjectMember.ProtoReflect.Descriptor instead.
+func (m *ProjectMember) Reset() { *m = ProjectMember{} }
+func (m *ProjectMember) String() string { return proto.CompactTextString(m) }
+func (*ProjectMember) ProtoMessage() {}
func (*ProjectMember) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{81}
+ return fileDescriptor_edc174f991dc0a25, []int{82}
}
-func (x *ProjectMember) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMember) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMember.Unmarshal(m, b)
+}
+func (m *ProjectMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMember.Marshal(b, m, deterministic)
+}
+func (m *ProjectMember) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMember.Merge(m, src)
+}
+func (m *ProjectMember) XXX_Size() int {
+ return xxx_messageInfo_ProjectMember.Size(m)
+}
+func (m *ProjectMember) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMember.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMember proto.InternalMessageInfo
+
+func (m *ProjectMember) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectMember) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMember) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *ProjectMember) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectMember) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectMember) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectMember) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectMember) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectMember) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectMemberAdd struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,3,rep,name=roles,proto3" json:"roles,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,3,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberAdd) Reset() {
- *x = ProjectMemberAdd{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[82]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberAdd) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberAdd) ProtoMessage() {}
-
-func (x *ProjectMemberAdd) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[82]
- 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 ProjectMemberAdd.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberAdd) Reset() { *m = ProjectMemberAdd{} }
+func (m *ProjectMemberAdd) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberAdd) ProtoMessage() {}
func (*ProjectMemberAdd) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{82}
+ return fileDescriptor_edc174f991dc0a25, []int{83}
}
-func (x *ProjectMemberAdd) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectMemberAdd) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberAdd.Unmarshal(m, b)
+}
+func (m *ProjectMemberAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberAdd.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberAdd) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberAdd.Merge(m, src)
+}
+func (m *ProjectMemberAdd) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberAdd.Size(m)
+}
+func (m *ProjectMemberAdd) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberAdd.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberAdd proto.InternalMessageInfo
+
+func (m *ProjectMemberAdd) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectMemberAdd) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMemberAdd) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectMemberAdd) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMemberAdd) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectMemberChange struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,3,rep,name=roles,proto3" json:"roles,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,3,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberChange) Reset() {
- *x = ProjectMemberChange{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[83]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberChange) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberChange) ProtoMessage() {}
-
-func (x *ProjectMemberChange) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[83]
- 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 ProjectMemberChange.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberChange) Reset() { *m = ProjectMemberChange{} }
+func (m *ProjectMemberChange) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberChange) ProtoMessage() {}
func (*ProjectMemberChange) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{83}
+ return fileDescriptor_edc174f991dc0a25, []int{84}
}
-func (x *ProjectMemberChange) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectMemberChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberChange.Unmarshal(m, b)
+}
+func (m *ProjectMemberChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberChange.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberChange.Merge(m, src)
+}
+func (m *ProjectMemberChange) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberChange.Size(m)
+}
+func (m *ProjectMemberChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberChange proto.InternalMessageInfo
+
+func (m *ProjectMemberChange) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectMemberChange) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMemberChange) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectMemberChange) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMemberChange) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectMemberRemove struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberRemove) Reset() {
- *x = ProjectMemberRemove{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[84]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberRemove) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberRemove) ProtoMessage() {}
-
-func (x *ProjectMemberRemove) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[84]
- 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 ProjectMemberRemove.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberRemove) Reset() { *m = ProjectMemberRemove{} }
+func (m *ProjectMemberRemove) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberRemove) ProtoMessage() {}
func (*ProjectMemberRemove) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{84}
+ return fileDescriptor_edc174f991dc0a25, []int{85}
}
-func (x *ProjectMemberRemove) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectMemberRemove) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberRemove.Unmarshal(m, b)
+}
+func (m *ProjectMemberRemove) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberRemove.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberRemove) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberRemove.Merge(m, src)
+}
+func (m *ProjectMemberRemove) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberRemove.Size(m)
+}
+func (m *ProjectMemberRemove) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberRemove.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberRemove proto.InternalMessageInfo
+
+func (m *ProjectMemberRemove) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectMemberRemove) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMemberRemove) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
type ProjectRoleAdd struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
- DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleAdd) Reset() {
- *x = ProjectRoleAdd{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[85]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleAdd) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleAdd) ProtoMessage() {}
-
-func (x *ProjectRoleAdd) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[85]
- 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 ProjectRoleAdd.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleAdd) Reset() { *m = ProjectRoleAdd{} }
+func (m *ProjectRoleAdd) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleAdd) ProtoMessage() {}
func (*ProjectRoleAdd) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{85}
+ return fileDescriptor_edc174f991dc0a25, []int{86}
}
-func (x *ProjectRoleAdd) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectRoleAdd) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleAdd.Unmarshal(m, b)
+}
+func (m *ProjectRoleAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleAdd.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleAdd) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleAdd.Merge(m, src)
+}
+func (m *ProjectRoleAdd) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleAdd.Size(m)
+}
+func (m *ProjectRoleAdd) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleAdd.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleAdd proto.InternalMessageInfo
+
+func (m *ProjectRoleAdd) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectRoleAdd) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRoleAdd) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
-func (x *ProjectRoleAdd) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectRoleAdd) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *ProjectRoleAdd) GetGroup() string {
- if x != nil {
- return x.Group
+func (m *ProjectRoleAdd) GetGroup() string {
+ if m != nil {
+ return m.Group
}
return ""
}
type ProjectRoleAddBulk struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- ProjectRoles []*ProjectRoleAdd `protobuf:"bytes,2,rep,name=project_roles,json=projectRoles,proto3" json:"project_roles,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectRoles []*ProjectRoleAdd `protobuf:"bytes,2,rep,name=project_roles,json=projectRoles,proto3" json:"project_roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleAddBulk) Reset() {
- *x = ProjectRoleAddBulk{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[86]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleAddBulk) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleAddBulk) ProtoMessage() {}
-
-func (x *ProjectRoleAddBulk) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[86]
- 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 ProjectRoleAddBulk.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleAddBulk) Reset() { *m = ProjectRoleAddBulk{} }
+func (m *ProjectRoleAddBulk) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleAddBulk) ProtoMessage() {}
func (*ProjectRoleAddBulk) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{86}
+ return fileDescriptor_edc174f991dc0a25, []int{87}
}
-func (x *ProjectRoleAddBulk) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectRoleAddBulk) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleAddBulk.Unmarshal(m, b)
+}
+func (m *ProjectRoleAddBulk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleAddBulk.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleAddBulk) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleAddBulk.Merge(m, src)
+}
+func (m *ProjectRoleAddBulk) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleAddBulk.Size(m)
+}
+func (m *ProjectRoleAddBulk) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleAddBulk.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleAddBulk proto.InternalMessageInfo
+
+func (m *ProjectRoleAddBulk) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectRoleAddBulk) GetProjectRoles() []*ProjectRoleAdd {
- if x != nil {
- return x.ProjectRoles
+func (m *ProjectRoleAddBulk) GetProjectRoles() []*ProjectRoleAdd {
+ if m != nil {
+ return m.ProjectRoles
}
return nil
}
type ProjectRoleChange struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
- DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ Group string `protobuf:"bytes,4,opt,name=group,proto3" json:"group,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleChange) Reset() {
- *x = ProjectRoleChange{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[87]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleChange) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleChange) ProtoMessage() {}
-
-func (x *ProjectRoleChange) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[87]
- 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 ProjectRoleChange.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleChange) Reset() { *m = ProjectRoleChange{} }
+func (m *ProjectRoleChange) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleChange) ProtoMessage() {}
func (*ProjectRoleChange) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{87}
+ return fileDescriptor_edc174f991dc0a25, []int{88}
}
-func (x *ProjectRoleChange) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectRoleChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleChange.Unmarshal(m, b)
+}
+func (m *ProjectRoleChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleChange.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleChange.Merge(m, src)
+}
+func (m *ProjectRoleChange) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleChange.Size(m)
+}
+func (m *ProjectRoleChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleChange proto.InternalMessageInfo
+
+func (m *ProjectRoleChange) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectRoleChange) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRoleChange) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
-func (x *ProjectRoleChange) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectRoleChange) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *ProjectRoleChange) GetGroup() string {
- if x != nil {
- return x.Group
+func (m *ProjectRoleChange) GetGroup() string {
+ if m != nil {
+ return m.Group
}
return ""
}
type ProjectRole struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
- DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRole) Reset() {
- *x = ProjectRole{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[88]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRole) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRole) ProtoMessage() {}
-
-func (x *ProjectRole) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[88]
- 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 ProjectRole.ProtoReflect.Descriptor instead.
+func (m *ProjectRole) Reset() { *m = ProjectRole{} }
+func (m *ProjectRole) String() string { return proto.CompactTextString(m) }
+func (*ProjectRole) ProtoMessage() {}
func (*ProjectRole) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{88}
+ return fileDescriptor_edc174f991dc0a25, []int{89}
}
-func (x *ProjectRole) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectRole) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRole.Unmarshal(m, b)
+}
+func (m *ProjectRole) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRole.Marshal(b, m, deterministic)
+}
+func (m *ProjectRole) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRole.Merge(m, src)
+}
+func (m *ProjectRole) XXX_Size() int {
+ return xxx_messageInfo_ProjectRole.Size(m)
+}
+func (m *ProjectRole) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRole.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRole proto.InternalMessageInfo
+
+func (m *ProjectRole) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectRole) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRole) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
-func (x *ProjectRole) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectRole) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *ProjectRole) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectRole) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectRole) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectRole) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectRole) GetGroup() string {
- if x != nil {
- return x.Group
+func (m *ProjectRole) GetGroup() string {
+ if m != nil {
+ return m.Group
}
return ""
}
-func (x *ProjectRole) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectRole) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectRoleView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
- DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ DisplayName string `protobuf:"bytes,3,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Group string `protobuf:"bytes,6,opt,name=group,proto3" json:"group,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleView) Reset() {
- *x = ProjectRoleView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[89]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleView) ProtoMessage() {}
-
-func (x *ProjectRoleView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[89]
- 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 ProjectRoleView.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleView) Reset() { *m = ProjectRoleView{} }
+func (m *ProjectRoleView) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleView) ProtoMessage() {}
func (*ProjectRoleView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{89}
+ return fileDescriptor_edc174f991dc0a25, []int{90}
}
-func (x *ProjectRoleView) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectRoleView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleView.Unmarshal(m, b)
+}
+func (m *ProjectRoleView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleView.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleView.Merge(m, src)
+}
+func (m *ProjectRoleView) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleView.Size(m)
+}
+func (m *ProjectRoleView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleView proto.InternalMessageInfo
+
+func (m *ProjectRoleView) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectRoleView) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRoleView) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
-func (x *ProjectRoleView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectRoleView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *ProjectRoleView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectRoleView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectRoleView) GetGroup() string {
- if x != nil {
- return x.Group
+func (m *ProjectRoleView) GetGroup() string {
+ if m != nil {
+ return m.Group
}
return ""
}
-func (x *ProjectRoleView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectRoleView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectRoleRemove struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Key string `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleRemove) Reset() {
- *x = ProjectRoleRemove{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[90]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleRemove) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleRemove) ProtoMessage() {}
-
-func (x *ProjectRoleRemove) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[90]
- 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 ProjectRoleRemove.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleRemove) Reset() { *m = ProjectRoleRemove{} }
+func (m *ProjectRoleRemove) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleRemove) ProtoMessage() {}
func (*ProjectRoleRemove) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{90}
+ return fileDescriptor_edc174f991dc0a25, []int{91}
}
-func (x *ProjectRoleRemove) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectRoleRemove) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleRemove.Unmarshal(m, b)
+}
+func (m *ProjectRoleRemove) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleRemove.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleRemove) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleRemove.Merge(m, src)
+}
+func (m *ProjectRoleRemove) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleRemove.Size(m)
+}
+func (m *ProjectRoleRemove) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleRemove.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleRemove proto.InternalMessageInfo
+
+func (m *ProjectRoleRemove) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectRoleRemove) GetKey() string {
- if x != nil {
- return x.Key
+func (m *ProjectRoleRemove) GetKey() string {
+ if m != nil {
+ return m.Key
}
return ""
}
type ProjectRoleSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectRoleView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectRoleView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleSearchResponse) Reset() {
- *x = ProjectRoleSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[91]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleSearchResponse) ProtoMessage() {}
-
-func (x *ProjectRoleSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[91]
- 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 ProjectRoleSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleSearchResponse) Reset() { *m = ProjectRoleSearchResponse{} }
+func (m *ProjectRoleSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleSearchResponse) ProtoMessage() {}
func (*ProjectRoleSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{91}
+ return fileDescriptor_edc174f991dc0a25, []int{92}
}
-func (x *ProjectRoleSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectRoleSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectRoleSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleSearchResponse.Merge(m, src)
+}
+func (m *ProjectRoleSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleSearchResponse.Size(m)
+}
+func (m *ProjectRoleSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectRoleSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectRoleSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectRoleSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectRoleSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectRoleSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectRoleSearchResponse) GetResult() []*ProjectRoleView {
- if x != nil {
- return x.Result
+func (m *ProjectRoleSearchResponse) GetResult() []*ProjectRoleView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *ProjectRoleSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *ProjectRoleSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *ProjectRoleSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *ProjectRoleSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type ProjectRoleSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectRoleSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectRoleSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleSearchRequest) Reset() {
- *x = ProjectRoleSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[92]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleSearchRequest) ProtoMessage() {}
-
-func (x *ProjectRoleSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[92]
- 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 ProjectRoleSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleSearchRequest) Reset() { *m = ProjectRoleSearchRequest{} }
+func (m *ProjectRoleSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleSearchRequest) ProtoMessage() {}
func (*ProjectRoleSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{92}
+ return fileDescriptor_edc174f991dc0a25, []int{93}
}
-func (x *ProjectRoleSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectRoleSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectRoleSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleSearchRequest.Merge(m, src)
+}
+func (m *ProjectRoleSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleSearchRequest.Size(m)
+}
+func (m *ProjectRoleSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectRoleSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectRoleSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectRoleSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectRoleSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectRoleSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectRoleSearchRequest) GetQueries() []*ProjectRoleSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectRoleSearchRequest) GetQueries() []*ProjectRoleSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectRoleSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ProjectRoleSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectRoleSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ProjectRoleSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectRoleSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectRoleSearchQuery) Reset() {
- *x = ProjectRoleSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[93]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectRoleSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectRoleSearchQuery) ProtoMessage() {}
-
-func (x *ProjectRoleSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[93]
- 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 ProjectRoleSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ProjectRoleSearchQuery) Reset() { *m = ProjectRoleSearchQuery{} }
+func (m *ProjectRoleSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ProjectRoleSearchQuery) ProtoMessage() {}
func (*ProjectRoleSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{93}
+ return fileDescriptor_edc174f991dc0a25, []int{94}
}
-func (x *ProjectRoleSearchQuery) GetKey() ProjectRoleSearchKey {
- if x != nil {
- return x.Key
+func (m *ProjectRoleSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectRoleSearchQuery.Unmarshal(m, b)
+}
+func (m *ProjectRoleSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectRoleSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ProjectRoleSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectRoleSearchQuery.Merge(m, src)
+}
+func (m *ProjectRoleSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ProjectRoleSearchQuery.Size(m)
+}
+func (m *ProjectRoleSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectRoleSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectRoleSearchQuery proto.InternalMessageInfo
+
+func (m *ProjectRoleSearchQuery) GetKey() ProjectRoleSearchKey {
+ if m != nil {
+ return m.Key
}
return ProjectRoleSearchKey_PROJECTROLESEARCHKEY_UNSPECIFIED
}
-func (x *ProjectRoleSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ProjectRoleSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ProjectRoleSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ProjectRoleSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type ProjectMemberView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
- FirstName string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- Roles []string `protobuf:"bytes,6,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,10,opt,name=sequence,proto3" json:"sequence,omitempty"`
- DisplayName string `protobuf:"bytes,11,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
+ FirstName string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ Roles []string `protobuf:"bytes,6,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,10,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ DisplayName string `protobuf:"bytes,11,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberView) Reset() {
- *x = ProjectMemberView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[94]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberView) ProtoMessage() {}
-
-func (x *ProjectMemberView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[94]
- 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 ProjectMemberView.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberView) Reset() { *m = ProjectMemberView{} }
+func (m *ProjectMemberView) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberView) ProtoMessage() {}
func (*ProjectMemberView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{94}
+ return fileDescriptor_edc174f991dc0a25, []int{95}
}
-func (x *ProjectMemberView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectMemberView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberView.Unmarshal(m, b)
+}
+func (m *ProjectMemberView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberView.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberView.Merge(m, src)
+}
+func (m *ProjectMemberView) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberView.Size(m)
+}
+func (m *ProjectMemberView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberView proto.InternalMessageInfo
+
+func (m *ProjectMemberView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectMemberView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *ProjectMemberView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *ProjectMemberView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *ProjectMemberView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *ProjectMemberView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *ProjectMemberView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *ProjectMemberView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *ProjectMemberView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *ProjectMemberView) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectMemberView) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *ProjectMemberView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectMemberView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectMemberView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectMemberView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectMemberView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectMemberView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *ProjectMemberView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectMemberView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
type ProjectMemberSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberSearchResponse) Reset() {
- *x = ProjectMemberSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[95]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberSearchResponse) ProtoMessage() {}
-
-func (x *ProjectMemberSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[95]
- 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 ProjectMemberSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberSearchResponse) Reset() { *m = ProjectMemberSearchResponse{} }
+func (m *ProjectMemberSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberSearchResponse) ProtoMessage() {}
func (*ProjectMemberSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{95}
+ return fileDescriptor_edc174f991dc0a25, []int{96}
}
-func (x *ProjectMemberSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectMemberSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectMemberSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberSearchResponse.Merge(m, src)
+}
+func (m *ProjectMemberSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberSearchResponse.Size(m)
+}
+func (m *ProjectMemberSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectMemberSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectMemberSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectMemberSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectMemberSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectMemberSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectMemberSearchResponse) GetResult() []*ProjectMemberView {
- if x != nil {
- return x.Result
+func (m *ProjectMemberSearchResponse) GetResult() []*ProjectMemberView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *ProjectMemberSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *ProjectMemberSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *ProjectMemberSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *ProjectMemberSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type ProjectMemberSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectMemberSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectMemberSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberSearchRequest) Reset() {
- *x = ProjectMemberSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[96]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberSearchRequest) ProtoMessage() {}
-
-func (x *ProjectMemberSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[96]
- 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 ProjectMemberSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberSearchRequest) Reset() { *m = ProjectMemberSearchRequest{} }
+func (m *ProjectMemberSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberSearchRequest) ProtoMessage() {}
func (*ProjectMemberSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{96}
+ return fileDescriptor_edc174f991dc0a25, []int{97}
}
-func (x *ProjectMemberSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectMemberSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectMemberSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberSearchRequest.Merge(m, src)
+}
+func (m *ProjectMemberSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberSearchRequest.Size(m)
+}
+func (m *ProjectMemberSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectMemberSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectMemberSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectMemberSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectMemberSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectMemberSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectMemberSearchRequest) GetQueries() []*ProjectMemberSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectMemberSearchRequest) GetQueries() []*ProjectMemberSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectMemberSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ProjectMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectMemberSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ProjectMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectMemberSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectMemberSearchQuery) Reset() {
- *x = ProjectMemberSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[97]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectMemberSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectMemberSearchQuery) ProtoMessage() {}
-
-func (x *ProjectMemberSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[97]
- 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 ProjectMemberSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ProjectMemberSearchQuery) Reset() { *m = ProjectMemberSearchQuery{} }
+func (m *ProjectMemberSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ProjectMemberSearchQuery) ProtoMessage() {}
func (*ProjectMemberSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{97}
+ return fileDescriptor_edc174f991dc0a25, []int{98}
}
-func (x *ProjectMemberSearchQuery) GetKey() ProjectMemberSearchKey {
- if x != nil {
- return x.Key
+func (m *ProjectMemberSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectMemberSearchQuery.Unmarshal(m, b)
+}
+func (m *ProjectMemberSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectMemberSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ProjectMemberSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectMemberSearchQuery.Merge(m, src)
+}
+func (m *ProjectMemberSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ProjectMemberSearchQuery.Size(m)
+}
+func (m *ProjectMemberSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectMemberSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectMemberSearchQuery proto.InternalMessageInfo
+
+func (m *ProjectMemberSearchQuery) GetKey() ProjectMemberSearchKey {
+ if m != nil {
+ return m.Key
}
return ProjectMemberSearchKey_PROJECTMEMBERSEARCHKEY_UNSPECIFIED
}
-func (x *ProjectMemberSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ProjectMemberSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ProjectMemberSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ProjectMemberSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type Application struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
State AppState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.AppState" json:"state,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
- // Types that are assignable to AppConfig:
+ // Types that are valid to be assigned to AppConfig:
// *Application_OidcConfig
- AppConfig isApplication_AppConfig `protobuf_oneof:"app_config"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ AppConfig isApplication_AppConfig `protobuf_oneof:"app_config"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Application) Reset() {
- *x = Application{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[98]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Application) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Application) ProtoMessage() {}
-
-func (x *Application) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[98]
- 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 Application.ProtoReflect.Descriptor instead.
+func (m *Application) Reset() { *m = Application{} }
+func (m *Application) String() string { return proto.CompactTextString(m) }
+func (*Application) ProtoMessage() {}
func (*Application) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{98}
+ return fileDescriptor_edc174f991dc0a25, []int{99}
}
-func (x *Application) GetId() string {
- if x != nil {
- return x.Id
+func (m *Application) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Application.Unmarshal(m, b)
+}
+func (m *Application) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Application.Marshal(b, m, deterministic)
+}
+func (m *Application) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Application.Merge(m, src)
+}
+func (m *Application) XXX_Size() int {
+ return xxx_messageInfo_Application.Size(m)
+}
+func (m *Application) XXX_DiscardUnknown() {
+ xxx_messageInfo_Application.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Application proto.InternalMessageInfo
+
+func (m *Application) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *Application) GetState() AppState {
- if x != nil {
- return x.State
+func (m *Application) GetState() AppState {
+ if m != nil {
+ return m.State
}
return AppState_APPSTATE_UNSPECIFIED
}
-func (x *Application) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *Application) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *Application) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Application) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Application) GetName() string {
- if x != nil {
- return x.Name
+func (m *Application) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (m *Application) GetAppConfig() isApplication_AppConfig {
- if m != nil {
- return m.AppConfig
- }
- return nil
-}
-
-func (x *Application) GetOidcConfig() *OIDCConfig {
- if x, ok := x.GetAppConfig().(*Application_OidcConfig); ok {
- return x.OidcConfig
- }
- return nil
-}
-
-func (x *Application) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
- }
- return 0
-}
-
type isApplication_AppConfig interface {
isApplication_AppConfig()
}
@@ -9667,74 +8038,90 @@ type Application_OidcConfig struct {
func (*Application_OidcConfig) isApplication_AppConfig() {}
+func (m *Application) GetAppConfig() isApplication_AppConfig {
+ if m != nil {
+ return m.AppConfig
+ }
+ return nil
+}
+
+func (m *Application) GetOidcConfig() *OIDCConfig {
+ if x, ok := m.GetAppConfig().(*Application_OidcConfig); ok {
+ return x.OidcConfig
+ }
+ return nil
+}
+
+func (m *Application) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
+ }
+ return 0
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*Application) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*Application_OidcConfig)(nil),
+ }
+}
+
type ApplicationUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
- Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationUpdate) Reset() {
- *x = ApplicationUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[99]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationUpdate) ProtoMessage() {}
-
-func (x *ApplicationUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[99]
- 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 ApplicationUpdate.ProtoReflect.Descriptor instead.
+func (m *ApplicationUpdate) Reset() { *m = ApplicationUpdate{} }
+func (m *ApplicationUpdate) String() string { return proto.CompactTextString(m) }
+func (*ApplicationUpdate) ProtoMessage() {}
func (*ApplicationUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{99}
+ return fileDescriptor_edc174f991dc0a25, []int{100}
}
-func (x *ApplicationUpdate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ApplicationUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationUpdate.Unmarshal(m, b)
+}
+func (m *ApplicationUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationUpdate.Marshal(b, m, deterministic)
+}
+func (m *ApplicationUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationUpdate.Merge(m, src)
+}
+func (m *ApplicationUpdate) XXX_Size() int {
+ return xxx_messageInfo_ApplicationUpdate.Size(m)
+}
+func (m *ApplicationUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationUpdate proto.InternalMessageInfo
+
+func (m *ApplicationUpdate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ApplicationUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *ApplicationUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ApplicationUpdate) GetName() string {
- if x != nil {
- return x.Name
+func (m *ApplicationUpdate) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
type OIDCConfig struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
RedirectUris []string `protobuf:"bytes,1,rep,name=redirect_uris,json=redirectUris,proto3" json:"redirect_uris,omitempty"`
ResponseTypes []OIDCResponseType `protobuf:"varint,2,rep,packed,name=response_types,json=responseTypes,proto3,enum=caos.zitadel.management.api.v1.OIDCResponseType" json:"response_types,omitempty"`
GrantTypes []OIDCGrantType `protobuf:"varint,3,rep,packed,name=grant_types,json=grantTypes,proto3,enum=caos.zitadel.management.api.v1.OIDCGrantType" json:"grant_types,omitempty"`
@@ -9750,150 +8137,142 @@ type OIDCConfig struct {
AccessTokenType OIDCTokenType `protobuf:"varint,13,opt,name=access_token_type,json=accessTokenType,proto3,enum=caos.zitadel.management.api.v1.OIDCTokenType" json:"access_token_type,omitempty"`
AccessTokenRoleAssertion bool `protobuf:"varint,14,opt,name=access_token_role_assertion,json=accessTokenRoleAssertion,proto3" json:"access_token_role_assertion,omitempty"`
IdTokenRoleAssertion bool `protobuf:"varint,15,opt,name=id_token_role_assertion,json=idTokenRoleAssertion,proto3" json:"id_token_role_assertion,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OIDCConfig) Reset() {
- *x = OIDCConfig{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[100]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OIDCConfig) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OIDCConfig) ProtoMessage() {}
-
-func (x *OIDCConfig) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[100]
- 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 OIDCConfig.ProtoReflect.Descriptor instead.
+func (m *OIDCConfig) Reset() { *m = OIDCConfig{} }
+func (m *OIDCConfig) String() string { return proto.CompactTextString(m) }
+func (*OIDCConfig) ProtoMessage() {}
func (*OIDCConfig) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{100}
+ return fileDescriptor_edc174f991dc0a25, []int{101}
}
-func (x *OIDCConfig) GetRedirectUris() []string {
- if x != nil {
- return x.RedirectUris
+func (m *OIDCConfig) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OIDCConfig.Unmarshal(m, b)
+}
+func (m *OIDCConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OIDCConfig.Marshal(b, m, deterministic)
+}
+func (m *OIDCConfig) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OIDCConfig.Merge(m, src)
+}
+func (m *OIDCConfig) XXX_Size() int {
+ return xxx_messageInfo_OIDCConfig.Size(m)
+}
+func (m *OIDCConfig) XXX_DiscardUnknown() {
+ xxx_messageInfo_OIDCConfig.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OIDCConfig proto.InternalMessageInfo
+
+func (m *OIDCConfig) GetRedirectUris() []string {
+ if m != nil {
+ return m.RedirectUris
}
return nil
}
-func (x *OIDCConfig) GetResponseTypes() []OIDCResponseType {
- if x != nil {
- return x.ResponseTypes
+func (m *OIDCConfig) GetResponseTypes() []OIDCResponseType {
+ if m != nil {
+ return m.ResponseTypes
}
return nil
}
-func (x *OIDCConfig) GetGrantTypes() []OIDCGrantType {
- if x != nil {
- return x.GrantTypes
+func (m *OIDCConfig) GetGrantTypes() []OIDCGrantType {
+ if m != nil {
+ return m.GrantTypes
}
return nil
}
-func (x *OIDCConfig) GetApplicationType() OIDCApplicationType {
- if x != nil {
- return x.ApplicationType
+func (m *OIDCConfig) GetApplicationType() OIDCApplicationType {
+ if m != nil {
+ return m.ApplicationType
}
return OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB
}
-func (x *OIDCConfig) GetClientId() string {
- if x != nil {
- return x.ClientId
+func (m *OIDCConfig) GetClientId() string {
+ if m != nil {
+ return m.ClientId
}
return ""
}
-func (x *OIDCConfig) GetClientSecret() string {
- if x != nil {
- return x.ClientSecret
+func (m *OIDCConfig) GetClientSecret() string {
+ if m != nil {
+ return m.ClientSecret
}
return ""
}
-func (x *OIDCConfig) GetAuthMethodType() OIDCAuthMethodType {
- if x != nil {
- return x.AuthMethodType
+func (m *OIDCConfig) GetAuthMethodType() OIDCAuthMethodType {
+ if m != nil {
+ return m.AuthMethodType
}
return OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC
}
-func (x *OIDCConfig) GetPostLogoutRedirectUris() []string {
- if x != nil {
- return x.PostLogoutRedirectUris
+func (m *OIDCConfig) GetPostLogoutRedirectUris() []string {
+ if m != nil {
+ return m.PostLogoutRedirectUris
}
return nil
}
-func (x *OIDCConfig) GetVersion() OIDCVersion {
- if x != nil {
- return x.Version
+func (m *OIDCConfig) GetVersion() OIDCVersion {
+ if m != nil {
+ return m.Version
}
return OIDCVersion_OIDCV1_0
}
-func (x *OIDCConfig) GetNoneCompliant() bool {
- if x != nil {
- return x.NoneCompliant
+func (m *OIDCConfig) GetNoneCompliant() bool {
+ if m != nil {
+ return m.NoneCompliant
}
return false
}
-func (x *OIDCConfig) GetComplianceProblems() []*message.LocalizedMessage {
- if x != nil {
- return x.ComplianceProblems
+func (m *OIDCConfig) GetComplianceProblems() []*message.LocalizedMessage {
+ if m != nil {
+ return m.ComplianceProblems
}
return nil
}
-func (x *OIDCConfig) GetDevMode() bool {
- if x != nil {
- return x.DevMode
+func (m *OIDCConfig) GetDevMode() bool {
+ if m != nil {
+ return m.DevMode
}
return false
}
-func (x *OIDCConfig) GetAccessTokenType() OIDCTokenType {
- if x != nil {
- return x.AccessTokenType
+func (m *OIDCConfig) GetAccessTokenType() OIDCTokenType {
+ if m != nil {
+ return m.AccessTokenType
}
return OIDCTokenType_OIDCTokenType_Bearer
}
-func (x *OIDCConfig) GetAccessTokenRoleAssertion() bool {
- if x != nil {
- return x.AccessTokenRoleAssertion
+func (m *OIDCConfig) GetAccessTokenRoleAssertion() bool {
+ if m != nil {
+ return m.AccessTokenRoleAssertion
}
return false
}
-func (x *OIDCConfig) GetIdTokenRoleAssertion() bool {
- if x != nil {
- return x.IdTokenRoleAssertion
+func (m *OIDCConfig) GetIdTokenRoleAssertion() bool {
+ if m != nil {
+ return m.IdTokenRoleAssertion
}
return false
}
type OIDCApplicationCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
RedirectUris []string `protobuf:"bytes,3,rep,name=redirect_uris,json=redirectUris,proto3" json:"redirect_uris,omitempty"`
@@ -9907,136 +8286,128 @@ type OIDCApplicationCreate struct {
AccessTokenType OIDCTokenType `protobuf:"varint,11,opt,name=access_token_type,json=accessTokenType,proto3,enum=caos.zitadel.management.api.v1.OIDCTokenType" json:"access_token_type,omitempty"`
AccessTokenRoleAssertion bool `protobuf:"varint,12,opt,name=access_token_role_assertion,json=accessTokenRoleAssertion,proto3" json:"access_token_role_assertion,omitempty"`
IdTokenRoleAssertion bool `protobuf:"varint,13,opt,name=id_token_role_assertion,json=idTokenRoleAssertion,proto3" json:"id_token_role_assertion,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OIDCApplicationCreate) Reset() {
- *x = OIDCApplicationCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[101]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OIDCApplicationCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OIDCApplicationCreate) ProtoMessage() {}
-
-func (x *OIDCApplicationCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[101]
- 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 OIDCApplicationCreate.ProtoReflect.Descriptor instead.
+func (m *OIDCApplicationCreate) Reset() { *m = OIDCApplicationCreate{} }
+func (m *OIDCApplicationCreate) String() string { return proto.CompactTextString(m) }
+func (*OIDCApplicationCreate) ProtoMessage() {}
func (*OIDCApplicationCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{101}
+ return fileDescriptor_edc174f991dc0a25, []int{102}
}
-func (x *OIDCApplicationCreate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *OIDCApplicationCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OIDCApplicationCreate.Unmarshal(m, b)
+}
+func (m *OIDCApplicationCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OIDCApplicationCreate.Marshal(b, m, deterministic)
+}
+func (m *OIDCApplicationCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OIDCApplicationCreate.Merge(m, src)
+}
+func (m *OIDCApplicationCreate) XXX_Size() int {
+ return xxx_messageInfo_OIDCApplicationCreate.Size(m)
+}
+func (m *OIDCApplicationCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_OIDCApplicationCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OIDCApplicationCreate proto.InternalMessageInfo
+
+func (m *OIDCApplicationCreate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *OIDCApplicationCreate) GetName() string {
- if x != nil {
- return x.Name
+func (m *OIDCApplicationCreate) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *OIDCApplicationCreate) GetRedirectUris() []string {
- if x != nil {
- return x.RedirectUris
+func (m *OIDCApplicationCreate) GetRedirectUris() []string {
+ if m != nil {
+ return m.RedirectUris
}
return nil
}
-func (x *OIDCApplicationCreate) GetResponseTypes() []OIDCResponseType {
- if x != nil {
- return x.ResponseTypes
+func (m *OIDCApplicationCreate) GetResponseTypes() []OIDCResponseType {
+ if m != nil {
+ return m.ResponseTypes
}
return nil
}
-func (x *OIDCApplicationCreate) GetGrantTypes() []OIDCGrantType {
- if x != nil {
- return x.GrantTypes
+func (m *OIDCApplicationCreate) GetGrantTypes() []OIDCGrantType {
+ if m != nil {
+ return m.GrantTypes
}
return nil
}
-func (x *OIDCApplicationCreate) GetApplicationType() OIDCApplicationType {
- if x != nil {
- return x.ApplicationType
+func (m *OIDCApplicationCreate) GetApplicationType() OIDCApplicationType {
+ if m != nil {
+ return m.ApplicationType
}
return OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB
}
-func (x *OIDCApplicationCreate) GetAuthMethodType() OIDCAuthMethodType {
- if x != nil {
- return x.AuthMethodType
+func (m *OIDCApplicationCreate) GetAuthMethodType() OIDCAuthMethodType {
+ if m != nil {
+ return m.AuthMethodType
}
return OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC
}
-func (x *OIDCApplicationCreate) GetPostLogoutRedirectUris() []string {
- if x != nil {
- return x.PostLogoutRedirectUris
+func (m *OIDCApplicationCreate) GetPostLogoutRedirectUris() []string {
+ if m != nil {
+ return m.PostLogoutRedirectUris
}
return nil
}
-func (x *OIDCApplicationCreate) GetVersion() OIDCVersion {
- if x != nil {
- return x.Version
+func (m *OIDCApplicationCreate) GetVersion() OIDCVersion {
+ if m != nil {
+ return m.Version
}
return OIDCVersion_OIDCV1_0
}
-func (x *OIDCApplicationCreate) GetDevMode() bool {
- if x != nil {
- return x.DevMode
+func (m *OIDCApplicationCreate) GetDevMode() bool {
+ if m != nil {
+ return m.DevMode
}
return false
}
-func (x *OIDCApplicationCreate) GetAccessTokenType() OIDCTokenType {
- if x != nil {
- return x.AccessTokenType
+func (m *OIDCApplicationCreate) GetAccessTokenType() OIDCTokenType {
+ if m != nil {
+ return m.AccessTokenType
}
return OIDCTokenType_OIDCTokenType_Bearer
}
-func (x *OIDCApplicationCreate) GetAccessTokenRoleAssertion() bool {
- if x != nil {
- return x.AccessTokenRoleAssertion
+func (m *OIDCApplicationCreate) GetAccessTokenRoleAssertion() bool {
+ if m != nil {
+ return m.AccessTokenRoleAssertion
}
return false
}
-func (x *OIDCApplicationCreate) GetIdTokenRoleAssertion() bool {
- if x != nil {
- return x.IdTokenRoleAssertion
+func (m *OIDCApplicationCreate) GetIdTokenRoleAssertion() bool {
+ if m != nil {
+ return m.IdTokenRoleAssertion
}
return false
}
type OIDCConfigUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
ApplicationId string `protobuf:"bytes,2,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"`
RedirectUris []string `protobuf:"bytes,3,rep,name=redirect_uris,json=redirectUris,proto3" json:"redirect_uris,omitempty"`
@@ -10049,275 +8420,234 @@ type OIDCConfigUpdate struct {
AccessTokenType OIDCTokenType `protobuf:"varint,10,opt,name=access_token_type,json=accessTokenType,proto3,enum=caos.zitadel.management.api.v1.OIDCTokenType" json:"access_token_type,omitempty"`
AccessTokenRoleAssertion bool `protobuf:"varint,11,opt,name=access_token_role_assertion,json=accessTokenRoleAssertion,proto3" json:"access_token_role_assertion,omitempty"`
IdTokenRoleAssertion bool `protobuf:"varint,12,opt,name=id_token_role_assertion,json=idTokenRoleAssertion,proto3" json:"id_token_role_assertion,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OIDCConfigUpdate) Reset() {
- *x = OIDCConfigUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[102]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OIDCConfigUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OIDCConfigUpdate) ProtoMessage() {}
-
-func (x *OIDCConfigUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[102]
- 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 OIDCConfigUpdate.ProtoReflect.Descriptor instead.
+func (m *OIDCConfigUpdate) Reset() { *m = OIDCConfigUpdate{} }
+func (m *OIDCConfigUpdate) String() string { return proto.CompactTextString(m) }
+func (*OIDCConfigUpdate) ProtoMessage() {}
func (*OIDCConfigUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{102}
+ return fileDescriptor_edc174f991dc0a25, []int{103}
}
-func (x *OIDCConfigUpdate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *OIDCConfigUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OIDCConfigUpdate.Unmarshal(m, b)
+}
+func (m *OIDCConfigUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OIDCConfigUpdate.Marshal(b, m, deterministic)
+}
+func (m *OIDCConfigUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OIDCConfigUpdate.Merge(m, src)
+}
+func (m *OIDCConfigUpdate) XXX_Size() int {
+ return xxx_messageInfo_OIDCConfigUpdate.Size(m)
+}
+func (m *OIDCConfigUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_OIDCConfigUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OIDCConfigUpdate proto.InternalMessageInfo
+
+func (m *OIDCConfigUpdate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *OIDCConfigUpdate) GetApplicationId() string {
- if x != nil {
- return x.ApplicationId
+func (m *OIDCConfigUpdate) GetApplicationId() string {
+ if m != nil {
+ return m.ApplicationId
}
return ""
}
-func (x *OIDCConfigUpdate) GetRedirectUris() []string {
- if x != nil {
- return x.RedirectUris
+func (m *OIDCConfigUpdate) GetRedirectUris() []string {
+ if m != nil {
+ return m.RedirectUris
}
return nil
}
-func (x *OIDCConfigUpdate) GetResponseTypes() []OIDCResponseType {
- if x != nil {
- return x.ResponseTypes
+func (m *OIDCConfigUpdate) GetResponseTypes() []OIDCResponseType {
+ if m != nil {
+ return m.ResponseTypes
}
return nil
}
-func (x *OIDCConfigUpdate) GetGrantTypes() []OIDCGrantType {
- if x != nil {
- return x.GrantTypes
+func (m *OIDCConfigUpdate) GetGrantTypes() []OIDCGrantType {
+ if m != nil {
+ return m.GrantTypes
}
return nil
}
-func (x *OIDCConfigUpdate) GetApplicationType() OIDCApplicationType {
- if x != nil {
- return x.ApplicationType
+func (m *OIDCConfigUpdate) GetApplicationType() OIDCApplicationType {
+ if m != nil {
+ return m.ApplicationType
}
return OIDCApplicationType_OIDCAPPLICATIONTYPE_WEB
}
-func (x *OIDCConfigUpdate) GetAuthMethodType() OIDCAuthMethodType {
- if x != nil {
- return x.AuthMethodType
+func (m *OIDCConfigUpdate) GetAuthMethodType() OIDCAuthMethodType {
+ if m != nil {
+ return m.AuthMethodType
}
return OIDCAuthMethodType_OIDCAUTHMETHODTYPE_BASIC
}
-func (x *OIDCConfigUpdate) GetPostLogoutRedirectUris() []string {
- if x != nil {
- return x.PostLogoutRedirectUris
+func (m *OIDCConfigUpdate) GetPostLogoutRedirectUris() []string {
+ if m != nil {
+ return m.PostLogoutRedirectUris
}
return nil
}
-func (x *OIDCConfigUpdate) GetDevMode() bool {
- if x != nil {
- return x.DevMode
+func (m *OIDCConfigUpdate) GetDevMode() bool {
+ if m != nil {
+ return m.DevMode
}
return false
}
-func (x *OIDCConfigUpdate) GetAccessTokenType() OIDCTokenType {
- if x != nil {
- return x.AccessTokenType
+func (m *OIDCConfigUpdate) GetAccessTokenType() OIDCTokenType {
+ if m != nil {
+ return m.AccessTokenType
}
return OIDCTokenType_OIDCTokenType_Bearer
}
-func (x *OIDCConfigUpdate) GetAccessTokenRoleAssertion() bool {
- if x != nil {
- return x.AccessTokenRoleAssertion
+func (m *OIDCConfigUpdate) GetAccessTokenRoleAssertion() bool {
+ if m != nil {
+ return m.AccessTokenRoleAssertion
}
return false
}
-func (x *OIDCConfigUpdate) GetIdTokenRoleAssertion() bool {
- if x != nil {
- return x.IdTokenRoleAssertion
+func (m *OIDCConfigUpdate) GetIdTokenRoleAssertion() bool {
+ if m != nil {
+ return m.IdTokenRoleAssertion
}
return false
}
type ClientSecret struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ClientSecret string `protobuf:"bytes,1,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
+ ClientSecret string `protobuf:"bytes,1,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ClientSecret) Reset() {
- *x = ClientSecret{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[103]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ClientSecret) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ClientSecret) ProtoMessage() {}
-
-func (x *ClientSecret) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[103]
- 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 ClientSecret.ProtoReflect.Descriptor instead.
+func (m *ClientSecret) Reset() { *m = ClientSecret{} }
+func (m *ClientSecret) String() string { return proto.CompactTextString(m) }
+func (*ClientSecret) ProtoMessage() {}
func (*ClientSecret) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{103}
+ return fileDescriptor_edc174f991dc0a25, []int{104}
}
-func (x *ClientSecret) GetClientSecret() string {
- if x != nil {
- return x.ClientSecret
+func (m *ClientSecret) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ClientSecret.Unmarshal(m, b)
+}
+func (m *ClientSecret) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ClientSecret.Marshal(b, m, deterministic)
+}
+func (m *ClientSecret) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ClientSecret.Merge(m, src)
+}
+func (m *ClientSecret) XXX_Size() int {
+ return xxx_messageInfo_ClientSecret.Size(m)
+}
+func (m *ClientSecret) XXX_DiscardUnknown() {
+ xxx_messageInfo_ClientSecret.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ClientSecret proto.InternalMessageInfo
+
+func (m *ClientSecret) GetClientSecret() string {
+ if m != nil {
+ return m.ClientSecret
}
return ""
}
type ApplicationView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
State AppState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.AppState" json:"state,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
- // Types that are assignable to AppConfig:
+ // Types that are valid to be assigned to AppConfig:
// *ApplicationView_OidcConfig
- AppConfig isApplicationView_AppConfig `protobuf_oneof:"app_config"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ AppConfig isApplicationView_AppConfig `protobuf_oneof:"app_config"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationView) Reset() {
- *x = ApplicationView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[104]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationView) ProtoMessage() {}
-
-func (x *ApplicationView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[104]
- 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 ApplicationView.ProtoReflect.Descriptor instead.
+func (m *ApplicationView) Reset() { *m = ApplicationView{} }
+func (m *ApplicationView) String() string { return proto.CompactTextString(m) }
+func (*ApplicationView) ProtoMessage() {}
func (*ApplicationView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{104}
+ return fileDescriptor_edc174f991dc0a25, []int{105}
}
-func (x *ApplicationView) GetId() string {
- if x != nil {
- return x.Id
+func (m *ApplicationView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationView.Unmarshal(m, b)
+}
+func (m *ApplicationView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationView.Marshal(b, m, deterministic)
+}
+func (m *ApplicationView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationView.Merge(m, src)
+}
+func (m *ApplicationView) XXX_Size() int {
+ return xxx_messageInfo_ApplicationView.Size(m)
+}
+func (m *ApplicationView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationView proto.InternalMessageInfo
+
+func (m *ApplicationView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ApplicationView) GetState() AppState {
- if x != nil {
- return x.State
+func (m *ApplicationView) GetState() AppState {
+ if m != nil {
+ return m.State
}
return AppState_APPSTATE_UNSPECIFIED
}
-func (x *ApplicationView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ApplicationView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ApplicationView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ApplicationView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ApplicationView) GetName() string {
- if x != nil {
- return x.Name
+func (m *ApplicationView) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (m *ApplicationView) GetAppConfig() isApplicationView_AppConfig {
- if m != nil {
- return m.AppConfig
- }
- return nil
-}
-
-func (x *ApplicationView) GetOidcConfig() *OIDCConfig {
- if x, ok := x.GetAppConfig().(*ApplicationView_OidcConfig); ok {
- return x.OidcConfig
- }
- return nil
-}
-
-func (x *ApplicationView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
- }
- return 0
-}
-
type isApplicationView_AppConfig interface {
isApplicationView_AppConfig()
}
@@ -10328,2867 +8658,2586 @@ type ApplicationView_OidcConfig struct {
func (*ApplicationView_OidcConfig) isApplicationView_AppConfig() {}
-type ApplicationSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ApplicationView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
-}
-
-func (x *ApplicationSearchResponse) Reset() {
- *x = ApplicationSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[105]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationSearchResponse) ProtoMessage() {}
-
-func (x *ApplicationSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[105]
- 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 ApplicationSearchResponse.ProtoReflect.Descriptor instead.
-func (*ApplicationSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{105}
-}
-
-func (x *ApplicationSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
- }
- return 0
-}
-
-func (x *ApplicationSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
- }
- return 0
-}
-
-func (x *ApplicationSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
- }
- return 0
-}
-
-func (x *ApplicationSearchResponse) GetResult() []*ApplicationView {
- if x != nil {
- return x.Result
+func (m *ApplicationView) GetAppConfig() isApplicationView_AppConfig {
+ if m != nil {
+ return m.AppConfig
}
return nil
}
-func (x *ApplicationSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *ApplicationView) GetOidcConfig() *OIDCConfig {
+ if x, ok := m.GetAppConfig().(*ApplicationView_OidcConfig); ok {
+ return x.OidcConfig
+ }
+ return nil
+}
+
+func (m *ApplicationView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *ApplicationSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*ApplicationView) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*ApplicationView_OidcConfig)(nil),
+ }
+}
+
+type ApplicationSearchResponse struct {
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ApplicationView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
+}
+
+func (m *ApplicationSearchResponse) Reset() { *m = ApplicationSearchResponse{} }
+func (m *ApplicationSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ApplicationSearchResponse) ProtoMessage() {}
+func (*ApplicationSearchResponse) Descriptor() ([]byte, []int) {
+ return fileDescriptor_edc174f991dc0a25, []int{106}
+}
+
+func (m *ApplicationSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationSearchResponse.Unmarshal(m, b)
+}
+func (m *ApplicationSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ApplicationSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationSearchResponse.Merge(m, src)
+}
+func (m *ApplicationSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ApplicationSearchResponse.Size(m)
+}
+func (m *ApplicationSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationSearchResponse proto.InternalMessageInfo
+
+func (m *ApplicationSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
+ }
+ return 0
+}
+
+func (m *ApplicationSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
+ }
+ return 0
+}
+
+func (m *ApplicationSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
+ }
+ return 0
+}
+
+func (m *ApplicationSearchResponse) GetResult() []*ApplicationView {
+ if m != nil {
+ return m.Result
+ }
+ return nil
+}
+
+func (m *ApplicationSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
+ }
+ return 0
+}
+
+func (m *ApplicationSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type ApplicationSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ApplicationSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ApplicationSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationSearchRequest) Reset() {
- *x = ApplicationSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[106]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationSearchRequest) ProtoMessage() {}
-
-func (x *ApplicationSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[106]
- 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 ApplicationSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ApplicationSearchRequest) Reset() { *m = ApplicationSearchRequest{} }
+func (m *ApplicationSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ApplicationSearchRequest) ProtoMessage() {}
func (*ApplicationSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{106}
+ return fileDescriptor_edc174f991dc0a25, []int{107}
}
-func (x *ApplicationSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ApplicationSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationSearchRequest.Unmarshal(m, b)
+}
+func (m *ApplicationSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ApplicationSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationSearchRequest.Merge(m, src)
+}
+func (m *ApplicationSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ApplicationSearchRequest.Size(m)
+}
+func (m *ApplicationSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationSearchRequest proto.InternalMessageInfo
+
+func (m *ApplicationSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ApplicationSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ApplicationSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ApplicationSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ApplicationSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ApplicationSearchRequest) GetQueries() []*ApplicationSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ApplicationSearchRequest) GetQueries() []*ApplicationSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ApplicationSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ApplicationSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ApplicationSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ApplicationSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ApplicationSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ApplicationSearchQuery) Reset() {
- *x = ApplicationSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[107]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ApplicationSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ApplicationSearchQuery) ProtoMessage() {}
-
-func (x *ApplicationSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[107]
- 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 ApplicationSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ApplicationSearchQuery) Reset() { *m = ApplicationSearchQuery{} }
+func (m *ApplicationSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ApplicationSearchQuery) ProtoMessage() {}
func (*ApplicationSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{107}
+ return fileDescriptor_edc174f991dc0a25, []int{108}
}
-func (x *ApplicationSearchQuery) GetKey() ApplicationSearchKey {
- if x != nil {
- return x.Key
+func (m *ApplicationSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ApplicationSearchQuery.Unmarshal(m, b)
+}
+func (m *ApplicationSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ApplicationSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ApplicationSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ApplicationSearchQuery.Merge(m, src)
+}
+func (m *ApplicationSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ApplicationSearchQuery.Size(m)
+}
+func (m *ApplicationSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ApplicationSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ApplicationSearchQuery proto.InternalMessageInfo
+
+func (m *ApplicationSearchQuery) GetKey() ApplicationSearchKey {
+ if m != nil {
+ return m.Key
}
return ApplicationSearchKey_APPLICATIONSERACHKEY_UNSPECIFIED
}
-func (x *ApplicationSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ApplicationSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ApplicationSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ApplicationSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type ProjectGrant struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantedOrgId string `protobuf:"bytes,3,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,4,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
- State ProjectGrantState `protobuf:"varint,5,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantedOrgId string `protobuf:"bytes,3,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,4,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ State ProjectGrantState `protobuf:"varint,5,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrant) Reset() {
- *x = ProjectGrant{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[108]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrant) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrant) ProtoMessage() {}
-
-func (x *ProjectGrant) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[108]
- 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 ProjectGrant.ProtoReflect.Descriptor instead.
+func (m *ProjectGrant) Reset() { *m = ProjectGrant{} }
+func (m *ProjectGrant) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrant) ProtoMessage() {}
func (*ProjectGrant) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{108}
+ return fileDescriptor_edc174f991dc0a25, []int{109}
}
-func (x *ProjectGrant) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrant) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrant.Unmarshal(m, b)
+}
+func (m *ProjectGrant) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrant.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrant) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrant.Merge(m, src)
+}
+func (m *ProjectGrant) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrant.Size(m)
+}
+func (m *ProjectGrant) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrant.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrant proto.InternalMessageInfo
+
+func (m *ProjectGrant) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectGrant) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrant) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrant) GetGrantedOrgId() string {
- if x != nil {
- return x.GrantedOrgId
+func (m *ProjectGrant) GetGrantedOrgId() string {
+ if m != nil {
+ return m.GrantedOrgId
}
return ""
}
-func (x *ProjectGrant) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrant) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
-func (x *ProjectGrant) GetState() ProjectGrantState {
- if x != nil {
- return x.State
+func (m *ProjectGrant) GetState() ProjectGrantState {
+ if m != nil {
+ return m.State
}
return ProjectGrantState_PROJECTGRANTSTATE_UNSPECIFIED
}
-func (x *ProjectGrant) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectGrant) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectGrant) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectGrant) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectGrant) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectGrant) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectGrantCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantedOrgId string `protobuf:"bytes,2,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantedOrgId string `protobuf:"bytes,2,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantCreate) Reset() {
- *x = ProjectGrantCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[109]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantCreate) ProtoMessage() {}
-
-func (x *ProjectGrantCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[109]
- 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 ProjectGrantCreate.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantCreate) Reset() { *m = ProjectGrantCreate{} }
+func (m *ProjectGrantCreate) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantCreate) ProtoMessage() {}
func (*ProjectGrantCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{109}
+ return fileDescriptor_edc174f991dc0a25, []int{110}
}
-func (x *ProjectGrantCreate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantCreate.Unmarshal(m, b)
+}
+func (m *ProjectGrantCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantCreate.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantCreate.Merge(m, src)
+}
+func (m *ProjectGrantCreate) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantCreate.Size(m)
+}
+func (m *ProjectGrantCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantCreate proto.InternalMessageInfo
+
+func (m *ProjectGrantCreate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantCreate) GetGrantedOrgId() string {
- if x != nil {
- return x.GrantedOrgId
+func (m *ProjectGrantCreate) GetGrantedOrgId() string {
+ if m != nil {
+ return m.GrantedOrgId
}
return ""
}
-func (x *ProjectGrantCreate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrantCreate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type ProjectGrantUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
- RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantUpdate) Reset() {
- *x = ProjectGrantUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[110]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantUpdate) ProtoMessage() {}
-
-func (x *ProjectGrantUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[110]
- 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 ProjectGrantUpdate.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantUpdate) Reset() { *m = ProjectGrantUpdate{} }
+func (m *ProjectGrantUpdate) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantUpdate) ProtoMessage() {}
func (*ProjectGrantUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{110}
+ return fileDescriptor_edc174f991dc0a25, []int{111}
}
-func (x *ProjectGrantUpdate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantUpdate.Unmarshal(m, b)
+}
+func (m *ProjectGrantUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantUpdate.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantUpdate.Merge(m, src)
+}
+func (m *ProjectGrantUpdate) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantUpdate.Size(m)
+}
+func (m *ProjectGrantUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantUpdate proto.InternalMessageInfo
+
+func (m *ProjectGrantUpdate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrantUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectGrantUpdate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrantUpdate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type ProjectGrantID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantID) Reset() {
- *x = ProjectGrantID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[111]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantID) ProtoMessage() {}
-
-func (x *ProjectGrantID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[111]
- 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 ProjectGrantID.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantID) Reset() { *m = ProjectGrantID{} }
+func (m *ProjectGrantID) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantID) ProtoMessage() {}
func (*ProjectGrantID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{111}
+ return fileDescriptor_edc174f991dc0a25, []int{112}
}
-func (x *ProjectGrantID) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantID.Unmarshal(m, b)
+}
+func (m *ProjectGrantID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantID.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantID.Merge(m, src)
+}
+func (m *ProjectGrantID) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantID.Size(m)
+}
+func (m *ProjectGrantID) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantID proto.InternalMessageInfo
+
+func (m *ProjectGrantID) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantID) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrantID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type ProjectGrantView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantedOrgId string `protobuf:"bytes,3,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
- GrantedOrgName string `protobuf:"bytes,4,opt,name=granted_org_name,json=grantedOrgName,proto3" json:"granted_org_name,omitempty"`
- RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
- State ProjectGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- ProjectName string `protobuf:"bytes,9,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
- Sequence uint64 `protobuf:"varint,10,opt,name=sequence,proto3" json:"sequence,omitempty"`
- ResourceOwner string `protobuf:"bytes,11,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
- ResourceOwnerName string `protobuf:"bytes,12,opt,name=resource_owner_name,json=resourceOwnerName,proto3" json:"resource_owner_name,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantedOrgId string `protobuf:"bytes,3,opt,name=granted_org_id,json=grantedOrgId,proto3" json:"granted_org_id,omitempty"`
+ GrantedOrgName string `protobuf:"bytes,4,opt,name=granted_org_name,json=grantedOrgName,proto3" json:"granted_org_name,omitempty"`
+ RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ State ProjectGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ ProjectName string `protobuf:"bytes,9,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
+ Sequence uint64 `protobuf:"varint,10,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ResourceOwner string `protobuf:"bytes,11,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
+ ResourceOwnerName string `protobuf:"bytes,12,opt,name=resource_owner_name,json=resourceOwnerName,proto3" json:"resource_owner_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantView) Reset() {
- *x = ProjectGrantView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[112]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantView) ProtoMessage() {}
-
-func (x *ProjectGrantView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[112]
- 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 ProjectGrantView.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantView) Reset() { *m = ProjectGrantView{} }
+func (m *ProjectGrantView) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantView) ProtoMessage() {}
func (*ProjectGrantView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{112}
+ return fileDescriptor_edc174f991dc0a25, []int{113}
}
-func (x *ProjectGrantView) GetId() string {
- if x != nil {
- return x.Id
+func (m *ProjectGrantView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantView.Unmarshal(m, b)
+}
+func (m *ProjectGrantView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantView.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantView.Merge(m, src)
+}
+func (m *ProjectGrantView) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantView.Size(m)
+}
+func (m *ProjectGrantView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantView proto.InternalMessageInfo
+
+func (m *ProjectGrantView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *ProjectGrantView) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantView) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantView) GetGrantedOrgId() string {
- if x != nil {
- return x.GrantedOrgId
+func (m *ProjectGrantView) GetGrantedOrgId() string {
+ if m != nil {
+ return m.GrantedOrgId
}
return ""
}
-func (x *ProjectGrantView) GetGrantedOrgName() string {
- if x != nil {
- return x.GrantedOrgName
+func (m *ProjectGrantView) GetGrantedOrgName() string {
+ if m != nil {
+ return m.GrantedOrgName
}
return ""
}
-func (x *ProjectGrantView) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *ProjectGrantView) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
-func (x *ProjectGrantView) GetState() ProjectGrantState {
- if x != nil {
- return x.State
+func (m *ProjectGrantView) GetState() ProjectGrantState {
+ if m != nil {
+ return m.State
}
return ProjectGrantState_PROJECTGRANTSTATE_UNSPECIFIED
}
-func (x *ProjectGrantView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectGrantView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectGrantView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectGrantView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectGrantView) GetProjectName() string {
- if x != nil {
- return x.ProjectName
+func (m *ProjectGrantView) GetProjectName() string {
+ if m != nil {
+ return m.ProjectName
}
return ""
}
-func (x *ProjectGrantView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectGrantView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *ProjectGrantView) GetResourceOwner() string {
- if x != nil {
- return x.ResourceOwner
+func (m *ProjectGrantView) GetResourceOwner() string {
+ if m != nil {
+ return m.ResourceOwner
}
return ""
}
-func (x *ProjectGrantView) GetResourceOwnerName() string {
- if x != nil {
- return x.ResourceOwnerName
+func (m *ProjectGrantView) GetResourceOwnerName() string {
+ if m != nil {
+ return m.ResourceOwnerName
}
return ""
}
type ProjectGrantSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantSearchResponse) Reset() {
- *x = ProjectGrantSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[113]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantSearchResponse) ProtoMessage() {}
-
-func (x *ProjectGrantSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[113]
- 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 ProjectGrantSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantSearchResponse) Reset() { *m = ProjectGrantSearchResponse{} }
+func (m *ProjectGrantSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantSearchResponse) ProtoMessage() {}
func (*ProjectGrantSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{113}
+ return fileDescriptor_edc174f991dc0a25, []int{114}
}
-func (x *ProjectGrantSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectGrantSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectGrantSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantSearchResponse.Merge(m, src)
+}
+func (m *ProjectGrantSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantSearchResponse.Size(m)
+}
+func (m *ProjectGrantSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectGrantSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectGrantSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectGrantSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectGrantSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectGrantSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectGrantSearchResponse) GetResult() []*ProjectGrantView {
- if x != nil {
- return x.Result
+func (m *ProjectGrantSearchResponse) GetResult() []*ProjectGrantView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *ProjectGrantSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *ProjectGrantSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *ProjectGrantSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *ProjectGrantSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type GrantedProjectSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *GrantedProjectSearchRequest) Reset() {
- *x = GrantedProjectSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[114]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *GrantedProjectSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*GrantedProjectSearchRequest) ProtoMessage() {}
-
-func (x *GrantedProjectSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[114]
- 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 GrantedProjectSearchRequest.ProtoReflect.Descriptor instead.
+func (m *GrantedProjectSearchRequest) Reset() { *m = GrantedProjectSearchRequest{} }
+func (m *GrantedProjectSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*GrantedProjectSearchRequest) ProtoMessage() {}
func (*GrantedProjectSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{114}
+ return fileDescriptor_edc174f991dc0a25, []int{115}
}
-func (x *GrantedProjectSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *GrantedProjectSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_GrantedProjectSearchRequest.Unmarshal(m, b)
+}
+func (m *GrantedProjectSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_GrantedProjectSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *GrantedProjectSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_GrantedProjectSearchRequest.Merge(m, src)
+}
+func (m *GrantedProjectSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_GrantedProjectSearchRequest.Size(m)
+}
+func (m *GrantedProjectSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_GrantedProjectSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_GrantedProjectSearchRequest proto.InternalMessageInfo
+
+func (m *GrantedProjectSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *GrantedProjectSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *GrantedProjectSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *GrantedProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
- if x != nil {
- return x.Queries
+func (m *GrantedProjectSearchRequest) GetQueries() []*ProjectSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectGrantSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectGrantSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectGrantSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantSearchRequest) Reset() {
- *x = ProjectGrantSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[115]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantSearchRequest) ProtoMessage() {}
-
-func (x *ProjectGrantSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[115]
- 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 ProjectGrantSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantSearchRequest) Reset() { *m = ProjectGrantSearchRequest{} }
+func (m *ProjectGrantSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantSearchRequest) ProtoMessage() {}
func (*ProjectGrantSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{115}
+ return fileDescriptor_edc174f991dc0a25, []int{116}
}
-func (x *ProjectGrantSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectGrantSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantSearchRequest.Merge(m, src)
+}
+func (m *ProjectGrantSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantSearchRequest.Size(m)
+}
+func (m *ProjectGrantSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectGrantSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectGrantSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectGrantSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectGrantSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectGrantSearchRequest) GetQueries() []*ProjectGrantSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectGrantSearchRequest) GetQueries() []*ProjectGrantSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectGrantSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ProjectGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ProjectGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantSearchQuery) Reset() {
- *x = ProjectGrantSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[116]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantSearchQuery) ProtoMessage() {}
-
-func (x *ProjectGrantSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[116]
- 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 ProjectGrantSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantSearchQuery) Reset() { *m = ProjectGrantSearchQuery{} }
+func (m *ProjectGrantSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantSearchQuery) ProtoMessage() {}
func (*ProjectGrantSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{116}
+ return fileDescriptor_edc174f991dc0a25, []int{117}
}
-func (x *ProjectGrantSearchQuery) GetKey() ProjectGrantSearchKey {
- if x != nil {
- return x.Key
+func (m *ProjectGrantSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantSearchQuery.Unmarshal(m, b)
+}
+func (m *ProjectGrantSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantSearchQuery.Merge(m, src)
+}
+func (m *ProjectGrantSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantSearchQuery.Size(m)
+}
+func (m *ProjectGrantSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantSearchQuery proto.InternalMessageInfo
+
+func (m *ProjectGrantSearchQuery) GetKey() ProjectGrantSearchKey {
+ if m != nil {
+ return m.Key
}
return ProjectGrantSearchKey_PROJECTGRANTSEARCHKEY_UNSPECIFIED
}
-func (x *ProjectGrantSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ProjectGrantSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ProjectGrantSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ProjectGrantSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type ProjectGrantMemberRoles struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ Roles []string `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberRoles) Reset() {
- *x = ProjectGrantMemberRoles{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[117]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberRoles) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberRoles) ProtoMessage() {}
-
-func (x *ProjectGrantMemberRoles) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[117]
- 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 ProjectGrantMemberRoles.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberRoles) Reset() { *m = ProjectGrantMemberRoles{} }
+func (m *ProjectGrantMemberRoles) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberRoles) ProtoMessage() {}
func (*ProjectGrantMemberRoles) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{117}
+ return fileDescriptor_edc174f991dc0a25, []int{118}
}
-func (x *ProjectGrantMemberRoles) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMemberRoles) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberRoles.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberRoles) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberRoles.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberRoles) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberRoles.Merge(m, src)
+}
+func (m *ProjectGrantMemberRoles) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberRoles.Size(m)
+}
+func (m *ProjectGrantMemberRoles) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberRoles.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberRoles proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberRoles) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectGrantMember struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMember) Reset() {
- *x = ProjectGrantMember{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[118]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMember) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMember) ProtoMessage() {}
-
-func (x *ProjectGrantMember) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[118]
- 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 ProjectGrantMember.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMember) Reset() { *m = ProjectGrantMember{} }
+func (m *ProjectGrantMember) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMember) ProtoMessage() {}
func (*ProjectGrantMember) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{118}
+ return fileDescriptor_edc174f991dc0a25, []int{119}
}
-func (x *ProjectGrantMember) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMember) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMember.Unmarshal(m, b)
+}
+func (m *ProjectGrantMember) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMember.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMember) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMember.Merge(m, src)
+}
+func (m *ProjectGrantMember) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMember.Size(m)
+}
+func (m *ProjectGrantMember) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMember.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMember proto.InternalMessageInfo
+
+func (m *ProjectGrantMember) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantMember) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMember) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *ProjectGrantMember) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectGrantMember) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectGrantMember) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectGrantMember) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectGrantMember) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectGrantMember) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
type ProjectGrantMemberAdd struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
- UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberAdd) Reset() {
- *x = ProjectGrantMemberAdd{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[119]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberAdd) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberAdd) ProtoMessage() {}
-
-func (x *ProjectGrantMemberAdd) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[119]
- 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 ProjectGrantMemberAdd.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberAdd) Reset() { *m = ProjectGrantMemberAdd{} }
+func (m *ProjectGrantMemberAdd) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberAdd) ProtoMessage() {}
func (*ProjectGrantMemberAdd) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{119}
+ return fileDescriptor_edc174f991dc0a25, []int{120}
}
-func (x *ProjectGrantMemberAdd) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantMemberAdd) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberAdd.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberAdd.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberAdd) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberAdd.Merge(m, src)
+}
+func (m *ProjectGrantMemberAdd) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberAdd.Size(m)
+}
+func (m *ProjectGrantMemberAdd) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberAdd.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberAdd proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberAdd) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantMemberAdd) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *ProjectGrantMemberAdd) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
-func (x *ProjectGrantMemberAdd) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMemberAdd) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantMemberAdd) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMemberAdd) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectGrantMemberChange struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
- UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Roles []string `protobuf:"bytes,4,rep,name=roles,proto3" json:"roles,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberChange) Reset() {
- *x = ProjectGrantMemberChange{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[120]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberChange) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberChange) ProtoMessage() {}
-
-func (x *ProjectGrantMemberChange) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[120]
- 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 ProjectGrantMemberChange.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberChange) Reset() { *m = ProjectGrantMemberChange{} }
+func (m *ProjectGrantMemberChange) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberChange) ProtoMessage() {}
func (*ProjectGrantMemberChange) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{120}
+ return fileDescriptor_edc174f991dc0a25, []int{121}
}
-func (x *ProjectGrantMemberChange) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantMemberChange) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberChange.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberChange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberChange.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberChange) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberChange.Merge(m, src)
+}
+func (m *ProjectGrantMemberChange) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberChange.Size(m)
+}
+func (m *ProjectGrantMemberChange) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberChange.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberChange proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberChange) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantMemberChange) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *ProjectGrantMemberChange) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
-func (x *ProjectGrantMemberChange) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMemberChange) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantMemberChange) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMemberChange) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
type ProjectGrantMemberRemove struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
- UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberRemove) Reset() {
- *x = ProjectGrantMemberRemove{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[121]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberRemove) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberRemove) ProtoMessage() {}
-
-func (x *ProjectGrantMemberRemove) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[121]
- 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 ProjectGrantMemberRemove.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberRemove) Reset() { *m = ProjectGrantMemberRemove{} }
+func (m *ProjectGrantMemberRemove) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberRemove) ProtoMessage() {}
func (*ProjectGrantMemberRemove) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{121}
+ return fileDescriptor_edc174f991dc0a25, []int{122}
}
-func (x *ProjectGrantMemberRemove) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantMemberRemove) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberRemove.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberRemove) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberRemove.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberRemove) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberRemove.Merge(m, src)
+}
+func (m *ProjectGrantMemberRemove) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberRemove.Size(m)
+}
+func (m *ProjectGrantMemberRemove) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberRemove.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberRemove proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberRemove) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantMemberRemove) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *ProjectGrantMemberRemove) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
-func (x *ProjectGrantMemberRemove) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMemberRemove) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
type ProjectGrantMemberView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
- FirstName string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- Roles []string `protobuf:"bytes,6,rep,name=roles,proto3" json:"roles,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
- DisplayName string `protobuf:"bytes,10,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ UserName string `protobuf:"bytes,2,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
+ FirstName string `protobuf:"bytes,4,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,5,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ Roles []string `protobuf:"bytes,6,rep,name=roles,proto3" json:"roles,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ DisplayName string `protobuf:"bytes,10,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberView) Reset() {
- *x = ProjectGrantMemberView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[122]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberView) ProtoMessage() {}
-
-func (x *ProjectGrantMemberView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[122]
- 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 ProjectGrantMemberView.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberView) Reset() { *m = ProjectGrantMemberView{} }
+func (m *ProjectGrantMemberView) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberView) ProtoMessage() {}
func (*ProjectGrantMemberView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{122}
+ return fileDescriptor_edc174f991dc0a25, []int{123}
}
-func (x *ProjectGrantMemberView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ProjectGrantMemberView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberView.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberView.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberView.Merge(m, src)
+}
+func (m *ProjectGrantMemberView) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberView.Size(m)
+}
+func (m *ProjectGrantMemberView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberView proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ProjectGrantMemberView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *ProjectGrantMemberView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *ProjectGrantMemberView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *ProjectGrantMemberView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *ProjectGrantMemberView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *ProjectGrantMemberView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *ProjectGrantMemberView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *ProjectGrantMemberView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *ProjectGrantMemberView) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *ProjectGrantMemberView) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *ProjectGrantMemberView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ProjectGrantMemberView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *ProjectGrantMemberView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ProjectGrantMemberView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ProjectGrantMemberView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *ProjectGrantMemberView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *ProjectGrantMemberView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *ProjectGrantMemberView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
type ProjectGrantMemberSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ProjectGrantMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ProjectGrantMemberView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberSearchResponse) Reset() {
- *x = ProjectGrantMemberSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[123]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberSearchResponse) ProtoMessage() {}
-
-func (x *ProjectGrantMemberSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[123]
- 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 ProjectGrantMemberSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberSearchResponse) Reset() { *m = ProjectGrantMemberSearchResponse{} }
+func (m *ProjectGrantMemberSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberSearchResponse) ProtoMessage() {}
func (*ProjectGrantMemberSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{123}
+ return fileDescriptor_edc174f991dc0a25, []int{124}
}
-func (x *ProjectGrantMemberSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectGrantMemberSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberSearchResponse.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberSearchResponse.Merge(m, src)
+}
+func (m *ProjectGrantMemberSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberSearchResponse.Size(m)
+}
+func (m *ProjectGrantMemberSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberSearchResponse proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectGrantMemberSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectGrantMemberSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectGrantMemberSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ProjectGrantMemberSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ProjectGrantMemberSearchResponse) GetResult() []*ProjectGrantMemberView {
- if x != nil {
- return x.Result
+func (m *ProjectGrantMemberSearchResponse) GetResult() []*ProjectGrantMemberView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *ProjectGrantMemberSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *ProjectGrantMemberSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *ProjectGrantMemberSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *ProjectGrantMemberSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type ProjectGrantMemberSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
- Offset uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*ProjectGrantMemberSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ ProjectId string `protobuf:"bytes,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ GrantId string `protobuf:"bytes,2,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ Offset uint64 `protobuf:"varint,3,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,4,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*ProjectGrantMemberSearchQuery `protobuf:"bytes,5,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberSearchRequest) Reset() {
- *x = ProjectGrantMemberSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[124]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberSearchRequest) ProtoMessage() {}
-
-func (x *ProjectGrantMemberSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[124]
- 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 ProjectGrantMemberSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberSearchRequest) Reset() { *m = ProjectGrantMemberSearchRequest{} }
+func (m *ProjectGrantMemberSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberSearchRequest) ProtoMessage() {}
func (*ProjectGrantMemberSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{124}
+ return fileDescriptor_edc174f991dc0a25, []int{125}
}
-func (x *ProjectGrantMemberSearchRequest) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *ProjectGrantMemberSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberSearchRequest.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberSearchRequest.Merge(m, src)
+}
+func (m *ProjectGrantMemberSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberSearchRequest.Size(m)
+}
+func (m *ProjectGrantMemberSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberSearchRequest proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberSearchRequest) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *ProjectGrantMemberSearchRequest) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *ProjectGrantMemberSearchRequest) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
-func (x *ProjectGrantMemberSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ProjectGrantMemberSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ProjectGrantMemberSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ProjectGrantMemberSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ProjectGrantMemberSearchRequest) GetQueries() []*ProjectGrantMemberSearchQuery {
- if x != nil {
- return x.Queries
+func (m *ProjectGrantMemberSearchRequest) GetQueries() []*ProjectGrantMemberSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type ProjectGrantMemberSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key ProjectGrantMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key ProjectGrantMemberSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ProjectGrantMemberSearchQuery) Reset() {
- *x = ProjectGrantMemberSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[125]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ProjectGrantMemberSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ProjectGrantMemberSearchQuery) ProtoMessage() {}
-
-func (x *ProjectGrantMemberSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[125]
- 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 ProjectGrantMemberSearchQuery.ProtoReflect.Descriptor instead.
+func (m *ProjectGrantMemberSearchQuery) Reset() { *m = ProjectGrantMemberSearchQuery{} }
+func (m *ProjectGrantMemberSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*ProjectGrantMemberSearchQuery) ProtoMessage() {}
func (*ProjectGrantMemberSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{125}
+ return fileDescriptor_edc174f991dc0a25, []int{126}
}
-func (x *ProjectGrantMemberSearchQuery) GetKey() ProjectGrantMemberSearchKey {
- if x != nil {
- return x.Key
+func (m *ProjectGrantMemberSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ProjectGrantMemberSearchQuery.Unmarshal(m, b)
+}
+func (m *ProjectGrantMemberSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ProjectGrantMemberSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *ProjectGrantMemberSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ProjectGrantMemberSearchQuery.Merge(m, src)
+}
+func (m *ProjectGrantMemberSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_ProjectGrantMemberSearchQuery.Size(m)
+}
+func (m *ProjectGrantMemberSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_ProjectGrantMemberSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ProjectGrantMemberSearchQuery proto.InternalMessageInfo
+
+func (m *ProjectGrantMemberSearchQuery) GetKey() ProjectGrantMemberSearchKey {
+ if m != nil {
+ return m.Key
}
return ProjectGrantMemberSearchKey_PROJECTGRANTMEMBERSEARCHKEY_UNSPECIFIED
}
-func (x *ProjectGrantMemberSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *ProjectGrantMemberSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *ProjectGrantMemberSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *ProjectGrantMemberSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type UserGrant struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
- State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
- GrantId string `protobuf:"bytes,10,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ GrantId string `protobuf:"bytes,10,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrant) Reset() {
- *x = UserGrant{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[126]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrant) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrant) ProtoMessage() {}
-
-func (x *UserGrant) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[126]
- 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 UserGrant.ProtoReflect.Descriptor instead.
+func (m *UserGrant) Reset() { *m = UserGrant{} }
+func (m *UserGrant) String() string { return proto.CompactTextString(m) }
+func (*UserGrant) ProtoMessage() {}
func (*UserGrant) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{126}
+ return fileDescriptor_edc174f991dc0a25, []int{127}
}
-func (x *UserGrant) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserGrant) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrant.Unmarshal(m, b)
+}
+func (m *UserGrant) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrant.Marshal(b, m, deterministic)
+}
+func (m *UserGrant) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrant.Merge(m, src)
+}
+func (m *UserGrant) XXX_Size() int {
+ return xxx_messageInfo_UserGrant.Size(m)
+}
+func (m *UserGrant) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrant.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrant proto.InternalMessageInfo
+
+func (m *UserGrant) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserGrant) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrant) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrant) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *UserGrant) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *UserGrant) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *UserGrant) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *UserGrant) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *UserGrant) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
-func (x *UserGrant) GetState() UserGrantState {
- if x != nil {
- return x.State
+func (m *UserGrant) GetState() UserGrantState {
+ if m != nil {
+ return m.State
}
return UserGrantState_USERGRANTSTATE_UNSPECIFIED
}
-func (x *UserGrant) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserGrant) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserGrant) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserGrant) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserGrant) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserGrant) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserGrant) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *UserGrant) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
type UserGrantCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
- GrantId string `protobuf:"bytes,4,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ ProjectId string `protobuf:"bytes,2,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ GrantId string `protobuf:"bytes,4,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantCreate) Reset() {
- *x = UserGrantCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[127]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantCreate) ProtoMessage() {}
-
-func (x *UserGrantCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[127]
- 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 UserGrantCreate.ProtoReflect.Descriptor instead.
+func (m *UserGrantCreate) Reset() { *m = UserGrantCreate{} }
+func (m *UserGrantCreate) String() string { return proto.CompactTextString(m) }
+func (*UserGrantCreate) ProtoMessage() {}
func (*UserGrantCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{127}
+ return fileDescriptor_edc174f991dc0a25, []int{128}
}
-func (x *UserGrantCreate) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrantCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantCreate.Unmarshal(m, b)
+}
+func (m *UserGrantCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantCreate.Marshal(b, m, deterministic)
+}
+func (m *UserGrantCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantCreate.Merge(m, src)
+}
+func (m *UserGrantCreate) XXX_Size() int {
+ return xxx_messageInfo_UserGrantCreate.Size(m)
+}
+func (m *UserGrantCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantCreate proto.InternalMessageInfo
+
+func (m *UserGrantCreate) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrantCreate) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *UserGrantCreate) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *UserGrantCreate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *UserGrantCreate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
-func (x *UserGrantCreate) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *UserGrantCreate) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
type UserGrantUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
- RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,3,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantUpdate) Reset() {
- *x = UserGrantUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[128]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantUpdate) ProtoMessage() {}
-
-func (x *UserGrantUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[128]
- 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 UserGrantUpdate.ProtoReflect.Descriptor instead.
+func (m *UserGrantUpdate) Reset() { *m = UserGrantUpdate{} }
+func (m *UserGrantUpdate) String() string { return proto.CompactTextString(m) }
+func (*UserGrantUpdate) ProtoMessage() {}
func (*UserGrantUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{128}
+ return fileDescriptor_edc174f991dc0a25, []int{129}
}
-func (x *UserGrantUpdate) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrantUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantUpdate.Unmarshal(m, b)
+}
+func (m *UserGrantUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantUpdate.Marshal(b, m, deterministic)
+}
+func (m *UserGrantUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantUpdate.Merge(m, src)
+}
+func (m *UserGrantUpdate) XXX_Size() int {
+ return xxx_messageInfo_UserGrantUpdate.Size(m)
+}
+func (m *UserGrantUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantUpdate proto.InternalMessageInfo
+
+func (m *UserGrantUpdate) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrantUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserGrantUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserGrantUpdate) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *UserGrantUpdate) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
type UserGrantRemoveBulk struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Ids []string `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"`
+ Ids []string `protobuf:"bytes,1,rep,name=ids,proto3" json:"ids,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantRemoveBulk) Reset() {
- *x = UserGrantRemoveBulk{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[129]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantRemoveBulk) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantRemoveBulk) ProtoMessage() {}
-
-func (x *UserGrantRemoveBulk) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[129]
- 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 UserGrantRemoveBulk.ProtoReflect.Descriptor instead.
+func (m *UserGrantRemoveBulk) Reset() { *m = UserGrantRemoveBulk{} }
+func (m *UserGrantRemoveBulk) String() string { return proto.CompactTextString(m) }
+func (*UserGrantRemoveBulk) ProtoMessage() {}
func (*UserGrantRemoveBulk) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{129}
+ return fileDescriptor_edc174f991dc0a25, []int{130}
}
-func (x *UserGrantRemoveBulk) GetIds() []string {
- if x != nil {
- return x.Ids
+func (m *UserGrantRemoveBulk) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantRemoveBulk.Unmarshal(m, b)
+}
+func (m *UserGrantRemoveBulk) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantRemoveBulk.Marshal(b, m, deterministic)
+}
+func (m *UserGrantRemoveBulk) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantRemoveBulk.Merge(m, src)
+}
+func (m *UserGrantRemoveBulk) XXX_Size() int {
+ return xxx_messageInfo_UserGrantRemoveBulk.Size(m)
+}
+func (m *UserGrantRemoveBulk) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantRemoveBulk.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantRemoveBulk proto.InternalMessageInfo
+
+func (m *UserGrantRemoveBulk) GetIds() []string {
+ if m != nil {
+ return m.Ids
}
return nil
}
type UserGrantID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantID) Reset() {
- *x = UserGrantID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[130]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantID) ProtoMessage() {}
-
-func (x *UserGrantID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[130]
- 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 UserGrantID.ProtoReflect.Descriptor instead.
+func (m *UserGrantID) Reset() { *m = UserGrantID{} }
+func (m *UserGrantID) String() string { return proto.CompactTextString(m) }
+func (*UserGrantID) ProtoMessage() {}
func (*UserGrantID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{130}
+ return fileDescriptor_edc174f991dc0a25, []int{131}
}
-func (x *UserGrantID) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrantID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantID.Unmarshal(m, b)
+}
+func (m *UserGrantID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantID.Marshal(b, m, deterministic)
+}
+func (m *UserGrantID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantID.Merge(m, src)
+}
+func (m *UserGrantID) XXX_Size() int {
+ return xxx_messageInfo_UserGrantID.Size(m)
+}
+func (m *UserGrantID) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantID proto.InternalMessageInfo
+
+func (m *UserGrantID) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrantID) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserGrantID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type UserGrantView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
- ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
- RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
- State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- UserName string `protobuf:"bytes,9,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
- FirstName string `protobuf:"bytes,10,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
- LastName string `protobuf:"bytes,11,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
- Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
- OrgName string `protobuf:"bytes,13,opt,name=org_name,json=orgName,proto3" json:"org_name,omitempty"`
- OrgDomain string `protobuf:"bytes,14,opt,name=org_domain,json=orgDomain,proto3" json:"org_domain,omitempty"`
- ProjectName string `protobuf:"bytes,15,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
- Sequence uint64 `protobuf:"varint,16,opt,name=sequence,proto3" json:"sequence,omitempty"`
- ResourceOwner string `protobuf:"bytes,17,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
- DisplayName string `protobuf:"bytes,18,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- GrantId string `protobuf:"bytes,19,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ OrgId string `protobuf:"bytes,3,opt,name=org_id,json=orgId,proto3" json:"org_id,omitempty"`
+ ProjectId string `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
+ RoleKeys []string `protobuf:"bytes,5,rep,name=role_keys,json=roleKeys,proto3" json:"role_keys,omitempty"`
+ State UserGrantState `protobuf:"varint,6,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.UserGrantState" json:"state,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ UserName string `protobuf:"bytes,9,opt,name=user_name,json=userName,proto3" json:"user_name,omitempty"`
+ FirstName string `protobuf:"bytes,10,opt,name=first_name,json=firstName,proto3" json:"first_name,omitempty"`
+ LastName string `protobuf:"bytes,11,opt,name=last_name,json=lastName,proto3" json:"last_name,omitempty"`
+ Email string `protobuf:"bytes,12,opt,name=email,proto3" json:"email,omitempty"`
+ OrgName string `protobuf:"bytes,13,opt,name=org_name,json=orgName,proto3" json:"org_name,omitempty"`
+ OrgDomain string `protobuf:"bytes,14,opt,name=org_domain,json=orgDomain,proto3" json:"org_domain,omitempty"`
+ ProjectName string `protobuf:"bytes,15,opt,name=project_name,json=projectName,proto3" json:"project_name,omitempty"`
+ Sequence uint64 `protobuf:"varint,16,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ResourceOwner string `protobuf:"bytes,17,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
+ DisplayName string `protobuf:"bytes,18,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ GrantId string `protobuf:"bytes,19,opt,name=grant_id,json=grantId,proto3" json:"grant_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantView) Reset() {
- *x = UserGrantView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[131]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantView) ProtoMessage() {}
-
-func (x *UserGrantView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[131]
- 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 UserGrantView.ProtoReflect.Descriptor instead.
+func (m *UserGrantView) Reset() { *m = UserGrantView{} }
+func (m *UserGrantView) String() string { return proto.CompactTextString(m) }
+func (*UserGrantView) ProtoMessage() {}
func (*UserGrantView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{131}
+ return fileDescriptor_edc174f991dc0a25, []int{132}
}
-func (x *UserGrantView) GetId() string {
- if x != nil {
- return x.Id
+func (m *UserGrantView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantView.Unmarshal(m, b)
+}
+func (m *UserGrantView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantView.Marshal(b, m, deterministic)
+}
+func (m *UserGrantView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantView.Merge(m, src)
+}
+func (m *UserGrantView) XXX_Size() int {
+ return xxx_messageInfo_UserGrantView.Size(m)
+}
+func (m *UserGrantView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantView proto.InternalMessageInfo
+
+func (m *UserGrantView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *UserGrantView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserGrantView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserGrantView) GetOrgId() string {
- if x != nil {
- return x.OrgId
+func (m *UserGrantView) GetOrgId() string {
+ if m != nil {
+ return m.OrgId
}
return ""
}
-func (x *UserGrantView) GetProjectId() string {
- if x != nil {
- return x.ProjectId
+func (m *UserGrantView) GetProjectId() string {
+ if m != nil {
+ return m.ProjectId
}
return ""
}
-func (x *UserGrantView) GetRoleKeys() []string {
- if x != nil {
- return x.RoleKeys
+func (m *UserGrantView) GetRoleKeys() []string {
+ if m != nil {
+ return m.RoleKeys
}
return nil
}
-func (x *UserGrantView) GetState() UserGrantState {
- if x != nil {
- return x.State
+func (m *UserGrantView) GetState() UserGrantState {
+ if m != nil {
+ return m.State
}
return UserGrantState_USERGRANTSTATE_UNSPECIFIED
}
-func (x *UserGrantView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserGrantView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserGrantView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserGrantView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserGrantView) GetUserName() string {
- if x != nil {
- return x.UserName
+func (m *UserGrantView) GetUserName() string {
+ if m != nil {
+ return m.UserName
}
return ""
}
-func (x *UserGrantView) GetFirstName() string {
- if x != nil {
- return x.FirstName
+func (m *UserGrantView) GetFirstName() string {
+ if m != nil {
+ return m.FirstName
}
return ""
}
-func (x *UserGrantView) GetLastName() string {
- if x != nil {
- return x.LastName
+func (m *UserGrantView) GetLastName() string {
+ if m != nil {
+ return m.LastName
}
return ""
}
-func (x *UserGrantView) GetEmail() string {
- if x != nil {
- return x.Email
+func (m *UserGrantView) GetEmail() string {
+ if m != nil {
+ return m.Email
}
return ""
}
-func (x *UserGrantView) GetOrgName() string {
- if x != nil {
- return x.OrgName
+func (m *UserGrantView) GetOrgName() string {
+ if m != nil {
+ return m.OrgName
}
return ""
}
-func (x *UserGrantView) GetOrgDomain() string {
- if x != nil {
- return x.OrgDomain
+func (m *UserGrantView) GetOrgDomain() string {
+ if m != nil {
+ return m.OrgDomain
}
return ""
}
-func (x *UserGrantView) GetProjectName() string {
- if x != nil {
- return x.ProjectName
+func (m *UserGrantView) GetProjectName() string {
+ if m != nil {
+ return m.ProjectName
}
return ""
}
-func (x *UserGrantView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserGrantView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserGrantView) GetResourceOwner() string {
- if x != nil {
- return x.ResourceOwner
+func (m *UserGrantView) GetResourceOwner() string {
+ if m != nil {
+ return m.ResourceOwner
}
return ""
}
-func (x *UserGrantView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UserGrantView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *UserGrantView) GetGrantId() string {
- if x != nil {
- return x.GrantId
+func (m *UserGrantView) GetGrantId() string {
+ if m != nil {
+ return m.GrantId
}
return ""
}
type UserGrantSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*UserGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*UserGrantView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantSearchResponse) Reset() {
- *x = UserGrantSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[132]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantSearchResponse) ProtoMessage() {}
-
-func (x *UserGrantSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[132]
- 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 UserGrantSearchResponse.ProtoReflect.Descriptor instead.
+func (m *UserGrantSearchResponse) Reset() { *m = UserGrantSearchResponse{} }
+func (m *UserGrantSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*UserGrantSearchResponse) ProtoMessage() {}
func (*UserGrantSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{132}
+ return fileDescriptor_edc174f991dc0a25, []int{133}
}
-func (x *UserGrantSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserGrantSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantSearchResponse.Unmarshal(m, b)
+}
+func (m *UserGrantSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *UserGrantSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantSearchResponse.Merge(m, src)
+}
+func (m *UserGrantSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_UserGrantSearchResponse.Size(m)
+}
+func (m *UserGrantSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantSearchResponse proto.InternalMessageInfo
+
+func (m *UserGrantSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserGrantSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserGrantSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserGrantSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *UserGrantSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *UserGrantSearchResponse) GetResult() []*UserGrantView {
- if x != nil {
- return x.Result
+func (m *UserGrantSearchResponse) GetResult() []*UserGrantView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *UserGrantSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *UserGrantSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *UserGrantSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *UserGrantSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type UserGrantSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*UserGrantSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*UserGrantSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantSearchRequest) Reset() {
- *x = UserGrantSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[133]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantSearchRequest) ProtoMessage() {}
-
-func (x *UserGrantSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[133]
- 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 UserGrantSearchRequest.ProtoReflect.Descriptor instead.
+func (m *UserGrantSearchRequest) Reset() { *m = UserGrantSearchRequest{} }
+func (m *UserGrantSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*UserGrantSearchRequest) ProtoMessage() {}
func (*UserGrantSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{133}
+ return fileDescriptor_edc174f991dc0a25, []int{134}
}
-func (x *UserGrantSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserGrantSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantSearchRequest.Unmarshal(m, b)
+}
+func (m *UserGrantSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *UserGrantSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantSearchRequest.Merge(m, src)
+}
+func (m *UserGrantSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_UserGrantSearchRequest.Size(m)
+}
+func (m *UserGrantSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantSearchRequest proto.InternalMessageInfo
+
+func (m *UserGrantSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserGrantSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserGrantSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
- if x != nil {
- return x.Queries
+func (m *UserGrantSearchRequest) GetQueries() []*UserGrantSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type UserGrantSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key UserGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserGrantSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key UserGrantSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserGrantSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserGrantSearchQuery) Reset() {
- *x = UserGrantSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[134]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserGrantSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserGrantSearchQuery) ProtoMessage() {}
-
-func (x *UserGrantSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[134]
- 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 UserGrantSearchQuery.ProtoReflect.Descriptor instead.
+func (m *UserGrantSearchQuery) Reset() { *m = UserGrantSearchQuery{} }
+func (m *UserGrantSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*UserGrantSearchQuery) ProtoMessage() {}
func (*UserGrantSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{134}
+ return fileDescriptor_edc174f991dc0a25, []int{135}
}
-func (x *UserGrantSearchQuery) GetKey() UserGrantSearchKey {
- if x != nil {
- return x.Key
+func (m *UserGrantSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserGrantSearchQuery.Unmarshal(m, b)
+}
+func (m *UserGrantSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserGrantSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *UserGrantSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserGrantSearchQuery.Merge(m, src)
+}
+func (m *UserGrantSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_UserGrantSearchQuery.Size(m)
+}
+func (m *UserGrantSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserGrantSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserGrantSearchQuery proto.InternalMessageInfo
+
+func (m *UserGrantSearchQuery) GetKey() UserGrantSearchKey {
+ if m != nil {
+ return m.Key
}
return UserGrantSearchKey_USERGRANTSEARCHKEY_UNSPECIFIED
}
-func (x *UserGrantSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *UserGrantSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *UserGrantSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *UserGrantSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type UserMembershipSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*UserMembershipView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*UserMembershipView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserMembershipSearchResponse) Reset() {
- *x = UserMembershipSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[135]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserMembershipSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserMembershipSearchResponse) ProtoMessage() {}
-
-func (x *UserMembershipSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[135]
- 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 UserMembershipSearchResponse.ProtoReflect.Descriptor instead.
+func (m *UserMembershipSearchResponse) Reset() { *m = UserMembershipSearchResponse{} }
+func (m *UserMembershipSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*UserMembershipSearchResponse) ProtoMessage() {}
func (*UserMembershipSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{135}
+ return fileDescriptor_edc174f991dc0a25, []int{136}
}
-func (x *UserMembershipSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserMembershipSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserMembershipSearchResponse.Unmarshal(m, b)
+}
+func (m *UserMembershipSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserMembershipSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *UserMembershipSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserMembershipSearchResponse.Merge(m, src)
+}
+func (m *UserMembershipSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_UserMembershipSearchResponse.Size(m)
+}
+func (m *UserMembershipSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserMembershipSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserMembershipSearchResponse proto.InternalMessageInfo
+
+func (m *UserMembershipSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserMembershipSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserMembershipSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserMembershipSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *UserMembershipSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *UserMembershipSearchResponse) GetResult() []*UserMembershipView {
- if x != nil {
- return x.Result
+func (m *UserMembershipSearchResponse) GetResult() []*UserMembershipView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *UserMembershipSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *UserMembershipSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *UserMembershipSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *UserMembershipSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type UserMembershipSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*UserMembershipSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Offset uint64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*UserMembershipSearchQuery `protobuf:"bytes,4,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserMembershipSearchRequest) Reset() {
- *x = UserMembershipSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[136]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserMembershipSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserMembershipSearchRequest) ProtoMessage() {}
-
-func (x *UserMembershipSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[136]
- 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 UserMembershipSearchRequest.ProtoReflect.Descriptor instead.
+func (m *UserMembershipSearchRequest) Reset() { *m = UserMembershipSearchRequest{} }
+func (m *UserMembershipSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*UserMembershipSearchRequest) ProtoMessage() {}
func (*UserMembershipSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{136}
+ return fileDescriptor_edc174f991dc0a25, []int{137}
}
-func (x *UserMembershipSearchRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserMembershipSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserMembershipSearchRequest.Unmarshal(m, b)
+}
+func (m *UserMembershipSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserMembershipSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *UserMembershipSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserMembershipSearchRequest.Merge(m, src)
+}
+func (m *UserMembershipSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_UserMembershipSearchRequest.Size(m)
+}
+func (m *UserMembershipSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserMembershipSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserMembershipSearchRequest proto.InternalMessageInfo
+
+func (m *UserMembershipSearchRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserMembershipSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *UserMembershipSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *UserMembershipSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *UserMembershipSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *UserMembershipSearchRequest) GetQueries() []*UserMembershipSearchQuery {
- if x != nil {
- return x.Queries
+func (m *UserMembershipSearchRequest) GetQueries() []*UserMembershipSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type UserMembershipSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key UserMembershipSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserMembershipSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key UserMembershipSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.UserMembershipSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserMembershipSearchQuery) Reset() {
- *x = UserMembershipSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[137]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserMembershipSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserMembershipSearchQuery) ProtoMessage() {}
-
-func (x *UserMembershipSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[137]
- 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 UserMembershipSearchQuery.ProtoReflect.Descriptor instead.
+func (m *UserMembershipSearchQuery) Reset() { *m = UserMembershipSearchQuery{} }
+func (m *UserMembershipSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*UserMembershipSearchQuery) ProtoMessage() {}
func (*UserMembershipSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{137}
+ return fileDescriptor_edc174f991dc0a25, []int{138}
}
-func (x *UserMembershipSearchQuery) GetKey() UserMembershipSearchKey {
- if x != nil {
- return x.Key
+func (m *UserMembershipSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserMembershipSearchQuery.Unmarshal(m, b)
+}
+func (m *UserMembershipSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserMembershipSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *UserMembershipSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserMembershipSearchQuery.Merge(m, src)
+}
+func (m *UserMembershipSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_UserMembershipSearchQuery.Size(m)
+}
+func (m *UserMembershipSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserMembershipSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserMembershipSearchQuery proto.InternalMessageInfo
+
+func (m *UserMembershipSearchQuery) GetKey() UserMembershipSearchKey {
+ if m != nil {
+ return m.Key
}
return UserMembershipSearchKey_USERMEMBERSHIPSEARCHKEY_UNSPECIFIED
}
-func (x *UserMembershipSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *UserMembershipSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *UserMembershipSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *UserMembershipSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type UserMembershipView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- MemberType MemberType `protobuf:"varint,2,opt,name=member_type,json=memberType,proto3,enum=caos.zitadel.management.api.v1.MemberType" json:"member_type,omitempty"`
- AggregateId string `protobuf:"bytes,3,opt,name=aggregate_id,json=aggregateId,proto3" json:"aggregate_id,omitempty"`
- ObjectId string `protobuf:"bytes,4,opt,name=object_id,json=objectId,proto3" json:"object_id,omitempty"`
- Roles []string `protobuf:"bytes,5,rep,name=roles,proto3" json:"roles,omitempty"`
- DisplayName string `protobuf:"bytes,6,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
- ResourceOwner string `protobuf:"bytes,10,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ MemberType MemberType `protobuf:"varint,2,opt,name=member_type,json=memberType,proto3,enum=caos.zitadel.management.api.v1.MemberType" json:"member_type,omitempty"`
+ AggregateId string `protobuf:"bytes,3,opt,name=aggregate_id,json=aggregateId,proto3" json:"aggregate_id,omitempty"`
+ ObjectId string `protobuf:"bytes,4,opt,name=object_id,json=objectId,proto3" json:"object_id,omitempty"`
+ Roles []string `protobuf:"bytes,5,rep,name=roles,proto3" json:"roles,omitempty"`
+ DisplayName string `protobuf:"bytes,6,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ ResourceOwner string `protobuf:"bytes,10,opt,name=resource_owner,json=resourceOwner,proto3" json:"resource_owner,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *UserMembershipView) Reset() {
- *x = UserMembershipView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[138]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *UserMembershipView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UserMembershipView) ProtoMessage() {}
-
-func (x *UserMembershipView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[138]
- 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 UserMembershipView.ProtoReflect.Descriptor instead.
+func (m *UserMembershipView) Reset() { *m = UserMembershipView{} }
+func (m *UserMembershipView) String() string { return proto.CompactTextString(m) }
+func (*UserMembershipView) ProtoMessage() {}
func (*UserMembershipView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{138}
+ return fileDescriptor_edc174f991dc0a25, []int{139}
}
-func (x *UserMembershipView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *UserMembershipView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_UserMembershipView.Unmarshal(m, b)
+}
+func (m *UserMembershipView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_UserMembershipView.Marshal(b, m, deterministic)
+}
+func (m *UserMembershipView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_UserMembershipView.Merge(m, src)
+}
+func (m *UserMembershipView) XXX_Size() int {
+ return xxx_messageInfo_UserMembershipView.Size(m)
+}
+func (m *UserMembershipView) XXX_DiscardUnknown() {
+ xxx_messageInfo_UserMembershipView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_UserMembershipView proto.InternalMessageInfo
+
+func (m *UserMembershipView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *UserMembershipView) GetMemberType() MemberType {
- if x != nil {
- return x.MemberType
+func (m *UserMembershipView) GetMemberType() MemberType {
+ if m != nil {
+ return m.MemberType
}
return MemberType_MEMBERTYPE_UNSPECIFIED
}
-func (x *UserMembershipView) GetAggregateId() string {
- if x != nil {
- return x.AggregateId
+func (m *UserMembershipView) GetAggregateId() string {
+ if m != nil {
+ return m.AggregateId
}
return ""
}
-func (x *UserMembershipView) GetObjectId() string {
- if x != nil {
- return x.ObjectId
+func (m *UserMembershipView) GetObjectId() string {
+ if m != nil {
+ return m.ObjectId
}
return ""
}
-func (x *UserMembershipView) GetRoles() []string {
- if x != nil {
- return x.Roles
+func (m *UserMembershipView) GetRoles() []string {
+ if m != nil {
+ return m.Roles
}
return nil
}
-func (x *UserMembershipView) GetDisplayName() string {
- if x != nil {
- return x.DisplayName
+func (m *UserMembershipView) GetDisplayName() string {
+ if m != nil {
+ return m.DisplayName
}
return ""
}
-func (x *UserMembershipView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *UserMembershipView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *UserMembershipView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *UserMembershipView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *UserMembershipView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *UserMembershipView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *UserMembershipView) GetResourceOwner() string {
- if x != nil {
- return x.ResourceOwner
+func (m *UserMembershipView) GetResourceOwner() string {
+ if m != nil {
+ return m.ResourceOwner
}
return ""
}
type IdpID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpID) Reset() {
- *x = IdpID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[139]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpID) ProtoMessage() {}
-
-func (x *IdpID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[139]
- 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 IdpID.ProtoReflect.Descriptor instead.
+func (m *IdpID) Reset() { *m = IdpID{} }
+func (m *IdpID) String() string { return proto.CompactTextString(m) }
+func (*IdpID) ProtoMessage() {}
func (*IdpID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{139}
+ return fileDescriptor_edc174f991dc0a25, []int{140}
}
-func (x *IdpID) GetId() string {
- if x != nil {
- return x.Id
+func (m *IdpID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpID.Unmarshal(m, b)
+}
+func (m *IdpID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpID.Marshal(b, m, deterministic)
+}
+func (m *IdpID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpID.Merge(m, src)
+}
+func (m *IdpID) XXX_Size() int {
+ return xxx_messageInfo_IdpID.Size(m)
+}
+func (m *IdpID) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpID proto.InternalMessageInfo
+
+func (m *IdpID) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
type Idp struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
State IdpState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.IdpState" json:"state,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ChangeDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
StylingType IdpStylingType `protobuf:"varint,6,opt,name=styling_type,json=stylingType,proto3,enum=caos.zitadel.management.api.v1.IdpStylingType" json:"styling_type,omitempty"`
- // Types that are assignable to IdpConfig:
+ // Types that are valid to be assigned to IdpConfig:
// *Idp_OidcConfig
- IdpConfig isIdp_IdpConfig `protobuf_oneof:"idp_config"`
- Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ IdpConfig isIdp_IdpConfig `protobuf_oneof:"idp_config"`
+ Sequence uint64 `protobuf:"varint,8,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *Idp) Reset() {
- *x = Idp{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[140]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *Idp) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Idp) ProtoMessage() {}
-
-func (x *Idp) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[140]
- 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 Idp.ProtoReflect.Descriptor instead.
+func (m *Idp) Reset() { *m = Idp{} }
+func (m *Idp) String() string { return proto.CompactTextString(m) }
+func (*Idp) ProtoMessage() {}
func (*Idp) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{140}
+ return fileDescriptor_edc174f991dc0a25, []int{141}
}
-func (x *Idp) GetId() string {
- if x != nil {
- return x.Id
+func (m *Idp) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_Idp.Unmarshal(m, b)
+}
+func (m *Idp) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_Idp.Marshal(b, m, deterministic)
+}
+func (m *Idp) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_Idp.Merge(m, src)
+}
+func (m *Idp) XXX_Size() int {
+ return xxx_messageInfo_Idp.Size(m)
+}
+func (m *Idp) XXX_DiscardUnknown() {
+ xxx_messageInfo_Idp.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_Idp proto.InternalMessageInfo
+
+func (m *Idp) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *Idp) GetState() IdpState {
- if x != nil {
- return x.State
+func (m *Idp) GetState() IdpState {
+ if m != nil {
+ return m.State
}
return IdpState_IDPCONFIGSTATE_UNSPECIFIED
}
-func (x *Idp) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *Idp) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *Idp) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *Idp) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *Idp) GetName() string {
- if x != nil {
- return x.Name
+func (m *Idp) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *Idp) GetStylingType() IdpStylingType {
- if x != nil {
- return x.StylingType
+func (m *Idp) GetStylingType() IdpStylingType {
+ if m != nil {
+ return m.StylingType
}
return IdpStylingType_IDPSTYLINGTYPE_UNSPECIFIED
}
-func (m *Idp) GetIdpConfig() isIdp_IdpConfig {
- if m != nil {
- return m.IdpConfig
- }
- return nil
-}
-
-func (x *Idp) GetOidcConfig() *OidcIdpConfig {
- if x, ok := x.GetIdpConfig().(*Idp_OidcConfig); ok {
- return x.OidcConfig
- }
- return nil
-}
-
-func (x *Idp) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
- }
- return 0
-}
-
type isIdp_IdpConfig interface {
isIdp_IdpConfig()
}
@@ -13199,161 +11248,169 @@ type Idp_OidcConfig struct {
func (*Idp_OidcConfig) isIdp_IdpConfig() {}
+func (m *Idp) GetIdpConfig() isIdp_IdpConfig {
+ if m != nil {
+ return m.IdpConfig
+ }
+ return nil
+}
+
+func (m *Idp) GetOidcConfig() *OidcIdpConfig {
+ if x, ok := m.GetIdpConfig().(*Idp_OidcConfig); ok {
+ return x.OidcConfig
+ }
+ return nil
+}
+
+func (m *Idp) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
+ }
+ return 0
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*Idp) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*Idp_OidcConfig)(nil),
+ }
+}
+
type IdpUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- StylingType IdpStylingType `protobuf:"varint,3,opt,name=styling_type,json=stylingType,proto3,enum=caos.zitadel.management.api.v1.IdpStylingType" json:"styling_type,omitempty"`
+ Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ StylingType IdpStylingType `protobuf:"varint,3,opt,name=styling_type,json=stylingType,proto3,enum=caos.zitadel.management.api.v1.IdpStylingType" json:"styling_type,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpUpdate) Reset() {
- *x = IdpUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[141]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpUpdate) ProtoMessage() {}
-
-func (x *IdpUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[141]
- 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 IdpUpdate.ProtoReflect.Descriptor instead.
+func (m *IdpUpdate) Reset() { *m = IdpUpdate{} }
+func (m *IdpUpdate) String() string { return proto.CompactTextString(m) }
+func (*IdpUpdate) ProtoMessage() {}
func (*IdpUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{141}
+ return fileDescriptor_edc174f991dc0a25, []int{142}
}
-func (x *IdpUpdate) GetId() string {
- if x != nil {
- return x.Id
+func (m *IdpUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpUpdate.Unmarshal(m, b)
+}
+func (m *IdpUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpUpdate.Marshal(b, m, deterministic)
+}
+func (m *IdpUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpUpdate.Merge(m, src)
+}
+func (m *IdpUpdate) XXX_Size() int {
+ return xxx_messageInfo_IdpUpdate.Size(m)
+}
+func (m *IdpUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpUpdate proto.InternalMessageInfo
+
+func (m *IdpUpdate) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *IdpUpdate) GetName() string {
- if x != nil {
- return x.Name
+func (m *IdpUpdate) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *IdpUpdate) GetStylingType() IdpStylingType {
- if x != nil {
- return x.StylingType
+func (m *IdpUpdate) GetStylingType() IdpStylingType {
+ if m != nil {
+ return m.StylingType
}
return IdpStylingType_IDPSTYLINGTYPE_UNSPECIFIED
}
type OidcIdpConfig struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
ClientSecret string `protobuf:"bytes,2,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
Issuer string `protobuf:"bytes,3,opt,name=issuer,proto3" json:"issuer,omitempty"`
Scopes []string `protobuf:"bytes,4,rep,name=scopes,proto3" json:"scopes,omitempty"`
IdpDisplayNameMapping OIDCMappingField `protobuf:"varint,5,opt,name=idp_display_name_mapping,json=idpDisplayNameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"idp_display_name_mapping,omitempty"`
UsernameMapping OIDCMappingField `protobuf:"varint,6,opt,name=username_mapping,json=usernameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"username_mapping,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OidcIdpConfig) Reset() {
- *x = OidcIdpConfig{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[142]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OidcIdpConfig) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OidcIdpConfig) ProtoMessage() {}
-
-func (x *OidcIdpConfig) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[142]
- 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 OidcIdpConfig.ProtoReflect.Descriptor instead.
+func (m *OidcIdpConfig) Reset() { *m = OidcIdpConfig{} }
+func (m *OidcIdpConfig) String() string { return proto.CompactTextString(m) }
+func (*OidcIdpConfig) ProtoMessage() {}
func (*OidcIdpConfig) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{142}
+ return fileDescriptor_edc174f991dc0a25, []int{143}
}
-func (x *OidcIdpConfig) GetClientId() string {
- if x != nil {
- return x.ClientId
+func (m *OidcIdpConfig) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OidcIdpConfig.Unmarshal(m, b)
+}
+func (m *OidcIdpConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OidcIdpConfig.Marshal(b, m, deterministic)
+}
+func (m *OidcIdpConfig) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OidcIdpConfig.Merge(m, src)
+}
+func (m *OidcIdpConfig) XXX_Size() int {
+ return xxx_messageInfo_OidcIdpConfig.Size(m)
+}
+func (m *OidcIdpConfig) XXX_DiscardUnknown() {
+ xxx_messageInfo_OidcIdpConfig.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OidcIdpConfig proto.InternalMessageInfo
+
+func (m *OidcIdpConfig) GetClientId() string {
+ if m != nil {
+ return m.ClientId
}
return ""
}
-func (x *OidcIdpConfig) GetClientSecret() string {
- if x != nil {
- return x.ClientSecret
+func (m *OidcIdpConfig) GetClientSecret() string {
+ if m != nil {
+ return m.ClientSecret
}
return ""
}
-func (x *OidcIdpConfig) GetIssuer() string {
- if x != nil {
- return x.Issuer
+func (m *OidcIdpConfig) GetIssuer() string {
+ if m != nil {
+ return m.Issuer
}
return ""
}
-func (x *OidcIdpConfig) GetScopes() []string {
- if x != nil {
- return x.Scopes
+func (m *OidcIdpConfig) GetScopes() []string {
+ if m != nil {
+ return m.Scopes
}
return nil
}
-func (x *OidcIdpConfig) GetIdpDisplayNameMapping() OIDCMappingField {
- if x != nil {
- return x.IdpDisplayNameMapping
+func (m *OidcIdpConfig) GetIdpDisplayNameMapping() OIDCMappingField {
+ if m != nil {
+ return m.IdpDisplayNameMapping
}
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
}
-func (x *OidcIdpConfig) GetUsernameMapping() OIDCMappingField {
- if x != nil {
- return x.UsernameMapping
+func (m *OidcIdpConfig) GetUsernameMapping() OIDCMappingField {
+ if m != nil {
+ return m.UsernameMapping
}
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
}
type OidcIdpConfigCreate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
StylingType IdpStylingType `protobuf:"varint,2,opt,name=styling_type,json=stylingType,proto3,enum=caos.zitadel.management.api.v1.IdpStylingType" json:"styling_type,omitempty"`
ClientId string `protobuf:"bytes,3,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
@@ -13362,101 +11419,93 @@ type OidcIdpConfigCreate struct {
Scopes []string `protobuf:"bytes,6,rep,name=scopes,proto3" json:"scopes,omitempty"`
IdpDisplayNameMapping OIDCMappingField `protobuf:"varint,7,opt,name=idp_display_name_mapping,json=idpDisplayNameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"idp_display_name_mapping,omitempty"`
UsernameMapping OIDCMappingField `protobuf:"varint,8,opt,name=username_mapping,json=usernameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"username_mapping,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OidcIdpConfigCreate) Reset() {
- *x = OidcIdpConfigCreate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[143]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OidcIdpConfigCreate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OidcIdpConfigCreate) ProtoMessage() {}
-
-func (x *OidcIdpConfigCreate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[143]
- 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 OidcIdpConfigCreate.ProtoReflect.Descriptor instead.
+func (m *OidcIdpConfigCreate) Reset() { *m = OidcIdpConfigCreate{} }
+func (m *OidcIdpConfigCreate) String() string { return proto.CompactTextString(m) }
+func (*OidcIdpConfigCreate) ProtoMessage() {}
func (*OidcIdpConfigCreate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{143}
+ return fileDescriptor_edc174f991dc0a25, []int{144}
}
-func (x *OidcIdpConfigCreate) GetName() string {
- if x != nil {
- return x.Name
+func (m *OidcIdpConfigCreate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OidcIdpConfigCreate.Unmarshal(m, b)
+}
+func (m *OidcIdpConfigCreate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OidcIdpConfigCreate.Marshal(b, m, deterministic)
+}
+func (m *OidcIdpConfigCreate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OidcIdpConfigCreate.Merge(m, src)
+}
+func (m *OidcIdpConfigCreate) XXX_Size() int {
+ return xxx_messageInfo_OidcIdpConfigCreate.Size(m)
+}
+func (m *OidcIdpConfigCreate) XXX_DiscardUnknown() {
+ xxx_messageInfo_OidcIdpConfigCreate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OidcIdpConfigCreate proto.InternalMessageInfo
+
+func (m *OidcIdpConfigCreate) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *OidcIdpConfigCreate) GetStylingType() IdpStylingType {
- if x != nil {
- return x.StylingType
+func (m *OidcIdpConfigCreate) GetStylingType() IdpStylingType {
+ if m != nil {
+ return m.StylingType
}
return IdpStylingType_IDPSTYLINGTYPE_UNSPECIFIED
}
-func (x *OidcIdpConfigCreate) GetClientId() string {
- if x != nil {
- return x.ClientId
+func (m *OidcIdpConfigCreate) GetClientId() string {
+ if m != nil {
+ return m.ClientId
}
return ""
}
-func (x *OidcIdpConfigCreate) GetClientSecret() string {
- if x != nil {
- return x.ClientSecret
+func (m *OidcIdpConfigCreate) GetClientSecret() string {
+ if m != nil {
+ return m.ClientSecret
}
return ""
}
-func (x *OidcIdpConfigCreate) GetIssuer() string {
- if x != nil {
- return x.Issuer
+func (m *OidcIdpConfigCreate) GetIssuer() string {
+ if m != nil {
+ return m.Issuer
}
return ""
}
-func (x *OidcIdpConfigCreate) GetScopes() []string {
- if x != nil {
- return x.Scopes
+func (m *OidcIdpConfigCreate) GetScopes() []string {
+ if m != nil {
+ return m.Scopes
}
return nil
}
-func (x *OidcIdpConfigCreate) GetIdpDisplayNameMapping() OIDCMappingField {
- if x != nil {
- return x.IdpDisplayNameMapping
+func (m *OidcIdpConfigCreate) GetIdpDisplayNameMapping() OIDCMappingField {
+ if m != nil {
+ return m.IdpDisplayNameMapping
}
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
}
-func (x *OidcIdpConfigCreate) GetUsernameMapping() OIDCMappingField {
- if x != nil {
- return x.UsernameMapping
+func (m *OidcIdpConfigCreate) GetUsernameMapping() OIDCMappingField {
+ if m != nil {
+ return m.UsernameMapping
}
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
}
type OidcIdpConfigUpdate struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
IdpId string `protobuf:"bytes,1,opt,name=idp_id,json=idpId,proto3" json:"idp_id,omitempty"`
ClientId string `protobuf:"bytes,2,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
ClientSecret string `protobuf:"bytes,3,opt,name=client_secret,json=clientSecret,proto3" json:"client_secret,omitempty"`
@@ -13464,181 +11513,165 @@ type OidcIdpConfigUpdate struct {
Scopes []string `protobuf:"bytes,5,rep,name=scopes,proto3" json:"scopes,omitempty"`
IdpDisplayNameMapping OIDCMappingField `protobuf:"varint,6,opt,name=idp_display_name_mapping,json=idpDisplayNameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"idp_display_name_mapping,omitempty"`
UsernameMapping OIDCMappingField `protobuf:"varint,7,opt,name=username_mapping,json=usernameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"username_mapping,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OidcIdpConfigUpdate) Reset() {
- *x = OidcIdpConfigUpdate{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[144]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OidcIdpConfigUpdate) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OidcIdpConfigUpdate) ProtoMessage() {}
-
-func (x *OidcIdpConfigUpdate) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[144]
- 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 OidcIdpConfigUpdate.ProtoReflect.Descriptor instead.
+func (m *OidcIdpConfigUpdate) Reset() { *m = OidcIdpConfigUpdate{} }
+func (m *OidcIdpConfigUpdate) String() string { return proto.CompactTextString(m) }
+func (*OidcIdpConfigUpdate) ProtoMessage() {}
func (*OidcIdpConfigUpdate) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{144}
+ return fileDescriptor_edc174f991dc0a25, []int{145}
}
-func (x *OidcIdpConfigUpdate) GetIdpId() string {
- if x != nil {
- return x.IdpId
+func (m *OidcIdpConfigUpdate) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OidcIdpConfigUpdate.Unmarshal(m, b)
+}
+func (m *OidcIdpConfigUpdate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OidcIdpConfigUpdate.Marshal(b, m, deterministic)
+}
+func (m *OidcIdpConfigUpdate) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OidcIdpConfigUpdate.Merge(m, src)
+}
+func (m *OidcIdpConfigUpdate) XXX_Size() int {
+ return xxx_messageInfo_OidcIdpConfigUpdate.Size(m)
+}
+func (m *OidcIdpConfigUpdate) XXX_DiscardUnknown() {
+ xxx_messageInfo_OidcIdpConfigUpdate.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OidcIdpConfigUpdate proto.InternalMessageInfo
+
+func (m *OidcIdpConfigUpdate) GetIdpId() string {
+ if m != nil {
+ return m.IdpId
}
return ""
}
-func (x *OidcIdpConfigUpdate) GetClientId() string {
- if x != nil {
- return x.ClientId
+func (m *OidcIdpConfigUpdate) GetClientId() string {
+ if m != nil {
+ return m.ClientId
}
return ""
}
-func (x *OidcIdpConfigUpdate) GetClientSecret() string {
- if x != nil {
- return x.ClientSecret
+func (m *OidcIdpConfigUpdate) GetClientSecret() string {
+ if m != nil {
+ return m.ClientSecret
}
return ""
}
-func (x *OidcIdpConfigUpdate) GetIssuer() string {
- if x != nil {
- return x.Issuer
+func (m *OidcIdpConfigUpdate) GetIssuer() string {
+ if m != nil {
+ return m.Issuer
}
return ""
}
-func (x *OidcIdpConfigUpdate) GetScopes() []string {
- if x != nil {
- return x.Scopes
+func (m *OidcIdpConfigUpdate) GetScopes() []string {
+ if m != nil {
+ return m.Scopes
}
return nil
}
-func (x *OidcIdpConfigUpdate) GetIdpDisplayNameMapping() OIDCMappingField {
- if x != nil {
- return x.IdpDisplayNameMapping
+func (m *OidcIdpConfigUpdate) GetIdpDisplayNameMapping() OIDCMappingField {
+ if m != nil {
+ return m.IdpDisplayNameMapping
}
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
}
-func (x *OidcIdpConfigUpdate) GetUsernameMapping() OIDCMappingField {
- if x != nil {
- return x.UsernameMapping
+func (m *OidcIdpConfigUpdate) GetUsernameMapping() OIDCMappingField {
+ if m != nil {
+ return m.UsernameMapping
}
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
}
type IdpSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*IdpView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*IdpView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpSearchResponse) Reset() {
- *x = IdpSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[145]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpSearchResponse) ProtoMessage() {}
-
-func (x *IdpSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[145]
- 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 IdpSearchResponse.ProtoReflect.Descriptor instead.
+func (m *IdpSearchResponse) Reset() { *m = IdpSearchResponse{} }
+func (m *IdpSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*IdpSearchResponse) ProtoMessage() {}
func (*IdpSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{145}
+ return fileDescriptor_edc174f991dc0a25, []int{146}
}
-func (x *IdpSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *IdpSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpSearchResponse.Unmarshal(m, b)
+}
+func (m *IdpSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *IdpSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpSearchResponse.Merge(m, src)
+}
+func (m *IdpSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_IdpSearchResponse.Size(m)
+}
+func (m *IdpSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpSearchResponse proto.InternalMessageInfo
+
+func (m *IdpSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *IdpSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *IdpSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *IdpSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *IdpSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *IdpSearchResponse) GetResult() []*IdpView {
- if x != nil {
- return x.Result
+func (m *IdpSearchResponse) GetResult() []*IdpView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *IdpSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *IdpSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *IdpSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *IdpSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type IdpView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
State IdpState `protobuf:"varint,2,opt,name=state,proto3,enum=caos.zitadel.management.api.v1.IdpState" json:"state,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,3,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
@@ -13646,114 +11679,89 @@ type IdpView struct {
Name string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
StylingType IdpStylingType `protobuf:"varint,6,opt,name=styling_type,json=stylingType,proto3,enum=caos.zitadel.management.api.v1.IdpStylingType" json:"styling_type,omitempty"`
ProviderType IdpProviderType `protobuf:"varint,7,opt,name=provider_type,json=providerType,proto3,enum=caos.zitadel.management.api.v1.IdpProviderType" json:"provider_type,omitempty"`
- // Types that are assignable to IdpConfigView:
+ // Types that are valid to be assigned to IdpConfigView:
// *IdpView_OidcConfig
- IdpConfigView isIdpView_IdpConfigView `protobuf_oneof:"idp_config_view"`
- Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ IdpConfigView isIdpView_IdpConfigView `protobuf_oneof:"idp_config_view"`
+ Sequence uint64 `protobuf:"varint,9,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpView) Reset() {
- *x = IdpView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[146]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpView) ProtoMessage() {}
-
-func (x *IdpView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[146]
- 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 IdpView.ProtoReflect.Descriptor instead.
+func (m *IdpView) Reset() { *m = IdpView{} }
+func (m *IdpView) String() string { return proto.CompactTextString(m) }
+func (*IdpView) ProtoMessage() {}
func (*IdpView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{146}
+ return fileDescriptor_edc174f991dc0a25, []int{147}
}
-func (x *IdpView) GetId() string {
- if x != nil {
- return x.Id
+func (m *IdpView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpView.Unmarshal(m, b)
+}
+func (m *IdpView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpView.Marshal(b, m, deterministic)
+}
+func (m *IdpView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpView.Merge(m, src)
+}
+func (m *IdpView) XXX_Size() int {
+ return xxx_messageInfo_IdpView.Size(m)
+}
+func (m *IdpView) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpView proto.InternalMessageInfo
+
+func (m *IdpView) GetId() string {
+ if m != nil {
+ return m.Id
}
return ""
}
-func (x *IdpView) GetState() IdpState {
- if x != nil {
- return x.State
+func (m *IdpView) GetState() IdpState {
+ if m != nil {
+ return m.State
}
return IdpState_IDPCONFIGSTATE_UNSPECIFIED
}
-func (x *IdpView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *IdpView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *IdpView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *IdpView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *IdpView) GetName() string {
- if x != nil {
- return x.Name
+func (m *IdpView) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *IdpView) GetStylingType() IdpStylingType {
- if x != nil {
- return x.StylingType
+func (m *IdpView) GetStylingType() IdpStylingType {
+ if m != nil {
+ return m.StylingType
}
return IdpStylingType_IDPSTYLINGTYPE_UNSPECIFIED
}
-func (x *IdpView) GetProviderType() IdpProviderType {
- if x != nil {
- return x.ProviderType
+func (m *IdpView) GetProviderType() IdpProviderType {
+ if m != nil {
+ return m.ProviderType
}
return IdpProviderType_IDPPROVIDERTYPE_UNSPECIFIED
}
-func (m *IdpView) GetIdpConfigView() isIdpView_IdpConfigView {
- if m != nil {
- return m.IdpConfigView
- }
- return nil
-}
-
-func (x *IdpView) GetOidcConfig() *OidcIdpConfigView {
- if x, ok := x.GetIdpConfigView().(*IdpView_OidcConfig); ok {
- return x.OidcConfig
- }
- return nil
-}
-
-func (x *IdpView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
- }
- return 0
-}
-
type isIdpView_IdpConfigView interface {
isIdpView_IdpConfigView()
}
@@ -13764,531 +11772,491 @@ type IdpView_OidcConfig struct {
func (*IdpView_OidcConfig) isIdpView_IdpConfigView() {}
-type OidcIdpConfigView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
+func (m *IdpView) GetIdpConfigView() isIdpView_IdpConfigView {
+ if m != nil {
+ return m.IdpConfigView
+ }
+ return nil
+}
+func (m *IdpView) GetOidcConfig() *OidcIdpConfigView {
+ if x, ok := m.GetIdpConfigView().(*IdpView_OidcConfig); ok {
+ return x.OidcConfig
+ }
+ return nil
+}
+
+func (m *IdpView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
+ }
+ return 0
+}
+
+// XXX_OneofWrappers is for the internal use of the proto package.
+func (*IdpView) XXX_OneofWrappers() []interface{} {
+ return []interface{}{
+ (*IdpView_OidcConfig)(nil),
+ }
+}
+
+type OidcIdpConfigView struct {
ClientId string `protobuf:"bytes,1,opt,name=client_id,json=clientId,proto3" json:"client_id,omitempty"`
Issuer string `protobuf:"bytes,2,opt,name=issuer,proto3" json:"issuer,omitempty"`
Scopes []string `protobuf:"bytes,3,rep,name=scopes,proto3" json:"scopes,omitempty"`
IdpDisplayNameMapping OIDCMappingField `protobuf:"varint,4,opt,name=idp_display_name_mapping,json=idpDisplayNameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"idp_display_name_mapping,omitempty"`
UsernameMapping OIDCMappingField `protobuf:"varint,5,opt,name=username_mapping,json=usernameMapping,proto3,enum=caos.zitadel.management.api.v1.OIDCMappingField" json:"username_mapping,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *OidcIdpConfigView) Reset() {
- *x = OidcIdpConfigView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[147]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *OidcIdpConfigView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*OidcIdpConfigView) ProtoMessage() {}
-
-func (x *OidcIdpConfigView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[147]
- 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 OidcIdpConfigView.ProtoReflect.Descriptor instead.
+func (m *OidcIdpConfigView) Reset() { *m = OidcIdpConfigView{} }
+func (m *OidcIdpConfigView) String() string { return proto.CompactTextString(m) }
+func (*OidcIdpConfigView) ProtoMessage() {}
func (*OidcIdpConfigView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{147}
+ return fileDescriptor_edc174f991dc0a25, []int{148}
}
-func (x *OidcIdpConfigView) GetClientId() string {
- if x != nil {
- return x.ClientId
+func (m *OidcIdpConfigView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_OidcIdpConfigView.Unmarshal(m, b)
+}
+func (m *OidcIdpConfigView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_OidcIdpConfigView.Marshal(b, m, deterministic)
+}
+func (m *OidcIdpConfigView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_OidcIdpConfigView.Merge(m, src)
+}
+func (m *OidcIdpConfigView) XXX_Size() int {
+ return xxx_messageInfo_OidcIdpConfigView.Size(m)
+}
+func (m *OidcIdpConfigView) XXX_DiscardUnknown() {
+ xxx_messageInfo_OidcIdpConfigView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_OidcIdpConfigView proto.InternalMessageInfo
+
+func (m *OidcIdpConfigView) GetClientId() string {
+ if m != nil {
+ return m.ClientId
}
return ""
}
-func (x *OidcIdpConfigView) GetIssuer() string {
- if x != nil {
- return x.Issuer
+func (m *OidcIdpConfigView) GetIssuer() string {
+ if m != nil {
+ return m.Issuer
}
return ""
}
-func (x *OidcIdpConfigView) GetScopes() []string {
- if x != nil {
- return x.Scopes
+func (m *OidcIdpConfigView) GetScopes() []string {
+ if m != nil {
+ return m.Scopes
}
return nil
}
-func (x *OidcIdpConfigView) GetIdpDisplayNameMapping() OIDCMappingField {
- if x != nil {
- return x.IdpDisplayNameMapping
+func (m *OidcIdpConfigView) GetIdpDisplayNameMapping() OIDCMappingField {
+ if m != nil {
+ return m.IdpDisplayNameMapping
}
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
}
-func (x *OidcIdpConfigView) GetUsernameMapping() OIDCMappingField {
- if x != nil {
- return x.UsernameMapping
+func (m *OidcIdpConfigView) GetUsernameMapping() OIDCMappingField {
+ if m != nil {
+ return m.UsernameMapping
}
return OIDCMappingField_OIDCMAPPINGFIELD_UNSPECIFIED
}
type IdpSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- Queries []*IdpSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Queries []*IdpSearchQuery `protobuf:"bytes,3,rep,name=queries,proto3" json:"queries,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpSearchRequest) Reset() {
- *x = IdpSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[148]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpSearchRequest) ProtoMessage() {}
-
-func (x *IdpSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[148]
- 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 IdpSearchRequest.ProtoReflect.Descriptor instead.
+func (m *IdpSearchRequest) Reset() { *m = IdpSearchRequest{} }
+func (m *IdpSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*IdpSearchRequest) ProtoMessage() {}
func (*IdpSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{148}
+ return fileDescriptor_edc174f991dc0a25, []int{149}
}
-func (x *IdpSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *IdpSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpSearchRequest.Unmarshal(m, b)
+}
+func (m *IdpSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *IdpSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpSearchRequest.Merge(m, src)
+}
+func (m *IdpSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_IdpSearchRequest.Size(m)
+}
+func (m *IdpSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpSearchRequest proto.InternalMessageInfo
+
+func (m *IdpSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *IdpSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *IdpSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *IdpSearchRequest) GetQueries() []*IdpSearchQuery {
- if x != nil {
- return x.Queries
+func (m *IdpSearchRequest) GetQueries() []*IdpSearchQuery {
+ if m != nil {
+ return m.Queries
}
return nil
}
type IdpSearchQuery struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Key IdpSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.IdpSearchKey" json:"key,omitempty"`
- Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
- Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ Key IdpSearchKey `protobuf:"varint,1,opt,name=key,proto3,enum=caos.zitadel.management.api.v1.IdpSearchKey" json:"key,omitempty"`
+ Method SearchMethod `protobuf:"varint,2,opt,name=method,proto3,enum=caos.zitadel.management.api.v1.SearchMethod" json:"method,omitempty"`
+ Value string `protobuf:"bytes,3,opt,name=value,proto3" json:"value,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpSearchQuery) Reset() {
- *x = IdpSearchQuery{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[149]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpSearchQuery) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpSearchQuery) ProtoMessage() {}
-
-func (x *IdpSearchQuery) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[149]
- 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 IdpSearchQuery.ProtoReflect.Descriptor instead.
+func (m *IdpSearchQuery) Reset() { *m = IdpSearchQuery{} }
+func (m *IdpSearchQuery) String() string { return proto.CompactTextString(m) }
+func (*IdpSearchQuery) ProtoMessage() {}
func (*IdpSearchQuery) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{149}
+ return fileDescriptor_edc174f991dc0a25, []int{150}
}
-func (x *IdpSearchQuery) GetKey() IdpSearchKey {
- if x != nil {
- return x.Key
+func (m *IdpSearchQuery) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpSearchQuery.Unmarshal(m, b)
+}
+func (m *IdpSearchQuery) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpSearchQuery.Marshal(b, m, deterministic)
+}
+func (m *IdpSearchQuery) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpSearchQuery.Merge(m, src)
+}
+func (m *IdpSearchQuery) XXX_Size() int {
+ return xxx_messageInfo_IdpSearchQuery.Size(m)
+}
+func (m *IdpSearchQuery) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpSearchQuery.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpSearchQuery proto.InternalMessageInfo
+
+func (m *IdpSearchQuery) GetKey() IdpSearchKey {
+ if m != nil {
+ return m.Key
}
return IdpSearchKey_IDPSEARCHKEY_UNSPECIFIED
}
-func (x *IdpSearchQuery) GetMethod() SearchMethod {
- if x != nil {
- return x.Method
+func (m *IdpSearchQuery) GetMethod() SearchMethod {
+ if m != nil {
+ return m.Method
}
return SearchMethod_SEARCHMETHOD_EQUALS
}
-func (x *IdpSearchQuery) GetValue() string {
- if x != nil {
- return x.Value
+func (m *IdpSearchQuery) GetValue() string {
+ if m != nil {
+ return m.Value
}
return ""
}
type LoginPolicy struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
AllowUsernamePassword bool `protobuf:"varint,1,opt,name=allow_username_password,json=allowUsernamePassword,proto3" json:"allow_username_password,omitempty"`
AllowRegister bool `protobuf:"varint,2,opt,name=allow_register,json=allowRegister,proto3" json:"allow_register,omitempty"`
AllowExternalIdp bool `protobuf:"varint,3,opt,name=allow_external_idp,json=allowExternalIdp,proto3" json:"allow_external_idp,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
ForceMfa bool `protobuf:"varint,6,opt,name=force_mfa,json=forceMfa,proto3" json:"force_mfa,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *LoginPolicy) Reset() {
- *x = LoginPolicy{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[150]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *LoginPolicy) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*LoginPolicy) ProtoMessage() {}
-
-func (x *LoginPolicy) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[150]
- 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 LoginPolicy.ProtoReflect.Descriptor instead.
+func (m *LoginPolicy) Reset() { *m = LoginPolicy{} }
+func (m *LoginPolicy) String() string { return proto.CompactTextString(m) }
+func (*LoginPolicy) ProtoMessage() {}
func (*LoginPolicy) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{150}
+ return fileDescriptor_edc174f991dc0a25, []int{151}
}
-func (x *LoginPolicy) GetAllowUsernamePassword() bool {
- if x != nil {
- return x.AllowUsernamePassword
+func (m *LoginPolicy) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_LoginPolicy.Unmarshal(m, b)
+}
+func (m *LoginPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_LoginPolicy.Marshal(b, m, deterministic)
+}
+func (m *LoginPolicy) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_LoginPolicy.Merge(m, src)
+}
+func (m *LoginPolicy) XXX_Size() int {
+ return xxx_messageInfo_LoginPolicy.Size(m)
+}
+func (m *LoginPolicy) XXX_DiscardUnknown() {
+ xxx_messageInfo_LoginPolicy.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_LoginPolicy proto.InternalMessageInfo
+
+func (m *LoginPolicy) GetAllowUsernamePassword() bool {
+ if m != nil {
+ return m.AllowUsernamePassword
}
return false
}
-func (x *LoginPolicy) GetAllowRegister() bool {
- if x != nil {
- return x.AllowRegister
+func (m *LoginPolicy) GetAllowRegister() bool {
+ if m != nil {
+ return m.AllowRegister
}
return false
}
-func (x *LoginPolicy) GetAllowExternalIdp() bool {
- if x != nil {
- return x.AllowExternalIdp
+func (m *LoginPolicy) GetAllowExternalIdp() bool {
+ if m != nil {
+ return m.AllowExternalIdp
}
return false
}
-func (x *LoginPolicy) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *LoginPolicy) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *LoginPolicy) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *LoginPolicy) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *LoginPolicy) GetForceMfa() bool {
- if x != nil {
- return x.ForceMfa
+func (m *LoginPolicy) GetForceMfa() bool {
+ if m != nil {
+ return m.ForceMfa
}
return false
}
type LoginPolicyRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- AllowUsernamePassword bool `protobuf:"varint,1,opt,name=allow_username_password,json=allowUsernamePassword,proto3" json:"allow_username_password,omitempty"`
- AllowRegister bool `protobuf:"varint,2,opt,name=allow_register,json=allowRegister,proto3" json:"allow_register,omitempty"`
- AllowExternalIdp bool `protobuf:"varint,3,opt,name=allow_external_idp,json=allowExternalIdp,proto3" json:"allow_external_idp,omitempty"`
- ForceMfa bool `protobuf:"varint,4,opt,name=force_mfa,json=forceMfa,proto3" json:"force_mfa,omitempty"`
+ AllowUsernamePassword bool `protobuf:"varint,1,opt,name=allow_username_password,json=allowUsernamePassword,proto3" json:"allow_username_password,omitempty"`
+ AllowRegister bool `protobuf:"varint,2,opt,name=allow_register,json=allowRegister,proto3" json:"allow_register,omitempty"`
+ AllowExternalIdp bool `protobuf:"varint,3,opt,name=allow_external_idp,json=allowExternalIdp,proto3" json:"allow_external_idp,omitempty"`
+ ForceMfa bool `protobuf:"varint,4,opt,name=force_mfa,json=forceMfa,proto3" json:"force_mfa,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *LoginPolicyRequest) Reset() {
- *x = LoginPolicyRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[151]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *LoginPolicyRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*LoginPolicyRequest) ProtoMessage() {}
-
-func (x *LoginPolicyRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[151]
- 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 LoginPolicyRequest.ProtoReflect.Descriptor instead.
+func (m *LoginPolicyRequest) Reset() { *m = LoginPolicyRequest{} }
+func (m *LoginPolicyRequest) String() string { return proto.CompactTextString(m) }
+func (*LoginPolicyRequest) ProtoMessage() {}
func (*LoginPolicyRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{151}
+ return fileDescriptor_edc174f991dc0a25, []int{152}
}
-func (x *LoginPolicyRequest) GetAllowUsernamePassword() bool {
- if x != nil {
- return x.AllowUsernamePassword
+func (m *LoginPolicyRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_LoginPolicyRequest.Unmarshal(m, b)
+}
+func (m *LoginPolicyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_LoginPolicyRequest.Marshal(b, m, deterministic)
+}
+func (m *LoginPolicyRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_LoginPolicyRequest.Merge(m, src)
+}
+func (m *LoginPolicyRequest) XXX_Size() int {
+ return xxx_messageInfo_LoginPolicyRequest.Size(m)
+}
+func (m *LoginPolicyRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_LoginPolicyRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_LoginPolicyRequest proto.InternalMessageInfo
+
+func (m *LoginPolicyRequest) GetAllowUsernamePassword() bool {
+ if m != nil {
+ return m.AllowUsernamePassword
}
return false
}
-func (x *LoginPolicyRequest) GetAllowRegister() bool {
- if x != nil {
- return x.AllowRegister
+func (m *LoginPolicyRequest) GetAllowRegister() bool {
+ if m != nil {
+ return m.AllowRegister
}
return false
}
-func (x *LoginPolicyRequest) GetAllowExternalIdp() bool {
- if x != nil {
- return x.AllowExternalIdp
+func (m *LoginPolicyRequest) GetAllowExternalIdp() bool {
+ if m != nil {
+ return m.AllowExternalIdp
}
return false
}
-func (x *LoginPolicyRequest) GetForceMfa() bool {
- if x != nil {
- return x.ForceMfa
+func (m *LoginPolicyRequest) GetForceMfa() bool {
+ if m != nil {
+ return m.ForceMfa
}
return false
}
type IdpProviderID struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
+ IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpProviderID) Reset() {
- *x = IdpProviderID{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[152]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpProviderID) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpProviderID) ProtoMessage() {}
-
-func (x *IdpProviderID) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[152]
- 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 IdpProviderID.ProtoReflect.Descriptor instead.
+func (m *IdpProviderID) Reset() { *m = IdpProviderID{} }
+func (m *IdpProviderID) String() string { return proto.CompactTextString(m) }
+func (*IdpProviderID) ProtoMessage() {}
func (*IdpProviderID) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{152}
+ return fileDescriptor_edc174f991dc0a25, []int{153}
}
-func (x *IdpProviderID) GetIdpConfigId() string {
- if x != nil {
- return x.IdpConfigId
+func (m *IdpProviderID) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpProviderID.Unmarshal(m, b)
+}
+func (m *IdpProviderID) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpProviderID.Marshal(b, m, deterministic)
+}
+func (m *IdpProviderID) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpProviderID.Merge(m, src)
+}
+func (m *IdpProviderID) XXX_Size() int {
+ return xxx_messageInfo_IdpProviderID.Size(m)
+}
+func (m *IdpProviderID) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpProviderID.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpProviderID proto.InternalMessageInfo
+
+func (m *IdpProviderID) GetIdpConfigId() string {
+ if m != nil {
+ return m.IdpConfigId
}
return ""
}
type IdpProviderAdd struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
- IdpProviderType IdpProviderType `protobuf:"varint,2,opt,name=idp_provider_type,json=idpProviderType,proto3,enum=caos.zitadel.management.api.v1.IdpProviderType" json:"idp_provider_type,omitempty"`
+ IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
+ IdpProviderType IdpProviderType `protobuf:"varint,2,opt,name=idp_provider_type,json=idpProviderType,proto3,enum=caos.zitadel.management.api.v1.IdpProviderType" json:"idp_provider_type,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpProviderAdd) Reset() {
- *x = IdpProviderAdd{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[153]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpProviderAdd) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpProviderAdd) ProtoMessage() {}
-
-func (x *IdpProviderAdd) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[153]
- 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 IdpProviderAdd.ProtoReflect.Descriptor instead.
+func (m *IdpProviderAdd) Reset() { *m = IdpProviderAdd{} }
+func (m *IdpProviderAdd) String() string { return proto.CompactTextString(m) }
+func (*IdpProviderAdd) ProtoMessage() {}
func (*IdpProviderAdd) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{153}
+ return fileDescriptor_edc174f991dc0a25, []int{154}
}
-func (x *IdpProviderAdd) GetIdpConfigId() string {
- if x != nil {
- return x.IdpConfigId
+func (m *IdpProviderAdd) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpProviderAdd.Unmarshal(m, b)
+}
+func (m *IdpProviderAdd) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpProviderAdd.Marshal(b, m, deterministic)
+}
+func (m *IdpProviderAdd) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpProviderAdd.Merge(m, src)
+}
+func (m *IdpProviderAdd) XXX_Size() int {
+ return xxx_messageInfo_IdpProviderAdd.Size(m)
+}
+func (m *IdpProviderAdd) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpProviderAdd.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpProviderAdd proto.InternalMessageInfo
+
+func (m *IdpProviderAdd) GetIdpConfigId() string {
+ if m != nil {
+ return m.IdpConfigId
}
return ""
}
-func (x *IdpProviderAdd) GetIdpProviderType() IdpProviderType {
- if x != nil {
- return x.IdpProviderType
+func (m *IdpProviderAdd) GetIdpProviderType() IdpProviderType {
+ if m != nil {
+ return m.IdpProviderType
}
return IdpProviderType_IDPPROVIDERTYPE_UNSPECIFIED
}
type IdpProvider struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
- IdpProvider_Type IdpProviderType `protobuf:"varint,2,opt,name=idp_provider_Type,json=idpProviderType,proto3,enum=caos.zitadel.management.api.v1.IdpProviderType" json:"idp_provider_Type,omitempty"`
+ IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
+ IdpProvider_Type IdpProviderType `protobuf:"varint,2,opt,name=idp_provider_Type,json=idpProviderType,proto3,enum=caos.zitadel.management.api.v1.IdpProviderType" json:"idp_provider_Type,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpProvider) Reset() {
- *x = IdpProvider{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[154]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpProvider) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpProvider) ProtoMessage() {}
-
-func (x *IdpProvider) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[154]
- 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 IdpProvider.ProtoReflect.Descriptor instead.
+func (m *IdpProvider) Reset() { *m = IdpProvider{} }
+func (m *IdpProvider) String() string { return proto.CompactTextString(m) }
+func (*IdpProvider) ProtoMessage() {}
func (*IdpProvider) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{154}
+ return fileDescriptor_edc174f991dc0a25, []int{155}
}
-func (x *IdpProvider) GetIdpConfigId() string {
- if x != nil {
- return x.IdpConfigId
+func (m *IdpProvider) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpProvider.Unmarshal(m, b)
+}
+func (m *IdpProvider) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpProvider.Marshal(b, m, deterministic)
+}
+func (m *IdpProvider) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpProvider.Merge(m, src)
+}
+func (m *IdpProvider) XXX_Size() int {
+ return xxx_messageInfo_IdpProvider.Size(m)
+}
+func (m *IdpProvider) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpProvider.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpProvider proto.InternalMessageInfo
+
+func (m *IdpProvider) GetIdpConfigId() string {
+ if m != nil {
+ return m.IdpConfigId
}
return ""
}
-func (x *IdpProvider) GetIdpProvider_Type() IdpProviderType {
- if x != nil {
- return x.IdpProvider_Type
+func (m *IdpProvider) GetIdpProvider_Type() IdpProviderType {
+ if m != nil {
+ return m.IdpProvider_Type
}
return IdpProviderType_IDPPROVIDERTYPE_UNSPECIFIED
}
type LoginPolicyView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
Default bool `protobuf:"varint,1,opt,name=default,proto3" json:"default,omitempty"`
AllowUsernamePassword bool `protobuf:"varint,2,opt,name=allow_username_password,json=allowUsernamePassword,proto3" json:"allow_username_password,omitempty"`
AllowRegister bool `protobuf:"varint,3,opt,name=allow_register,json=allowRegister,proto3" json:"allow_register,omitempty"`
@@ -14296,449 +12264,401 @@ type LoginPolicyView struct {
CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
ForceMfa bool `protobuf:"varint,7,opt,name=force_mfa,json=forceMfa,proto3" json:"force_mfa,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *LoginPolicyView) Reset() {
- *x = LoginPolicyView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[155]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *LoginPolicyView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*LoginPolicyView) ProtoMessage() {}
-
-func (x *LoginPolicyView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[155]
- 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 LoginPolicyView.ProtoReflect.Descriptor instead.
+func (m *LoginPolicyView) Reset() { *m = LoginPolicyView{} }
+func (m *LoginPolicyView) String() string { return proto.CompactTextString(m) }
+func (*LoginPolicyView) ProtoMessage() {}
func (*LoginPolicyView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{155}
+ return fileDescriptor_edc174f991dc0a25, []int{156}
}
-func (x *LoginPolicyView) GetDefault() bool {
- if x != nil {
- return x.Default
+func (m *LoginPolicyView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_LoginPolicyView.Unmarshal(m, b)
+}
+func (m *LoginPolicyView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_LoginPolicyView.Marshal(b, m, deterministic)
+}
+func (m *LoginPolicyView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_LoginPolicyView.Merge(m, src)
+}
+func (m *LoginPolicyView) XXX_Size() int {
+ return xxx_messageInfo_LoginPolicyView.Size(m)
+}
+func (m *LoginPolicyView) XXX_DiscardUnknown() {
+ xxx_messageInfo_LoginPolicyView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_LoginPolicyView proto.InternalMessageInfo
+
+func (m *LoginPolicyView) GetDefault() bool {
+ if m != nil {
+ return m.Default
}
return false
}
-func (x *LoginPolicyView) GetAllowUsernamePassword() bool {
- if x != nil {
- return x.AllowUsernamePassword
+func (m *LoginPolicyView) GetAllowUsernamePassword() bool {
+ if m != nil {
+ return m.AllowUsernamePassword
}
return false
}
-func (x *LoginPolicyView) GetAllowRegister() bool {
- if x != nil {
- return x.AllowRegister
+func (m *LoginPolicyView) GetAllowRegister() bool {
+ if m != nil {
+ return m.AllowRegister
}
return false
}
-func (x *LoginPolicyView) GetAllowExternalIdp() bool {
- if x != nil {
- return x.AllowExternalIdp
+func (m *LoginPolicyView) GetAllowExternalIdp() bool {
+ if m != nil {
+ return m.AllowExternalIdp
}
return false
}
-func (x *LoginPolicyView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *LoginPolicyView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *LoginPolicyView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *LoginPolicyView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-func (x *LoginPolicyView) GetForceMfa() bool {
- if x != nil {
- return x.ForceMfa
+func (m *LoginPolicyView) GetForceMfa() bool {
+ if m != nil {
+ return m.ForceMfa
}
return false
}
type IdpProviderView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
- Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
- Type IdpType `protobuf:"varint,3,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.IdpType" json:"type,omitempty"`
+ IdpConfigId string `protobuf:"bytes,1,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
+ Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
+ Type IdpType `protobuf:"varint,3,opt,name=type,proto3,enum=caos.zitadel.management.api.v1.IdpType" json:"type,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpProviderView) Reset() {
- *x = IdpProviderView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[156]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpProviderView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpProviderView) ProtoMessage() {}
-
-func (x *IdpProviderView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[156]
- 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 IdpProviderView.ProtoReflect.Descriptor instead.
+func (m *IdpProviderView) Reset() { *m = IdpProviderView{} }
+func (m *IdpProviderView) String() string { return proto.CompactTextString(m) }
+func (*IdpProviderView) ProtoMessage() {}
func (*IdpProviderView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{156}
+ return fileDescriptor_edc174f991dc0a25, []int{157}
}
-func (x *IdpProviderView) GetIdpConfigId() string {
- if x != nil {
- return x.IdpConfigId
+func (m *IdpProviderView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpProviderView.Unmarshal(m, b)
+}
+func (m *IdpProviderView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpProviderView.Marshal(b, m, deterministic)
+}
+func (m *IdpProviderView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpProviderView.Merge(m, src)
+}
+func (m *IdpProviderView) XXX_Size() int {
+ return xxx_messageInfo_IdpProviderView.Size(m)
+}
+func (m *IdpProviderView) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpProviderView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpProviderView proto.InternalMessageInfo
+
+func (m *IdpProviderView) GetIdpConfigId() string {
+ if m != nil {
+ return m.IdpConfigId
}
return ""
}
-func (x *IdpProviderView) GetName() string {
- if x != nil {
- return x.Name
+func (m *IdpProviderView) GetName() string {
+ if m != nil {
+ return m.Name
}
return ""
}
-func (x *IdpProviderView) GetType() IdpType {
- if x != nil {
- return x.Type
+func (m *IdpProviderView) GetType() IdpType {
+ if m != nil {
+ return m.Type
}
return IdpType_IDPTYPE_UNSPECIFIED
}
type IdpProviderSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*IdpProviderView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*IdpProviderView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpProviderSearchResponse) Reset() {
- *x = IdpProviderSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[157]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpProviderSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpProviderSearchResponse) ProtoMessage() {}
-
-func (x *IdpProviderSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[157]
- 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 IdpProviderSearchResponse.ProtoReflect.Descriptor instead.
+func (m *IdpProviderSearchResponse) Reset() { *m = IdpProviderSearchResponse{} }
+func (m *IdpProviderSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*IdpProviderSearchResponse) ProtoMessage() {}
func (*IdpProviderSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{157}
+ return fileDescriptor_edc174f991dc0a25, []int{158}
}
-func (x *IdpProviderSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *IdpProviderSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpProviderSearchResponse.Unmarshal(m, b)
+}
+func (m *IdpProviderSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpProviderSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *IdpProviderSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpProviderSearchResponse.Merge(m, src)
+}
+func (m *IdpProviderSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_IdpProviderSearchResponse.Size(m)
+}
+func (m *IdpProviderSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpProviderSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpProviderSearchResponse proto.InternalMessageInfo
+
+func (m *IdpProviderSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *IdpProviderSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *IdpProviderSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *IdpProviderSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *IdpProviderSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *IdpProviderSearchResponse) GetResult() []*IdpProviderView {
- if x != nil {
- return x.Result
+func (m *IdpProviderSearchResponse) GetResult() []*IdpProviderView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *IdpProviderSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *IdpProviderSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *IdpProviderSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *IdpProviderSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type IdpProviderSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *IdpProviderSearchRequest) Reset() {
- *x = IdpProviderSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[158]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *IdpProviderSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*IdpProviderSearchRequest) ProtoMessage() {}
-
-func (x *IdpProviderSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[158]
- 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 IdpProviderSearchRequest.ProtoReflect.Descriptor instead.
+func (m *IdpProviderSearchRequest) Reset() { *m = IdpProviderSearchRequest{} }
+func (m *IdpProviderSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*IdpProviderSearchRequest) ProtoMessage() {}
func (*IdpProviderSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{158}
+ return fileDescriptor_edc174f991dc0a25, []int{159}
}
-func (x *IdpProviderSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *IdpProviderSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_IdpProviderSearchRequest.Unmarshal(m, b)
+}
+func (m *IdpProviderSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_IdpProviderSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *IdpProviderSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_IdpProviderSearchRequest.Merge(m, src)
+}
+func (m *IdpProviderSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_IdpProviderSearchRequest.Size(m)
+}
+func (m *IdpProviderSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_IdpProviderSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_IdpProviderSearchRequest proto.InternalMessageInfo
+
+func (m *IdpProviderSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *IdpProviderSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *IdpProviderSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
type ExternalIDPSearchRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ UserId string `protobuf:"bytes,3,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ExternalIDPSearchRequest) Reset() {
- *x = ExternalIDPSearchRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[159]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ExternalIDPSearchRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ExternalIDPSearchRequest) ProtoMessage() {}
-
-func (x *ExternalIDPSearchRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[159]
- 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 ExternalIDPSearchRequest.ProtoReflect.Descriptor instead.
+func (m *ExternalIDPSearchRequest) Reset() { *m = ExternalIDPSearchRequest{} }
+func (m *ExternalIDPSearchRequest) String() string { return proto.CompactTextString(m) }
+func (*ExternalIDPSearchRequest) ProtoMessage() {}
func (*ExternalIDPSearchRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{159}
+ return fileDescriptor_edc174f991dc0a25, []int{160}
}
-func (x *ExternalIDPSearchRequest) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ExternalIDPSearchRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ExternalIDPSearchRequest.Unmarshal(m, b)
+}
+func (m *ExternalIDPSearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ExternalIDPSearchRequest.Marshal(b, m, deterministic)
+}
+func (m *ExternalIDPSearchRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ExternalIDPSearchRequest.Merge(m, src)
+}
+func (m *ExternalIDPSearchRequest) XXX_Size() int {
+ return xxx_messageInfo_ExternalIDPSearchRequest.Size(m)
+}
+func (m *ExternalIDPSearchRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ExternalIDPSearchRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ExternalIDPSearchRequest proto.InternalMessageInfo
+
+func (m *ExternalIDPSearchRequest) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ExternalIDPSearchRequest) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ExternalIDPSearchRequest) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ExternalIDPSearchRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ExternalIDPSearchRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
type ExternalIDPSearchResponse struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
- Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
- TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
- Result []*ExternalIDPView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
- ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
- ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ Offset uint64 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
+ Limit uint64 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
+ TotalResult uint64 `protobuf:"varint,3,opt,name=total_result,json=totalResult,proto3" json:"total_result,omitempty"`
+ Result []*ExternalIDPView `protobuf:"bytes,4,rep,name=result,proto3" json:"result,omitempty"`
+ ProcessedSequence uint64 `protobuf:"varint,5,opt,name=processed_sequence,json=processedSequence,proto3" json:"processed_sequence,omitempty"`
+ ViewTimestamp *timestamp.Timestamp `protobuf:"bytes,6,opt,name=view_timestamp,json=viewTimestamp,proto3" json:"view_timestamp,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ExternalIDPSearchResponse) Reset() {
- *x = ExternalIDPSearchResponse{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[160]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ExternalIDPSearchResponse) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ExternalIDPSearchResponse) ProtoMessage() {}
-
-func (x *ExternalIDPSearchResponse) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[160]
- 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 ExternalIDPSearchResponse.ProtoReflect.Descriptor instead.
+func (m *ExternalIDPSearchResponse) Reset() { *m = ExternalIDPSearchResponse{} }
+func (m *ExternalIDPSearchResponse) String() string { return proto.CompactTextString(m) }
+func (*ExternalIDPSearchResponse) ProtoMessage() {}
func (*ExternalIDPSearchResponse) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{160}
+ return fileDescriptor_edc174f991dc0a25, []int{161}
}
-func (x *ExternalIDPSearchResponse) GetOffset() uint64 {
- if x != nil {
- return x.Offset
+func (m *ExternalIDPSearchResponse) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ExternalIDPSearchResponse.Unmarshal(m, b)
+}
+func (m *ExternalIDPSearchResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ExternalIDPSearchResponse.Marshal(b, m, deterministic)
+}
+func (m *ExternalIDPSearchResponse) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ExternalIDPSearchResponse.Merge(m, src)
+}
+func (m *ExternalIDPSearchResponse) XXX_Size() int {
+ return xxx_messageInfo_ExternalIDPSearchResponse.Size(m)
+}
+func (m *ExternalIDPSearchResponse) XXX_DiscardUnknown() {
+ xxx_messageInfo_ExternalIDPSearchResponse.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ExternalIDPSearchResponse proto.InternalMessageInfo
+
+func (m *ExternalIDPSearchResponse) GetOffset() uint64 {
+ if m != nil {
+ return m.Offset
}
return 0
}
-func (x *ExternalIDPSearchResponse) GetLimit() uint64 {
- if x != nil {
- return x.Limit
+func (m *ExternalIDPSearchResponse) GetLimit() uint64 {
+ if m != nil {
+ return m.Limit
}
return 0
}
-func (x *ExternalIDPSearchResponse) GetTotalResult() uint64 {
- if x != nil {
- return x.TotalResult
+func (m *ExternalIDPSearchResponse) GetTotalResult() uint64 {
+ if m != nil {
+ return m.TotalResult
}
return 0
}
-func (x *ExternalIDPSearchResponse) GetResult() []*ExternalIDPView {
- if x != nil {
- return x.Result
+func (m *ExternalIDPSearchResponse) GetResult() []*ExternalIDPView {
+ if m != nil {
+ return m.Result
}
return nil
}
-func (x *ExternalIDPSearchResponse) GetProcessedSequence() uint64 {
- if x != nil {
- return x.ProcessedSequence
+func (m *ExternalIDPSearchResponse) GetProcessedSequence() uint64 {
+ if m != nil {
+ return m.ProcessedSequence
}
return 0
}
-func (x *ExternalIDPSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
- if x != nil {
- return x.ViewTimestamp
+func (m *ExternalIDPSearchResponse) GetViewTimestamp() *timestamp.Timestamp {
+ if m != nil {
+ return m.ViewTimestamp
}
return nil
}
type ExternalIDPView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
IdpConfigId string `protobuf:"bytes,2,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
ExternalUserId string `protobuf:"bytes,3,opt,name=external_user_id,json=externalUserId,proto3" json:"external_user_id,omitempty"`
@@ -14746,8441 +12666,1963 @@ type ExternalIDPView struct {
ExternalUserDisplayName string `protobuf:"bytes,5,opt,name=external_user_display_name,json=externalUserDisplayName,proto3" json:"external_user_display_name,omitempty"`
CreationDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
ChangeDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ExternalIDPView) Reset() {
- *x = ExternalIDPView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[161]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ExternalIDPView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ExternalIDPView) ProtoMessage() {}
-
-func (x *ExternalIDPView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[161]
- 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 ExternalIDPView.ProtoReflect.Descriptor instead.
+func (m *ExternalIDPView) Reset() { *m = ExternalIDPView{} }
+func (m *ExternalIDPView) String() string { return proto.CompactTextString(m) }
+func (*ExternalIDPView) ProtoMessage() {}
func (*ExternalIDPView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{161}
+ return fileDescriptor_edc174f991dc0a25, []int{162}
}
-func (x *ExternalIDPView) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ExternalIDPView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ExternalIDPView.Unmarshal(m, b)
+}
+func (m *ExternalIDPView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ExternalIDPView.Marshal(b, m, deterministic)
+}
+func (m *ExternalIDPView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ExternalIDPView.Merge(m, src)
+}
+func (m *ExternalIDPView) XXX_Size() int {
+ return xxx_messageInfo_ExternalIDPView.Size(m)
+}
+func (m *ExternalIDPView) XXX_DiscardUnknown() {
+ xxx_messageInfo_ExternalIDPView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ExternalIDPView proto.InternalMessageInfo
+
+func (m *ExternalIDPView) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ExternalIDPView) GetIdpConfigId() string {
- if x != nil {
- return x.IdpConfigId
+func (m *ExternalIDPView) GetIdpConfigId() string {
+ if m != nil {
+ return m.IdpConfigId
}
return ""
}
-func (x *ExternalIDPView) GetExternalUserId() string {
- if x != nil {
- return x.ExternalUserId
+func (m *ExternalIDPView) GetExternalUserId() string {
+ if m != nil {
+ return m.ExternalUserId
}
return ""
}
-func (x *ExternalIDPView) GetIdpName() string {
- if x != nil {
- return x.IdpName
+func (m *ExternalIDPView) GetIdpName() string {
+ if m != nil {
+ return m.IdpName
}
return ""
}
-func (x *ExternalIDPView) GetExternalUserDisplayName() string {
- if x != nil {
- return x.ExternalUserDisplayName
+func (m *ExternalIDPView) GetExternalUserDisplayName() string {
+ if m != nil {
+ return m.ExternalUserDisplayName
}
return ""
}
-func (x *ExternalIDPView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *ExternalIDPView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *ExternalIDPView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *ExternalIDPView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type ExternalIDPRemoveRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
- IdpConfigId string `protobuf:"bytes,2,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
- ExternalUserId string `protobuf:"bytes,3,opt,name=external_user_id,json=externalUserId,proto3" json:"external_user_id,omitempty"`
+ UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
+ IdpConfigId string `protobuf:"bytes,2,opt,name=idp_config_id,json=idpConfigId,proto3" json:"idp_config_id,omitempty"`
+ ExternalUserId string `protobuf:"bytes,3,opt,name=external_user_id,json=externalUserId,proto3" json:"external_user_id,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *ExternalIDPRemoveRequest) Reset() {
- *x = ExternalIDPRemoveRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[162]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *ExternalIDPRemoveRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*ExternalIDPRemoveRequest) ProtoMessage() {}
-
-func (x *ExternalIDPRemoveRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[162]
- 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 ExternalIDPRemoveRequest.ProtoReflect.Descriptor instead.
+func (m *ExternalIDPRemoveRequest) Reset() { *m = ExternalIDPRemoveRequest{} }
+func (m *ExternalIDPRemoveRequest) String() string { return proto.CompactTextString(m) }
+func (*ExternalIDPRemoveRequest) ProtoMessage() {}
func (*ExternalIDPRemoveRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{162}
+ return fileDescriptor_edc174f991dc0a25, []int{163}
}
-func (x *ExternalIDPRemoveRequest) GetUserId() string {
- if x != nil {
- return x.UserId
+func (m *ExternalIDPRemoveRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_ExternalIDPRemoveRequest.Unmarshal(m, b)
+}
+func (m *ExternalIDPRemoveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_ExternalIDPRemoveRequest.Marshal(b, m, deterministic)
+}
+func (m *ExternalIDPRemoveRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_ExternalIDPRemoveRequest.Merge(m, src)
+}
+func (m *ExternalIDPRemoveRequest) XXX_Size() int {
+ return xxx_messageInfo_ExternalIDPRemoveRequest.Size(m)
+}
+func (m *ExternalIDPRemoveRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_ExternalIDPRemoveRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_ExternalIDPRemoveRequest proto.InternalMessageInfo
+
+func (m *ExternalIDPRemoveRequest) GetUserId() string {
+ if m != nil {
+ return m.UserId
}
return ""
}
-func (x *ExternalIDPRemoveRequest) GetIdpConfigId() string {
- if x != nil {
- return x.IdpConfigId
+func (m *ExternalIDPRemoveRequest) GetIdpConfigId() string {
+ if m != nil {
+ return m.IdpConfigId
}
return ""
}
-func (x *ExternalIDPRemoveRequest) GetExternalUserId() string {
- if x != nil {
- return x.ExternalUserId
+func (m *ExternalIDPRemoveRequest) GetExternalUserId() string {
+ if m != nil {
+ return m.ExternalUserId
}
return ""
}
type SecondFactorsResult struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- SecondFactors []SecondFactorType `protobuf:"varint,1,rep,packed,name=second_factors,json=secondFactors,proto3,enum=caos.zitadel.management.api.v1.SecondFactorType" json:"second_factors,omitempty"`
+ SecondFactors []SecondFactorType `protobuf:"varint,1,rep,packed,name=second_factors,json=secondFactors,proto3,enum=caos.zitadel.management.api.v1.SecondFactorType" json:"second_factors,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *SecondFactorsResult) Reset() {
- *x = SecondFactorsResult{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[163]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *SecondFactorsResult) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SecondFactorsResult) ProtoMessage() {}
-
-func (x *SecondFactorsResult) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[163]
- 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 SecondFactorsResult.ProtoReflect.Descriptor instead.
+func (m *SecondFactorsResult) Reset() { *m = SecondFactorsResult{} }
+func (m *SecondFactorsResult) String() string { return proto.CompactTextString(m) }
+func (*SecondFactorsResult) ProtoMessage() {}
func (*SecondFactorsResult) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{163}
+ return fileDescriptor_edc174f991dc0a25, []int{164}
}
-func (x *SecondFactorsResult) GetSecondFactors() []SecondFactorType {
- if x != nil {
- return x.SecondFactors
+func (m *SecondFactorsResult) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SecondFactorsResult.Unmarshal(m, b)
+}
+func (m *SecondFactorsResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SecondFactorsResult.Marshal(b, m, deterministic)
+}
+func (m *SecondFactorsResult) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SecondFactorsResult.Merge(m, src)
+}
+func (m *SecondFactorsResult) XXX_Size() int {
+ return xxx_messageInfo_SecondFactorsResult.Size(m)
+}
+func (m *SecondFactorsResult) XXX_DiscardUnknown() {
+ xxx_messageInfo_SecondFactorsResult.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SecondFactorsResult proto.InternalMessageInfo
+
+func (m *SecondFactorsResult) GetSecondFactors() []SecondFactorType {
+ if m != nil {
+ return m.SecondFactors
}
return nil
}
type SecondFactor struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- SecondFactor SecondFactorType `protobuf:"varint,1,opt,name=second_factor,json=secondFactor,proto3,enum=caos.zitadel.management.api.v1.SecondFactorType" json:"second_factor,omitempty"`
+ SecondFactor SecondFactorType `protobuf:"varint,1,opt,name=second_factor,json=secondFactor,proto3,enum=caos.zitadel.management.api.v1.SecondFactorType" json:"second_factor,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *SecondFactor) Reset() {
- *x = SecondFactor{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[164]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *SecondFactor) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SecondFactor) ProtoMessage() {}
-
-func (x *SecondFactor) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[164]
- 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 SecondFactor.ProtoReflect.Descriptor instead.
+func (m *SecondFactor) Reset() { *m = SecondFactor{} }
+func (m *SecondFactor) String() string { return proto.CompactTextString(m) }
+func (*SecondFactor) ProtoMessage() {}
func (*SecondFactor) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{164}
+ return fileDescriptor_edc174f991dc0a25, []int{165}
}
-func (x *SecondFactor) GetSecondFactor() SecondFactorType {
- if x != nil {
- return x.SecondFactor
+func (m *SecondFactor) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_SecondFactor.Unmarshal(m, b)
+}
+func (m *SecondFactor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_SecondFactor.Marshal(b, m, deterministic)
+}
+func (m *SecondFactor) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_SecondFactor.Merge(m, src)
+}
+func (m *SecondFactor) XXX_Size() int {
+ return xxx_messageInfo_SecondFactor.Size(m)
+}
+func (m *SecondFactor) XXX_DiscardUnknown() {
+ xxx_messageInfo_SecondFactor.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_SecondFactor proto.InternalMessageInfo
+
+func (m *SecondFactor) GetSecondFactor() SecondFactorType {
+ if m != nil {
+ return m.SecondFactor
}
return SecondFactorType_SECONDFACTORTYPE_UNSPECIFIED
}
type MultiFactorsResult struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- MultiFactors []MultiFactorType `protobuf:"varint,1,rep,packed,name=multi_factors,json=multiFactors,proto3,enum=caos.zitadel.management.api.v1.MultiFactorType" json:"multi_factors,omitempty"`
+ MultiFactors []MultiFactorType `protobuf:"varint,1,rep,packed,name=multi_factors,json=multiFactors,proto3,enum=caos.zitadel.management.api.v1.MultiFactorType" json:"multi_factors,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MultiFactorsResult) Reset() {
- *x = MultiFactorsResult{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[165]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MultiFactorsResult) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MultiFactorsResult) ProtoMessage() {}
-
-func (x *MultiFactorsResult) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[165]
- 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 MultiFactorsResult.ProtoReflect.Descriptor instead.
+func (m *MultiFactorsResult) Reset() { *m = MultiFactorsResult{} }
+func (m *MultiFactorsResult) String() string { return proto.CompactTextString(m) }
+func (*MultiFactorsResult) ProtoMessage() {}
func (*MultiFactorsResult) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{165}
+ return fileDescriptor_edc174f991dc0a25, []int{166}
}
-func (x *MultiFactorsResult) GetMultiFactors() []MultiFactorType {
- if x != nil {
- return x.MultiFactors
+func (m *MultiFactorsResult) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MultiFactorsResult.Unmarshal(m, b)
+}
+func (m *MultiFactorsResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MultiFactorsResult.Marshal(b, m, deterministic)
+}
+func (m *MultiFactorsResult) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MultiFactorsResult.Merge(m, src)
+}
+func (m *MultiFactorsResult) XXX_Size() int {
+ return xxx_messageInfo_MultiFactorsResult.Size(m)
+}
+func (m *MultiFactorsResult) XXX_DiscardUnknown() {
+ xxx_messageInfo_MultiFactorsResult.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MultiFactorsResult proto.InternalMessageInfo
+
+func (m *MultiFactorsResult) GetMultiFactors() []MultiFactorType {
+ if m != nil {
+ return m.MultiFactors
}
return nil
}
type MultiFactor struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- MultiFactor MultiFactorType `protobuf:"varint,1,opt,name=multi_factor,json=multiFactor,proto3,enum=caos.zitadel.management.api.v1.MultiFactorType" json:"multi_factor,omitempty"`
+ MultiFactor MultiFactorType `protobuf:"varint,1,opt,name=multi_factor,json=multiFactor,proto3,enum=caos.zitadel.management.api.v1.MultiFactorType" json:"multi_factor,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *MultiFactor) Reset() {
- *x = MultiFactor{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[166]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *MultiFactor) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*MultiFactor) ProtoMessage() {}
-
-func (x *MultiFactor) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[166]
- 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 MultiFactor.ProtoReflect.Descriptor instead.
+func (m *MultiFactor) Reset() { *m = MultiFactor{} }
+func (m *MultiFactor) String() string { return proto.CompactTextString(m) }
+func (*MultiFactor) ProtoMessage() {}
func (*MultiFactor) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{166}
+ return fileDescriptor_edc174f991dc0a25, []int{167}
}
-func (x *MultiFactor) GetMultiFactor() MultiFactorType {
- if x != nil {
- return x.MultiFactor
+func (m *MultiFactor) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_MultiFactor.Unmarshal(m, b)
+}
+func (m *MultiFactor) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_MultiFactor.Marshal(b, m, deterministic)
+}
+func (m *MultiFactor) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_MultiFactor.Merge(m, src)
+}
+func (m *MultiFactor) XXX_Size() int {
+ return xxx_messageInfo_MultiFactor.Size(m)
+}
+func (m *MultiFactor) XXX_DiscardUnknown() {
+ xxx_messageInfo_MultiFactor.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_MultiFactor proto.InternalMessageInfo
+
+func (m *MultiFactor) GetMultiFactor() MultiFactorType {
+ if m != nil {
+ return m.MultiFactor
}
return MultiFactorType_MULTIFACTORTYPE_UNSPECIFIED
}
type PasswordComplexityPolicy struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- MinLength uint64 `protobuf:"varint,1,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
- HasLowercase bool `protobuf:"varint,2,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
- HasUppercase bool `protobuf:"varint,3,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
- HasNumber bool `protobuf:"varint,4,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
- HasSymbol bool `protobuf:"varint,5,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
- Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ MinLength uint64 `protobuf:"varint,1,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
+ HasLowercase bool `protobuf:"varint,2,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
+ HasUppercase bool `protobuf:"varint,3,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
+ HasNumber bool `protobuf:"varint,4,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
+ HasSymbol bool `protobuf:"varint,5,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
+ Sequence uint64 `protobuf:"varint,6,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,7,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordComplexityPolicy) Reset() {
- *x = PasswordComplexityPolicy{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[167]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordComplexityPolicy) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordComplexityPolicy) ProtoMessage() {}
-
-func (x *PasswordComplexityPolicy) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[167]
- 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 PasswordComplexityPolicy.ProtoReflect.Descriptor instead.
+func (m *PasswordComplexityPolicy) Reset() { *m = PasswordComplexityPolicy{} }
+func (m *PasswordComplexityPolicy) String() string { return proto.CompactTextString(m) }
+func (*PasswordComplexityPolicy) ProtoMessage() {}
func (*PasswordComplexityPolicy) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{167}
+ return fileDescriptor_edc174f991dc0a25, []int{168}
}
-func (x *PasswordComplexityPolicy) GetMinLength() uint64 {
- if x != nil {
- return x.MinLength
+func (m *PasswordComplexityPolicy) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordComplexityPolicy.Unmarshal(m, b)
+}
+func (m *PasswordComplexityPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordComplexityPolicy.Marshal(b, m, deterministic)
+}
+func (m *PasswordComplexityPolicy) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordComplexityPolicy.Merge(m, src)
+}
+func (m *PasswordComplexityPolicy) XXX_Size() int {
+ return xxx_messageInfo_PasswordComplexityPolicy.Size(m)
+}
+func (m *PasswordComplexityPolicy) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordComplexityPolicy.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordComplexityPolicy proto.InternalMessageInfo
+
+func (m *PasswordComplexityPolicy) GetMinLength() uint64 {
+ if m != nil {
+ return m.MinLength
}
return 0
}
-func (x *PasswordComplexityPolicy) GetHasLowercase() bool {
- if x != nil {
- return x.HasLowercase
+func (m *PasswordComplexityPolicy) GetHasLowercase() bool {
+ if m != nil {
+ return m.HasLowercase
}
return false
}
-func (x *PasswordComplexityPolicy) GetHasUppercase() bool {
- if x != nil {
- return x.HasUppercase
+func (m *PasswordComplexityPolicy) GetHasUppercase() bool {
+ if m != nil {
+ return m.HasUppercase
}
return false
}
-func (x *PasswordComplexityPolicy) GetHasNumber() bool {
- if x != nil {
- return x.HasNumber
+func (m *PasswordComplexityPolicy) GetHasNumber() bool {
+ if m != nil {
+ return m.HasNumber
}
return false
}
-func (x *PasswordComplexityPolicy) GetHasSymbol() bool {
- if x != nil {
- return x.HasSymbol
+func (m *PasswordComplexityPolicy) GetHasSymbol() bool {
+ if m != nil {
+ return m.HasSymbol
}
return false
}
-func (x *PasswordComplexityPolicy) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *PasswordComplexityPolicy) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *PasswordComplexityPolicy) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *PasswordComplexityPolicy) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *PasswordComplexityPolicy) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *PasswordComplexityPolicy) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type PasswordComplexityPolicyRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- MinLength uint64 `protobuf:"varint,1,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
- HasLowercase bool `protobuf:"varint,2,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
- HasUppercase bool `protobuf:"varint,3,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
- HasNumber bool `protobuf:"varint,4,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
- HasSymbol bool `protobuf:"varint,5,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
+ MinLength uint64 `protobuf:"varint,1,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
+ HasLowercase bool `protobuf:"varint,2,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
+ HasUppercase bool `protobuf:"varint,3,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
+ HasNumber bool `protobuf:"varint,4,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
+ HasSymbol bool `protobuf:"varint,5,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordComplexityPolicyRequest) Reset() {
- *x = PasswordComplexityPolicyRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[168]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordComplexityPolicyRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordComplexityPolicyRequest) ProtoMessage() {}
-
-func (x *PasswordComplexityPolicyRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[168]
- 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 PasswordComplexityPolicyRequest.ProtoReflect.Descriptor instead.
+func (m *PasswordComplexityPolicyRequest) Reset() { *m = PasswordComplexityPolicyRequest{} }
+func (m *PasswordComplexityPolicyRequest) String() string { return proto.CompactTextString(m) }
+func (*PasswordComplexityPolicyRequest) ProtoMessage() {}
func (*PasswordComplexityPolicyRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{168}
+ return fileDescriptor_edc174f991dc0a25, []int{169}
}
-func (x *PasswordComplexityPolicyRequest) GetMinLength() uint64 {
- if x != nil {
- return x.MinLength
+func (m *PasswordComplexityPolicyRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordComplexityPolicyRequest.Unmarshal(m, b)
+}
+func (m *PasswordComplexityPolicyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordComplexityPolicyRequest.Marshal(b, m, deterministic)
+}
+func (m *PasswordComplexityPolicyRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordComplexityPolicyRequest.Merge(m, src)
+}
+func (m *PasswordComplexityPolicyRequest) XXX_Size() int {
+ return xxx_messageInfo_PasswordComplexityPolicyRequest.Size(m)
+}
+func (m *PasswordComplexityPolicyRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordComplexityPolicyRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordComplexityPolicyRequest proto.InternalMessageInfo
+
+func (m *PasswordComplexityPolicyRequest) GetMinLength() uint64 {
+ if m != nil {
+ return m.MinLength
}
return 0
}
-func (x *PasswordComplexityPolicyRequest) GetHasLowercase() bool {
- if x != nil {
- return x.HasLowercase
+func (m *PasswordComplexityPolicyRequest) GetHasLowercase() bool {
+ if m != nil {
+ return m.HasLowercase
}
return false
}
-func (x *PasswordComplexityPolicyRequest) GetHasUppercase() bool {
- if x != nil {
- return x.HasUppercase
+func (m *PasswordComplexityPolicyRequest) GetHasUppercase() bool {
+ if m != nil {
+ return m.HasUppercase
}
return false
}
-func (x *PasswordComplexityPolicyRequest) GetHasNumber() bool {
- if x != nil {
- return x.HasNumber
+func (m *PasswordComplexityPolicyRequest) GetHasNumber() bool {
+ if m != nil {
+ return m.HasNumber
}
return false
}
-func (x *PasswordComplexityPolicyRequest) GetHasSymbol() bool {
- if x != nil {
- return x.HasSymbol
+func (m *PasswordComplexityPolicyRequest) GetHasSymbol() bool {
+ if m != nil {
+ return m.HasSymbol
}
return false
}
type PasswordComplexityPolicyView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Default bool `protobuf:"varint,1,opt,name=default,proto3" json:"default,omitempty"`
- MinLength uint64 `protobuf:"varint,2,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
- HasLowercase bool `protobuf:"varint,3,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
- HasUppercase bool `protobuf:"varint,4,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
- HasNumber bool `protobuf:"varint,5,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
- HasSymbol bool `protobuf:"varint,6,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
- Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Default bool `protobuf:"varint,1,opt,name=default,proto3" json:"default,omitempty"`
+ MinLength uint64 `protobuf:"varint,2,opt,name=min_length,json=minLength,proto3" json:"min_length,omitempty"`
+ HasLowercase bool `protobuf:"varint,3,opt,name=has_lowercase,json=hasLowercase,proto3" json:"has_lowercase,omitempty"`
+ HasUppercase bool `protobuf:"varint,4,opt,name=has_uppercase,json=hasUppercase,proto3" json:"has_uppercase,omitempty"`
+ HasNumber bool `protobuf:"varint,5,opt,name=has_number,json=hasNumber,proto3" json:"has_number,omitempty"`
+ HasSymbol bool `protobuf:"varint,6,opt,name=has_symbol,json=hasSymbol,proto3" json:"has_symbol,omitempty"`
+ Sequence uint64 `protobuf:"varint,7,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,8,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,9,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordComplexityPolicyView) Reset() {
- *x = PasswordComplexityPolicyView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[169]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordComplexityPolicyView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordComplexityPolicyView) ProtoMessage() {}
-
-func (x *PasswordComplexityPolicyView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[169]
- 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 PasswordComplexityPolicyView.ProtoReflect.Descriptor instead.
+func (m *PasswordComplexityPolicyView) Reset() { *m = PasswordComplexityPolicyView{} }
+func (m *PasswordComplexityPolicyView) String() string { return proto.CompactTextString(m) }
+func (*PasswordComplexityPolicyView) ProtoMessage() {}
func (*PasswordComplexityPolicyView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{169}
+ return fileDescriptor_edc174f991dc0a25, []int{170}
}
-func (x *PasswordComplexityPolicyView) GetDefault() bool {
- if x != nil {
- return x.Default
+func (m *PasswordComplexityPolicyView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordComplexityPolicyView.Unmarshal(m, b)
+}
+func (m *PasswordComplexityPolicyView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordComplexityPolicyView.Marshal(b, m, deterministic)
+}
+func (m *PasswordComplexityPolicyView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordComplexityPolicyView.Merge(m, src)
+}
+func (m *PasswordComplexityPolicyView) XXX_Size() int {
+ return xxx_messageInfo_PasswordComplexityPolicyView.Size(m)
+}
+func (m *PasswordComplexityPolicyView) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordComplexityPolicyView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordComplexityPolicyView proto.InternalMessageInfo
+
+func (m *PasswordComplexityPolicyView) GetDefault() bool {
+ if m != nil {
+ return m.Default
}
return false
}
-func (x *PasswordComplexityPolicyView) GetMinLength() uint64 {
- if x != nil {
- return x.MinLength
+func (m *PasswordComplexityPolicyView) GetMinLength() uint64 {
+ if m != nil {
+ return m.MinLength
}
return 0
}
-func (x *PasswordComplexityPolicyView) GetHasLowercase() bool {
- if x != nil {
- return x.HasLowercase
+func (m *PasswordComplexityPolicyView) GetHasLowercase() bool {
+ if m != nil {
+ return m.HasLowercase
}
return false
}
-func (x *PasswordComplexityPolicyView) GetHasUppercase() bool {
- if x != nil {
- return x.HasUppercase
+func (m *PasswordComplexityPolicyView) GetHasUppercase() bool {
+ if m != nil {
+ return m.HasUppercase
}
return false
}
-func (x *PasswordComplexityPolicyView) GetHasNumber() bool {
- if x != nil {
- return x.HasNumber
+func (m *PasswordComplexityPolicyView) GetHasNumber() bool {
+ if m != nil {
+ return m.HasNumber
}
return false
}
-func (x *PasswordComplexityPolicyView) GetHasSymbol() bool {
- if x != nil {
- return x.HasSymbol
+func (m *PasswordComplexityPolicyView) GetHasSymbol() bool {
+ if m != nil {
+ return m.HasSymbol
}
return false
}
-func (x *PasswordComplexityPolicyView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *PasswordComplexityPolicyView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *PasswordComplexityPolicyView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *PasswordComplexityPolicyView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *PasswordComplexityPolicyView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *PasswordComplexityPolicyView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type PasswordAgePolicy struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- MaxAgeDays uint64 `protobuf:"varint,1,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
- ExpireWarnDays uint64 `protobuf:"varint,2,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
- Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ MaxAgeDays uint64 `protobuf:"varint,1,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
+ ExpireWarnDays uint64 `protobuf:"varint,2,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
+ Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordAgePolicy) Reset() {
- *x = PasswordAgePolicy{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[170]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordAgePolicy) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordAgePolicy) ProtoMessage() {}
-
-func (x *PasswordAgePolicy) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[170]
- 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 PasswordAgePolicy.ProtoReflect.Descriptor instead.
+func (m *PasswordAgePolicy) Reset() { *m = PasswordAgePolicy{} }
+func (m *PasswordAgePolicy) String() string { return proto.CompactTextString(m) }
+func (*PasswordAgePolicy) ProtoMessage() {}
func (*PasswordAgePolicy) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{170}
+ return fileDescriptor_edc174f991dc0a25, []int{171}
}
-func (x *PasswordAgePolicy) GetMaxAgeDays() uint64 {
- if x != nil {
- return x.MaxAgeDays
+func (m *PasswordAgePolicy) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordAgePolicy.Unmarshal(m, b)
+}
+func (m *PasswordAgePolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordAgePolicy.Marshal(b, m, deterministic)
+}
+func (m *PasswordAgePolicy) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordAgePolicy.Merge(m, src)
+}
+func (m *PasswordAgePolicy) XXX_Size() int {
+ return xxx_messageInfo_PasswordAgePolicy.Size(m)
+}
+func (m *PasswordAgePolicy) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordAgePolicy.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordAgePolicy proto.InternalMessageInfo
+
+func (m *PasswordAgePolicy) GetMaxAgeDays() uint64 {
+ if m != nil {
+ return m.MaxAgeDays
}
return 0
}
-func (x *PasswordAgePolicy) GetExpireWarnDays() uint64 {
- if x != nil {
- return x.ExpireWarnDays
+func (m *PasswordAgePolicy) GetExpireWarnDays() uint64 {
+ if m != nil {
+ return m.ExpireWarnDays
}
return 0
}
-func (x *PasswordAgePolicy) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *PasswordAgePolicy) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *PasswordAgePolicy) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *PasswordAgePolicy) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *PasswordAgePolicy) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *PasswordAgePolicy) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type PasswordAgePolicyRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- MaxAgeDays uint64 `protobuf:"varint,1,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
- ExpireWarnDays uint64 `protobuf:"varint,2,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
+ MaxAgeDays uint64 `protobuf:"varint,1,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
+ ExpireWarnDays uint64 `protobuf:"varint,2,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordAgePolicyRequest) Reset() {
- *x = PasswordAgePolicyRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[171]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordAgePolicyRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordAgePolicyRequest) ProtoMessage() {}
-
-func (x *PasswordAgePolicyRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[171]
- 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 PasswordAgePolicyRequest.ProtoReflect.Descriptor instead.
+func (m *PasswordAgePolicyRequest) Reset() { *m = PasswordAgePolicyRequest{} }
+func (m *PasswordAgePolicyRequest) String() string { return proto.CompactTextString(m) }
+func (*PasswordAgePolicyRequest) ProtoMessage() {}
func (*PasswordAgePolicyRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{171}
+ return fileDescriptor_edc174f991dc0a25, []int{172}
}
-func (x *PasswordAgePolicyRequest) GetMaxAgeDays() uint64 {
- if x != nil {
- return x.MaxAgeDays
+func (m *PasswordAgePolicyRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordAgePolicyRequest.Unmarshal(m, b)
+}
+func (m *PasswordAgePolicyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordAgePolicyRequest.Marshal(b, m, deterministic)
+}
+func (m *PasswordAgePolicyRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordAgePolicyRequest.Merge(m, src)
+}
+func (m *PasswordAgePolicyRequest) XXX_Size() int {
+ return xxx_messageInfo_PasswordAgePolicyRequest.Size(m)
+}
+func (m *PasswordAgePolicyRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordAgePolicyRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordAgePolicyRequest proto.InternalMessageInfo
+
+func (m *PasswordAgePolicyRequest) GetMaxAgeDays() uint64 {
+ if m != nil {
+ return m.MaxAgeDays
}
return 0
}
-func (x *PasswordAgePolicyRequest) GetExpireWarnDays() uint64 {
- if x != nil {
- return x.ExpireWarnDays
+func (m *PasswordAgePolicyRequest) GetExpireWarnDays() uint64 {
+ if m != nil {
+ return m.ExpireWarnDays
}
return 0
}
type PasswordAgePolicyView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Default bool `protobuf:"varint,1,opt,name=default,proto3" json:"default,omitempty"`
- MaxAgeDays uint64 `protobuf:"varint,2,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
- ExpireWarnDays uint64 `protobuf:"varint,3,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Default bool `protobuf:"varint,1,opt,name=default,proto3" json:"default,omitempty"`
+ MaxAgeDays uint64 `protobuf:"varint,2,opt,name=max_age_days,json=maxAgeDays,proto3" json:"max_age_days,omitempty"`
+ ExpireWarnDays uint64 `protobuf:"varint,3,opt,name=expire_warn_days,json=expireWarnDays,proto3" json:"expire_warn_days,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordAgePolicyView) Reset() {
- *x = PasswordAgePolicyView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[172]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordAgePolicyView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordAgePolicyView) ProtoMessage() {}
-
-func (x *PasswordAgePolicyView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[172]
- 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 PasswordAgePolicyView.ProtoReflect.Descriptor instead.
+func (m *PasswordAgePolicyView) Reset() { *m = PasswordAgePolicyView{} }
+func (m *PasswordAgePolicyView) String() string { return proto.CompactTextString(m) }
+func (*PasswordAgePolicyView) ProtoMessage() {}
func (*PasswordAgePolicyView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{172}
+ return fileDescriptor_edc174f991dc0a25, []int{173}
}
-func (x *PasswordAgePolicyView) GetDefault() bool {
- if x != nil {
- return x.Default
+func (m *PasswordAgePolicyView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordAgePolicyView.Unmarshal(m, b)
+}
+func (m *PasswordAgePolicyView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordAgePolicyView.Marshal(b, m, deterministic)
+}
+func (m *PasswordAgePolicyView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordAgePolicyView.Merge(m, src)
+}
+func (m *PasswordAgePolicyView) XXX_Size() int {
+ return xxx_messageInfo_PasswordAgePolicyView.Size(m)
+}
+func (m *PasswordAgePolicyView) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordAgePolicyView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordAgePolicyView proto.InternalMessageInfo
+
+func (m *PasswordAgePolicyView) GetDefault() bool {
+ if m != nil {
+ return m.Default
}
return false
}
-func (x *PasswordAgePolicyView) GetMaxAgeDays() uint64 {
- if x != nil {
- return x.MaxAgeDays
+func (m *PasswordAgePolicyView) GetMaxAgeDays() uint64 {
+ if m != nil {
+ return m.MaxAgeDays
}
return 0
}
-func (x *PasswordAgePolicyView) GetExpireWarnDays() uint64 {
- if x != nil {
- return x.ExpireWarnDays
+func (m *PasswordAgePolicyView) GetExpireWarnDays() uint64 {
+ if m != nil {
+ return m.ExpireWarnDays
}
return 0
}
-func (x *PasswordAgePolicyView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *PasswordAgePolicyView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *PasswordAgePolicyView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *PasswordAgePolicyView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *PasswordAgePolicyView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *PasswordAgePolicyView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type PasswordLockoutPolicy struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- MaxAttempts uint64 `protobuf:"varint,1,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
- ShowLockoutFailure bool `protobuf:"varint,2,opt,name=show_lockout_failure,json=showLockoutFailure,proto3" json:"show_lockout_failure,omitempty"`
- Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ MaxAttempts uint64 `protobuf:"varint,1,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
+ ShowLockoutFailure bool `protobuf:"varint,2,opt,name=show_lockout_failure,json=showLockoutFailure,proto3" json:"show_lockout_failure,omitempty"`
+ Sequence uint64 `protobuf:"varint,3,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,4,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordLockoutPolicy) Reset() {
- *x = PasswordLockoutPolicy{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[173]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordLockoutPolicy) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordLockoutPolicy) ProtoMessage() {}
-
-func (x *PasswordLockoutPolicy) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[173]
- 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 PasswordLockoutPolicy.ProtoReflect.Descriptor instead.
+func (m *PasswordLockoutPolicy) Reset() { *m = PasswordLockoutPolicy{} }
+func (m *PasswordLockoutPolicy) String() string { return proto.CompactTextString(m) }
+func (*PasswordLockoutPolicy) ProtoMessage() {}
func (*PasswordLockoutPolicy) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{173}
+ return fileDescriptor_edc174f991dc0a25, []int{174}
}
-func (x *PasswordLockoutPolicy) GetMaxAttempts() uint64 {
- if x != nil {
- return x.MaxAttempts
+func (m *PasswordLockoutPolicy) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordLockoutPolicy.Unmarshal(m, b)
+}
+func (m *PasswordLockoutPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordLockoutPolicy.Marshal(b, m, deterministic)
+}
+func (m *PasswordLockoutPolicy) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordLockoutPolicy.Merge(m, src)
+}
+func (m *PasswordLockoutPolicy) XXX_Size() int {
+ return xxx_messageInfo_PasswordLockoutPolicy.Size(m)
+}
+func (m *PasswordLockoutPolicy) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordLockoutPolicy.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordLockoutPolicy proto.InternalMessageInfo
+
+func (m *PasswordLockoutPolicy) GetMaxAttempts() uint64 {
+ if m != nil {
+ return m.MaxAttempts
}
return 0
}
-func (x *PasswordLockoutPolicy) GetShowLockoutFailure() bool {
- if x != nil {
- return x.ShowLockoutFailure
+func (m *PasswordLockoutPolicy) GetShowLockoutFailure() bool {
+ if m != nil {
+ return m.ShowLockoutFailure
}
return false
}
-func (x *PasswordLockoutPolicy) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *PasswordLockoutPolicy) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *PasswordLockoutPolicy) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *PasswordLockoutPolicy) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *PasswordLockoutPolicy) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *PasswordLockoutPolicy) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
type PasswordLockoutPolicyRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- MaxAttempts uint64 `protobuf:"varint,1,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
- ShowLockoutFailure bool `protobuf:"varint,2,opt,name=show_lockout_failure,json=showLockoutFailure,proto3" json:"show_lockout_failure,omitempty"`
+ MaxAttempts uint64 `protobuf:"varint,1,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
+ ShowLockoutFailure bool `protobuf:"varint,2,opt,name=show_lockout_failure,json=showLockoutFailure,proto3" json:"show_lockout_failure,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordLockoutPolicyRequest) Reset() {
- *x = PasswordLockoutPolicyRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[174]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordLockoutPolicyRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordLockoutPolicyRequest) ProtoMessage() {}
-
-func (x *PasswordLockoutPolicyRequest) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[174]
- 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 PasswordLockoutPolicyRequest.ProtoReflect.Descriptor instead.
+func (m *PasswordLockoutPolicyRequest) Reset() { *m = PasswordLockoutPolicyRequest{} }
+func (m *PasswordLockoutPolicyRequest) String() string { return proto.CompactTextString(m) }
+func (*PasswordLockoutPolicyRequest) ProtoMessage() {}
func (*PasswordLockoutPolicyRequest) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{174}
+ return fileDescriptor_edc174f991dc0a25, []int{175}
}
-func (x *PasswordLockoutPolicyRequest) GetMaxAttempts() uint64 {
- if x != nil {
- return x.MaxAttempts
+func (m *PasswordLockoutPolicyRequest) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordLockoutPolicyRequest.Unmarshal(m, b)
+}
+func (m *PasswordLockoutPolicyRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordLockoutPolicyRequest.Marshal(b, m, deterministic)
+}
+func (m *PasswordLockoutPolicyRequest) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordLockoutPolicyRequest.Merge(m, src)
+}
+func (m *PasswordLockoutPolicyRequest) XXX_Size() int {
+ return xxx_messageInfo_PasswordLockoutPolicyRequest.Size(m)
+}
+func (m *PasswordLockoutPolicyRequest) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordLockoutPolicyRequest.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordLockoutPolicyRequest proto.InternalMessageInfo
+
+func (m *PasswordLockoutPolicyRequest) GetMaxAttempts() uint64 {
+ if m != nil {
+ return m.MaxAttempts
}
return 0
}
-func (x *PasswordLockoutPolicyRequest) GetShowLockoutFailure() bool {
- if x != nil {
- return x.ShowLockoutFailure
+func (m *PasswordLockoutPolicyRequest) GetShowLockoutFailure() bool {
+ if m != nil {
+ return m.ShowLockoutFailure
}
return false
}
type PasswordLockoutPolicyView struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
-
- Default bool `protobuf:"varint,1,opt,name=default,proto3" json:"default,omitempty"`
- MaxAttempts uint64 `protobuf:"varint,2,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
- ShowLockoutFailure bool `protobuf:"varint,3,opt,name=show_lockout_failure,json=showLockoutFailure,proto3" json:"show_lockout_failure,omitempty"`
- Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
- CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
- ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ Default bool `protobuf:"varint,1,opt,name=default,proto3" json:"default,omitempty"`
+ MaxAttempts uint64 `protobuf:"varint,2,opt,name=max_attempts,json=maxAttempts,proto3" json:"max_attempts,omitempty"`
+ ShowLockoutFailure bool `protobuf:"varint,3,opt,name=show_lockout_failure,json=showLockoutFailure,proto3" json:"show_lockout_failure,omitempty"`
+ Sequence uint64 `protobuf:"varint,4,opt,name=sequence,proto3" json:"sequence,omitempty"`
+ CreationDate *timestamp.Timestamp `protobuf:"bytes,5,opt,name=creation_date,json=creationDate,proto3" json:"creation_date,omitempty"`
+ ChangeDate *timestamp.Timestamp `protobuf:"bytes,6,opt,name=change_date,json=changeDate,proto3" json:"change_date,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
-func (x *PasswordLockoutPolicyView) Reset() {
- *x = PasswordLockoutPolicyView{}
- if protoimpl.UnsafeEnabled {
- mi := &file_management_proto_msgTypes[175]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
-}
-
-func (x *PasswordLockoutPolicyView) String() string {
- return protoimpl.X.MessageStringOf(x)
-}
-
-func (*PasswordLockoutPolicyView) ProtoMessage() {}
-
-func (x *PasswordLockoutPolicyView) ProtoReflect() protoreflect.Message {
- mi := &file_management_proto_msgTypes[175]
- 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 PasswordLockoutPolicyView.ProtoReflect.Descriptor instead.
+func (m *PasswordLockoutPolicyView) Reset() { *m = PasswordLockoutPolicyView{} }
+func (m *PasswordLockoutPolicyView) String() string { return proto.CompactTextString(m) }
+func (*PasswordLockoutPolicyView) ProtoMessage() {}
func (*PasswordLockoutPolicyView) Descriptor() ([]byte, []int) {
- return file_management_proto_rawDescGZIP(), []int{175}
+ return fileDescriptor_edc174f991dc0a25, []int{176}
}
-func (x *PasswordLockoutPolicyView) GetDefault() bool {
- if x != nil {
- return x.Default
+func (m *PasswordLockoutPolicyView) XXX_Unmarshal(b []byte) error {
+ return xxx_messageInfo_PasswordLockoutPolicyView.Unmarshal(m, b)
+}
+func (m *PasswordLockoutPolicyView) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
+ return xxx_messageInfo_PasswordLockoutPolicyView.Marshal(b, m, deterministic)
+}
+func (m *PasswordLockoutPolicyView) XXX_Merge(src proto.Message) {
+ xxx_messageInfo_PasswordLockoutPolicyView.Merge(m, src)
+}
+func (m *PasswordLockoutPolicyView) XXX_Size() int {
+ return xxx_messageInfo_PasswordLockoutPolicyView.Size(m)
+}
+func (m *PasswordLockoutPolicyView) XXX_DiscardUnknown() {
+ xxx_messageInfo_PasswordLockoutPolicyView.DiscardUnknown(m)
+}
+
+var xxx_messageInfo_PasswordLockoutPolicyView proto.InternalMessageInfo
+
+func (m *PasswordLockoutPolicyView) GetDefault() bool {
+ if m != nil {
+ return m.Default
}
return false
}
-func (x *PasswordLockoutPolicyView) GetMaxAttempts() uint64 {
- if x != nil {
- return x.MaxAttempts
+func (m *PasswordLockoutPolicyView) GetMaxAttempts() uint64 {
+ if m != nil {
+ return m.MaxAttempts
}
return 0
}
-func (x *PasswordLockoutPolicyView) GetShowLockoutFailure() bool {
- if x != nil {
- return x.ShowLockoutFailure
+func (m *PasswordLockoutPolicyView) GetShowLockoutFailure() bool {
+ if m != nil {
+ return m.ShowLockoutFailure
}
return false
}
-func (x *PasswordLockoutPolicyView) GetSequence() uint64 {
- if x != nil {
- return x.Sequence
+func (m *PasswordLockoutPolicyView) GetSequence() uint64 {
+ if m != nil {
+ return m.Sequence
}
return 0
}
-func (x *PasswordLockoutPolicyView) GetCreationDate() *timestamp.Timestamp {
- if x != nil {
- return x.CreationDate
+func (m *PasswordLockoutPolicyView) GetCreationDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.CreationDate
}
return nil
}
-func (x *PasswordLockoutPolicyView) GetChangeDate() *timestamp.Timestamp {
- if x != nil {
- return x.ChangeDate
+func (m *PasswordLockoutPolicyView) GetChangeDate() *timestamp.Timestamp {
+ if m != nil {
+ return m.ChangeDate
}
return nil
}
-var File_management_proto protoreflect.FileDescriptor
-
-var file_management_proto_rawDesc = []byte{
- 0x0a, 0x10, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x12, 0x1e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61,
- 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74, 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x73,
- 0x74, 0x72, 0x75, 0x63, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1f, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x74, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x2c, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x63, 0x2d, 0x67, 0x65, 0x6e, 0x2d, 0x73, 0x77, 0x61, 0x67, 0x67, 0x65, 0x72,
- 0x2f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x76, 0x61, 0x6c, 0x69,
- 0x64, 0x61, 0x74, 0x65, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x1a, 0x18, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x2f,
- 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x13, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x22, 0x54, 0x0a, 0x0b, 0x5a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x44, 0x6f, 0x63,
- 0x73, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x12, 0x2d, 0x0a, 0x12, 0x64, 0x69, 0x73,
- 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79, 0x5f, 0x65, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x79,
- 0x45, 0x6e, 0x64, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x22, 0xf1, 0x01, 0x0a, 0x03, 0x49, 0x61, 0x6d,
- 0x12, 0x22, 0x0a, 0x0d, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x5f, 0x6f, 0x72, 0x67, 0x5f, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x4f,
- 0x72, 0x67, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x69, 0x61, 0x6d, 0x5f, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x69, 0x61,
- 0x6d, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x4c, 0x0a, 0x0b, 0x73, 0x65,
- 0x74, 0x5f, 0x75, 0x70, 0x5f, 0x64, 0x6f, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x49, 0x61, 0x6d, 0x53, 0x65, 0x74, 0x75, 0x70, 0x53, 0x74, 0x65, 0x70, 0x52, 0x09, 0x73,
- 0x65, 0x74, 0x55, 0x70, 0x44, 0x6f, 0x6e, 0x65, 0x12, 0x52, 0x0a, 0x0e, 0x73, 0x65, 0x74, 0x5f,
- 0x75, 0x70, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x49, 0x61, 0x6d, 0x53, 0x65, 0x74, 0x75, 0x70, 0x53, 0x74, 0x65, 0x70, 0x52, 0x0c,
- 0x73, 0x65, 0x74, 0x55, 0x70, 0x53, 0x74, 0x61, 0x72, 0x74, 0x65, 0x64, 0x22, 0x87, 0x01, 0x0a,
- 0x0d, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x15,
- 0x0a, 0x06, 0x73, 0x65, 0x63, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x73, 0x65, 0x63, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x27, 0x0a, 0x0f, 0x73,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x73, 0x63, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x03, 0x61, 0x73, 0x63, 0x22, 0x79, 0x0a, 0x07, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x73, 0x12, 0x40, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
- 0x28, 0x0b, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x07, 0x63, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c,
- 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69,
- 0x74, 0x22, 0x89, 0x02, 0x0a, 0x06, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x3b, 0x0a, 0x0b,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x01, 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, 0x0a, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x44, 0x0a, 0x0a, 0x65, 0x76, 0x65,
- 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x25, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x4d, 0x65, 0x73,
- 0x73, 0x61, 0x67, 0x65, 0x52, 0x09, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
- 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65,
- 0x64, 0x69, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x65, 0x64, 0x69, 0x74, 0x6f, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x65, 0x64, 0x69, 0x74,
- 0x6f, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x64, 0x69, 0x74, 0x6f, 0x72,
- 0x12, 0x2b, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x17,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x50, 0x0a,
- 0x0d, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x17,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72,
- 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04,
- 0x72, 0x02, 0x10, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x22,
- 0x24, 0x0a, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x44, 0x12, 0x17, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10,
- 0x01, 0x52, 0x02, 0x69, 0x64, 0x22, 0x21, 0x0a, 0x06, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x12,
- 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04,
- 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x22, 0x33, 0x0a, 0x09, 0x4c, 0x6f, 0x67, 0x69,
- 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x09, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x70, 0x0a,
- 0x11, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x39, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x1c, 0xfa, 0x42, 0x19, 0x72, 0x17, 0x32, 0x15, 0x5e, 0x5b,
- 0x5e, 0x5b, 0x3a, 0x73, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x5d, 0x5d, 0x7b, 0x31, 0x2c, 0x32, 0x30,
- 0x30, 0x7d, 0x24, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a,
- 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42,
- 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x22,
- 0x31, 0x0a, 0x12, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71,
- 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x55, 0x6e, 0x69, 0x71,
- 0x75, 0x65, 0x22, 0xf9, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
- 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x39, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x1c, 0xfa, 0x42, 0x19,
- 0x72, 0x17, 0x32, 0x15, 0x5e, 0x5b, 0x5e, 0x5b, 0x3a, 0x73, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x5d,
- 0x5d, 0x7b, 0x31, 0x2c, 0x32, 0x30, 0x30, 0x7d, 0x24, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e,
- 0x61, 0x6d, 0x65, 0x12, 0x4a, 0x0a, 0x05, 0x68, 0x75, 0x6d, 0x61, 0x6e, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x48, 0x75, 0x6d, 0x61, 0x6e, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x05, 0x68, 0x75, 0x6d, 0x61, 0x6e, 0x12,
- 0x50, 0x0a, 0x07, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b,
- 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x48, 0x00, 0x52, 0x07, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e,
- 0x65, 0x42, 0x0b, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x03, 0xf8, 0x42, 0x01, 0x22, 0x90,
- 0x05, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x48, 0x75, 0x6d, 0x61, 0x6e, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x29, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05,
- 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x27, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52,
- 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x09, 0x6e, 0x69, 0x63,
- 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42,
- 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x37, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61,
- 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42,
- 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65,
- 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e,
- 0x64, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65,
- 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x22, 0x0a, 0x05, 0x65, 0x6d, 0x61,
- 0x69, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0c, 0xfa, 0x42, 0x09, 0x72, 0x07, 0x10,
- 0x01, 0x18, 0xc8, 0x01, 0x60, 0x01, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x2a, 0x0a,
- 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69,
- 0x65, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69,
- 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x1d, 0x0a, 0x05, 0x70, 0x68, 0x6f,
- 0x6e, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x18,
- 0x14, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x09, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69,
- 0x66, 0x69, 0x65, 0x64, 0x12, 0x22, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18,
- 0x0a, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52,
- 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x24, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61,
- 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72,
- 0x03, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x29,
- 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0c, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0a, 0x70,
- 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x06, 0x72, 0x65, 0x67,
- 0x69, 0x6f, 0x6e, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03,
- 0x18, 0xc8, 0x01, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x0e, 0x73,
- 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x0e, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0d, 0x73,
- 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x23, 0x0a, 0x08,
- 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07,
- 0xfa, 0x42, 0x04, 0x72, 0x02, 0x18, 0x48, 0x52, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
- 0x64, 0x22, 0x62, 0x0a, 0x14, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x63, 0x68, 0x69,
- 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01,
- 0x18, 0xc8, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x2a, 0x0a, 0x0b, 0x64, 0x65, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08,
- 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xf4, 0x03, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69,
- 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xb7, 0x03, 0x0a, 0x0c, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3f, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65,
- 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0c, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x45,
- 0x0a, 0x05, 0x68, 0x75, 0x6d, 0x61, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x48,
- 0x75, 0x6d, 0x61, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x05,
- 0x68, 0x75, 0x6d, 0x61, 0x6e, 0x12, 0x4b, 0x0a, 0x07, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65,
- 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x48, 0x00, 0x52, 0x07, 0x6d, 0x61, 0x63, 0x68, 0x69,
- 0x6e, 0x65, 0x42, 0x0b, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x03, 0xf8, 0x42, 0x01, 0x22,
- 0xe0, 0x04, 0x0a, 0x08, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3f, 0x0a, 0x05,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x29, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65,
- 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a,
- 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03,
- 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x6c, 0x6f,
- 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x65, 0x66,
- 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65,
- 0x64, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x39, 0x0a, 0x0a, 0x6c, 0x61,
- 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x18, 0x08, 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, 0x6c, 0x61, 0x73, 0x74,
- 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63,
- 0x65, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72,
- 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x1b, 0x0a, 0x09,
- 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x41, 0x0a, 0x05, 0x68, 0x75, 0x6d,
- 0x61, 0x6e, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x48, 0x75, 0x6d, 0x61, 0x6e, 0x56,
- 0x69, 0x65, 0x77, 0x48, 0x00, 0x52, 0x05, 0x68, 0x75, 0x6d, 0x61, 0x6e, 0x12, 0x47, 0x0a, 0x07,
- 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2b, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d,
- 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x56, 0x69, 0x65, 0x77, 0x48, 0x00, 0x52, 0x07, 0x6d, 0x61,
- 0x63, 0x68, 0x69, 0x6e, 0x65, 0x42, 0x0b, 0x0a, 0x04, 0x75, 0x73, 0x65, 0x72, 0x12, 0x03, 0xf8,
- 0x42, 0x01, 0x22, 0x94, 0x04, 0x0a, 0x0d, 0x48, 0x75, 0x6d, 0x61, 0x6e, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61,
- 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e,
- 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e,
- 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61,
- 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72,
- 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12,
- 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12,
- 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69,
- 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65,
- 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68,
- 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x0a, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66,
- 0x69, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x0b,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a,
- 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73,
- 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
- 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65,
- 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69,
- 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64,
- 0x72, 0x65, 0x73, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65,
- 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0xd7, 0x04, 0x0a, 0x09, 0x48, 0x75,
- 0x6d, 0x61, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, 0x45, 0x0a, 0x10, 0x70, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x18, 0x01, 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, 0x0f, 0x70,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x64, 0x12, 0x1d,
- 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a,
- 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a,
- 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72,
- 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65,
- 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e,
- 0x64, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65,
- 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61,
- 0x69, 0x6c, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12,
- 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65, 0x72, 0x69,
- 0x66, 0x69, 0x65, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x45, 0x6d,
- 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
- 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65,
- 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x18, 0x0a,
- 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
- 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c,
- 0x69, 0x74, 0x79, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c,
- 0x69, 0x74, 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f,
- 0x64, 0x65, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c,
- 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x0f,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e,
- 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x10,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72,
- 0x65, 0x73, 0x73, 0x22, 0x47, 0x0a, 0x0f, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x85, 0x01, 0x0a,
- 0x0b, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x40, 0x0a, 0x0e,
- 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x61, 0x64, 0x64, 0x65, 0x64, 0x18, 0x01,
- 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, 0x0c, 0x6c, 0x61, 0x73, 0x74, 0x4b, 0x65, 0x79, 0x41, 0x64, 0x64, 0x65, 0x64, 0x12, 0x12,
- 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61,
- 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x5b, 0x0a, 0x14, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61,
- 0x63, 0x68, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10,
- 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x2a, 0x0a, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70,
- 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72,
- 0x03, 0x18, 0xf4, 0x03, 0x52, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f,
- 0x6e, 0x22, 0xcb, 0x01, 0x0a, 0x14, 0x41, 0x64, 0x64, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65,
- 0x4b, 0x65, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x07, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04,
- 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x4c, 0x0a, 0x04,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x61, 0x63, 0x68,
- 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x54, 0x79, 0x70, 0x65, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82,
- 0x01, 0x02, 0x20, 0x00, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x43, 0x0a, 0x0f, 0x65, 0x78,
- 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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,
- 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x22,
- 0xae, 0x02, 0x0a, 0x15, 0x41, 0x64, 0x64, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65,
- 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 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, 0x0c, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x42, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79,
- 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x43, 0x0a, 0x0f, 0x65, 0x78,
- 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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,
- 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x1f, 0x0a, 0x0b, 0x6b, 0x65, 0x79, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x0c, 0x52, 0x0a, 0x6b, 0x65, 0x79, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73,
- 0x22, 0x57, 0x0a, 0x13, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x49, 0x44,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10,
- 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x06, 0x6b, 0x65, 0x79,
- 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x05, 0x6b, 0x65, 0x79, 0x49, 0x64, 0x22, 0x86, 0x02, 0x0a, 0x0e, 0x4d, 0x61,
- 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x42, 0x0a, 0x04,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x61, 0x63, 0x68,
- 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
- 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x43, 0x0a,
- 0x0f, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x05, 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, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61,
- 0x74, 0x65, 0x22, 0x7b, 0x0a, 0x17, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x61,
- 0x73, 0x63, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03, 0x61, 0x73, 0x63, 0x12, 0x20, 0x0a,
- 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07,
- 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22,
- 0xa5, 0x02, 0x0a, 0x18, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f,
- 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x46, 0x0a,
- 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d,
- 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xf4, 0x01, 0x0a, 0x11, 0x55, 0x73, 0x65, 0x72,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x54, 0x0a, 0x0e, 0x73,
- 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b,
- 0x65, 0x79, 0x52, 0x0d, 0x73, 0x6f, 0x72, 0x74, 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6c, 0x75, 0x6d,
- 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x73, 0x63, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x03,
- 0x61, 0x73, 0x63, 0x12, 0x49, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05,
- 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xb8,
- 0x01, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x12, 0x49, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08,
- 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a,
- 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x99, 0x02, 0x0a, 0x12, 0x55, 0x73,
- 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69,
- 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21,
- 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x12, 0x40, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64,
- 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73,
- 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65,
- 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xa2, 0x03, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72,
- 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21,
- 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c,
- 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70,
- 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
- 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72,
- 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 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,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a,
- 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a, 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, 0x0a,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xf9, 0x03, 0x0a, 0x0f, 0x55,
- 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d,
- 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a,
- 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6e, 0x69,
- 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e,
- 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c,
- 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72,
- 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65,
- 0x64, 0x4c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e,
- 0x64, 0x65, 0x72, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65,
- 0x72, 0x52, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0a, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44,
- 0x61, 0x74, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x4e,
- 0x61, 0x6d, 0x65, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65,
- 0x64, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c, 0x6f, 0x67,
- 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x9e, 0x02, 0x0a, 0x18, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x02, 0x69, 0x64, 0x12, 0x29, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01,
- 0x18, 0xc8, 0x01, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x27,
- 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6c,
- 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x25, 0x0a, 0x09, 0x6e, 0x69, 0x63, 0x6b, 0x5f,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72,
- 0x03, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x37,
- 0x0a, 0x12, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x5f, 0x6c, 0x61, 0x6e, 0x67,
- 0x75, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72,
- 0x03, 0x18, 0xc8, 0x01, 0x52, 0x11, 0x70, 0x72, 0x65, 0x66, 0x65, 0x72, 0x72, 0x65, 0x64, 0x4c,
- 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x12, 0x3e, 0x0a, 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65,
- 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x52,
- 0x06, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x22, 0x66, 0x0a, 0x19, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x55, 0x73, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x02, 0x69, 0x64, 0x12, 0x39, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x1c, 0xfa, 0x42, 0x19, 0x72, 0x17, 0x32, 0x15,
- 0x5e, 0x5b, 0x5e, 0x5b, 0x3a, 0x73, 0x70, 0x61, 0x63, 0x65, 0x3a, 0x5d, 0x5d, 0x7b, 0x31, 0x2c,
- 0x32, 0x30, 0x30, 0x7d, 0x24, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22,
- 0xf7, 0x01, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x0e, 0x0a,
- 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a,
- 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d,
- 0x61, 0x69, 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f,
- 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f,
- 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12,
- 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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, 0x0c,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 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, 0x0a, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xfb, 0x01, 0x0a, 0x0d, 0x55, 0x73,
- 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65,
- 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69,
- 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x76, 0x65,
- 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73,
- 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x1a, 0x0a,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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, 0x0c, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 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, 0x0a, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x76, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x20, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x05, 0x65, 0x6d,
- 0x61, 0x69, 0x6c, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x5f,
- 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f,
- 0x69, 0x73, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x22,
- 0xf7, 0x01, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x0e, 0x0a,
- 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a,
- 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68,
- 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f,
- 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f,
- 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12,
- 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 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, 0x0c,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 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, 0x0a, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xfb, 0x01, 0x0a, 0x0d, 0x55, 0x73,
- 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e,
- 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69, 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65,
- 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x1a, 0x0a,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 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, 0x0c, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 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, 0x0a, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x7e, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa,
- 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1f, 0x0a, 0x05, 0x70, 0x68,
- 0x6f, 0x6e, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x09, 0xfa, 0x42, 0x06, 0x72, 0x04,
- 0x10, 0x01, 0x18, 0x14, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x69,
- 0x73, 0x5f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x69, 0x73, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x56,
- 0x65, 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x22, 0xcd, 0x02, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72,
- 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74,
- 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72,
- 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x1f, 0x0a,
- 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16,
- 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
- 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74,
- 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
- 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x1a, 0x0a,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 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, 0x0c, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 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, 0x0a, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xd1, 0x02, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72,
- 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x63,
- 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74,
- 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74,
- 0x79, 0x12, 0x1f, 0x0a, 0x0b, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x43, 0x6f,
- 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x73, 0x74,
- 0x72, 0x65, 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65, 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
- 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a,
- 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08,
- 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 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,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xfb, 0x01, 0x0a, 0x18,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73,
- 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x22, 0x0a, 0x07, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x07, 0x63, 0x6f,
- 0x75, 0x6e, 0x74, 0x72, 0x79, 0x12, 0x24, 0x0a, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74,
- 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8,
- 0x01, 0x52, 0x08, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x29, 0x0a, 0x0b, 0x70,
- 0x6f, 0x73, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0a, 0x70, 0x6f, 0x73, 0x74,
- 0x61, 0x6c, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x20, 0x0a, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e,
- 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01,
- 0x52, 0x06, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 0x12, 0x2f, 0x0a, 0x0e, 0x73, 0x74, 0x72, 0x65,
- 0x65, 0x74, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x08, 0xfa, 0x42, 0x05, 0x72, 0x03, 0x18, 0xc8, 0x01, 0x52, 0x0d, 0x73, 0x74, 0x72, 0x65,
- 0x65, 0x74, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0x57, 0x0a, 0x10, 0x55, 0x73, 0x65,
- 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x12, 0x43, 0x0a,
- 0x04, 0x6d, 0x66, 0x61, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65,
- 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x52, 0x04, 0x6d, 0x66,
- 0x61, 0x73, 0x22, 0x8e, 0x01, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69,
- 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x3b, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x66, 0x61, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74,
- 0x79, 0x70, 0x65, 0x12, 0x3e, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x46, 0x41, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x22, 0x51, 0x0a, 0x0f, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12,
- 0x25, 0x0a, 0x08, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x42, 0x09, 0xfa, 0x42, 0x06, 0x72, 0x04, 0x10, 0x01, 0x18, 0x48, 0x52, 0x08, 0x70, 0x61,
- 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x22, 0x7f, 0x0a, 0x1e, 0x53, 0x65, 0x74, 0x50, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x44, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70,
- 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x22, 0x66, 0x0a, 0x10, 0x4f, 0x72, 0x67, 0x49, 0x61,
- 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x12, 0x38, 0x0a, 0x19, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x6d, 0x75, 0x73, 0x74, 0x5f, 0x62,
- 0x65, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15,
- 0x75, 0x73, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4d, 0x75, 0x73, 0x74, 0x42, 0x65, 0x44,
- 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x22,
- 0x32, 0x0a, 0x10, 0x4f, 0x72, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x6e,
- 0x61, 0x6d, 0x65, 0x22, 0x83, 0x02, 0x0a, 0x03, 0x4f, 0x72, 0x67, 0x12, 0x0e, 0x0a, 0x02, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3e, 0x0a, 0x05, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x53,
- 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0c,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0a, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x87, 0x02, 0x0a, 0x07, 0x4f, 0x72,
- 0x67, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3e, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44,
- 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x22, 0x29, 0x0a, 0x06, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x1f, 0x0a,
- 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa,
- 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x8a,
- 0x02, 0x0a, 0x09, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x15, 0x0a, 0x06,
- 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72,
- 0x67, 0x49, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64,
- 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74,
- 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x65, 0x72,
- 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x76, 0x65, 0x72,
- 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x12,
- 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0xf0, 0x02, 0x0a, 0x0d,
- 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, 0x15, 0x0a,
- 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f,
- 0x72, 0x67, 0x49, 0x64, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x1a, 0x0a, 0x08, 0x76, 0x65,
- 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x76, 0x65,
- 0x72, 0x69, 0x66, 0x69, 0x65, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72,
- 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
- 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x60, 0x0a, 0x0f,
- 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18,
- 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0e,
- 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x39,
- 0x0a, 0x13, 0x41, 0x64, 0x64, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8,
- 0x01, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x97, 0x01, 0x0a, 0x1a, 0x4f, 0x72,
- 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61,
- 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10,
- 0x01, 0x18, 0xc8, 0x01, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x55, 0x0a, 0x04,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x37, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44,
- 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
- 0x79, 0x70, 0x65, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x04, 0x74,
- 0x79, 0x70, 0x65, 0x22, 0x45, 0x0a, 0x1b, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x72, 0x6c, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x75, 0x72, 0x6c, 0x22, 0x3e, 0x0a, 0x18, 0x56, 0x61,
- 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18,
- 0xc8, 0x01, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x3a, 0x0a, 0x17, 0x50, 0x72,
- 0x69, 0x6d, 0x61, 0x72, 0x79, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1f, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06,
- 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x39, 0x0a, 0x16, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
- 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x1f, 0x0a, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x64, 0x6f, 0x6d, 0x61, 0x69,
- 0x6e, 0x22, 0xa3, 0x02, 0x0a, 0x17, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x45,
- 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x96, 0x01, 0x0a, 0x16, 0x4f, 0x72, 0x67, 0x44,
- 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
- 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
- 0x12, 0x4e, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73,
- 0x22, 0xc2, 0x01, 0x0a, 0x14, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x4e, 0x0a, 0x03, 0x6b, 0x65, 0x79,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69,
- 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82,
- 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x26, 0x0a, 0x0e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73,
- 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0xd4, 0x01,
- 0x0a, 0x09, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73,
- 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20,
- 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0a, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0c, 0x63, 0x72, 0x65, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x22, 0x4d, 0x0a, 0x13, 0x41, 0x64, 0x64, 0x4f, 0x72, 0x67, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x07, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42,
- 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a,
- 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f,
- 0x6c, 0x65, 0x73, 0x22, 0x50, 0x0a, 0x16, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4f, 0x72, 0x67,
- 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a,
- 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07,
- 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05,
- 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x3a, 0x0a, 0x16, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f,
- 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
- 0x64, 0x22, 0xa3, 0x02, 0x0a, 0x17, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x45,
- 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xea, 0x02, 0x0a, 0x0d, 0x4f, 0x72, 0x67, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65,
- 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
- 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
- 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12,
- 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x4e, 0x61, 0x6d, 0x65, 0x22, 0x96, 0x01, 0x0a, 0x16, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x4e, 0x0a,
- 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x34,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xc2, 0x01,
- 0x0a, 0x14, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x4e, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20,
- 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65,
- 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x22, 0x9a, 0x01, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x04, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05,
- 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x34, 0x0a, 0x16, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65,
- 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f,
- 0x6e, 0x12, 0x2c, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x6f, 0x6c,
- 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x22,
- 0xb3, 0x01, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d,
- 0x65, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x6f, 0x6c,
- 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x14, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x73,
- 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2c, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x08, 0x52, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65,
- 0x43, 0x68, 0x65, 0x63, 0x6b, 0x22, 0x9f, 0x02, 0x0a, 0x15, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12,
- 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a,
- 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x12, 0x43, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xa9, 0x03, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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, 0x0c,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x25, 0x0a, 0x0e,
- 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x06,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4f, 0x77,
- 0x6e, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12,
- 0x34, 0x0a, 0x16, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f,
- 0x61, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x14, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65,
- 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2c, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x18, 0x09, 0x20, 0x01, 0x28,
- 0x08, 0x52, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x68,
- 0x65, 0x63, 0x6b, 0x22, 0x92, 0x01, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x4c, 0x0a, 0x07, 0x71, 0x75,
- 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
- 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xbe, 0x01, 0x0a, 0x12, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12,
- 0x4c, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08,
- 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a,
- 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x4f, 0x0a, 0x08, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x43, 0x0a, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x52, 0x08, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x22, 0xef, 0x02, 0x0a, 0x07, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x42, 0x0a, 0x05, 0x73, 0x74,
- 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3b,
- 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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,
- 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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, 0x0c,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08,
- 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08,
- 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69,
- 0x6f, 0x6e, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2c,
- 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x63,
- 0x68, 0x65, 0x63, 0x6b, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x22, 0x2a, 0x0a, 0x12,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c,
- 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0xd8, 0x01, 0x0a, 0x0d, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65,
- 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03,
- 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x22, 0x63, 0x0a, 0x10, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64,
- 0x12, 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
- 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x66, 0x0a, 0x13, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x12,
- 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04,
- 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
- 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f,
- 0x6c, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73,
- 0x22, 0x50, 0x0a, 0x13, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64,
- 0x12, 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
- 0x49, 0x64, 0x22, 0x74, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c,
- 0x65, 0x41, 0x64, 0x64, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a,
- 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12,
- 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61,
- 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x82, 0x01, 0x0a, 0x12, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x64, 0x64, 0x42, 0x75, 0x6c, 0x6b, 0x12,
- 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04,
- 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x53, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x64, 0x64, 0x52,
- 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x80, 0x01,
- 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x43, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x19, 0x0a, 0x03,
- 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c,
- 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x72,
- 0x6f, 0x75, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70,
- 0x22, 0x91, 0x02, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65,
- 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12,
- 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
- 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x22, 0xd8, 0x01, 0x0a, 0x0f, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x52, 0x6f, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73,
- 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x14, 0x0a,
- 0x05, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x67, 0x72,
- 0x6f, 0x75, 0x70, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22,
- 0x47, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x19, 0x0a,
- 0x03, 0x6b, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72,
- 0x02, 0x10, 0x01, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x22, 0xa7, 0x02, 0x0a, 0x19, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14,
- 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c,
- 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65,
- 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61,
- 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x47, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x52, 0x6f, 0x6c, 0x65, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x70, 0x72,
- 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12,
- 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x22, 0xc2, 0x01, 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f,
- 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x09, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65,
- 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12,
- 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05,
- 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x50, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73,
- 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
- 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07,
- 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xc6, 0x01, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x12, 0x50, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52,
- 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68,
- 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61,
- 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x22, 0xee, 0x02, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
- 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05,
- 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61,
- 0x69, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14,
- 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72,
- 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64,
- 0x61, 0x74, 0x65, 0x18, 0x07, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74,
- 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61,
- 0x74, 0x65, 0x18, 0x08, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x0a,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x21,
- 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d,
- 0x65, 0x22, 0xab, 0x02, 0x0a, 0x1b, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
- 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12,
- 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x12, 0x49, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03,
- 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a,
- 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65,
- 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e,
- 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06,
- 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22,
- 0xc6, 0x01, 0x0a, 0x1a, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26,
- 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14,
- 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c,
- 0x69, 0x6d, 0x69, 0x74, 0x12, 0x52, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18,
- 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
- 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xca, 0x01, 0x0a, 0x18, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x52, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82,
- 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12,
- 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
- 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xe8, 0x02, 0x0a, 0x0b, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3e, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44,
- 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x4d, 0x0a, 0x0b, 0x6f, 0x69, 0x64, 0x63, 0x5f,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49,
- 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x69, 0x64, 0x63,
- 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x22, 0x74, 0x0a, 0x11, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x17, 0x0a,
- 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01,
- 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0xc7, 0x07, 0x0a, 0x0a, 0x4f, 0x49, 0x44, 0x43, 0x43,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63,
- 0x74, 0x5f, 0x75, 0x72, 0x69, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65,
- 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x69, 0x73, 0x12, 0x57, 0x0a, 0x0e, 0x72, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x02, 0x20, 0x03,
- 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79,
- 0x70, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0b, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70,
- 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79,
- 0x70, 0x65, 0x73, 0x12, 0x5e, 0x0a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x33, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f,
- 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79,
- 0x70, 0x65, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54,
- 0x79, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64,
- 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64,
- 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65,
- 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53,
- 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x5c, 0x0a, 0x10, 0x61, 0x75, 0x74, 0x68, 0x5f, 0x6d, 0x65,
- 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x54,
- 0x79, 0x70, 0x65, 0x52, 0x0e, 0x61, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x54,
- 0x79, 0x70, 0x65, 0x12, 0x39, 0x0a, 0x19, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x6f,
- 0x75, 0x74, 0x5f, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x72, 0x69, 0x73,
- 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x16, 0x70, 0x6f, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x6f,
- 0x75, 0x74, 0x52, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x69, 0x73, 0x12, 0x45,
- 0x0a, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x76, 0x65,
- 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x6e, 0x6f, 0x6e, 0x65, 0x5f, 0x63, 0x6f,
- 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x6e,
- 0x6f, 0x6e, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x74, 0x12, 0x56, 0x0a, 0x13,
- 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x62, 0x6c,
- 0x65, 0x6d, 0x73, 0x18, 0x0b, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x25, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x52, 0x12, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x69, 0x61, 0x6e, 0x63, 0x65, 0x50, 0x72, 0x6f, 0x62,
- 0x6c, 0x65, 0x6d, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x64, 0x65, 0x76, 0x5f, 0x6d, 0x6f, 0x64, 0x65,
- 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x65, 0x76, 0x4d, 0x6f, 0x64, 0x65, 0x12,
- 0x59, 0x0a, 0x11, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43,
- 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x61, 0x63, 0x63, 0x65, 0x73,
- 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x3d, 0x0a, 0x1b, 0x61, 0x63,
- 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f,
- 0x61, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x18, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x6f, 0x6c, 0x65,
- 0x41, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x0a, 0x17, 0x69, 0x64, 0x5f,
- 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x72,
- 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x69, 0x64, 0x54, 0x6f,
- 0x6b, 0x65, 0x6e, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e,
- 0x22, 0xd9, 0x06, 0x0a, 0x15, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07,
- 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x49, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x6e, 0x61,
- 0x6d, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75,
- 0x72, 0x69, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0c, 0x72, 0x65, 0x64, 0x69, 0x72,
- 0x65, 0x63, 0x74, 0x55, 0x72, 0x69, 0x73, 0x12, 0x57, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32,
- 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70,
- 0x65, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73,
- 0x12, 0x4e, 0x0a, 0x0b, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18,
- 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73,
- 0x12, 0x5e, 0x0a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x33, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43,
- 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52,
- 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65,
- 0x12, 0x5c, 0x0a, 0x10, 0x61, 0x75, 0x74, 0x68, 0x5f, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43,
- 0x41, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0e,
- 0x61, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x39,
- 0x0a, 0x19, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x5f, 0x72, 0x65,
- 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x72, 0x69, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x16, 0x70, 0x6f, 0x73, 0x74, 0x4c, 0x6f, 0x67, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x64,
- 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x69, 0x73, 0x12, 0x45, 0x0a, 0x07, 0x76, 0x65, 0x72,
- 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x09, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2b, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43,
- 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x07, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e,
- 0x12, 0x19, 0x0a, 0x08, 0x64, 0x65, 0x76, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x0a, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x07, 0x64, 0x65, 0x76, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x59, 0x0a, 0x11, 0x61,
- 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65,
- 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x54, 0x6f, 0x6b, 0x65,
- 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b,
- 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x3d, 0x0a, 0x1b, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
- 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65,
- 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x61, 0x63, 0x63,
- 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65,
- 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x0a, 0x17, 0x69, 0x64, 0x5f, 0x74, 0x6f, 0x6b, 0x65,
- 0x6e, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e,
- 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x69, 0x64, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52,
- 0x6f, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x9d, 0x06, 0x0a,
- 0x10, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x09,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x2e, 0x0a, 0x0e, 0x61, 0x70, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x0d, 0x61, 0x70, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x64,
- 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x72, 0x69, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x0c, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x69, 0x73, 0x12, 0x57,
- 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73,
- 0x18, 0x04, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x4e, 0x0a, 0x0b, 0x67, 0x72, 0x61, 0x6e, 0x74,
- 0x5f, 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49,
- 0x44, 0x43, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, 0x5e, 0x0a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x5c, 0x0a, 0x10, 0x61, 0x75, 0x74, 0x68, 0x5f,
- 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f,
- 0x64, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0e, 0x61, 0x75, 0x74, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f,
- 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x39, 0x0a, 0x19, 0x70, 0x6f, 0x73, 0x74, 0x5f, 0x6c, 0x6f,
- 0x67, 0x6f, 0x75, 0x74, 0x5f, 0x72, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x5f, 0x75, 0x72,
- 0x69, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x16, 0x70, 0x6f, 0x73, 0x74, 0x4c, 0x6f,
- 0x67, 0x6f, 0x75, 0x74, 0x52, 0x65, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x55, 0x72, 0x69, 0x73,
- 0x12, 0x19, 0x0a, 0x08, 0x64, 0x65, 0x76, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x09, 0x20, 0x01,
- 0x28, 0x08, 0x52, 0x07, 0x64, 0x65, 0x76, 0x4d, 0x6f, 0x64, 0x65, 0x12, 0x59, 0x0a, 0x11, 0x61,
- 0x63, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65,
- 0x18, 0x0a, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x54, 0x6f, 0x6b, 0x65,
- 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b,
- 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x3d, 0x0a, 0x1b, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73,
- 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65,
- 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x08, 0x52, 0x18, 0x61, 0x63, 0x63,
- 0x65, 0x73, 0x73, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65,
- 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x0a, 0x17, 0x69, 0x64, 0x5f, 0x74, 0x6f, 0x6b, 0x65,
- 0x6e, 0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e,
- 0x18, 0x0c, 0x20, 0x01, 0x28, 0x08, 0x52, 0x14, 0x69, 0x64, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x52,
- 0x6f, 0x6c, 0x65, 0x41, 0x73, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x33, 0x0a, 0x0c,
- 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x23, 0x0a, 0x0d,
- 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65,
- 0x74, 0x22, 0xec, 0x02, 0x0a, 0x0f, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3e, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05,
- 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44,
- 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x4d, 0x0a, 0x0b, 0x6f, 0x69, 0x64, 0x63, 0x5f,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49,
- 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x69, 0x64, 0x63,
- 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e,
- 0x63, 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x61, 0x70, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x22, 0xa7, 0x02, 0x0a, 0x19, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16,
- 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c,
- 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12,
- 0x47, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77,
- 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63,
- 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f,
- 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65,
- 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0xc2, 0x01, 0x0a, 0x18, 0x41,
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04,
- 0x72, 0x02, 0x10, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12,
- 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x50, 0x0a,
- 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x36,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22,
- 0xc6, 0x01, 0x0a, 0x16, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x50, 0x0a, 0x03, 0x6b, 0x65,
- 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa,
- 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06,
- 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68,
- 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xe3, 0x02, 0x0a, 0x0c, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0c, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x1b,
- 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x47, 0x0a, 0x05, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x31, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73,
- 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x88,
- 0x01, 0x0a, 0x12, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x43,
- 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x2d, 0x0a,
- 0x0e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x0c,
- 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
- 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x22, 0x72, 0x0a, 0x12, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12,
- 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x09, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64,
- 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x03, 0x20,
- 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x22, 0x51, 0x0a,
- 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x12,
- 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x09, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64,
- 0x22, 0x8b, 0x04, 0x0a, 0x10, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x5f,
- 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x65, 0x64, 0x5f, 0x6f, 0x72, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x4f, 0x72, 0x67,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79,
- 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79,
- 0x73, 0x12, 0x47, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e,
- 0x32, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x74,
- 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 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, 0x0c, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 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, 0x0a, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x72, 0x65, 0x73, 0x6f, 0x75,
- 0x72, 0x63, 0x65, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x12, 0x2e,
- 0x0a, 0x13, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x11, 0x72, 0x65, 0x73,
- 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4f, 0x77, 0x6e, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xa9,
- 0x02, 0x0a, 0x1a, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x48,
- 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x30,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77,
- 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63,
- 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f,
- 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65,
- 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x99, 0x01, 0x0a, 0x1b, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73,
- 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x4c, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72,
- 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71,
- 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xc4, 0x01, 0x0a, 0x19, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10,
- 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66,
- 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x51, 0x0a, 0x07, 0x71, 0x75,
- 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x37, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51,
- 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xc8, 0x01,
- 0x0a, 0x17, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x51, 0x0a, 0x03, 0x6b, 0x65, 0x79,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa,
- 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06,
- 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68,
- 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x2f, 0x0a, 0x17, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f,
- 0x6c, 0x65, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03,
- 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0xdd, 0x01, 0x0a, 0x12, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c,
- 0x65, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12,
- 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03,
- 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x22, 0x9b, 0x01, 0x0a, 0x15, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x41, 0x64, 0x64, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01,
- 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x08, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa,
- 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x07, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12,
- 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
- 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x9e, 0x01, 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10,
- 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x08,
- 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07,
- 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x07, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64,
- 0x12, 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
- 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28,
- 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x88, 0x01, 0x0a, 0x18, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52,
- 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a,
- 0x08, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x07, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x49,
- 0x64, 0x12, 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65,
- 0x72, 0x49, 0x64, 0x22, 0xf3, 0x02, 0x0a, 0x16, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12, 0x17,
- 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69,
- 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09,
- 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73,
- 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61,
- 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x18,
- 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x0b,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 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, 0x0a, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 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, 0x0c, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xb5, 0x02, 0x0a, 0x20, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16,
- 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c,
- 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12,
- 0x4e, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12,
- 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f,
- 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41,
- 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x22, 0xf4, 0x01, 0x0a, 0x1f, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x22, 0x0a,
- 0x08, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42,
- 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x07, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x49,
- 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12,
- 0x57, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x3d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52,
- 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xd4, 0x01, 0x0a, 0x1d, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x57, 0x0a, 0x03, 0x6b, 0x65,
- 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03,
- 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f,
- 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22,
- 0x82, 0x03, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x0e, 0x0a,
- 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a,
- 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
- 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x15, 0x0a, 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f, 0x72, 0x67, 0x49, 0x64, 0x12, 0x1d, 0x0a,
- 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
- 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x44, 0x0a, 0x05, 0x73, 0x74, 0x61,
- 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12,
- 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x07, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65,
- 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x08, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x49, 0x64, 0x22, 0x93, 0x01, 0x0a, 0x0f, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72,
- 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0a, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07,
- 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18,
- 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x12,
- 0x19, 0x0a, 0x08, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x07, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x22, 0x69, 0x0a, 0x0f, 0x55, 0x73,
- 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x20, 0x0a,
- 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07,
- 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12,
- 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04,
- 0x72, 0x02, 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65,
- 0x5f, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c,
- 0x65, 0x4b, 0x65, 0x79, 0x73, 0x22, 0x31, 0x0a, 0x13, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x75, 0x6c, 0x6b, 0x12, 0x1a, 0x0a, 0x03,
- 0x69, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x92, 0x01,
- 0x02, 0x08, 0x01, 0x52, 0x03, 0x69, 0x64, 0x73, 0x22, 0x48, 0x0a, 0x0b, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x12, 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f,
- 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10,
- 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x17, 0x0a, 0x02, 0x69, 0x64, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x02,
- 0x69, 0x64, 0x22, 0x9c, 0x05, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x02, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x15, 0x0a,
- 0x06, 0x6f, 0x72, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x6f,
- 0x72, 0x67, 0x49, 0x64, 0x12, 0x1d, 0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
- 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6b, 0x65, 0x79, 0x73,
- 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4b, 0x65, 0x79, 0x73,
- 0x12, 0x44, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52,
- 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x44, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d,
- 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
- 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x66, 0x69, 0x72, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6c, 0x61, 0x73, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x14, 0x0a,
- 0x05, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6d,
- 0x61, 0x69, 0x6c, 0x12, 0x19, 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18,
- 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f, 0x72, 0x67, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x1d,
- 0x0a, 0x0a, 0x6f, 0x72, 0x67, 0x5f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x18, 0x0e, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x09, 0x6f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x21, 0x0a,
- 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0f, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65,
- 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x10, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x25, 0x0a, 0x0e,
- 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18, 0x11,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4f, 0x77,
- 0x6e, 0x65, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e,
- 0x61, 0x6d, 0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c,
- 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f,
- 0x69, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x49,
- 0x64, 0x22, 0xa3, 0x02, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a,
- 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f,
- 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74,
- 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x45,
- 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2d,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72,
- 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73,
- 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75,
- 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d,
- 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69,
- 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x96, 0x01, 0x0a, 0x16, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69,
- 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74,
- 0x12, 0x4e, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73,
- 0x22, 0xcc, 0x01, 0x0a, 0x14, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x4e, 0x0a, 0x03, 0x6b, 0x65, 0x79,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82,
- 0x01, 0x02, 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x4e, 0x0a, 0x06, 0x6d, 0x65, 0x74,
- 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x18,
- 0x00, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22,
- 0xad, 0x02, 0x0a, 0x1c, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68,
- 0x69, 0x70, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
- 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69,
- 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21,
- 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c,
- 0x74, 0x12, 0x4a, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28,
- 0x0b, 0x32, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69,
- 0x70, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a,
- 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65,
- 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e,
- 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06,
- 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22,
- 0xc2, 0x01, 0x0a, 0x1b, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68,
- 0x69, 0x70, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x20, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
- 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d,
- 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12,
- 0x53, 0x0a, 0x07, 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x39, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71, 0x75, 0x65,
- 0x72, 0x69, 0x65, 0x73, 0x22, 0xd6, 0x01, 0x0a, 0x19, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65,
- 0x72, 0x79, 0x12, 0x53, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02,
- 0x20, 0x00, 0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x4e, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f,
- 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d,
- 0x65, 0x74, 0x68, 0x6f, 0x64, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x18, 0x00, 0x52,
- 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0xb4, 0x03,
- 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70,
- 0x56, 0x69, 0x65, 0x77, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x4b, 0x0a,
- 0x0b, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x2a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0a,
- 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x67,
- 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0b, 0x61, 0x67, 0x67, 0x72, 0x65, 0x67, 0x61, 0x74, 0x65, 0x49, 0x64, 0x12, 0x1b, 0x0a,
- 0x09, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x72, 0x6f,
- 0x6c, 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x05, 0x72, 0x6f, 0x6c, 0x65, 0x73,
- 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e,
- 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64,
- 0x61, 0x74, 0x65, 0x18, 0x08, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74,
- 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x25, 0x0a,
- 0x0e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x18,
- 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4f,
- 0x77, 0x6e, 0x65, 0x72, 0x22, 0x20, 0x0a, 0x05, 0x49, 0x64, 0x70, 0x49, 0x44, 0x12, 0x17, 0x0a,
- 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x22, 0xb6, 0x03, 0x0a, 0x03, 0x49, 0x64, 0x70, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3e,
- 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49,
- 0x64, 0x70, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f,
- 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x03, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04,
- 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
- 0x12, 0x51, 0x0a, 0x0c, 0x73, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x53, 0x74, 0x79, 0x6c, 0x69,
- 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x73, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x54,
- 0x79, 0x70, 0x65, 0x12, 0x50, 0x0a, 0x0b, 0x6f, 0x69, 0x64, 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x69, 0x64, 0x63, 0x49, 0x64,
- 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x69, 0x64, 0x63, 0x43,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x42, 0x0c, 0x0a, 0x0a, 0x69, 0x64, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22,
- 0x97, 0x01, 0x0a, 0x09, 0x49, 0x64, 0x70, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x17, 0x0a,
- 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02,
- 0x10, 0x01, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01,
- 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x51, 0x0a, 0x0c, 0x73, 0x74, 0x79, 0x6c, 0x69, 0x6e,
- 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64,
- 0x70, 0x53, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x73, 0x74,
- 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22, 0xc9, 0x02, 0x0a, 0x0d, 0x4f, 0x69,
- 0x64, 0x63, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x1b, 0x0a, 0x09, 0x63,
- 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08,
- 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65,
- 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0c, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x16, 0x0a,
- 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x69,
- 0x73, 0x73, 0x75, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x18,
- 0x04, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x12, 0x69, 0x0a,
- 0x18, 0x69, 0x64, 0x70, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d,
- 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x65, 0x6c,
- 0x64, 0x52, 0x15, 0x69, 0x64, 0x70, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d,
- 0x65, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x5b, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72,
- 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x46,
- 0x69, 0x65, 0x6c, 0x64, 0x52, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x4d, 0x61,
- 0x70, 0x70, 0x69, 0x6e, 0x67, 0x22, 0xe6, 0x03, 0x0a, 0x13, 0x4f, 0x69, 0x64, 0x63, 0x49, 0x64,
- 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a,
- 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07,
- 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x51, 0x0a,
- 0x0c, 0x73, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x53, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x54,
- 0x79, 0x70, 0x65, 0x52, 0x0b, 0x73, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65,
- 0x12, 0x27, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52,
- 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x2f, 0x0a, 0x0d, 0x63, 0x6c, 0x69,
- 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x0c, 0x63, 0x6c,
- 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x06, 0x69, 0x73,
- 0x73, 0x75, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72,
- 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x12, 0x16,
- 0x0a, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06,
- 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73, 0x12, 0x69, 0x0a, 0x18, 0x69, 0x64, 0x70, 0x5f, 0x64, 0x69,
- 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69,
- 0x6e, 0x67, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x61,
- 0x70, 0x70, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x15, 0x69, 0x64, 0x70, 0x44,
- 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e,
- 0x67, 0x12, 0x5b, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61,
- 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44,
- 0x43, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x0f, 0x75,
- 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x22, 0x87,
- 0x03, 0x0a, 0x13, 0x4f, 0x69, 0x64, 0x63, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x06, 0x69, 0x64, 0x70, 0x5f, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52,
- 0x05, 0x69, 0x64, 0x70, 0x49, 0x64, 0x12, 0x27, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74,
- 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05,
- 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49, 0x64, 0x12,
- 0x23, 0x0a, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65,
- 0x63, 0x72, 0x65, 0x74, 0x12, 0x22, 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x18, 0x04,
- 0x20, 0x01, 0x28, 0x09, 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01,
- 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x6f, 0x70,
- 0x65, 0x73, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x73,
- 0x12, 0x69, 0x0a, 0x18, 0x69, 0x64, 0x70, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f,
- 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x46,
- 0x69, 0x65, 0x6c, 0x64, 0x52, 0x15, 0x69, 0x64, 0x70, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x4e, 0x61, 0x6d, 0x65, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x5b, 0x0a, 0x10, 0x75,
- 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18,
- 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x61, 0x70, 0x70, 0x69,
- 0x6e, 0x67, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
- 0x65, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x22, 0x97, 0x02, 0x0a, 0x11, 0x49, 0x64, 0x70,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16,
- 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c,
- 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12,
- 0x3f, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x49, 0x64, 0x70, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x70, 0x72,
- 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12,
- 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61,
- 0x6d, 0x70, 0x22, 0x99, 0x04, 0x0a, 0x07, 0x49, 0x64, 0x70, 0x56, 0x69, 0x65, 0x77, 0x12, 0x0e,
- 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x3e,
- 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x28, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49,
- 0x64, 0x70, 0x53, 0x74, 0x61, 0x74, 0x65, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x3f,
- 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x03, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12,
- 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04,
- 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x12, 0x0a, 0x04,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65,
- 0x12, 0x51, 0x0a, 0x0c, 0x73, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x74, 0x79, 0x70, 0x65,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x53, 0x74, 0x79, 0x6c, 0x69,
- 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0b, 0x73, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x54,
- 0x79, 0x70, 0x65, 0x12, 0x54, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x5f,
- 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x50,
- 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0c, 0x70, 0x72, 0x6f,
- 0x76, 0x69, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x54, 0x0a, 0x0b, 0x6f, 0x69, 0x64,
- 0x63, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4f, 0x69, 0x64, 0x63, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x56, 0x69, 0x65,
- 0x77, 0x48, 0x00, 0x52, 0x0a, 0x6f, 0x69, 0x64, 0x63, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12,
- 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
- 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x42, 0x11, 0x0a, 0x0f, 0x69,
- 0x64, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x22, 0xa8,
- 0x02, 0x0a, 0x11, 0x4f, 0x69, 0x64, 0x63, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x56, 0x69, 0x65, 0x77, 0x12, 0x1b, 0x0a, 0x09, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x49,
- 0x64, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x06, 0x69, 0x73, 0x73, 0x75, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x63, 0x6f,
- 0x70, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x73, 0x63, 0x6f, 0x70, 0x65,
- 0x73, 0x12, 0x69, 0x0a, 0x18, 0x69, 0x64, 0x70, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67,
- 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x15, 0x69, 0x64, 0x70, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61,
- 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x12, 0x5b, 0x0a, 0x10,
- 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67,
- 0x18, 0x05, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x61, 0x70, 0x70,
- 0x69, 0x6e, 0x67, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x52, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61,
- 0x6d, 0x65, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x22, 0x8a, 0x01, 0x0a, 0x10, 0x49, 0x64,
- 0x70, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16,
- 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x48, 0x0a, 0x07,
- 0x71, 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2e, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49,
- 0x64, 0x70, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x52, 0x07, 0x71,
- 0x75, 0x65, 0x72, 0x69, 0x65, 0x73, 0x22, 0xb6, 0x01, 0x0a, 0x0e, 0x49, 0x64, 0x70, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x51, 0x75, 0x65, 0x72, 0x79, 0x12, 0x48, 0x0a, 0x03, 0x6b, 0x65, 0x79,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4b, 0x65, 0x79, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52, 0x03,
- 0x6b, 0x65, 0x79, 0x12, 0x44, 0x0a, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x0e, 0x32, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f,
- 0x64, 0x52, 0x06, 0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c,
- 0x75, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22,
- 0xb5, 0x02, 0x0a, 0x0b, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12,
- 0x36, 0x0a, 0x17, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
- 0x65, 0x5f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x15, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
- 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2c,
- 0x0a, 0x12, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
- 0x5f, 0x69, 0x64, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x61, 0x6c, 0x6c, 0x6f,
- 0x77, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x70, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a,
- 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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, 0x0a,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x6f,
- 0x72, 0x63, 0x65, 0x5f, 0x6d, 0x66, 0x61, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x66,
- 0x6f, 0x72, 0x63, 0x65, 0x4d, 0x66, 0x61, 0x22, 0xbe, 0x01, 0x0a, 0x12, 0x4c, 0x6f, 0x67, 0x69,
- 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x36,
- 0x0a, 0x17, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65,
- 0x5f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x15, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x50, 0x61,
- 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f,
- 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d,
- 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2c, 0x0a,
- 0x12, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f,
- 0x69, 0x64, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
- 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x70, 0x12, 0x1b, 0x0a, 0x09, 0x66,
- 0x6f, 0x72, 0x63, 0x65, 0x5f, 0x6d, 0x66, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
- 0x66, 0x6f, 0x72, 0x63, 0x65, 0x4d, 0x66, 0x61, 0x22, 0x3c, 0x0a, 0x0d, 0x49, 0x64, 0x70, 0x50,
- 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x49, 0x44, 0x12, 0x2b, 0x0a, 0x0d, 0x69, 0x64, 0x70,
- 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x07, 0xfa, 0x42, 0x04, 0x72, 0x02, 0x10, 0x01, 0x52, 0x0b, 0x69, 0x64, 0x70, 0x43, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x49, 0x64, 0x22, 0xa7, 0x01, 0x0a, 0x0e, 0x49, 0x64, 0x70, 0x50, 0x72,
- 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x12, 0x2e, 0x0a, 0x0d, 0x69, 0x64, 0x70,
- 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x42, 0x0a, 0xfa, 0x42, 0x07, 0x72, 0x05, 0x10, 0x01, 0x18, 0xc8, 0x01, 0x52, 0x0b, 0x69, 0x64,
- 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x64, 0x12, 0x65, 0x0a, 0x11, 0x69, 0x64, 0x70,
- 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65,
- 0x72, 0x54, 0x79, 0x70, 0x65, 0x42, 0x08, 0xfa, 0x42, 0x05, 0x82, 0x01, 0x02, 0x20, 0x00, 0x52,
- 0x0f, 0x69, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65,
- 0x22, 0x8e, 0x01, 0x0a, 0x0b, 0x49, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72,
- 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69,
- 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x49, 0x64, 0x12, 0x5b, 0x0a, 0x11, 0x69, 0x64, 0x70, 0x5f, 0x70, 0x72, 0x6f, 0x76,
- 0x69, 0x64, 0x65, 0x72, 0x5f, 0x54, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32,
- 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x49, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65,
- 0x52, 0x0f, 0x69, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70,
- 0x65, 0x22, 0xd3, 0x02, 0x0a, 0x0f, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x56, 0x69, 0x65, 0x77, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x12,
- 0x36, 0x0a, 0x17, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d,
- 0x65, 0x5f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x15, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x55, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x6c, 0x6c, 0x6f, 0x77,
- 0x5f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x52, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x12, 0x2c,
- 0x0a, 0x12, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
- 0x5f, 0x69, 0x64, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x61, 0x6c, 0x6c, 0x6f,
- 0x77, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x64, 0x70, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a,
- 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 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, 0x0a,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x66, 0x6f,
- 0x72, 0x63, 0x65, 0x5f, 0x6d, 0x66, 0x61, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x66,
- 0x6f, 0x72, 0x63, 0x65, 0x4d, 0x66, 0x61, 0x22, 0x86, 0x01, 0x0a, 0x0f, 0x49, 0x64, 0x70, 0x50,
- 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x12, 0x22, 0x0a, 0x0d, 0x69,
- 0x64, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x0b, 0x69, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x64, 0x12,
- 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e,
- 0x61, 0x6d, 0x65, 0x12, 0x3b, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x0e, 0x32, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65,
- 0x22, 0xa7, 0x02, 0x0a, 0x19, 0x49, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16,
- 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
- 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c,
- 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12,
- 0x47, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32,
- 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x49, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77,
- 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63,
- 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53,
- 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41, 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f,
- 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65,
- 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70, 0x22, 0x48, 0x0a, 0x18, 0x49, 0x64,
- 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14,
- 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c,
- 0x69, 0x6d, 0x69, 0x74, 0x22, 0x61, 0x0a, 0x18, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
- 0x49, 0x44, 0x50, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x69, 0x6d, 0x69,
- 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x17,
- 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0xa7, 0x02, 0x0a, 0x19, 0x45, 0x78, 0x74, 0x65,
- 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x44, 0x50, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x14, 0x0a,
- 0x05, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x05, 0x6c, 0x69,
- 0x6d, 0x69, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c,
- 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x47, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74,
- 0x18, 0x04, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
- 0x49, 0x44, 0x50, 0x56, 0x69, 0x65, 0x77, 0x52, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12,
- 0x2d, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x5f, 0x73, 0x65, 0x71,
- 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x04, 0x52, 0x11, 0x70, 0x72, 0x6f,
- 0x63, 0x65, 0x73, 0x73, 0x65, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x41,
- 0x0a, 0x0e, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d, 0x70,
- 0x18, 0x06, 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, 0x0d, 0x76, 0x69, 0x65, 0x77, 0x54, 0x69, 0x6d, 0x65, 0x73, 0x74, 0x61, 0x6d,
- 0x70, 0x22, 0xce, 0x02, 0x0a, 0x0f, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x44,
- 0x50, 0x56, 0x69, 0x65, 0x77, 0x12, 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22,
- 0x0a, 0x0d, 0x69, 0x64, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x69, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x65, 0x78,
- 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08,
- 0x69, 0x64, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07,
- 0x69, 0x64, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3b, 0x0a, 0x1a, 0x65, 0x78, 0x74, 0x65, 0x72,
- 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x65, 0x78, 0x74,
- 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x55, 0x73, 0x65, 0x72, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79,
- 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61,
- 0x74, 0x65, 0x22, 0x81, 0x01, 0x0a, 0x18, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49,
- 0x44, 0x50, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12,
- 0x17, 0x0a, 0x07, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x69, 0x64, 0x70, 0x5f,
- 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x0b, 0x69, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x49, 0x64, 0x12, 0x28, 0x0a, 0x10,
- 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c,
- 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x6e, 0x0a, 0x13, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
- 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x57, 0x0a,
- 0x0e, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x5f, 0x66, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x18,
- 0x01, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61, 0x63,
- 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0d, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46,
- 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x22, 0x65, 0x0a, 0x0c, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64,
- 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x55, 0x0a, 0x0d, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64,
- 0x5f, 0x66, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x30, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53,
- 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52,
- 0x0c, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x22, 0x6a, 0x0a,
- 0x12, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x73,
- 0x75, 0x6c, 0x74, 0x12, 0x54, 0x0a, 0x0d, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x66, 0x61, 0x63,
- 0x74, 0x6f, 0x72, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0e, 0x32, 0x2f, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x75, 0x6c, 0x74,
- 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0c, 0x6d, 0x75, 0x6c,
- 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x22, 0x61, 0x0a, 0x0b, 0x4d, 0x75, 0x6c,
- 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x12, 0x52, 0x0a, 0x0c, 0x6d, 0x75, 0x6c, 0x74,
- 0x69, 0x5f, 0x66, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x2f,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x52,
- 0x0b, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x22, 0xdb, 0x02, 0x0a,
- 0x18, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78,
- 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x69, 0x6e,
- 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d,
- 0x69, 0x6e, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x23, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f,
- 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x0c, 0x68, 0x61, 0x73, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x12, 0x23, 0x0a,
- 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x75, 0x70, 0x70, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x18, 0x03,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x55, 0x70, 0x70, 0x65, 0x72, 0x63, 0x61,
- 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65,
- 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18,
- 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61, 0x73, 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c,
- 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x06, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d,
- 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 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,
- 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a,
- 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 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, 0x0a,
- 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0xc8, 0x01, 0x0a, 0x1f, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74,
- 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1d,
- 0x0a, 0x0a, 0x6d, 0x69, 0x6e, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x04, 0x52, 0x09, 0x6d, 0x69, 0x6e, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12, 0x23, 0x0a,
- 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x63, 0x61,
- 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x75, 0x70, 0x70, 0x65, 0x72, 0x63,
- 0x61, 0x73, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x55, 0x70,
- 0x70, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x6e,
- 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61, 0x73,
- 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f, 0x73, 0x79,
- 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61, 0x73, 0x53,
- 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x22, 0xf9, 0x02, 0x0a, 0x1c, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c,
- 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
- 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x69, 0x6e, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x04, 0x52, 0x09, 0x6d, 0x69, 0x6e, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x12,
- 0x23, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73, 0x4c, 0x6f, 0x77, 0x65, 0x72,
- 0x63, 0x61, 0x73, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x68, 0x61, 0x73, 0x5f, 0x75, 0x70, 0x70, 0x65,
- 0x72, 0x63, 0x61, 0x73, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0c, 0x68, 0x61, 0x73,
- 0x55, 0x70, 0x70, 0x65, 0x72, 0x63, 0x61, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73,
- 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68,
- 0x61, 0x73, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x1d, 0x0a, 0x0a, 0x68, 0x61, 0x73, 0x5f,
- 0x73, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x68, 0x61,
- 0x73, 0x53, 0x79, 0x6d, 0x62, 0x6f, 0x6c, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65,
- 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f,
- 0x64, 0x61, 0x74, 0x65, 0x18, 0x08, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64,
- 0x61, 0x74, 0x65, 0x18, 0x09, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74,
- 0x65, 0x22, 0xf9, 0x01, 0x0a, 0x11, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67,
- 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x20, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x61,
- 0x67, 0x65, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0a, 0x6d,
- 0x61, 0x78, 0x41, 0x67, 0x65, 0x44, 0x61, 0x79, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x65, 0x78, 0x70,
- 0x69, 0x72, 0x65, 0x5f, 0x77, 0x61, 0x72, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x04, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x57, 0x61, 0x72, 0x6e, 0x44,
- 0x61, 0x79, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12,
- 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65,
- 0x18, 0x04, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65,
- 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18,
- 0x05, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x66, 0x0a,
- 0x18, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x6d, 0x61, 0x78,
- 0x5f, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x0a, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x44, 0x61, 0x79, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x65,
- 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x77, 0x61, 0x72, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x57, 0x61, 0x72,
- 0x6e, 0x44, 0x61, 0x79, 0x73, 0x22, 0x97, 0x02, 0x0a, 0x15, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x12,
- 0x18, 0x0a, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08,
- 0x52, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x12, 0x20, 0x0a, 0x0c, 0x6d, 0x61, 0x78,
- 0x5f, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x0a, 0x6d, 0x61, 0x78, 0x41, 0x67, 0x65, 0x44, 0x61, 0x79, 0x73, 0x12, 0x28, 0x0a, 0x10, 0x65,
- 0x78, 0x70, 0x69, 0x72, 0x65, 0x5f, 0x77, 0x61, 0x72, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18,
- 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0e, 0x65, 0x78, 0x70, 0x69, 0x72, 0x65, 0x57, 0x61, 0x72,
- 0x6e, 0x44, 0x61, 0x79, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63,
- 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61,
- 0x74, 0x65, 0x18, 0x05, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61,
- 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74,
- 0x65, 0x18, 0x06, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22,
- 0x86, 0x02, 0x0a, 0x15, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b,
- 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61, 0x78,
- 0x5f, 0x61, 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52,
- 0x0b, 0x6d, 0x61, 0x78, 0x41, 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x12, 0x30, 0x0a, 0x14,
- 0x73, 0x68, 0x6f, 0x77, 0x5f, 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x5f, 0x66, 0x61, 0x69,
- 0x6c, 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x73, 0x68, 0x6f, 0x77,
- 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12, 0x1a,
- 0x0a, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04,
- 0x52, 0x08, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72,
- 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x04, 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, 0x0c, 0x63,
- 0x72, 0x65, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63,
- 0x68, 0x61, 0x6e, 0x67, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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, 0x0a, 0x63, 0x68,
- 0x61, 0x6e, 0x67, 0x65, 0x44, 0x61, 0x74, 0x65, 0x22, 0x73, 0x0a, 0x1c, 0x50, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63,
- 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f,
- 0x61, 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b,
- 0x6d, 0x61, 0x78, 0x41, 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73,
- 0x68, 0x6f, 0x77, 0x5f, 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x5f, 0x66, 0x61, 0x69, 0x6c,
- 0x75, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x73, 0x68, 0x6f, 0x77, 0x4c,
- 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x22, 0xa4, 0x02,
- 0x0a, 0x19, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75,
- 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x12, 0x18, 0x0a, 0x07, 0x64,
- 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x65,
- 0x66, 0x61, 0x75, 0x6c, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x61, 0x74, 0x74,
- 0x65, 0x6d, 0x70, 0x74, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0b, 0x6d, 0x61, 0x78,
- 0x41, 0x74, 0x74, 0x65, 0x6d, 0x70, 0x74, 0x73, 0x12, 0x30, 0x0a, 0x14, 0x73, 0x68, 0x6f, 0x77,
- 0x5f, 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x5f, 0x66, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65,
- 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x12, 0x73, 0x68, 0x6f, 0x77, 0x4c, 0x6f, 0x63, 0x6b,
- 0x6f, 0x75, 0x74, 0x46, 0x61, 0x69, 0x6c, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x04, 0x52, 0x08, 0x73, 0x65,
- 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x3f, 0x0a, 0x0d, 0x63, 0x72, 0x65, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x05, 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, 0x0c, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x3b, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06, 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, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x44, 0x61, 0x74, 0x65, 0x2a, 0x58, 0x0a, 0x0c, 0x49, 0x61, 0x6d, 0x53, 0x65, 0x74, 0x75, 0x70,
- 0x53, 0x74, 0x65, 0x70, 0x12, 0x1c, 0x0a, 0x18, 0x69, 0x61, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x75,
- 0x70, 0x5f, 0x73, 0x74, 0x65, 0x70, 0x5f, 0x55, 0x4e, 0x44, 0x45, 0x46, 0x49, 0x4e, 0x45, 0x44,
- 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10, 0x69, 0x61, 0x6d, 0x5f, 0x73, 0x65, 0x74, 0x75, 0x70, 0x5f,
- 0x73, 0x74, 0x65, 0x70, 0x5f, 0x31, 0x10, 0x01, 0x12, 0x14, 0x0a, 0x10, 0x69, 0x61, 0x6d, 0x5f,
- 0x73, 0x65, 0x74, 0x75, 0x70, 0x5f, 0x73, 0x74, 0x65, 0x70, 0x5f, 0x32, 0x10, 0x02, 0x2a, 0xaf,
- 0x01, 0x0a, 0x09, 0x55, 0x73, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x19, 0x0a, 0x15,
- 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
- 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x14, 0x0a, 0x10, 0x55, 0x53, 0x45, 0x52, 0x53,
- 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x16, 0x0a,
- 0x12, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54,
- 0x49, 0x56, 0x45, 0x10, 0x02, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41,
- 0x54, 0x45, 0x5f, 0x44, 0x45, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, 0x03, 0x12, 0x14, 0x0a, 0x10,
- 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x4c, 0x4f, 0x43, 0x4b, 0x45, 0x44,
- 0x10, 0x04, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45, 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f,
- 0x53, 0x55, 0x53, 0x50, 0x45, 0x4e, 0x44, 0x10, 0x05, 0x12, 0x15, 0x0a, 0x11, 0x55, 0x53, 0x45,
- 0x52, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x49, 0x54, 0x49, 0x41, 0x4c, 0x10, 0x06,
- 0x2a, 0x58, 0x0a, 0x06, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x16, 0x0a, 0x12, 0x47, 0x45,
- 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
- 0x10, 0x00, 0x12, 0x11, 0x0a, 0x0d, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52, 0x5f, 0x46, 0x45, 0x4d,
- 0x41, 0x4c, 0x45, 0x10, 0x01, 0x12, 0x0f, 0x0a, 0x0b, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52, 0x5f,
- 0x4d, 0x41, 0x4c, 0x45, 0x10, 0x02, 0x12, 0x12, 0x0a, 0x0e, 0x47, 0x45, 0x4e, 0x44, 0x45, 0x52,
- 0x5f, 0x44, 0x49, 0x56, 0x45, 0x52, 0x53, 0x45, 0x10, 0x03, 0x2a, 0x41, 0x0a, 0x0e, 0x4d, 0x61,
- 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x16,
- 0x4d, 0x41, 0x43, 0x48, 0x49, 0x4e, 0x45, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45,
- 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x4d, 0x41, 0x43, 0x48,
- 0x49, 0x4e, 0x45, 0x4b, 0x45, 0x59, 0x5f, 0x4a, 0x53, 0x4f, 0x4e, 0x10, 0x01, 0x2a, 0x8d, 0x02,
- 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12,
- 0x1d, 0x0a, 0x19, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59,
- 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1b,
- 0x0a, 0x17, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f,
- 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x01, 0x12, 0x1c, 0x0a, 0x18, 0x55,
- 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x49, 0x52,
- 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x12, 0x1b, 0x0a, 0x17, 0x55, 0x53, 0x45,
- 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4c, 0x41, 0x53, 0x54, 0x5f,
- 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x03, 0x12, 0x1b, 0x0a, 0x17, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45,
- 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4e, 0x49, 0x43, 0x4b, 0x5f, 0x4e, 0x41, 0x4d,
- 0x45, 0x10, 0x04, 0x12, 0x1e, 0x0a, 0x1a, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x44, 0x49, 0x53, 0x50, 0x4c, 0x41, 0x59, 0x5f, 0x4e, 0x41, 0x4d,
- 0x45, 0x10, 0x05, 0x12, 0x17, 0x0a, 0x13, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x06, 0x12, 0x17, 0x0a, 0x13,
- 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x53, 0x54,
- 0x41, 0x54, 0x45, 0x10, 0x07, 0x12, 0x16, 0x0a, 0x12, 0x55, 0x53, 0x45, 0x52, 0x53, 0x45, 0x41,
- 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x08, 0x2a, 0xea, 0x02,
- 0x0a, 0x0c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x12, 0x17,
- 0x0a, 0x13, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x45,
- 0x51, 0x55, 0x41, 0x4c, 0x53, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x53, 0x5f, 0x57,
- 0x49, 0x54, 0x48, 0x10, 0x01, 0x12, 0x19, 0x0a, 0x15, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d,
- 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x49, 0x4e, 0x53, 0x10, 0x02,
- 0x12, 0x23, 0x0a, 0x1f, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44,
- 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c, 0x53, 0x5f, 0x49, 0x47, 0x4e, 0x4f, 0x52, 0x45, 0x5f, 0x43,
- 0x41, 0x53, 0x45, 0x10, 0x03, 0x12, 0x28, 0x0a, 0x24, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d,
- 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x53, 0x5f, 0x57, 0x49, 0x54,
- 0x48, 0x5f, 0x49, 0x47, 0x4e, 0x4f, 0x52, 0x45, 0x5f, 0x43, 0x41, 0x53, 0x45, 0x10, 0x04, 0x12,
- 0x25, 0x0a, 0x21, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f,
- 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x49, 0x4e, 0x53, 0x5f, 0x49, 0x47, 0x4e, 0x4f, 0x52, 0x45, 0x5f,
- 0x43, 0x41, 0x53, 0x45, 0x10, 0x05, 0x12, 0x1b, 0x0a, 0x17, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48,
- 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c,
- 0x53, 0x10, 0x06, 0x12, 0x1d, 0x0a, 0x19, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54,
- 0x48, 0x4f, 0x44, 0x5f, 0x47, 0x52, 0x45, 0x41, 0x54, 0x45, 0x52, 0x5f, 0x54, 0x48, 0x41, 0x4e,
- 0x10, 0x07, 0x12, 0x1a, 0x0a, 0x16, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48,
- 0x4f, 0x44, 0x5f, 0x4c, 0x45, 0x53, 0x53, 0x5f, 0x54, 0x48, 0x41, 0x4e, 0x10, 0x08, 0x12, 0x1a,
- 0x0a, 0x16, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x49,
- 0x53, 0x5f, 0x4f, 0x4e, 0x45, 0x5f, 0x4f, 0x46, 0x10, 0x09, 0x12, 0x1e, 0x0a, 0x1a, 0x53, 0x45,
- 0x41, 0x52, 0x43, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f,
- 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x49, 0x4e, 0x53, 0x10, 0x0a, 0x2a, 0x44, 0x0a, 0x07, 0x4d, 0x66,
- 0x61, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x13, 0x4d, 0x46, 0x41, 0x54, 0x59, 0x50, 0x45,
- 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x0f,
- 0x0a, 0x0b, 0x4d, 0x46, 0x41, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x53, 0x4d, 0x53, 0x10, 0x01, 0x12,
- 0x0f, 0x0a, 0x0b, 0x4d, 0x46, 0x41, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x54, 0x50, 0x10, 0x02,
- 0x2a, 0x66, 0x0a, 0x08, 0x4d, 0x46, 0x41, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x14,
- 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
- 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x16, 0x0a, 0x12, 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41,
- 0x54, 0x45, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x59, 0x10, 0x01, 0x12, 0x12,
- 0x0a, 0x0e, 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x52, 0x45, 0x41, 0x44, 0x59,
- 0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x4d, 0x46, 0x41, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x52,
- 0x45, 0x4d, 0x4f, 0x56, 0x45, 0x44, 0x10, 0x03, 0x2a, 0x48, 0x0a, 0x10, 0x4e, 0x6f, 0x74, 0x69,
- 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x16,
- 0x4e, 0x4f, 0x54, 0x49, 0x46, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45,
- 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x00, 0x12, 0x18, 0x0a, 0x14, 0x4e, 0x4f, 0x54, 0x49,
- 0x46, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x53, 0x4d, 0x53,
- 0x10, 0x01, 0x2a, 0x75, 0x0a, 0x0b, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x74, 0x61, 0x74,
- 0x65, 0x12, 0x1b, 0x0a, 0x17, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x53, 0x54, 0x41, 0x54, 0x45,
- 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x16,
- 0x0a, 0x12, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43,
- 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x18, 0x0a, 0x14, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59,
- 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02,
- 0x12, 0x17, 0x0a, 0x13, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f,
- 0x44, 0x45, 0x4c, 0x45, 0x54, 0x45, 0x44, 0x10, 0x03, 0x2a, 0x50, 0x0a, 0x08, 0x4f, 0x72, 0x67,
- 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x4f, 0x52, 0x47, 0x53, 0x54, 0x41, 0x54,
- 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
- 0x13, 0x0a, 0x0f, 0x4f, 0x52, 0x47, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49,
- 0x56, 0x45, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x4f, 0x52, 0x47, 0x53, 0x54, 0x41, 0x54, 0x45,
- 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a, 0x85, 0x01, 0x0a, 0x17,
- 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x27, 0x0a, 0x23, 0x4f, 0x52, 0x47, 0x44, 0x4f,
- 0x4d, 0x41, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59,
- 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
- 0x12, 0x20, 0x0a, 0x1c, 0x4f, 0x52, 0x47, 0x44, 0x4f, 0x4d, 0x41, 0x49, 0x4e, 0x56, 0x41, 0x4c,
- 0x49, 0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x48, 0x54, 0x54, 0x50,
- 0x10, 0x01, 0x12, 0x1f, 0x0a, 0x1b, 0x4f, 0x52, 0x47, 0x44, 0x4f, 0x4d, 0x41, 0x49, 0x4e, 0x56,
- 0x41, 0x4c, 0x49, 0x44, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x44, 0x4e,
- 0x53, 0x10, 0x02, 0x2a, 0x57, 0x0a, 0x12, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x22, 0x0a, 0x1e, 0x4f, 0x52, 0x47,
- 0x44, 0x4f, 0x4d, 0x41, 0x49, 0x4e, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f,
- 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1d, 0x0a,
- 0x19, 0x4f, 0x52, 0x47, 0x44, 0x4f, 0x4d, 0x41, 0x49, 0x4e, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48,
- 0x4b, 0x45, 0x59, 0x5f, 0x44, 0x4f, 0x4d, 0x41, 0x49, 0x4e, 0x10, 0x01, 0x2a, 0xbb, 0x01, 0x0a,
- 0x12, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x4b, 0x65, 0x79, 0x12, 0x22, 0x0a, 0x1e, 0x4f, 0x52, 0x47, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52,
- 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
- 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x4f, 0x52, 0x47, 0x4d, 0x45,
- 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x49,
- 0x52, 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x01, 0x12, 0x20, 0x0a, 0x1c, 0x4f, 0x52,
- 0x47, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59,
- 0x5f, 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x12, 0x1c, 0x0a, 0x18,
- 0x4f, 0x52, 0x47, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b,
- 0x45, 0x59, 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x03, 0x12, 0x1e, 0x0a, 0x1a, 0x4f, 0x52,
- 0x47, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59,
- 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x49, 0x44, 0x10, 0x04, 0x2a, 0x57, 0x0a, 0x10, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x20,
- 0x0a, 0x1c, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b,
- 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00,
- 0x12, 0x21, 0x0a, 0x1d, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x4e, 0x41, 0x4d,
- 0x45, 0x10, 0x01, 0x2a, 0x60, 0x0a, 0x0c, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x74,
- 0x61, 0x74, 0x65, 0x12, 0x1c, 0x0a, 0x18, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x53, 0x54,
- 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
- 0x00, 0x12, 0x17, 0x0a, 0x13, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x53, 0x54, 0x41, 0x54,
- 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x19, 0x0a, 0x15, 0x50, 0x52,
- 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54,
- 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a, 0x81, 0x01, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x24,
- 0x0a, 0x20, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x52, 0x4f, 0x4c, 0x45, 0x53, 0x45, 0x41,
- 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
- 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x52,
- 0x4f, 0x4c, 0x45, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4b, 0x45, 0x59,
- 0x10, 0x01, 0x12, 0x25, 0x0a, 0x21, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x52, 0x4f, 0x4c,
- 0x45, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x44, 0x49, 0x53, 0x50, 0x4c,
- 0x41, 0x59, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x2a, 0xf9, 0x01, 0x0a, 0x16, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4b, 0x65, 0x79, 0x12, 0x26, 0x0a, 0x22, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4d,
- 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55,
- 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x25, 0x0a, 0x21,
- 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41,
- 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x49, 0x52, 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d,
- 0x45, 0x10, 0x01, 0x12, 0x24, 0x0a, 0x20, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45,
- 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4c, 0x41,
- 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x12, 0x20, 0x0a, 0x1c, 0x50, 0x52, 0x4f,
- 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48,
- 0x4b, 0x45, 0x59, 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x03, 0x12, 0x22, 0x0a, 0x1e, 0x50,
- 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52,
- 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x49, 0x44, 0x10, 0x04, 0x12,
- 0x24, 0x0a, 0x20, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52,
- 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4e,
- 0x41, 0x4d, 0x45, 0x10, 0x05, 0x2a, 0x50, 0x0a, 0x08, 0x41, 0x70, 0x70, 0x53, 0x74, 0x61, 0x74,
- 0x65, 0x12, 0x18, 0x0a, 0x14, 0x41, 0x50, 0x50, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e,
- 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x13, 0x0a, 0x0f, 0x41,
- 0x50, 0x50, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01,
- 0x12, 0x15, 0x0a, 0x11, 0x41, 0x50, 0x50, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41,
- 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a, 0x1b, 0x0a, 0x0b, 0x4f, 0x49, 0x44, 0x43, 0x56,
- 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x0c, 0x0a, 0x08, 0x4f, 0x49, 0x44, 0x43, 0x56, 0x31,
- 0x5f, 0x30, 0x10, 0x00, 0x2a, 0x40, 0x0a, 0x0d, 0x4f, 0x49, 0x44, 0x43, 0x54, 0x6f, 0x6b, 0x65,
- 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x18, 0x0a, 0x14, 0x4f, 0x49, 0x44, 0x43, 0x54, 0x6f, 0x6b,
- 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x5f, 0x42, 0x65, 0x61, 0x72, 0x65, 0x72, 0x10, 0x00, 0x12,
- 0x15, 0x0a, 0x11, 0x4f, 0x49, 0x44, 0x43, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x54, 0x79, 0x70, 0x65,
- 0x5f, 0x4a, 0x57, 0x54, 0x10, 0x01, 0x2a, 0x71, 0x0a, 0x10, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x15, 0x4f, 0x49,
- 0x44, 0x43, 0x52, 0x45, 0x53, 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x43,
- 0x4f, 0x44, 0x45, 0x10, 0x00, 0x12, 0x1d, 0x0a, 0x19, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x45, 0x53,
- 0x50, 0x4f, 0x4e, 0x53, 0x45, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x54, 0x4f, 0x4b,
- 0x45, 0x4e, 0x10, 0x01, 0x12, 0x23, 0x0a, 0x1f, 0x4f, 0x49, 0x44, 0x43, 0x52, 0x45, 0x53, 0x50,
- 0x4f, 0x4e, 0x53, 0x45, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x49, 0x44, 0x5f, 0x54, 0x4f, 0x4b, 0x45,
- 0x4e, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x02, 0x2a, 0x72, 0x0a, 0x0d, 0x4f, 0x49, 0x44,
- 0x43, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x24, 0x0a, 0x20, 0x4f, 0x49,
- 0x44, 0x43, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x41, 0x55, 0x54, 0x48,
- 0x4f, 0x52, 0x49, 0x5a, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x4f, 0x44, 0x45, 0x10, 0x00,
- 0x12, 0x1a, 0x0a, 0x16, 0x4f, 0x49, 0x44, 0x43, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x54, 0x59, 0x50,
- 0x45, 0x5f, 0x49, 0x4d, 0x50, 0x4c, 0x49, 0x43, 0x49, 0x54, 0x10, 0x01, 0x12, 0x1f, 0x0a, 0x1b,
- 0x4f, 0x49, 0x44, 0x43, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x52, 0x45,
- 0x46, 0x52, 0x45, 0x53, 0x48, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x10, 0x02, 0x2a, 0x76, 0x0a,
- 0x13, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x54, 0x79, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x17, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x50, 0x50, 0x4c,
- 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x57, 0x45, 0x42, 0x10,
- 0x00, 0x12, 0x22, 0x0a, 0x1e, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41,
- 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x41, 0x47,
- 0x45, 0x4e, 0x54, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x50, 0x50,
- 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4e, 0x41, 0x54,
- 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a, 0x6c, 0x0a, 0x12, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x75, 0x74,
- 0x68, 0x4d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x18, 0x4f,
- 0x49, 0x44, 0x43, 0x41, 0x55, 0x54, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x54, 0x59, 0x50,
- 0x45, 0x5f, 0x42, 0x41, 0x53, 0x49, 0x43, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x4f, 0x49, 0x44,
- 0x43, 0x41, 0x55, 0x54, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x54, 0x59, 0x50, 0x45, 0x5f,
- 0x50, 0x4f, 0x53, 0x54, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x55,
- 0x54, 0x48, 0x4d, 0x45, 0x54, 0x48, 0x4f, 0x44, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4e, 0x4f, 0x4e,
- 0x45, 0x10, 0x02, 0x2a, 0x5f, 0x0a, 0x14, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x24, 0x0a, 0x20, 0x41,
- 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x45, 0x52, 0x41, 0x43, 0x48,
- 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10,
- 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x41, 0x50, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e,
- 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x4e, 0x41,
- 0x4d, 0x45, 0x10, 0x01, 0x2a, 0x74, 0x0a, 0x11, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x21, 0x0a, 0x1d, 0x50, 0x52, 0x4f,
- 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55,
- 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1c, 0x0a, 0x18,
- 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54,
- 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x01, 0x12, 0x1e, 0x0a, 0x1a, 0x50, 0x52,
- 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f,
- 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a, 0x8a, 0x01, 0x0a, 0x15, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x4b, 0x65, 0x79, 0x12, 0x25, 0x0a, 0x21, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47,
- 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e,
- 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x26, 0x0a, 0x22, 0x50,
- 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x4e, 0x41, 0x4d,
- 0x45, 0x10, 0x01, 0x12, 0x22, 0x0a, 0x1e, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52,
- 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x52, 0x4f, 0x4c,
- 0x45, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x02, 0x2a, 0x9c, 0x02, 0x0a, 0x1b, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x2b, 0x0a, 0x27, 0x50, 0x52, 0x4f, 0x4a, 0x45,
- 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41,
- 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
- 0x45, 0x44, 0x10, 0x00, 0x12, 0x2a, 0x0a, 0x26, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47,
- 0x52, 0x41, 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48,
- 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x49, 0x52, 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x01,
- 0x12, 0x29, 0x0a, 0x25, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54,
- 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f,
- 0x4c, 0x41, 0x53, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x12, 0x25, 0x0a, 0x21, 0x50,
- 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45,
- 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c,
- 0x10, 0x03, 0x12, 0x27, 0x0a, 0x23, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41,
- 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45,
- 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x49, 0x44, 0x10, 0x04, 0x12, 0x29, 0x0a, 0x25, 0x50,
- 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x4d, 0x45, 0x4d, 0x42, 0x45,
- 0x52, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f,
- 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x05, 0x2a, 0x68, 0x0a, 0x0e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x1a, 0x55, 0x53, 0x45, 0x52,
- 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45,
- 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x19, 0x0a, 0x15, 0x55, 0x53, 0x45, 0x52,
- 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56,
- 0x45, 0x10, 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54,
- 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02,
- 0x2a, 0xef, 0x03, 0x0a, 0x12, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x22, 0x0a, 0x1e, 0x55, 0x53, 0x45, 0x52, 0x47,
- 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e,
- 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x21, 0x0a, 0x1d, 0x55,
- 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45,
- 0x59, 0x5f, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x49, 0x44, 0x10, 0x01, 0x12, 0x1e,
- 0x0a, 0x1a, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x49, 0x44, 0x10, 0x02, 0x12, 0x1d,
- 0x0a, 0x19, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4f, 0x52, 0x47, 0x5f, 0x49, 0x44, 0x10, 0x03, 0x12, 0x1f, 0x0a,
- 0x1b, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48,
- 0x4b, 0x45, 0x59, 0x5f, 0x52, 0x4f, 0x4c, 0x45, 0x5f, 0x4b, 0x45, 0x59, 0x10, 0x04, 0x12, 0x1f,
- 0x0a, 0x1b, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x5f, 0x49, 0x44, 0x10, 0x05, 0x12,
- 0x20, 0x0a, 0x1c, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52,
- 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10,
- 0x06, 0x12, 0x21, 0x0a, 0x1d, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45,
- 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x46, 0x49, 0x52, 0x53, 0x54, 0x5f, 0x4e, 0x41,
- 0x4d, 0x45, 0x10, 0x07, 0x12, 0x20, 0x0a, 0x1c, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e,
- 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4c, 0x41, 0x53, 0x54, 0x5f,
- 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x08, 0x12, 0x1c, 0x0a, 0x18, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52,
- 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x45, 0x4d, 0x41,
- 0x49, 0x4c, 0x10, 0x09, 0x12, 0x1f, 0x0a, 0x1b, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e,
- 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4f, 0x52, 0x47, 0x5f, 0x4e,
- 0x41, 0x4d, 0x45, 0x10, 0x0a, 0x12, 0x21, 0x0a, 0x1d, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41,
- 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4f, 0x52, 0x47, 0x5f,
- 0x44, 0x4f, 0x4d, 0x41, 0x49, 0x4e, 0x10, 0x0b, 0x12, 0x23, 0x0a, 0x1f, 0x55, 0x53, 0x45, 0x52,
- 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x50,
- 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x0c, 0x12, 0x23, 0x0a,
- 0x1f, 0x55, 0x53, 0x45, 0x52, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48,
- 0x4b, 0x45, 0x59, 0x5f, 0x44, 0x49, 0x53, 0x50, 0x4c, 0x41, 0x59, 0x5f, 0x4e, 0x41, 0x4d, 0x45,
- 0x10, 0x0d, 0x2a, 0x8b, 0x01, 0x0a, 0x17, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x73, 0x68, 0x69, 0x70, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x27,
- 0x0a, 0x23, 0x55, 0x53, 0x45, 0x52, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x48, 0x49, 0x50,
- 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43,
- 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x20, 0x0a, 0x1c, 0x55, 0x53, 0x45, 0x52, 0x4d,
- 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x48, 0x49, 0x50, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b,
- 0x45, 0x59, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x01, 0x12, 0x25, 0x0a, 0x21, 0x55, 0x53, 0x45,
- 0x52, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x48, 0x49, 0x50, 0x53, 0x45, 0x41, 0x52, 0x43,
- 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4f, 0x42, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x49, 0x44, 0x10, 0x02,
- 0x2a, 0x7b, 0x0a, 0x0a, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a,
- 0x0a, 0x16, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53,
- 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1b, 0x0a, 0x17, 0x4d, 0x45,
- 0x4d, 0x42, 0x45, 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x52, 0x47, 0x41, 0x4e, 0x49, 0x53,
- 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x01, 0x12, 0x16, 0x0a, 0x12, 0x4d, 0x45, 0x4d, 0x42, 0x45,
- 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x10, 0x02, 0x12,
- 0x1c, 0x0a, 0x18, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x50, 0x52,
- 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x5f, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x10, 0x03, 0x2a, 0x4b, 0x0a,
- 0x0e, 0x49, 0x64, 0x70, 0x53, 0x74, 0x79, 0x6c, 0x69, 0x6e, 0x67, 0x54, 0x79, 0x70, 0x65, 0x12,
- 0x1e, 0x0a, 0x1a, 0x49, 0x44, 0x50, 0x53, 0x54, 0x59, 0x4c, 0x49, 0x4e, 0x47, 0x54, 0x59, 0x50,
- 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12,
- 0x19, 0x0a, 0x15, 0x49, 0x44, 0x50, 0x53, 0x54, 0x59, 0x4c, 0x49, 0x4e, 0x47, 0x54, 0x59, 0x50,
- 0x45, 0x5f, 0x47, 0x4f, 0x4f, 0x47, 0x4c, 0x45, 0x10, 0x01, 0x2a, 0x62, 0x0a, 0x08, 0x49, 0x64,
- 0x70, 0x53, 0x74, 0x61, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x1a, 0x49, 0x44, 0x50, 0x43, 0x4f, 0x4e,
- 0x46, 0x49, 0x47, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49,
- 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x19, 0x0a, 0x15, 0x49, 0x44, 0x50, 0x43, 0x4f, 0x4e,
- 0x46, 0x49, 0x47, 0x53, 0x54, 0x41, 0x54, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10,
- 0x01, 0x12, 0x1b, 0x0a, 0x17, 0x49, 0x44, 0x50, 0x43, 0x4f, 0x4e, 0x46, 0x49, 0x47, 0x53, 0x54,
- 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4e, 0x41, 0x43, 0x54, 0x49, 0x56, 0x45, 0x10, 0x02, 0x2a, 0x79,
- 0x0a, 0x10, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x61, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x46, 0x69, 0x65,
- 0x6c, 0x64, 0x12, 0x20, 0x0a, 0x1c, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x41, 0x50, 0x50, 0x49, 0x4e,
- 0x47, 0x46, 0x49, 0x45, 0x4c, 0x44, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49,
- 0x45, 0x44, 0x10, 0x00, 0x12, 0x27, 0x0a, 0x23, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x41, 0x50, 0x50,
- 0x49, 0x4e, 0x47, 0x46, 0x49, 0x45, 0x4c, 0x44, 0x5f, 0x50, 0x52, 0x45, 0x46, 0x45, 0x52, 0x52,
- 0x45, 0x44, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x01, 0x12, 0x1a, 0x0a,
- 0x16, 0x4f, 0x49, 0x44, 0x43, 0x4d, 0x41, 0x50, 0x50, 0x49, 0x4e, 0x47, 0x46, 0x49, 0x45, 0x4c,
- 0x44, 0x5f, 0x45, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x02, 0x2a, 0x83, 0x01, 0x0a, 0x0c, 0x49, 0x64,
- 0x70, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x12, 0x1c, 0x0a, 0x18, 0x49, 0x44,
- 0x50, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45,
- 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1e, 0x0a, 0x1a, 0x49, 0x44, 0x50, 0x53,
- 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x49, 0x44, 0x50, 0x5f, 0x43, 0x4f, 0x4e,
- 0x46, 0x49, 0x47, 0x5f, 0x49, 0x44, 0x10, 0x01, 0x12, 0x15, 0x0a, 0x11, 0x49, 0x44, 0x50, 0x53,
- 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 0x10, 0x02, 0x12,
- 0x1e, 0x0a, 0x1a, 0x49, 0x44, 0x50, 0x53, 0x45, 0x41, 0x52, 0x43, 0x48, 0x4b, 0x45, 0x59, 0x5f,
- 0x50, 0x52, 0x4f, 0x56, 0x49, 0x44, 0x45, 0x52, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x03, 0x2a,
- 0x46, 0x0a, 0x07, 0x49, 0x64, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a, 0x13, 0x49, 0x44,
- 0x50, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45,
- 0x44, 0x10, 0x00, 0x12, 0x10, 0x0a, 0x0c, 0x49, 0x44, 0x50, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f,
- 0x49, 0x44, 0x43, 0x10, 0x01, 0x12, 0x10, 0x0a, 0x0c, 0x49, 0x44, 0x50, 0x54, 0x59, 0x50, 0x45,
- 0x5f, 0x53, 0x41, 0x4d, 0x4c, 0x10, 0x02, 0x2a, 0x67, 0x0a, 0x0f, 0x49, 0x64, 0x70, 0x50, 0x72,
- 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x1b, 0x49, 0x44,
- 0x50, 0x50, 0x52, 0x4f, 0x56, 0x49, 0x44, 0x45, 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e,
- 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x1a, 0x0a, 0x16, 0x49,
- 0x44, 0x50, 0x50, 0x52, 0x4f, 0x56, 0x49, 0x44, 0x45, 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x53,
- 0x59, 0x53, 0x54, 0x45, 0x4d, 0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x49, 0x44, 0x50, 0x50, 0x52,
- 0x4f, 0x56, 0x49, 0x44, 0x45, 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x52, 0x47, 0x10, 0x02,
- 0x2a, 0x5a, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12,
- 0x1b, 0x0a, 0x17, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55,
- 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x15, 0x0a, 0x11,
- 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x57, 0x4e, 0x45,
- 0x44, 0x10, 0x01, 0x12, 0x17, 0x0a, 0x13, 0x50, 0x52, 0x4f, 0x4a, 0x45, 0x43, 0x54, 0x54, 0x59,
- 0x50, 0x45, 0x5f, 0x47, 0x52, 0x41, 0x4e, 0x54, 0x45, 0x44, 0x10, 0x02, 0x2a, 0x68, 0x0a, 0x10,
- 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65,
- 0x12, 0x20, 0x0a, 0x1c, 0x53, 0x45, 0x43, 0x4f, 0x4e, 0x44, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52,
- 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44,
- 0x10, 0x00, 0x12, 0x18, 0x0a, 0x14, 0x53, 0x45, 0x43, 0x4f, 0x4e, 0x44, 0x46, 0x41, 0x43, 0x54,
- 0x4f, 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4f, 0x54, 0x50, 0x10, 0x01, 0x12, 0x18, 0x0a, 0x14,
- 0x53, 0x45, 0x43, 0x4f, 0x4e, 0x44, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x54, 0x59, 0x50, 0x45,
- 0x5f, 0x55, 0x32, 0x46, 0x10, 0x02, 0x2a, 0x54, 0x0a, 0x0f, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46,
- 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1f, 0x0a, 0x1b, 0x4d, 0x55, 0x4c,
- 0x54, 0x49, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x4e, 0x53,
- 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, 0x00, 0x12, 0x20, 0x0a, 0x1c, 0x4d, 0x55,
- 0x4c, 0x54, 0x49, 0x46, 0x41, 0x43, 0x54, 0x4f, 0x52, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x55, 0x32,
- 0x46, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x5f, 0x50, 0x49, 0x4e, 0x10, 0x01, 0x32, 0xbb, 0xc2, 0x01,
- 0x0a, 0x11, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x72, 0x76,
- 0x69, 0x63, 0x65, 0x12, 0x4b, 0x0a, 0x07, 0x48, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x7a, 0x12, 0x16,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e,
- 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x10,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0a, 0x12, 0x08, 0x2f, 0x68, 0x65, 0x61, 0x6c, 0x74, 0x68, 0x7a,
- 0x12, 0x47, 0x0a, 0x05, 0x52, 0x65, 0x61, 0x64, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
- 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x0e, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x08, 0x12, 0x06, 0x2f, 0x72, 0x65, 0x61, 0x64, 0x79, 0x12, 0x4e, 0x0a, 0x08, 0x56, 0x61, 0x6c,
- 0x69, 0x64, 0x61, 0x74, 0x65, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x17, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x53, 0x74, 0x72, 0x75, 0x63, 0x74, 0x22, 0x11, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0b, 0x12, 0x09,
- 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x12, 0x6c, 0x0a, 0x0e, 0x47, 0x65, 0x74,
- 0x5a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x44, 0x6f, 0x63, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
- 0x70, 0x74, 0x79, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x5a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x44, 0x6f, 0x63, 0x73,
- 0x22, 0x15, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0f, 0x12, 0x0d, 0x2f, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2f, 0x64, 0x6f, 0x63, 0x73, 0x12, 0x66, 0x0a, 0x06, 0x47, 0x65, 0x74, 0x49, 0x61,
- 0x6d, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x61, 0x6d, 0x22, 0x1f,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x06, 0x12, 0x04, 0x2f, 0x69, 0x61, 0x6d, 0x82, 0xb5, 0x18, 0x0f,
- 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12,
- 0x9e, 0x01, 0x0a, 0x0c, 0x49, 0x73, 0x55, 0x73, 0x65, 0x72, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65,
- 0x12, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x12,
- 0x10, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x5f, 0x69, 0x73, 0x75, 0x6e, 0x69, 0x71, 0x75,
- 0x65, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64,
- 0x12, 0x83, 0x01, 0x0a, 0x0b, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x42, 0x79, 0x49, 0x44,
- 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x28, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x56, 0x69,
- 0x65, 0x77, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0d, 0x12, 0x0b, 0x2f, 0x75, 0x73, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65,
- 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xa9, 0x01, 0x0a, 0x18, 0x47, 0x65, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x42, 0x79, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x47, 0x6c, 0x6f,
- 0x62, 0x61, 0x6c, 0x12, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x1a, 0x28,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x56, 0x69, 0x65, 0x77, 0x22, 0x38, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c,
- 0x12, 0x1a, 0x2f, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f,
- 0x5f, 0x62, 0x79, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xb5, 0x18, 0x12,
- 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x72, 0x65,
- 0x61, 0x64, 0x12, 0x9e, 0x01, 0x0a, 0x0b, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65,
- 0x72, 0x73, 0x12, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x13, 0x22, 0x0e, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72,
- 0x65, 0x61, 0x64, 0x12, 0x90, 0x01, 0x0a, 0x0a, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73,
- 0x65, 0x72, 0x12, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0b, 0x22, 0x06, 0x2f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x9a, 0x01, 0x0a, 0x0e, 0x44, 0x65, 0x61, 0x63, 0x74,
- 0x69, 0x76, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49,
- 0x44, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x32, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x1a, 0x17, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72,
- 0x69, 0x74, 0x65, 0x12, 0x9a, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61,
- 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x2c,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x32, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x1c, 0x1a, 0x17, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64,
- 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65,
- 0x12, 0x8e, 0x01, 0x0a, 0x08, 0x4c, 0x6f, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72, 0x12, 0x26, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55,
- 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x6f,
- 0x6e, 0x73, 0x65, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x1a, 0x11, 0x2f, 0x75, 0x73,
- 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x6c, 0x6f, 0x63, 0x6b, 0x3a, 0x01,
- 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74,
- 0x65, 0x12, 0x92, 0x01, 0x0a, 0x0a, 0x55, 0x6e, 0x6c, 0x6f, 0x63, 0x6b, 0x55, 0x73, 0x65, 0x72,
- 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x1a, 0x13,
- 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x75, 0x6e, 0x6c,
- 0x6f, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x72, 0x0a, 0x0a, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65,
- 0x55, 0x73, 0x65, 0x72, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0d, 0x2a, 0x0b, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x75,
- 0x73, 0x65, 0x72, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x91, 0x01, 0x0a, 0x0b, 0x55,
- 0x73, 0x65, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x73, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x12, 0x13, 0x2f, 0x75, 0x73, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x82,
- 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xae,
- 0x01, 0x0a, 0x0d, 0x41, 0x64, 0x64, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79,
- 0x12, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x41, 0x64, 0x64, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x64, 0x64, 0x4d, 0x61, 0x63, 0x68, 0x69,
- 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x30, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6b, 0x65, 0x79, 0x73, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12,
- 0x97, 0x01, 0x0a, 0x10, 0x44, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e,
- 0x65, 0x4b, 0x65, 0x79, 0x12, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79,
- 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
- 0x79, 0x22, 0x36, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x2a, 0x1e, 0x2f, 0x75, 0x73, 0x65, 0x72,
- 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6b, 0x65, 0x79, 0x73,
- 0x2f, 0x7b, 0x6b, 0x65, 0x79, 0x5f, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75,
- 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xbf, 0x01, 0x0a, 0x11, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x73, 0x12,
- 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e,
- 0x65, 0x4b, 0x65, 0x79, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x37, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x75, 0x73, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6b, 0x65, 0x79,
- 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b,
- 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xab, 0x01, 0x0a, 0x0d,
- 0x47, 0x65, 0x74, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x12, 0x33, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d,
- 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x49, 0x44, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x4b, 0x65, 0x79, 0x56, 0x69,
- 0x65, 0x77, 0x22, 0x35, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x12, 0x1e, 0x2f, 0x75, 0x73, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6b, 0x65, 0x79,
- 0x73, 0x2f, 0x7b, 0x6b, 0x65, 0x79, 0x5f, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09,
- 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x95, 0x01, 0x0a, 0x0e, 0x47, 0x65,
- 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x26, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73,
- 0x65, 0x72, 0x49, 0x44, 0x1a, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c,
- 0x65, 0x56, 0x69, 0x65, 0x77, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x12, 0x13, 0x2f,
- 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x66, 0x69,
- 0x6c, 0x65, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61,
- 0x64, 0x12, 0xaa, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
- 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
- 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x22, 0x2e,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x1a, 0x13, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x72, 0x6f, 0x66, 0x69, 0x6c, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5,
- 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x8f,
- 0x01, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12,
- 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61,
- 0x69, 0x6c, 0x56, 0x69, 0x65, 0x77, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x12, 0x11,
- 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x65, 0x6d, 0x61, 0x69,
- 0x6c, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64,
- 0x12, 0x95, 0x01, 0x0a, 0x12, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x55, 0x73, 0x65, 0x72, 0x55,
- 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x39, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55,
- 0x73, 0x65, 0x72, 0x55, 0x73, 0x65, 0x72, 0x4e, 0x61, 0x6d, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x16, 0x12, 0x14, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f,
- 0x75, 0x73, 0x65, 0x72, 0x6e, 0x61, 0x6d, 0x65, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73,
- 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xa2, 0x01, 0x0a, 0x0f, 0x43, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x36, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x22,
- 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x1a, 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18,
- 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x9f, 0x01,
- 0x0a, 0x1b, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x45, 0x6d, 0x61, 0x69, 0x6c, 0x56, 0x65, 0x72,
- 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x61, 0x69, 0x6c, 0x12, 0x26, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55,
- 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x40, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x2f, 0x65, 0x6d, 0x61, 0x69, 0x6c, 0x2f, 0x5f, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x64,
- 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12,
- 0x8f, 0x01, 0x0a, 0x0c, 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65,
- 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x50, 0x68,
- 0x6f, 0x6e, 0x65, 0x56, 0x69, 0x65, 0x77, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x12,
- 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x68, 0x6f,
- 0x6e, 0x65, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61,
- 0x64, 0x12, 0xa2, 0x01, 0x0a, 0x0f, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x55, 0x73, 0x65, 0x72,
- 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
- 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55,
- 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16,
- 0x1a, 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x68,
- 0x6f, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x7c, 0x0a, 0x0f, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
- 0x55, 0x73, 0x65, 0x72, 0x50, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49,
- 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x13, 0x2a, 0x11, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x70,
- 0x68, 0x6f, 0x6e, 0x65, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x12, 0x9f, 0x01, 0x0a, 0x1b, 0x52, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x50,
- 0x68, 0x6f, 0x6e, 0x65, 0x56, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x43, 0x6f, 0x64, 0x65, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x40, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x75,
- 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x2f,
- 0x5f, 0x72, 0x65, 0x73, 0x65, 0x6e, 0x64, 0x76, 0x65, 0x72, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x95, 0x01, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x55, 0x73,
- 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49,
- 0x44, 0x1a, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x56, 0x69,
- 0x65, 0x77, 0x22, 0x2a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x12, 0x13, 0x2f, 0x75, 0x73, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x82,
- 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xaa,
- 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64,
- 0x72, 0x65, 0x73, 0x73, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72,
- 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2b,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x41, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x22, 0x2e, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x18, 0x1a, 0x13, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
- 0x2f, 0x61, 0x64, 0x64, 0x72, 0x65, 0x73, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a,
- 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xaa, 0x01, 0x0a, 0x11,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e,
- 0x65, 0x12, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18,
- 0x1a, 0x13, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x61,
- 0x63, 0x68, 0x69, 0x6e, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75, 0x73,
- 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xce, 0x01, 0x0a, 0x16, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49,
- 0x44, 0x50, 0x73, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x44, 0x50,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x45,
- 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x44, 0x50, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x3f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a,
- 0x22, 0x25, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69,
- 0x64, 0x7d, 0x2f, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x69, 0x64, 0x70, 0x73, 0x2f,
- 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09,
- 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xbf, 0x01, 0x0a, 0x11, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x44, 0x50, 0x12,
- 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, 0x6e, 0x61, 0x6c, 0x49, 0x44, 0x50, 0x52, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74,
- 0x79, 0x22, 0x58, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x42, 0x2a, 0x40, 0x2f, 0x75, 0x73, 0x65, 0x72,
- 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x65, 0x78, 0x74, 0x65,
- 0x72, 0x6e, 0x61, 0x6c, 0x69, 0x64, 0x70, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x70, 0x5f, 0x63, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x7b, 0x65, 0x78, 0x74, 0x65, 0x72, 0x6e,
- 0x61, 0x6c, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0c, 0x0a,
- 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x90, 0x01, 0x0a, 0x0b,
- 0x47, 0x65, 0x74, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x66, 0x61, 0x73, 0x12, 0x26, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65,
- 0x72, 0x49, 0x44, 0x1a, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61,
- 0x63, 0x74, 0x6f, 0x72, 0x73, 0x22, 0x27, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x12, 0x12, 0x10, 0x2f,
- 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x66, 0x61, 0x73, 0x82,
- 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xbb,
- 0x01, 0x0a, 0x1b, 0x53, 0x65, 0x6e, 0x64, 0x53, 0x65, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x4e, 0x6f, 0x74, 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3e,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x53, 0x65, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4e, 0x6f, 0x74, 0x69, 0x66,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
- 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66,
- 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x44, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x22, 0x29,
- 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x70, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x5f, 0x73, 0x65, 0x6e, 0x64, 0x73, 0x65, 0x74, 0x6e, 0x6f, 0x74,
- 0x69, 0x66, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c,
- 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x9a, 0x01, 0x0a,
- 0x12, 0x53, 0x65, 0x74, 0x49, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x50, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x12, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x3b, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x25, 0x22, 0x20, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64,
- 0x7d, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x5f, 0x69, 0x6e, 0x69, 0x74,
- 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x75,
- 0x73, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xdd, 0x01, 0x0a, 0x15, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68,
- 0x69, 0x70, 0x73, 0x12, 0x3b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73,
- 0x68, 0x69, 0x70, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x3c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x68, 0x69, 0x70,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x49,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x22, 0x24, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b,
- 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73,
- 0x68, 0x69, 0x70, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x16, 0x0a, 0x14, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x73, 0x68, 0x69, 0x70, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x84, 0x01, 0x0a, 0x09, 0x43, 0x72,
- 0x65, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x12, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x43, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x22, 0x20,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0a, 0x22, 0x05, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x0c, 0x0a, 0x0a, 0x6f, 0x72, 0x67, 0x2e, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x12, 0x8e, 0x01, 0x0a, 0x0a, 0x4f, 0x72, 0x67, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12,
- 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x14, 0x12,
- 0x12, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x73, 0x82, 0xb5, 0x18, 0x0a, 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x2e, 0x72, 0x65, 0x61,
- 0x64, 0x12, 0x6b, 0x0a, 0x08, 0x47, 0x65, 0x74, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x12, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x56, 0x69, 0x65, 0x77, 0x22, 0x1e,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x0a, 0x12, 0x08, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65,
- 0x82, 0xb5, 0x18, 0x0a, 0x0a, 0x08, 0x6f, 0x72, 0x67, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x9c,
- 0x01, 0x0a, 0x14, 0x47, 0x65, 0x74, 0x4f, 0x72, 0x67, 0x42, 0x79, 0x44, 0x6f, 0x6d, 0x61, 0x69,
- 0x6e, 0x47, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x12, 0x26, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x1a,
- 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4f, 0x72, 0x67, 0x56, 0x69, 0x65, 0x77, 0x22, 0x33, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18,
- 0x12, 0x16, 0x2f, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x5f,
- 0x62, 0x79, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f, 0x6f, 0x72,
- 0x67, 0x2e, 0x67, 0x6c, 0x6f, 0x62, 0x61, 0x6c, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x7e, 0x0a,
- 0x0f, 0x44, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4d, 0x79, 0x4f, 0x72, 0x67,
- 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x22, 0x2e, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x1a, 0x14, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f,
- 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5,
- 0x18, 0x0b, 0x0a, 0x09, 0x6f, 0x72, 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x7e, 0x0a,
- 0x0f, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x4d, 0x79, 0x4f, 0x72, 0x67,
- 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x22, 0x2e, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x1a, 0x14, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f,
- 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5,
- 0x18, 0x0b, 0x0a, 0x09, 0x6f, 0x72, 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xb8, 0x01,
- 0x0a, 0x12, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d,
- 0x61, 0x69, 0x6e, 0x73, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72,
- 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73,
- 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x31, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f,
- 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x2f,
- 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0a, 0x0a, 0x08,
- 0x6f, 0x72, 0x67, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x9c, 0x01, 0x0a, 0x0e, 0x41, 0x64, 0x64,
- 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x33, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x64, 0x64,
- 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x22, 0x2a, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x15, 0x22, 0x10, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x64, 0x6f,
- 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x6f, 0x72,
- 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xdf, 0x01, 0x0a, 0x1d, 0x47, 0x65, 0x6e, 0x65,
- 0x72, 0x61, 0x74, 0x65, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x56,
- 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x3a, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f,
- 0x6d, 0x61, 0x69, 0x6e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65,
- 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e,
- 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x45, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x30, 0x22, 0x2b, 0x2f, 0x6f, 0x72, 0x67,
- 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x2f, 0x7b, 0x64, 0x6f,
- 0x6d, 0x61, 0x69, 0x6e, 0x7d, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x2f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09,
- 0x6f, 0x72, 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xad, 0x01, 0x0a, 0x13, 0x56, 0x61,
- 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d, 0x61, 0x69,
- 0x6e, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x56, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x72, 0x67, 0x44, 0x6f,
- 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
- 0x70, 0x74, 0x79, 0x22, 0x44, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2f, 0x22, 0x2a, 0x2f, 0x6f, 0x72,
- 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x2f, 0x7b, 0x64,
- 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x7d, 0x2f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x2f, 0x63, 0x68, 0x65, 0x63, 0x6b, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09,
- 0x6f, 0x72, 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xa3, 0x01, 0x0a, 0x15, 0x53, 0x65,
- 0x74, 0x4d, 0x79, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x4f, 0x72, 0x67, 0x44, 0x6f, 0x6d,
- 0x61, 0x69, 0x6e, 0x12, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x4f, 0x72, 0x67, 0x44,
- 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x39, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x22, 0x22, 0x2f, 0x6f,
- 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x2f, 0x7b,
- 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x7d, 0x2f, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79,
- 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x6f, 0x72, 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12,
- 0x95, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x44,
- 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4f, 0x72, 0x67,
- 0x44, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x2a, 0x19, 0x2f,
- 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x73, 0x2f,
- 0x7b, 0x64, 0x6f, 0x6d, 0x61, 0x69, 0x6e, 0x7d, 0x82, 0xb5, 0x18, 0x0b, 0x0a, 0x09, 0x6f, 0x72,
- 0x67, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x8c, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x4d,
- 0x79, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x49, 0x61, 0x6d, 0x50, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x14, 0x12,
- 0x12, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x69, 0x61, 0x6d, 0x70, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x61, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74,
- 0x69, 0x63, 0x61, 0x74, 0x65, 0x64, 0x12, 0x8d, 0x01, 0x0a, 0x11, 0x47, 0x65, 0x74, 0x4f, 0x72,
- 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52,
- 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x15, 0x12, 0x13, 0x2f, 0x6f,
- 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x72, 0x6f, 0x6c, 0x65,
- 0x73, 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xa3, 0x01, 0x0a, 0x0e, 0x41, 0x64, 0x64, 0x4d, 0x79,
- 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x64, 0x64, 0x4f, 0x72,
- 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x31, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x15, 0x22, 0x10, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x6d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x6f, 0x72, 0x67, 0x2e,
- 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xb3, 0x01, 0x0a,
- 0x11, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4d, 0x79, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x3b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x1a, 0x1a, 0x2f,
- 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f,
- 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12,
- 0x0a, 0x10, 0x6f, 0x72, 0x67, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0x9e, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4d, 0x79, 0x4f,
- 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65,
- 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x39, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c,
- 0x2a, 0x1a, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x13,
- 0x0a, 0x11, 0x6f, 0x72, 0x67, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x64, 0x65, 0x6c,
- 0x65, 0x74, 0x65, 0x12, 0xbf, 0x01, 0x0a, 0x12, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x4d, 0x79,
- 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x72, 0x67, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x6d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f, 0x6f, 0x72, 0x67, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x9a, 0x01, 0x0a, 0x0e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65,
- 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73,
- 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x18, 0x12, 0x16, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73,
- 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x65,
- 0x61, 0x64, 0x12, 0xad, 0x01, 0x0a, 0x0e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x16, 0x22, 0x11, 0x2f, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x65,
- 0x61, 0x64, 0x12, 0x93, 0x01, 0x0a, 0x0b, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x42, 0x79,
- 0x49, 0x44, 0x12, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x44, 0x1a, 0x2b, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x56, 0x69, 0x65, 0x77, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x10, 0x12, 0x0e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e,
- 0x72, 0x65, 0x61, 0x64, 0x12, 0x02, 0x49, 0x64, 0x12, 0x98, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x34, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74,
- 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x0e, 0x22, 0x09, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x10, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x12, 0xa0, 0x01, 0x0a, 0x0d, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x34, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x13, 0x1a, 0x0e, 0x2f, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x13, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xa5, 0x01, 0x0a, 0x11, 0x44, 0x65, 0x61, 0x63, 0x74,
- 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x29, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x44, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x22, 0x3c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x1a, 0x1a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69,
- 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x0d, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xa5,
- 0x01, 0x0a, 0x11, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x12, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x44, 0x1a,
- 0x27, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x22, 0x3c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f,
- 0x1a, 0x1a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
- 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x13, 0x0a, 0x0d, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0x82, 0x01, 0x0a, 0x0d, 0x52, 0x65, 0x6d, 0x6f, 0x76,
- 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2e, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x10, 0x2a, 0x0e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x14, 0x0a, 0x0e, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xc7, 0x01, 0x0a, 0x15,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x12, 0x3b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x35,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x22, 0x18, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x65, 0x64,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xbe, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x42, 0x79, 0x49, 0x44, 0x12,
- 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a,
- 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65,
- 0x77, 0x22, 0x43, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2b, 0x12, 0x29, 0x2f, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x65, 0x64, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x9d, 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73,
- 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x38, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x19, 0x12, 0x17, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f,
- 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x82, 0xb5, 0x18,
- 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xe6, 0x01, 0x0a, 0x14, 0x53, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x12,
- 0x3a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3b, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x55, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2b,
- 0x22, 0x26, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73,
- 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x20, 0x0a,
- 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e,
- 0x72, 0x65, 0x61, 0x64, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12,
- 0xb4, 0x01, 0x0a, 0x10, 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x12, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x41, 0x64, 0x64, 0x1a, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x3f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x22, 0x16, 0x2f,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1a, 0x0a, 0x14, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xc4, 0x01, 0x0a, 0x13, 0x43, 0x68, 0x61, 0x6e, 0x67,
- 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x33,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x1a, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x22, 0x49, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x1a, 0x20, 0x2f, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x1a, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x6d, 0x65, 0x6d,
- 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xab, 0x01,
- 0x0a, 0x13, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
- 0x74, 0x79, 0x22, 0x47, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x2a, 0x20, 0x2f, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x1b,
- 0x0a, 0x15, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xdc, 0x01, 0x0a, 0x12,
- 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c,
- 0x65, 0x73, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52,
- 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x51, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x22,
- 0x24, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x2f, 0x5f, 0x73,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x6f, 0x6c, 0x65, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12,
- 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xaa, 0x01, 0x0a, 0x0e, 0x41,
- 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x2e, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x64, 0x64, 0x1a, 0x2b, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x22, 0x3b, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x19, 0x22, 0x14, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x18, 0x0a,
- 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x6f, 0x6c, 0x65, 0x2e, 0x77, 0x72,
- 0x69, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xa3, 0x01, 0x0a, 0x12, 0x42, 0x75, 0x6c, 0x6b,
- 0x41, 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x32,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x41, 0x64, 0x64, 0x42, 0x75,
- 0x6c, 0x6b, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x41, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x1f, 0x22, 0x1a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x2f, 0x5f, 0x62, 0x75, 0x6c, 0x6b, 0x3a, 0x01,
- 0x2a, 0x82, 0xb5, 0x18, 0x18, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72,
- 0x6f, 0x6c, 0x65, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xb6, 0x01,
- 0x0a, 0x11, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
- 0x6f, 0x6c, 0x65, 0x12, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65,
- 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52,
- 0x6f, 0x6c, 0x65, 0x22, 0x41, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x1a, 0x1a, 0x2f, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x72, 0x6f, 0x6c, 0x65,
- 0x73, 0x2f, 0x7b, 0x6b, 0x65, 0x79, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x18, 0x0a, 0x12,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x6f, 0x6c, 0x65, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0x9f, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76,
- 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x12, 0x31, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x52, 0x6f, 0x6c, 0x65, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x1a,
- 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x3f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x2a,
- 0x1a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f,
- 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x2f, 0x7b, 0x6b, 0x65, 0x79, 0x7d, 0x82, 0xb5, 0x18, 0x19, 0x0a,
- 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x72, 0x6f, 0x6c, 0x65, 0x2e, 0x64, 0x65,
- 0x6c, 0x65, 0x74, 0x65, 0x12, 0x02, 0x49, 0x64, 0x12, 0xe2, 0x01, 0x0a, 0x12, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12,
- 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70,
- 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x57, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x30, 0x22, 0x2b, 0x2f, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1d,
- 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x65,
- 0x61, 0x64, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xc4, 0x01,
- 0x0a, 0x0f, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x79, 0x49,
- 0x44, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44,
- 0x1a, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65,
- 0x77, 0x22, 0x51, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x12, 0x28, 0x2f, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x1d, 0x0a, 0x10, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x49, 0x64, 0x12, 0xb8, 0x01, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x12, 0x2d, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x43, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x73, 0x22, 0x4a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x12, 0x2c, 0x2f, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x73, 0x65, 0x63, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x73, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12,
- 0xd2, 0x01, 0x0a, 0x15, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x49, 0x44, 0x43, 0x41, 0x70,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x41,
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65,
- 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x55, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x2d, 0x22, 0x28, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73,
- 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x6f, 0x69, 0x64, 0x63, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e,
- 0x61, 0x70, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x49, 0x64, 0x12, 0xca, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41,
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x31, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x2b, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41,
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x55, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x2d, 0x1a, 0x28, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
- 0x64, 0x12, 0xd6, 0x01, 0x0a, 0x15, 0x44, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
- 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c,
- 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x61, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x1a,
- 0x34, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74,
- 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12,
- 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xd6, 0x01, 0x0a, 0x15, 0x52,
- 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61,
- 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x49, 0x44, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x22, 0x61, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x1a, 0x34, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d,
- 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01,
- 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x61,
- 0x70, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x49, 0x64, 0x12, 0xaf, 0x01, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x70,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69,
- 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x22, 0x53, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x2a, 0x28, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d,
- 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x1f, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e,
- 0x61, 0x70, 0x70, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xe9, 0x01, 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4f, 0x49, 0x44, 0x43, 0x43,
- 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e, 0x66, 0x69,
- 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x2a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x22, 0x6c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x44, 0x1a, 0x3f, 0x2f, 0x70, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f,
- 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73,
- 0x2f, 0x7b, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x6f, 0x69, 0x64, 0x63, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x82,
- 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x61, 0x70, 0x70,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49,
- 0x64, 0x12, 0xef, 0x01, 0x0a, 0x1a, 0x52, 0x65, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65,
- 0x4f, 0x49, 0x44, 0x43, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74,
- 0x12, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x44, 0x1a,
- 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x53, 0x65, 0x63, 0x72, 0x65, 0x74, 0x22, 0x74, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x4c, 0x1a, 0x47, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73,
- 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x61, 0x70,
- 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f,
- 0x6f, 0x69, 0x64, 0x63, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x2f, 0x5f, 0x63, 0x68, 0x61, 0x6e,
- 0x67, 0x65, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x73, 0x65, 0x63, 0x72, 0x65, 0x74, 0x3a, 0x01,
- 0x2a, 0x82, 0xb5, 0x18, 0x1e, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x61,
- 0x70, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x09, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x49, 0x64, 0x12, 0xe1, 0x01, 0x0a, 0x13, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x12, 0x39, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x3a, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
- 0x73, 0x65, 0x22, 0x53, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69,
- 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63,
- 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1f, 0x0a, 0x12, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x09, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x49, 0x64, 0x12, 0xb8, 0x01, 0x0a, 0x10, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x42, 0x79, 0x49, 0x44, 0x12, 0x2e, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x30, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x22, 0x42,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x12, 0x22, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x14, 0x0a, 0x12,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65,
- 0x61, 0x64, 0x12, 0xb9, 0x01, 0x0a, 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x2c, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x41, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x22, 0x22, 0x1d, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xbe,
- 0x01, 0x0a, 0x12, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x46, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x1a,
- 0x22, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12,
- 0xca, 0x01, 0x0a, 0x16, 0x44, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72,
- 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x52, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x33,
- 0x1a, 0x2e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xca, 0x01, 0x0a,
- 0x16, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x52, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x33, 0x1a, 0x2e, 0x2f,
- 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64,
- 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x15, 0x0a, 0x13, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xa2, 0x01, 0x0a, 0x12, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44,
- 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62,
- 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x44, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24,
- 0x2a, 0x22, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f,
- 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x16, 0x0a, 0x14, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0xb4,
- 0x01, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x12, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52, 0x6f, 0x6c, 0x65, 0x73, 0x22, 0x45,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x12, 0x1e, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x73, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73,
- 0x2f, 0x72, 0x6f, 0x6c, 0x65, 0x73, 0x82, 0xb5, 0x18, 0x1b, 0x0a, 0x19, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x82, 0x02, 0x0a, 0x19, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62,
- 0x65, 0x72, 0x73, 0x12, 0x3f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x40, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
- 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x62, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3d, 0x22, 0x38,
- 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73,
- 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1b, 0x0a,
- 0x19, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x6d,
- 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xdf, 0x01, 0x0a, 0x15, 0x41,
- 0x64, 0x64, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65,
- 0x6d, 0x62, 0x65, 0x72, 0x12, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x41, 0x64, 0x64, 0x1a, 0x32, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22,
- 0x5b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x35, 0x22, 0x30, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
- 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f,
- 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64,
- 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x1c,
- 0x0a, 0x1a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e,
- 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xef, 0x01, 0x0a,
- 0x18, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72,
- 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65,
- 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x43, 0x68, 0x61,
- 0x6e, 0x67, 0x65, 0x1a, 0x32, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x22, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x1a,
- 0x3a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73, 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a,
- 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b,
- 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72,
- 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5,
- 0x18, 0x1c, 0x0a, 0x1a, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xd1,
- 0x01, 0x0a, 0x18, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x12, 0x38, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x72, 0x6f,
- 0x6a, 0x65, 0x63, 0x74, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x4d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x52,
- 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x63, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x2a, 0x3a, 0x2f, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x73,
- 0x2f, 0x7b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x7d, 0x2f,
- 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64,
- 0x7d, 0x82, 0xb5, 0x18, 0x1d, 0x0a, 0x1b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x2e, 0x67,
- 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x2e, 0x64, 0x65, 0x6c, 0x65,
- 0x74, 0x65, 0x12, 0xba, 0x01, 0x0a, 0x10, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x55, 0x73, 0x65,
- 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x12, 0x36, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x37, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68,
- 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x35, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1a,
- 0x22, 0x15, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f,
- 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f,
- 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12,
- 0xa6, 0x01, 0x0a, 0x0d, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x42, 0x79, 0x49,
- 0x44, 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x2d,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x22, 0x39, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x12, 0x1c, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75,
- 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72,
- 0x61, 0x6e, 0x74, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xa7, 0x01, 0x0a, 0x0f, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2f, 0x2e, 0x63,
- 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73,
- 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x29, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55,
- 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x38, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c,
- 0x22, 0x17, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69,
- 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12,
- 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0xac, 0x01, 0x0a, 0x0f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65,
- 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61,
- 0x6e, 0x74, 0x22, 0x3d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, 0x1a, 0x1c, 0x2f, 0x75, 0x73, 0x65,
- 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61,
- 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a,
- 0x10, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74,
- 0x65, 0x12, 0xb8, 0x01, 0x0a, 0x13, 0x44, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65,
- 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e,
- 0x74, 0x22, 0x49, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2d, 0x1a, 0x28, 0x2f, 0x75, 0x73, 0x65, 0x72,
- 0x73, 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76,
- 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72,
- 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xb8, 0x01, 0x0a,
- 0x13, 0x52, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x55, 0x73, 0x65, 0x72, 0x47,
- 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49,
- 0x44, 0x1a, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c,
- 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x22, 0x49, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x2d, 0x1a, 0x28, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x75, 0x73,
- 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x7b, 0x69,
- 0x64, 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01,
- 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x93, 0x01, 0x0a, 0x0f, 0x52, 0x65, 0x6d, 0x6f,
- 0x76, 0x65, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x2b, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65,
- 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x22, 0x3b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x2a, 0x1c, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x73,
- 0x2f, 0x7b, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x67, 0x72, 0x61, 0x6e, 0x74,
- 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x11, 0x75, 0x73, 0x65, 0x72,
- 0x2e, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x98, 0x01,
- 0x0a, 0x13, 0x42, 0x75, 0x6c, 0x6b, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x55, 0x73, 0x65, 0x72,
- 0x47, 0x72, 0x61, 0x6e, 0x74, 0x12, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x47, 0x72, 0x61, 0x6e, 0x74,
- 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x75, 0x6c, 0x6b, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
- 0x74, 0x79, 0x22, 0x34, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x2a, 0x12, 0x2f, 0x75, 0x73, 0x65,
- 0x72, 0x73, 0x67, 0x72, 0x61, 0x6e, 0x74, 0x73, 0x2f, 0x5f, 0x62, 0x75, 0x6c, 0x6b, 0x3a, 0x01,
- 0x2a, 0x82, 0xb5, 0x18, 0x13, 0x0a, 0x11, 0x75, 0x73, 0x65, 0x72, 0x2e, 0x67, 0x72, 0x61, 0x6e,
- 0x74, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x87, 0x01, 0x0a, 0x07, 0x49, 0x64, 0x70,
- 0x42, 0x79, 0x49, 0x44, 0x12, 0x25, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x49, 0x44, 0x1a, 0x27, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70,
- 0x56, 0x69, 0x65, 0x77, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x14, 0x12, 0x12, 0x2f, 0x6f,
- 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x69, 0x64, 0x70, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
- 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x6f, 0x72, 0x67, 0x2e, 0x69, 0x64, 0x70, 0x2e, 0x72, 0x65,
- 0x61, 0x64, 0x12, 0x9b, 0x01, 0x0a, 0x0d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x4f, 0x69, 0x64,
- 0x63, 0x49, 0x64, 0x70, 0x12, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x69, 0x64, 0x63, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x22, 0x30,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x22, 0x12, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65,
- 0x2f, 0x69, 0x64, 0x70, 0x73, 0x2f, 0x6f, 0x69, 0x64, 0x63, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18,
- 0x0f, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x2e, 0x69, 0x64, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65,
- 0x12, 0x93, 0x01, 0x0a, 0x0f, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x49, 0x64, 0x70, 0x43, 0x6f,
- 0x6e, 0x66, 0x69, 0x67, 0x12, 0x29, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a,
- 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x49, 0x64, 0x70, 0x22, 0x30, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x1a, 0x12, 0x2f, 0x6f,
- 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x69, 0x64, 0x70, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x2e, 0x69, 0x64, 0x70,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x9f, 0x01, 0x0a, 0x13, 0x44, 0x65, 0x61, 0x63, 0x74,
- 0x69, 0x76, 0x61, 0x74, 0x65, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x25,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x49, 0x64, 0x70, 0x49, 0x44, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x22, 0x3c, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x23, 0x1a, 0x1e, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x69, 0x64, 0x70,
- 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x64, 0x65, 0x61, 0x63, 0x74, 0x69, 0x76, 0x61,
- 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x2e, 0x69,
- 0x64, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x9f, 0x01, 0x0a, 0x13, 0x52, 0x65, 0x61,
- 0x63, 0x74, 0x69, 0x76, 0x61, 0x74, 0x65, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67,
- 0x12, 0x25, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x49, 0x64, 0x70, 0x49, 0x44, 0x1a, 0x23, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x22, 0x3c, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x23, 0x1a, 0x1e, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x69,
- 0x64, 0x70, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x2f, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x74, 0x69,
- 0x76, 0x61, 0x74, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x6f, 0x72, 0x67,
- 0x2e, 0x69, 0x64, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x7f, 0x0a, 0x0f, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x25, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49,
- 0x64, 0x70, 0x49, 0x44, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2d, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x14, 0x2a, 0x12, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x69,
- 0x64, 0x70, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x6f, 0x72,
- 0x67, 0x2e, 0x69, 0x64, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xba, 0x01, 0x0a, 0x13,
- 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x4f, 0x69, 0x64, 0x63, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e,
- 0x66, 0x69, 0x67, 0x12, 0x33, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x69, 0x64, 0x63, 0x49, 0x64, 0x70, 0x43, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x2d, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65,
- 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4f, 0x69, 0x64, 0x63, 0x49, 0x64,
- 0x70, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x22, 0x3f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x1a,
- 0x21, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x69, 0x64, 0x70, 0x73, 0x2f, 0x7b,
- 0x69, 0x64, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x6f, 0x69, 0x64, 0x63, 0x63, 0x6f, 0x6e, 0x66,
- 0x69, 0x67, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x6f, 0x72, 0x67, 0x2e, 0x69,
- 0x64, 0x70, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xa5, 0x01, 0x0a, 0x0a, 0x53, 0x65, 0x61,
- 0x72, 0x63, 0x68, 0x49, 0x64, 0x70, 0x73, 0x12, 0x30, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x53, 0x65, 0x61, 0x72,
- 0x63, 0x68, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x53, 0x65,
- 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x32, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x1a, 0x22, 0x15, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x69,
- 0x64, 0x70, 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5,
- 0x18, 0x0e, 0x0a, 0x0c, 0x6f, 0x72, 0x67, 0x2e, 0x69, 0x64, 0x70, 0x2e, 0x72, 0x65, 0x61, 0x64,
- 0x12, 0x8b, 0x01, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x2f, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x67,
- 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x22, 0x30, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x19, 0x12, 0x17, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70,
- 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x82, 0xb5, 0x18,
- 0x0d, 0x0a, 0x0b, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0x97,
- 0x01, 0x0a, 0x15, 0x47, 0x65, 0x74, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x4c, 0x6f, 0x67,
- 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x1a, 0x2f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65,
- 0x77, 0x22, 0x35, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x12, 0x1c, 0x2f, 0x6f, 0x72, 0x67, 0x73,
- 0x2f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65,
- 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x82, 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x70, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xaa, 0x01, 0x0a, 0x11, 0x43, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x32,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22,
- 0x34, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x22, 0x17, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d,
- 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
- 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e,
- 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xaa, 0x01, 0x0a, 0x11, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65,
- 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x32, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4c, 0x6f, 0x67,
- 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x34, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x1c, 0x1a, 0x17, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70,
- 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0x77, 0x0a, 0x11, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4c, 0x6f, 0x67, 0x69,
- 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
- 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x32, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x19, 0x2a,
- 0x17, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69,
- 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0xdb, 0x01, 0x0a, 0x1a,
- 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x49, 0x64,
- 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x50,
- 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x39, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65,
- 0x72, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22,
- 0x48, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x31, 0x22, 0x2c, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d,
- 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
- 0x2f, 0x69, 0x64, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x73, 0x2f, 0x5f, 0x73,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xbd, 0x01, 0x0a, 0x1b, 0x41, 0x64,
- 0x64, 0x49, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x54, 0x6f, 0x4c, 0x6f,
- 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x2e, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x50, 0x72,
- 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x41, 0x64, 0x64, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x49, 0x64, 0x70, 0x50, 0x72,
- 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x22, 0x41, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x22, 0x24,
- 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65,
- 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x69, 0x64, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x69,
- 0x64, 0x65, 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xb9, 0x01, 0x0a, 0x20, 0x52, 0x65,
- 0x6d, 0x6f, 0x76, 0x65, 0x49, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x46,
- 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x2d,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x49, 0x64, 0x70, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x49, 0x44, 0x1a, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x4e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x36, 0x2a, 0x34, 0x2f,
- 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73,
- 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x69, 0x64, 0x70, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64,
- 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x69, 0x64, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f,
- 0x69, 0x64, 0x7d, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e,
- 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xb6, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x67,
- 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61,
- 0x63, 0x74, 0x6f, 0x72, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x33, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53,
- 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x73, 0x75,
- 0x6c, 0x74, 0x22, 0x4a, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2f, 0x12, 0x2d, 0x2f, 0x6f, 0x72, 0x67,
- 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x6c, 0x6f,
- 0x67, 0x69, 0x6e, 0x2f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x66, 0x61, 0x63, 0x74, 0x6f, 0x72,
- 0x73, 0x2f, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f, 0x69,
- 0x61, 0x6d, 0x2e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xc2,
- 0x01, 0x0a, 0x1c, 0x41, 0x64, 0x64, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61, 0x63, 0x74,
- 0x6f, 0x72, 0x54, 0x6f, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12,
- 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x53, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x1a, 0x2c, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53,
- 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x22, 0x46, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x73, 0x65, 0x63,
- 0x6f, 0x6e, 0x64, 0x66, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18,
- 0x12, 0x0a, 0x10, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72,
- 0x69, 0x74, 0x65, 0x12, 0xbe, 0x01, 0x0a, 0x21, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x53, 0x65,
- 0x63, 0x6f, 0x6e, 0x64, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f,
- 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x2c, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x53, 0x65, 0x63, 0x6f, 0x6e,
- 0x64, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
- 0x53, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x2a, 0x35, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d,
- 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
- 0x2f, 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x66, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x7b,
- 0x73, 0x65, 0x63, 0x6f, 0x6e, 0x64, 0x5f, 0x66, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x7d, 0x82, 0xb5,
- 0x18, 0x12, 0x0a, 0x10, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x12, 0xb3, 0x01, 0x0a, 0x1a, 0x47, 0x65, 0x74, 0x4c, 0x6f, 0x67, 0x69,
- 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74,
- 0x6f, 0x72, 0x73, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f,
- 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x32, 0x2e, 0x63, 0x61,
- 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x75, 0x6c,
- 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x22,
- 0x49, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x12, 0x2c, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d,
- 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
- 0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x73, 0x2f, 0x5f, 0x73,
- 0x65, 0x61, 0x72, 0x63, 0x68, 0x82, 0xb5, 0x18, 0x11, 0x0a, 0x0f, 0x69, 0x61, 0x6d, 0x2e, 0x70,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xbe, 0x01, 0x0a, 0x1b, 0x41,
- 0x64, 0x64, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x54, 0x6f, 0x4c,
- 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x75, 0x6c, 0x74,
- 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x1a, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a,
- 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e,
- 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61,
- 0x63, 0x74, 0x6f, 0x72, 0x22, 0x45, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x22, 0x24, 0x2f, 0x6f,
- 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f,
- 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74, 0x6f,
- 0x72, 0x73, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x69, 0x61, 0x6d, 0x2e, 0x70,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xba, 0x01, 0x0a, 0x20,
- 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f,
- 0x72, 0x46, 0x72, 0x6f, 0x6d, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x12, 0x2b, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x4d, 0x75, 0x6c, 0x74, 0x69, 0x46, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x1a, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x51, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x35, 0x2a, 0x33, 0x2f,
- 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73,
- 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x2f, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x66, 0x61, 0x63, 0x74,
- 0x6f, 0x72, 0x73, 0x2f, 0x7b, 0x6d, 0x75, 0x6c, 0x74, 0x69, 0x5f, 0x66, 0x61, 0x63, 0x74, 0x6f,
- 0x72, 0x7d, 0x82, 0xb5, 0x18, 0x12, 0x0a, 0x10, 0x69, 0x61, 0x6d, 0x2e, 0x70, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xb3, 0x01, 0x0a, 0x1b, 0x47, 0x65, 0x74,
- 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69,
- 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c,
- 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79,
- 0x1a, 0x3c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65,
- 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x22, 0x3e,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x12, 0x25, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65,
- 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x82, 0xb5, 0x18,
- 0x0d, 0x0a, 0x0b, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xbf,
- 0x01, 0x0a, 0x22, 0x47, 0x65, 0x74, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x50, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70,
- 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x3c, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74,
- 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x22, 0x43, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x2c, 0x12, 0x2a, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x64, 0x65, 0x66, 0x61, 0x75,
- 0x6c, 0x74, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x82,
- 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64,
- 0x12, 0xdf, 0x01, 0x0a, 0x1e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x12, 0x3f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d,
- 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f,
- 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x42,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x22, 0x25, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65,
- 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x3a, 0x01, 0x2a,
- 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69,
- 0x74, 0x65, 0x12, 0xdf, 0x01, 0x0a, 0x1e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x3f, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43,
- 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x22, 0x42, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2a, 0x1a, 0x25, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f,
- 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x3a,
- 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77,
- 0x72, 0x69, 0x74, 0x65, 0x12, 0x92, 0x01, 0x0a, 0x1e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x43, 0x6f, 0x6d, 0x70, 0x6c, 0x65, 0x78, 0x69, 0x74,
- 0x79, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
- 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x40, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x2a,
- 0x25, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69,
- 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x63, 0x6f, 0x6d, 0x70,
- 0x6c, 0x65, 0x78, 0x69, 0x74, 0x79, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x70, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0x9e, 0x01, 0x0a, 0x14, 0x47, 0x65,
- 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74,
- 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x35, 0x2e, 0x63, 0x61, 0x6f,
- 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65,
- 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65,
- 0x77, 0x22, 0x37, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x12, 0x1e, 0x2f, 0x6f, 0x72, 0x67, 0x73,
- 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73,
- 0x73, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x61, 0x67, 0x65, 0x82, 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x70,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xaa, 0x01, 0x0a, 0x1b, 0x47,
- 0x65, 0x74, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72,
- 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
- 0x74, 0x79, 0x1a, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65,
- 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x22, 0x3c, 0x82, 0xd3, 0xe4, 0x93, 0x02,
- 0x25, 0x12, 0x23, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74,
- 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f,
- 0x72, 0x64, 0x2f, 0x61, 0x67, 0x65, 0x82, 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x70, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xc3, 0x01, 0x0a, 0x17, 0x43, 0x72, 0x65, 0x61,
- 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65,
- 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e,
- 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x22, 0x3b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x22, 0x1e, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f,
- 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73,
- 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x61, 0x67, 0x65, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a,
- 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xc3, 0x01,
- 0x0a, 0x17, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x38, 0x2e, 0x63, 0x61, 0x6f, 0x73,
- 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x1a, 0x31, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65,
- 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x3b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x1a, 0x1e,
- 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65,
- 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x61, 0x67, 0x65, 0x3a, 0x01,
- 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72,
- 0x69, 0x74, 0x65, 0x12, 0x84, 0x01, 0x0a, 0x17, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x61,
- 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x41, 0x67, 0x65, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12,
- 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75,
- 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22,
- 0x39, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x2a, 0x1e, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d,
- 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x2f, 0x61, 0x67, 0x65, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x70, 0x6f, 0x6c,
- 0x69, 0x63, 0x79, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x12, 0xaa, 0x01, 0x0a, 0x18, 0x47,
- 0x65, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75,
- 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65,
- 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x1a,
- 0x39, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31,
- 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74,
- 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x22, 0x3b, 0x82, 0xd3, 0xe4, 0x93,
- 0x02, 0x24, 0x12, 0x22, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c,
- 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x6c,
- 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x82, 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x70, 0x6f, 0x6c, 0x69,
- 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64, 0x12, 0xb6, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x74, 0x44,
- 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f,
- 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d,
- 0x70, 0x74, 0x79, 0x1a, 0x39, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64,
- 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63,
- 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, 0x69, 0x65, 0x77, 0x22, 0x40,
- 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x12, 0x27, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x64, 0x65,
- 0x66, 0x61, 0x75, 0x6c, 0x74, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70,
- 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x82,
- 0xb5, 0x18, 0x0d, 0x0a, 0x0b, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x72, 0x65, 0x61, 0x64,
- 0x12, 0xd3, 0x01, 0x0a, 0x1b, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77,
- 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x12, 0x3c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e,
- 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76,
- 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75,
- 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35,
- 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e,
- 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50,
- 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x3f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x22, 0x22, 0x2f,
- 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73,
- 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x2f, 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75,
- 0x74, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79,
- 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0xd3, 0x01, 0x0a, 0x1b, 0x55, 0x70, 0x64, 0x61, 0x74,
- 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74,
- 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x3c, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69,
- 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x4c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x35, 0x2e, 0x63, 0x61, 0x6f, 0x73, 0x2e, 0x7a, 0x69, 0x74, 0x61,
- 0x64, 0x65, 0x6c, 0x2e, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x2e, 0x61,
- 0x70, 0x69, 0x2e, 0x76, 0x31, 0x2e, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c, 0x6f,
- 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x22, 0x3f, 0x82, 0xd3, 0xe4,
- 0x93, 0x02, 0x27, 0x1a, 0x22, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x2f,
- 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x3a, 0x01, 0x2a, 0x82, 0xb5, 0x18, 0x0e, 0x0a, 0x0c,
- 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x77, 0x72, 0x69, 0x74, 0x65, 0x12, 0x8c, 0x01, 0x0a,
- 0x1b, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x50, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64, 0x4c,
- 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x12, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72,
- 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x3d, 0x82, 0xd3,
- 0xe4, 0x93, 0x02, 0x24, 0x2a, 0x22, 0x2f, 0x6f, 0x72, 0x67, 0x73, 0x2f, 0x6d, 0x65, 0x2f, 0x70,
- 0x6f, 0x6c, 0x69, 0x63, 0x69, 0x65, 0x73, 0x2f, 0x70, 0x61, 0x73, 0x73, 0x77, 0x6f, 0x72, 0x64,
- 0x2f, 0x6c, 0x6f, 0x63, 0x6b, 0x6f, 0x75, 0x74, 0x82, 0xb5, 0x18, 0x0f, 0x0a, 0x0d, 0x70, 0x6f,
- 0x6c, 0x69, 0x63, 0x79, 0x2e, 0x64, 0x65, 0x6c, 0x65, 0x74, 0x65, 0x42, 0xc5, 0x01, 0x5a, 0x2b,
- 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x61, 0x6f, 0x73, 0x2f,
- 0x7a, 0x69, 0x74, 0x61, 0x64, 0x65, 0x6c, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x67, 0x72, 0x70, 0x63,
- 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x92, 0x41, 0x94, 0x01, 0x12,
- 0x47, 0x0a, 0x0e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x20, 0x41, 0x50,
- 0x49, 0x22, 0x30, 0x12, 0x2e, 0x68, 0x74, 0x74, 0x70, 0x73, 0x3a, 0x2f, 0x2f, 0x67, 0x69, 0x74,
- 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x63, 0x61, 0x6f, 0x73, 0x2f, 0x7a, 0x69, 0x74,
- 0x61, 0x64, 0x65, 0x6c, 0x2f, 0x70, 0x6b, 0x67, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x6d,
- 0x65, 0x6e, 0x74, 0x32, 0x03, 0x30, 0x2e, 0x31, 0x2a, 0x01, 0x02, 0x32, 0x10, 0x61, 0x70, 0x70,
- 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f, 0x6e, 0x32, 0x10, 0x61,
- 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x67, 0x72, 0x70, 0x63, 0x3a,
- 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x6a, 0x73, 0x6f,
- 0x6e, 0x3a, 0x10, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2f, 0x67,
- 0x72, 0x70, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+func init() {
+ proto.RegisterEnum("caos.zitadel.management.api.v1.IamSetupStep", IamSetupStep_name, IamSetupStep_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.UserState", UserState_name, UserState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.Gender", Gender_name, Gender_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.MachineKeyType", MachineKeyType_name, MachineKeyType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.UserSearchKey", UserSearchKey_name, UserSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.SearchMethod", SearchMethod_name, SearchMethod_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.MfaType", MfaType_name, MfaType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.MFAState", MFAState_name, MFAState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.NotificationType", NotificationType_name, NotificationType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.PolicyState", PolicyState_name, PolicyState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OrgState", OrgState_name, OrgState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OrgDomainValidationType", OrgDomainValidationType_name, OrgDomainValidationType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OrgDomainSearchKey", OrgDomainSearchKey_name, OrgDomainSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OrgMemberSearchKey", OrgMemberSearchKey_name, OrgMemberSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectSearchKey", ProjectSearchKey_name, ProjectSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectState", ProjectState_name, ProjectState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectRoleSearchKey", ProjectRoleSearchKey_name, ProjectRoleSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectMemberSearchKey", ProjectMemberSearchKey_name, ProjectMemberSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.AppState", AppState_name, AppState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCVersion", OIDCVersion_name, OIDCVersion_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCTokenType", OIDCTokenType_name, OIDCTokenType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCResponseType", OIDCResponseType_name, OIDCResponseType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCGrantType", OIDCGrantType_name, OIDCGrantType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCApplicationType", OIDCApplicationType_name, OIDCApplicationType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCAuthMethodType", OIDCAuthMethodType_name, OIDCAuthMethodType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ApplicationSearchKey", ApplicationSearchKey_name, ApplicationSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectGrantState", ProjectGrantState_name, ProjectGrantState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectGrantSearchKey", ProjectGrantSearchKey_name, ProjectGrantSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey", ProjectGrantMemberSearchKey_name, ProjectGrantMemberSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.UserGrantState", UserGrantState_name, UserGrantState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.UserGrantSearchKey", UserGrantSearchKey_name, UserGrantSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.UserMembershipSearchKey", UserMembershipSearchKey_name, UserMembershipSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.MemberType", MemberType_name, MemberType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.IdpStylingType", IdpStylingType_name, IdpStylingType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.IdpState", IdpState_name, IdpState_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.OIDCMappingField", OIDCMappingField_name, OIDCMappingField_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.IdpSearchKey", IdpSearchKey_name, IdpSearchKey_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.IdpType", IdpType_name, IdpType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.IdpProviderType", IdpProviderType_name, IdpProviderType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.ProjectType", ProjectType_name, ProjectType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.SecondFactorType", SecondFactorType_name, SecondFactorType_value)
+ proto.RegisterEnum("caos.zitadel.management.api.v1.MultiFactorType", MultiFactorType_name, MultiFactorType_value)
+ proto.RegisterType((*ZitadelDocs)(nil), "caos.zitadel.management.api.v1.ZitadelDocs")
+ proto.RegisterType((*Iam)(nil), "caos.zitadel.management.api.v1.Iam")
+ proto.RegisterType((*ChangeRequest)(nil), "caos.zitadel.management.api.v1.ChangeRequest")
+ proto.RegisterType((*Changes)(nil), "caos.zitadel.management.api.v1.Changes")
+ proto.RegisterType((*Change)(nil), "caos.zitadel.management.api.v1.Change")
+ proto.RegisterType((*ApplicationID)(nil), "caos.zitadel.management.api.v1.ApplicationID")
+ proto.RegisterType((*ProjectID)(nil), "caos.zitadel.management.api.v1.ProjectID")
+ proto.RegisterType((*UserID)(nil), "caos.zitadel.management.api.v1.UserID")
+ proto.RegisterType((*LoginName)(nil), "caos.zitadel.management.api.v1.LoginName")
+ proto.RegisterType((*UniqueUserRequest)(nil), "caos.zitadel.management.api.v1.UniqueUserRequest")
+ proto.RegisterType((*UniqueUserResponse)(nil), "caos.zitadel.management.api.v1.UniqueUserResponse")
+ proto.RegisterType((*CreateUserRequest)(nil), "caos.zitadel.management.api.v1.CreateUserRequest")
+ proto.RegisterType((*CreateHumanRequest)(nil), "caos.zitadel.management.api.v1.CreateHumanRequest")
+ proto.RegisterType((*CreateMachineRequest)(nil), "caos.zitadel.management.api.v1.CreateMachineRequest")
+ proto.RegisterType((*UserResponse)(nil), "caos.zitadel.management.api.v1.UserResponse")
+ proto.RegisterType((*UserView)(nil), "caos.zitadel.management.api.v1.UserView")
+ proto.RegisterType((*HumanResponse)(nil), "caos.zitadel.management.api.v1.HumanResponse")
+ proto.RegisterType((*HumanView)(nil), "caos.zitadel.management.api.v1.HumanView")
+ proto.RegisterType((*MachineResponse)(nil), "caos.zitadel.management.api.v1.MachineResponse")
+ proto.RegisterType((*MachineView)(nil), "caos.zitadel.management.api.v1.MachineView")
+ proto.RegisterType((*UpdateMachineRequest)(nil), "caos.zitadel.management.api.v1.UpdateMachineRequest")
+ proto.RegisterType((*AddMachineKeyRequest)(nil), "caos.zitadel.management.api.v1.AddMachineKeyRequest")
+ proto.RegisterType((*AddMachineKeyResponse)(nil), "caos.zitadel.management.api.v1.AddMachineKeyResponse")
+ proto.RegisterType((*MachineKeyIDRequest)(nil), "caos.zitadel.management.api.v1.MachineKeyIDRequest")
+ proto.RegisterType((*MachineKeyView)(nil), "caos.zitadel.management.api.v1.MachineKeyView")
+ proto.RegisterType((*MachineKeySearchRequest)(nil), "caos.zitadel.management.api.v1.MachineKeySearchRequest")
+ proto.RegisterType((*MachineKeySearchResponse)(nil), "caos.zitadel.management.api.v1.MachineKeySearchResponse")
+ proto.RegisterType((*UserSearchRequest)(nil), "caos.zitadel.management.api.v1.UserSearchRequest")
+ proto.RegisterType((*UserSearchQuery)(nil), "caos.zitadel.management.api.v1.UserSearchQuery")
+ proto.RegisterType((*UserSearchResponse)(nil), "caos.zitadel.management.api.v1.UserSearchResponse")
+ proto.RegisterType((*UserProfile)(nil), "caos.zitadel.management.api.v1.UserProfile")
+ proto.RegisterType((*UserProfileView)(nil), "caos.zitadel.management.api.v1.UserProfileView")
+ proto.RegisterType((*UpdateUserProfileRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserProfileRequest")
+ proto.RegisterType((*UpdateUserUserNameRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserUserNameRequest")
+ proto.RegisterType((*UserEmail)(nil), "caos.zitadel.management.api.v1.UserEmail")
+ proto.RegisterType((*UserEmailView)(nil), "caos.zitadel.management.api.v1.UserEmailView")
+ proto.RegisterType((*UpdateUserEmailRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserEmailRequest")
+ proto.RegisterType((*UserPhone)(nil), "caos.zitadel.management.api.v1.UserPhone")
+ proto.RegisterType((*UserPhoneView)(nil), "caos.zitadel.management.api.v1.UserPhoneView")
+ proto.RegisterType((*UpdateUserPhoneRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserPhoneRequest")
+ proto.RegisterType((*UserAddress)(nil), "caos.zitadel.management.api.v1.UserAddress")
+ proto.RegisterType((*UserAddressView)(nil), "caos.zitadel.management.api.v1.UserAddressView")
+ proto.RegisterType((*UpdateUserAddressRequest)(nil), "caos.zitadel.management.api.v1.UpdateUserAddressRequest")
+ proto.RegisterType((*UserMultiFactors)(nil), "caos.zitadel.management.api.v1.UserMultiFactors")
+ proto.RegisterType((*UserMultiFactor)(nil), "caos.zitadel.management.api.v1.UserMultiFactor")
+ proto.RegisterType((*PasswordRequest)(nil), "caos.zitadel.management.api.v1.PasswordRequest")
+ proto.RegisterType((*SetPasswordNotificationRequest)(nil), "caos.zitadel.management.api.v1.SetPasswordNotificationRequest")
+ proto.RegisterType((*InitialMailRequest)(nil), "caos.zitadel.management.api.v1.InitialMailRequest")
+ proto.RegisterType((*OrgIamPolicyView)(nil), "caos.zitadel.management.api.v1.OrgIamPolicyView")
+ proto.RegisterType((*OrgCreateRequest)(nil), "caos.zitadel.management.api.v1.OrgCreateRequest")
+ proto.RegisterType((*Org)(nil), "caos.zitadel.management.api.v1.Org")
+ proto.RegisterType((*OrgView)(nil), "caos.zitadel.management.api.v1.OrgView")
+ proto.RegisterType((*Domain)(nil), "caos.zitadel.management.api.v1.Domain")
+ proto.RegisterType((*OrgDomain)(nil), "caos.zitadel.management.api.v1.OrgDomain")
+ proto.RegisterType((*OrgDomainView)(nil), "caos.zitadel.management.api.v1.OrgDomainView")
+ proto.RegisterType((*AddOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.AddOrgDomainRequest")
+ proto.RegisterType((*OrgDomainValidationRequest)(nil), "caos.zitadel.management.api.v1.OrgDomainValidationRequest")
+ proto.RegisterType((*OrgDomainValidationResponse)(nil), "caos.zitadel.management.api.v1.OrgDomainValidationResponse")
+ proto.RegisterType((*ValidateOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.ValidateOrgDomainRequest")
+ proto.RegisterType((*PrimaryOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.PrimaryOrgDomainRequest")
+ proto.RegisterType((*RemoveOrgDomainRequest)(nil), "caos.zitadel.management.api.v1.RemoveOrgDomainRequest")
+ proto.RegisterType((*OrgDomainSearchResponse)(nil), "caos.zitadel.management.api.v1.OrgDomainSearchResponse")
+ proto.RegisterType((*OrgDomainSearchRequest)(nil), "caos.zitadel.management.api.v1.OrgDomainSearchRequest")
+ proto.RegisterType((*OrgDomainSearchQuery)(nil), "caos.zitadel.management.api.v1.OrgDomainSearchQuery")
+ proto.RegisterType((*OrgMemberRoles)(nil), "caos.zitadel.management.api.v1.OrgMemberRoles")
+ proto.RegisterType((*OrgMember)(nil), "caos.zitadel.management.api.v1.OrgMember")
+ proto.RegisterType((*AddOrgMemberRequest)(nil), "caos.zitadel.management.api.v1.AddOrgMemberRequest")
+ proto.RegisterType((*ChangeOrgMemberRequest)(nil), "caos.zitadel.management.api.v1.ChangeOrgMemberRequest")
+ proto.RegisterType((*RemoveOrgMemberRequest)(nil), "caos.zitadel.management.api.v1.RemoveOrgMemberRequest")
+ proto.RegisterType((*OrgMemberSearchResponse)(nil), "caos.zitadel.management.api.v1.OrgMemberSearchResponse")
+ proto.RegisterType((*OrgMemberView)(nil), "caos.zitadel.management.api.v1.OrgMemberView")
+ proto.RegisterType((*OrgMemberSearchRequest)(nil), "caos.zitadel.management.api.v1.OrgMemberSearchRequest")
+ proto.RegisterType((*OrgMemberSearchQuery)(nil), "caos.zitadel.management.api.v1.OrgMemberSearchQuery")
+ proto.RegisterType((*ProjectCreateRequest)(nil), "caos.zitadel.management.api.v1.ProjectCreateRequest")
+ proto.RegisterType((*ProjectUpdateRequest)(nil), "caos.zitadel.management.api.v1.ProjectUpdateRequest")
+ proto.RegisterType((*ProjectSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectSearchResponse")
+ proto.RegisterType((*ProjectView)(nil), "caos.zitadel.management.api.v1.ProjectView")
+ proto.RegisterType((*ProjectSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectSearchRequest")
+ proto.RegisterType((*ProjectSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectSearchQuery")
+ proto.RegisterType((*Projects)(nil), "caos.zitadel.management.api.v1.Projects")
+ proto.RegisterType((*Project)(nil), "caos.zitadel.management.api.v1.Project")
+ proto.RegisterType((*ProjectMemberRoles)(nil), "caos.zitadel.management.api.v1.ProjectMemberRoles")
+ proto.RegisterType((*ProjectMember)(nil), "caos.zitadel.management.api.v1.ProjectMember")
+ proto.RegisterType((*ProjectMemberAdd)(nil), "caos.zitadel.management.api.v1.ProjectMemberAdd")
+ proto.RegisterType((*ProjectMemberChange)(nil), "caos.zitadel.management.api.v1.ProjectMemberChange")
+ proto.RegisterType((*ProjectMemberRemove)(nil), "caos.zitadel.management.api.v1.ProjectMemberRemove")
+ proto.RegisterType((*ProjectRoleAdd)(nil), "caos.zitadel.management.api.v1.ProjectRoleAdd")
+ proto.RegisterType((*ProjectRoleAddBulk)(nil), "caos.zitadel.management.api.v1.ProjectRoleAddBulk")
+ proto.RegisterType((*ProjectRoleChange)(nil), "caos.zitadel.management.api.v1.ProjectRoleChange")
+ proto.RegisterType((*ProjectRole)(nil), "caos.zitadel.management.api.v1.ProjectRole")
+ proto.RegisterType((*ProjectRoleView)(nil), "caos.zitadel.management.api.v1.ProjectRoleView")
+ proto.RegisterType((*ProjectRoleRemove)(nil), "caos.zitadel.management.api.v1.ProjectRoleRemove")
+ proto.RegisterType((*ProjectRoleSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectRoleSearchResponse")
+ proto.RegisterType((*ProjectRoleSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectRoleSearchRequest")
+ proto.RegisterType((*ProjectRoleSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectRoleSearchQuery")
+ proto.RegisterType((*ProjectMemberView)(nil), "caos.zitadel.management.api.v1.ProjectMemberView")
+ proto.RegisterType((*ProjectMemberSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectMemberSearchResponse")
+ proto.RegisterType((*ProjectMemberSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectMemberSearchRequest")
+ proto.RegisterType((*ProjectMemberSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectMemberSearchQuery")
+ proto.RegisterType((*Application)(nil), "caos.zitadel.management.api.v1.Application")
+ proto.RegisterType((*ApplicationUpdate)(nil), "caos.zitadel.management.api.v1.ApplicationUpdate")
+ proto.RegisterType((*OIDCConfig)(nil), "caos.zitadel.management.api.v1.OIDCConfig")
+ proto.RegisterType((*OIDCApplicationCreate)(nil), "caos.zitadel.management.api.v1.OIDCApplicationCreate")
+ proto.RegisterType((*OIDCConfigUpdate)(nil), "caos.zitadel.management.api.v1.OIDCConfigUpdate")
+ proto.RegisterType((*ClientSecret)(nil), "caos.zitadel.management.api.v1.ClientSecret")
+ proto.RegisterType((*ApplicationView)(nil), "caos.zitadel.management.api.v1.ApplicationView")
+ proto.RegisterType((*ApplicationSearchResponse)(nil), "caos.zitadel.management.api.v1.ApplicationSearchResponse")
+ proto.RegisterType((*ApplicationSearchRequest)(nil), "caos.zitadel.management.api.v1.ApplicationSearchRequest")
+ proto.RegisterType((*ApplicationSearchQuery)(nil), "caos.zitadel.management.api.v1.ApplicationSearchQuery")
+ proto.RegisterType((*ProjectGrant)(nil), "caos.zitadel.management.api.v1.ProjectGrant")
+ proto.RegisterType((*ProjectGrantCreate)(nil), "caos.zitadel.management.api.v1.ProjectGrantCreate")
+ proto.RegisterType((*ProjectGrantUpdate)(nil), "caos.zitadel.management.api.v1.ProjectGrantUpdate")
+ proto.RegisterType((*ProjectGrantID)(nil), "caos.zitadel.management.api.v1.ProjectGrantID")
+ proto.RegisterType((*ProjectGrantView)(nil), "caos.zitadel.management.api.v1.ProjectGrantView")
+ proto.RegisterType((*ProjectGrantSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchResponse")
+ proto.RegisterType((*GrantedProjectSearchRequest)(nil), "caos.zitadel.management.api.v1.GrantedProjectSearchRequest")
+ proto.RegisterType((*ProjectGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchRequest")
+ proto.RegisterType((*ProjectGrantSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectGrantSearchQuery")
+ proto.RegisterType((*ProjectGrantMemberRoles)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberRoles")
+ proto.RegisterType((*ProjectGrantMember)(nil), "caos.zitadel.management.api.v1.ProjectGrantMember")
+ proto.RegisterType((*ProjectGrantMemberAdd)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberAdd")
+ proto.RegisterType((*ProjectGrantMemberChange)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberChange")
+ proto.RegisterType((*ProjectGrantMemberRemove)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberRemove")
+ proto.RegisterType((*ProjectGrantMemberView)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberView")
+ proto.RegisterType((*ProjectGrantMemberSearchResponse)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse")
+ proto.RegisterType((*ProjectGrantMemberSearchRequest)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberSearchRequest")
+ proto.RegisterType((*ProjectGrantMemberSearchQuery)(nil), "caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery")
+ proto.RegisterType((*UserGrant)(nil), "caos.zitadel.management.api.v1.UserGrant")
+ proto.RegisterType((*UserGrantCreate)(nil), "caos.zitadel.management.api.v1.UserGrantCreate")
+ proto.RegisterType((*UserGrantUpdate)(nil), "caos.zitadel.management.api.v1.UserGrantUpdate")
+ proto.RegisterType((*UserGrantRemoveBulk)(nil), "caos.zitadel.management.api.v1.UserGrantRemoveBulk")
+ proto.RegisterType((*UserGrantID)(nil), "caos.zitadel.management.api.v1.UserGrantID")
+ proto.RegisterType((*UserGrantView)(nil), "caos.zitadel.management.api.v1.UserGrantView")
+ proto.RegisterType((*UserGrantSearchResponse)(nil), "caos.zitadel.management.api.v1.UserGrantSearchResponse")
+ proto.RegisterType((*UserGrantSearchRequest)(nil), "caos.zitadel.management.api.v1.UserGrantSearchRequest")
+ proto.RegisterType((*UserGrantSearchQuery)(nil), "caos.zitadel.management.api.v1.UserGrantSearchQuery")
+ proto.RegisterType((*UserMembershipSearchResponse)(nil), "caos.zitadel.management.api.v1.UserMembershipSearchResponse")
+ proto.RegisterType((*UserMembershipSearchRequest)(nil), "caos.zitadel.management.api.v1.UserMembershipSearchRequest")
+ proto.RegisterType((*UserMembershipSearchQuery)(nil), "caos.zitadel.management.api.v1.UserMembershipSearchQuery")
+ proto.RegisterType((*UserMembershipView)(nil), "caos.zitadel.management.api.v1.UserMembershipView")
+ proto.RegisterType((*IdpID)(nil), "caos.zitadel.management.api.v1.IdpID")
+ proto.RegisterType((*Idp)(nil), "caos.zitadel.management.api.v1.Idp")
+ proto.RegisterType((*IdpUpdate)(nil), "caos.zitadel.management.api.v1.IdpUpdate")
+ proto.RegisterType((*OidcIdpConfig)(nil), "caos.zitadel.management.api.v1.OidcIdpConfig")
+ proto.RegisterType((*OidcIdpConfigCreate)(nil), "caos.zitadel.management.api.v1.OidcIdpConfigCreate")
+ proto.RegisterType((*OidcIdpConfigUpdate)(nil), "caos.zitadel.management.api.v1.OidcIdpConfigUpdate")
+ proto.RegisterType((*IdpSearchResponse)(nil), "caos.zitadel.management.api.v1.IdpSearchResponse")
+ proto.RegisterType((*IdpView)(nil), "caos.zitadel.management.api.v1.IdpView")
+ proto.RegisterType((*OidcIdpConfigView)(nil), "caos.zitadel.management.api.v1.OidcIdpConfigView")
+ proto.RegisterType((*IdpSearchRequest)(nil), "caos.zitadel.management.api.v1.IdpSearchRequest")
+ proto.RegisterType((*IdpSearchQuery)(nil), "caos.zitadel.management.api.v1.IdpSearchQuery")
+ proto.RegisterType((*LoginPolicy)(nil), "caos.zitadel.management.api.v1.LoginPolicy")
+ proto.RegisterType((*LoginPolicyRequest)(nil), "caos.zitadel.management.api.v1.LoginPolicyRequest")
+ proto.RegisterType((*IdpProviderID)(nil), "caos.zitadel.management.api.v1.IdpProviderID")
+ proto.RegisterType((*IdpProviderAdd)(nil), "caos.zitadel.management.api.v1.IdpProviderAdd")
+ proto.RegisterType((*IdpProvider)(nil), "caos.zitadel.management.api.v1.IdpProvider")
+ proto.RegisterType((*LoginPolicyView)(nil), "caos.zitadel.management.api.v1.LoginPolicyView")
+ proto.RegisterType((*IdpProviderView)(nil), "caos.zitadel.management.api.v1.IdpProviderView")
+ proto.RegisterType((*IdpProviderSearchResponse)(nil), "caos.zitadel.management.api.v1.IdpProviderSearchResponse")
+ proto.RegisterType((*IdpProviderSearchRequest)(nil), "caos.zitadel.management.api.v1.IdpProviderSearchRequest")
+ proto.RegisterType((*ExternalIDPSearchRequest)(nil), "caos.zitadel.management.api.v1.ExternalIDPSearchRequest")
+ proto.RegisterType((*ExternalIDPSearchResponse)(nil), "caos.zitadel.management.api.v1.ExternalIDPSearchResponse")
+ proto.RegisterType((*ExternalIDPView)(nil), "caos.zitadel.management.api.v1.ExternalIDPView")
+ proto.RegisterType((*ExternalIDPRemoveRequest)(nil), "caos.zitadel.management.api.v1.ExternalIDPRemoveRequest")
+ proto.RegisterType((*SecondFactorsResult)(nil), "caos.zitadel.management.api.v1.SecondFactorsResult")
+ proto.RegisterType((*SecondFactor)(nil), "caos.zitadel.management.api.v1.SecondFactor")
+ proto.RegisterType((*MultiFactorsResult)(nil), "caos.zitadel.management.api.v1.MultiFactorsResult")
+ proto.RegisterType((*MultiFactor)(nil), "caos.zitadel.management.api.v1.MultiFactor")
+ proto.RegisterType((*PasswordComplexityPolicy)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicy")
+ proto.RegisterType((*PasswordComplexityPolicyRequest)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicyRequest")
+ proto.RegisterType((*PasswordComplexityPolicyView)(nil), "caos.zitadel.management.api.v1.PasswordComplexityPolicyView")
+ proto.RegisterType((*PasswordAgePolicy)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicy")
+ proto.RegisterType((*PasswordAgePolicyRequest)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicyRequest")
+ proto.RegisterType((*PasswordAgePolicyView)(nil), "caos.zitadel.management.api.v1.PasswordAgePolicyView")
+ proto.RegisterType((*PasswordLockoutPolicy)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicy")
+ proto.RegisterType((*PasswordLockoutPolicyRequest)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicyRequest")
+ proto.RegisterType((*PasswordLockoutPolicyView)(nil), "caos.zitadel.management.api.v1.PasswordLockoutPolicyView")
}
-var (
- file_management_proto_rawDescOnce sync.Once
- file_management_proto_rawDescData = file_management_proto_rawDesc
-)
+func init() { proto.RegisterFile("management.proto", fileDescriptor_edc174f991dc0a25) }
-func file_management_proto_rawDescGZIP() []byte {
- file_management_proto_rawDescOnce.Do(func() {
- file_management_proto_rawDescData = protoimpl.X.CompressGZIP(file_management_proto_rawDescData)
- })
- return file_management_proto_rawDescData
-}
-
-var file_management_proto_enumTypes = make([]protoimpl.EnumInfo, 42)
-var file_management_proto_msgTypes = make([]protoimpl.MessageInfo, 176)
-var file_management_proto_goTypes = []interface{}{
- (IamSetupStep)(0), // 0: caos.zitadel.management.api.v1.IamSetupStep
- (UserState)(0), // 1: caos.zitadel.management.api.v1.UserState
- (Gender)(0), // 2: caos.zitadel.management.api.v1.Gender
- (MachineKeyType)(0), // 3: caos.zitadel.management.api.v1.MachineKeyType
- (UserSearchKey)(0), // 4: caos.zitadel.management.api.v1.UserSearchKey
- (SearchMethod)(0), // 5: caos.zitadel.management.api.v1.SearchMethod
- (MfaType)(0), // 6: caos.zitadel.management.api.v1.MfaType
- (MFAState)(0), // 7: caos.zitadel.management.api.v1.MFAState
- (NotificationType)(0), // 8: caos.zitadel.management.api.v1.NotificationType
- (PolicyState)(0), // 9: caos.zitadel.management.api.v1.PolicyState
- (OrgState)(0), // 10: caos.zitadel.management.api.v1.OrgState
- (OrgDomainValidationType)(0), // 11: caos.zitadel.management.api.v1.OrgDomainValidationType
- (OrgDomainSearchKey)(0), // 12: caos.zitadel.management.api.v1.OrgDomainSearchKey
- (OrgMemberSearchKey)(0), // 13: caos.zitadel.management.api.v1.OrgMemberSearchKey
- (ProjectSearchKey)(0), // 14: caos.zitadel.management.api.v1.ProjectSearchKey
- (ProjectState)(0), // 15: caos.zitadel.management.api.v1.ProjectState
- (ProjectRoleSearchKey)(0), // 16: caos.zitadel.management.api.v1.ProjectRoleSearchKey
- (ProjectMemberSearchKey)(0), // 17: caos.zitadel.management.api.v1.ProjectMemberSearchKey
- (AppState)(0), // 18: caos.zitadel.management.api.v1.AppState
- (OIDCVersion)(0), // 19: caos.zitadel.management.api.v1.OIDCVersion
- (OIDCTokenType)(0), // 20: caos.zitadel.management.api.v1.OIDCTokenType
- (OIDCResponseType)(0), // 21: caos.zitadel.management.api.v1.OIDCResponseType
- (OIDCGrantType)(0), // 22: caos.zitadel.management.api.v1.OIDCGrantType
- (OIDCApplicationType)(0), // 23: caos.zitadel.management.api.v1.OIDCApplicationType
- (OIDCAuthMethodType)(0), // 24: caos.zitadel.management.api.v1.OIDCAuthMethodType
- (ApplicationSearchKey)(0), // 25: caos.zitadel.management.api.v1.ApplicationSearchKey
- (ProjectGrantState)(0), // 26: caos.zitadel.management.api.v1.ProjectGrantState
- (ProjectGrantSearchKey)(0), // 27: caos.zitadel.management.api.v1.ProjectGrantSearchKey
- (ProjectGrantMemberSearchKey)(0), // 28: caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey
- (UserGrantState)(0), // 29: caos.zitadel.management.api.v1.UserGrantState
- (UserGrantSearchKey)(0), // 30: caos.zitadel.management.api.v1.UserGrantSearchKey
- (UserMembershipSearchKey)(0), // 31: caos.zitadel.management.api.v1.UserMembershipSearchKey
- (MemberType)(0), // 32: caos.zitadel.management.api.v1.MemberType
- (IdpStylingType)(0), // 33: caos.zitadel.management.api.v1.IdpStylingType
- (IdpState)(0), // 34: caos.zitadel.management.api.v1.IdpState
- (OIDCMappingField)(0), // 35: caos.zitadel.management.api.v1.OIDCMappingField
- (IdpSearchKey)(0), // 36: caos.zitadel.management.api.v1.IdpSearchKey
- (IdpType)(0), // 37: caos.zitadel.management.api.v1.IdpType
- (IdpProviderType)(0), // 38: caos.zitadel.management.api.v1.IdpProviderType
- (ProjectType)(0), // 39: caos.zitadel.management.api.v1.ProjectType
- (SecondFactorType)(0), // 40: caos.zitadel.management.api.v1.SecondFactorType
- (MultiFactorType)(0), // 41: caos.zitadel.management.api.v1.MultiFactorType
- (*ZitadelDocs)(nil), // 42: caos.zitadel.management.api.v1.ZitadelDocs
- (*Iam)(nil), // 43: caos.zitadel.management.api.v1.Iam
- (*ChangeRequest)(nil), // 44: caos.zitadel.management.api.v1.ChangeRequest
- (*Changes)(nil), // 45: caos.zitadel.management.api.v1.Changes
- (*Change)(nil), // 46: caos.zitadel.management.api.v1.Change
- (*ApplicationID)(nil), // 47: caos.zitadel.management.api.v1.ApplicationID
- (*ProjectID)(nil), // 48: caos.zitadel.management.api.v1.ProjectID
- (*UserID)(nil), // 49: caos.zitadel.management.api.v1.UserID
- (*LoginName)(nil), // 50: caos.zitadel.management.api.v1.LoginName
- (*UniqueUserRequest)(nil), // 51: caos.zitadel.management.api.v1.UniqueUserRequest
- (*UniqueUserResponse)(nil), // 52: caos.zitadel.management.api.v1.UniqueUserResponse
- (*CreateUserRequest)(nil), // 53: caos.zitadel.management.api.v1.CreateUserRequest
- (*CreateHumanRequest)(nil), // 54: caos.zitadel.management.api.v1.CreateHumanRequest
- (*CreateMachineRequest)(nil), // 55: caos.zitadel.management.api.v1.CreateMachineRequest
- (*UserResponse)(nil), // 56: caos.zitadel.management.api.v1.UserResponse
- (*UserView)(nil), // 57: caos.zitadel.management.api.v1.UserView
- (*HumanResponse)(nil), // 58: caos.zitadel.management.api.v1.HumanResponse
- (*HumanView)(nil), // 59: caos.zitadel.management.api.v1.HumanView
- (*MachineResponse)(nil), // 60: caos.zitadel.management.api.v1.MachineResponse
- (*MachineView)(nil), // 61: caos.zitadel.management.api.v1.MachineView
- (*UpdateMachineRequest)(nil), // 62: caos.zitadel.management.api.v1.UpdateMachineRequest
- (*AddMachineKeyRequest)(nil), // 63: caos.zitadel.management.api.v1.AddMachineKeyRequest
- (*AddMachineKeyResponse)(nil), // 64: caos.zitadel.management.api.v1.AddMachineKeyResponse
- (*MachineKeyIDRequest)(nil), // 65: caos.zitadel.management.api.v1.MachineKeyIDRequest
- (*MachineKeyView)(nil), // 66: caos.zitadel.management.api.v1.MachineKeyView
- (*MachineKeySearchRequest)(nil), // 67: caos.zitadel.management.api.v1.MachineKeySearchRequest
- (*MachineKeySearchResponse)(nil), // 68: caos.zitadel.management.api.v1.MachineKeySearchResponse
- (*UserSearchRequest)(nil), // 69: caos.zitadel.management.api.v1.UserSearchRequest
- (*UserSearchQuery)(nil), // 70: caos.zitadel.management.api.v1.UserSearchQuery
- (*UserSearchResponse)(nil), // 71: caos.zitadel.management.api.v1.UserSearchResponse
- (*UserProfile)(nil), // 72: caos.zitadel.management.api.v1.UserProfile
- (*UserProfileView)(nil), // 73: caos.zitadel.management.api.v1.UserProfileView
- (*UpdateUserProfileRequest)(nil), // 74: caos.zitadel.management.api.v1.UpdateUserProfileRequest
- (*UpdateUserUserNameRequest)(nil), // 75: caos.zitadel.management.api.v1.UpdateUserUserNameRequest
- (*UserEmail)(nil), // 76: caos.zitadel.management.api.v1.UserEmail
- (*UserEmailView)(nil), // 77: caos.zitadel.management.api.v1.UserEmailView
- (*UpdateUserEmailRequest)(nil), // 78: caos.zitadel.management.api.v1.UpdateUserEmailRequest
- (*UserPhone)(nil), // 79: caos.zitadel.management.api.v1.UserPhone
- (*UserPhoneView)(nil), // 80: caos.zitadel.management.api.v1.UserPhoneView
- (*UpdateUserPhoneRequest)(nil), // 81: caos.zitadel.management.api.v1.UpdateUserPhoneRequest
- (*UserAddress)(nil), // 82: caos.zitadel.management.api.v1.UserAddress
- (*UserAddressView)(nil), // 83: caos.zitadel.management.api.v1.UserAddressView
- (*UpdateUserAddressRequest)(nil), // 84: caos.zitadel.management.api.v1.UpdateUserAddressRequest
- (*UserMultiFactors)(nil), // 85: caos.zitadel.management.api.v1.UserMultiFactors
- (*UserMultiFactor)(nil), // 86: caos.zitadel.management.api.v1.UserMultiFactor
- (*PasswordRequest)(nil), // 87: caos.zitadel.management.api.v1.PasswordRequest
- (*SetPasswordNotificationRequest)(nil), // 88: caos.zitadel.management.api.v1.SetPasswordNotificationRequest
- (*OrgIamPolicyView)(nil), // 89: caos.zitadel.management.api.v1.OrgIamPolicyView
- (*OrgCreateRequest)(nil), // 90: caos.zitadel.management.api.v1.OrgCreateRequest
- (*Org)(nil), // 91: caos.zitadel.management.api.v1.Org
- (*OrgView)(nil), // 92: caos.zitadel.management.api.v1.OrgView
- (*Domain)(nil), // 93: caos.zitadel.management.api.v1.Domain
- (*OrgDomain)(nil), // 94: caos.zitadel.management.api.v1.OrgDomain
- (*OrgDomainView)(nil), // 95: caos.zitadel.management.api.v1.OrgDomainView
- (*AddOrgDomainRequest)(nil), // 96: caos.zitadel.management.api.v1.AddOrgDomainRequest
- (*OrgDomainValidationRequest)(nil), // 97: caos.zitadel.management.api.v1.OrgDomainValidationRequest
- (*OrgDomainValidationResponse)(nil), // 98: caos.zitadel.management.api.v1.OrgDomainValidationResponse
- (*ValidateOrgDomainRequest)(nil), // 99: caos.zitadel.management.api.v1.ValidateOrgDomainRequest
- (*PrimaryOrgDomainRequest)(nil), // 100: caos.zitadel.management.api.v1.PrimaryOrgDomainRequest
- (*RemoveOrgDomainRequest)(nil), // 101: caos.zitadel.management.api.v1.RemoveOrgDomainRequest
- (*OrgDomainSearchResponse)(nil), // 102: caos.zitadel.management.api.v1.OrgDomainSearchResponse
- (*OrgDomainSearchRequest)(nil), // 103: caos.zitadel.management.api.v1.OrgDomainSearchRequest
- (*OrgDomainSearchQuery)(nil), // 104: caos.zitadel.management.api.v1.OrgDomainSearchQuery
- (*OrgMemberRoles)(nil), // 105: caos.zitadel.management.api.v1.OrgMemberRoles
- (*OrgMember)(nil), // 106: caos.zitadel.management.api.v1.OrgMember
- (*AddOrgMemberRequest)(nil), // 107: caos.zitadel.management.api.v1.AddOrgMemberRequest
- (*ChangeOrgMemberRequest)(nil), // 108: caos.zitadel.management.api.v1.ChangeOrgMemberRequest
- (*RemoveOrgMemberRequest)(nil), // 109: caos.zitadel.management.api.v1.RemoveOrgMemberRequest
- (*OrgMemberSearchResponse)(nil), // 110: caos.zitadel.management.api.v1.OrgMemberSearchResponse
- (*OrgMemberView)(nil), // 111: caos.zitadel.management.api.v1.OrgMemberView
- (*OrgMemberSearchRequest)(nil), // 112: caos.zitadel.management.api.v1.OrgMemberSearchRequest
- (*OrgMemberSearchQuery)(nil), // 113: caos.zitadel.management.api.v1.OrgMemberSearchQuery
- (*ProjectCreateRequest)(nil), // 114: caos.zitadel.management.api.v1.ProjectCreateRequest
- (*ProjectUpdateRequest)(nil), // 115: caos.zitadel.management.api.v1.ProjectUpdateRequest
- (*ProjectSearchResponse)(nil), // 116: caos.zitadel.management.api.v1.ProjectSearchResponse
- (*ProjectView)(nil), // 117: caos.zitadel.management.api.v1.ProjectView
- (*ProjectSearchRequest)(nil), // 118: caos.zitadel.management.api.v1.ProjectSearchRequest
- (*ProjectSearchQuery)(nil), // 119: caos.zitadel.management.api.v1.ProjectSearchQuery
- (*Projects)(nil), // 120: caos.zitadel.management.api.v1.Projects
- (*Project)(nil), // 121: caos.zitadel.management.api.v1.Project
- (*ProjectMemberRoles)(nil), // 122: caos.zitadel.management.api.v1.ProjectMemberRoles
- (*ProjectMember)(nil), // 123: caos.zitadel.management.api.v1.ProjectMember
- (*ProjectMemberAdd)(nil), // 124: caos.zitadel.management.api.v1.ProjectMemberAdd
- (*ProjectMemberChange)(nil), // 125: caos.zitadel.management.api.v1.ProjectMemberChange
- (*ProjectMemberRemove)(nil), // 126: caos.zitadel.management.api.v1.ProjectMemberRemove
- (*ProjectRoleAdd)(nil), // 127: caos.zitadel.management.api.v1.ProjectRoleAdd
- (*ProjectRoleAddBulk)(nil), // 128: caos.zitadel.management.api.v1.ProjectRoleAddBulk
- (*ProjectRoleChange)(nil), // 129: caos.zitadel.management.api.v1.ProjectRoleChange
- (*ProjectRole)(nil), // 130: caos.zitadel.management.api.v1.ProjectRole
- (*ProjectRoleView)(nil), // 131: caos.zitadel.management.api.v1.ProjectRoleView
- (*ProjectRoleRemove)(nil), // 132: caos.zitadel.management.api.v1.ProjectRoleRemove
- (*ProjectRoleSearchResponse)(nil), // 133: caos.zitadel.management.api.v1.ProjectRoleSearchResponse
- (*ProjectRoleSearchRequest)(nil), // 134: caos.zitadel.management.api.v1.ProjectRoleSearchRequest
- (*ProjectRoleSearchQuery)(nil), // 135: caos.zitadel.management.api.v1.ProjectRoleSearchQuery
- (*ProjectMemberView)(nil), // 136: caos.zitadel.management.api.v1.ProjectMemberView
- (*ProjectMemberSearchResponse)(nil), // 137: caos.zitadel.management.api.v1.ProjectMemberSearchResponse
- (*ProjectMemberSearchRequest)(nil), // 138: caos.zitadel.management.api.v1.ProjectMemberSearchRequest
- (*ProjectMemberSearchQuery)(nil), // 139: caos.zitadel.management.api.v1.ProjectMemberSearchQuery
- (*Application)(nil), // 140: caos.zitadel.management.api.v1.Application
- (*ApplicationUpdate)(nil), // 141: caos.zitadel.management.api.v1.ApplicationUpdate
- (*OIDCConfig)(nil), // 142: caos.zitadel.management.api.v1.OIDCConfig
- (*OIDCApplicationCreate)(nil), // 143: caos.zitadel.management.api.v1.OIDCApplicationCreate
- (*OIDCConfigUpdate)(nil), // 144: caos.zitadel.management.api.v1.OIDCConfigUpdate
- (*ClientSecret)(nil), // 145: caos.zitadel.management.api.v1.ClientSecret
- (*ApplicationView)(nil), // 146: caos.zitadel.management.api.v1.ApplicationView
- (*ApplicationSearchResponse)(nil), // 147: caos.zitadel.management.api.v1.ApplicationSearchResponse
- (*ApplicationSearchRequest)(nil), // 148: caos.zitadel.management.api.v1.ApplicationSearchRequest
- (*ApplicationSearchQuery)(nil), // 149: caos.zitadel.management.api.v1.ApplicationSearchQuery
- (*ProjectGrant)(nil), // 150: caos.zitadel.management.api.v1.ProjectGrant
- (*ProjectGrantCreate)(nil), // 151: caos.zitadel.management.api.v1.ProjectGrantCreate
- (*ProjectGrantUpdate)(nil), // 152: caos.zitadel.management.api.v1.ProjectGrantUpdate
- (*ProjectGrantID)(nil), // 153: caos.zitadel.management.api.v1.ProjectGrantID
- (*ProjectGrantView)(nil), // 154: caos.zitadel.management.api.v1.ProjectGrantView
- (*ProjectGrantSearchResponse)(nil), // 155: caos.zitadel.management.api.v1.ProjectGrantSearchResponse
- (*GrantedProjectSearchRequest)(nil), // 156: caos.zitadel.management.api.v1.GrantedProjectSearchRequest
- (*ProjectGrantSearchRequest)(nil), // 157: caos.zitadel.management.api.v1.ProjectGrantSearchRequest
- (*ProjectGrantSearchQuery)(nil), // 158: caos.zitadel.management.api.v1.ProjectGrantSearchQuery
- (*ProjectGrantMemberRoles)(nil), // 159: caos.zitadel.management.api.v1.ProjectGrantMemberRoles
- (*ProjectGrantMember)(nil), // 160: caos.zitadel.management.api.v1.ProjectGrantMember
- (*ProjectGrantMemberAdd)(nil), // 161: caos.zitadel.management.api.v1.ProjectGrantMemberAdd
- (*ProjectGrantMemberChange)(nil), // 162: caos.zitadel.management.api.v1.ProjectGrantMemberChange
- (*ProjectGrantMemberRemove)(nil), // 163: caos.zitadel.management.api.v1.ProjectGrantMemberRemove
- (*ProjectGrantMemberView)(nil), // 164: caos.zitadel.management.api.v1.ProjectGrantMemberView
- (*ProjectGrantMemberSearchResponse)(nil), // 165: caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse
- (*ProjectGrantMemberSearchRequest)(nil), // 166: caos.zitadel.management.api.v1.ProjectGrantMemberSearchRequest
- (*ProjectGrantMemberSearchQuery)(nil), // 167: caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery
- (*UserGrant)(nil), // 168: caos.zitadel.management.api.v1.UserGrant
- (*UserGrantCreate)(nil), // 169: caos.zitadel.management.api.v1.UserGrantCreate
- (*UserGrantUpdate)(nil), // 170: caos.zitadel.management.api.v1.UserGrantUpdate
- (*UserGrantRemoveBulk)(nil), // 171: caos.zitadel.management.api.v1.UserGrantRemoveBulk
- (*UserGrantID)(nil), // 172: caos.zitadel.management.api.v1.UserGrantID
- (*UserGrantView)(nil), // 173: caos.zitadel.management.api.v1.UserGrantView
- (*UserGrantSearchResponse)(nil), // 174: caos.zitadel.management.api.v1.UserGrantSearchResponse
- (*UserGrantSearchRequest)(nil), // 175: caos.zitadel.management.api.v1.UserGrantSearchRequest
- (*UserGrantSearchQuery)(nil), // 176: caos.zitadel.management.api.v1.UserGrantSearchQuery
- (*UserMembershipSearchResponse)(nil), // 177: caos.zitadel.management.api.v1.UserMembershipSearchResponse
- (*UserMembershipSearchRequest)(nil), // 178: caos.zitadel.management.api.v1.UserMembershipSearchRequest
- (*UserMembershipSearchQuery)(nil), // 179: caos.zitadel.management.api.v1.UserMembershipSearchQuery
- (*UserMembershipView)(nil), // 180: caos.zitadel.management.api.v1.UserMembershipView
- (*IdpID)(nil), // 181: caos.zitadel.management.api.v1.IdpID
- (*Idp)(nil), // 182: caos.zitadel.management.api.v1.Idp
- (*IdpUpdate)(nil), // 183: caos.zitadel.management.api.v1.IdpUpdate
- (*OidcIdpConfig)(nil), // 184: caos.zitadel.management.api.v1.OidcIdpConfig
- (*OidcIdpConfigCreate)(nil), // 185: caos.zitadel.management.api.v1.OidcIdpConfigCreate
- (*OidcIdpConfigUpdate)(nil), // 186: caos.zitadel.management.api.v1.OidcIdpConfigUpdate
- (*IdpSearchResponse)(nil), // 187: caos.zitadel.management.api.v1.IdpSearchResponse
- (*IdpView)(nil), // 188: caos.zitadel.management.api.v1.IdpView
- (*OidcIdpConfigView)(nil), // 189: caos.zitadel.management.api.v1.OidcIdpConfigView
- (*IdpSearchRequest)(nil), // 190: caos.zitadel.management.api.v1.IdpSearchRequest
- (*IdpSearchQuery)(nil), // 191: caos.zitadel.management.api.v1.IdpSearchQuery
- (*LoginPolicy)(nil), // 192: caos.zitadel.management.api.v1.LoginPolicy
- (*LoginPolicyRequest)(nil), // 193: caos.zitadel.management.api.v1.LoginPolicyRequest
- (*IdpProviderID)(nil), // 194: caos.zitadel.management.api.v1.IdpProviderID
- (*IdpProviderAdd)(nil), // 195: caos.zitadel.management.api.v1.IdpProviderAdd
- (*IdpProvider)(nil), // 196: caos.zitadel.management.api.v1.IdpProvider
- (*LoginPolicyView)(nil), // 197: caos.zitadel.management.api.v1.LoginPolicyView
- (*IdpProviderView)(nil), // 198: caos.zitadel.management.api.v1.IdpProviderView
- (*IdpProviderSearchResponse)(nil), // 199: caos.zitadel.management.api.v1.IdpProviderSearchResponse
- (*IdpProviderSearchRequest)(nil), // 200: caos.zitadel.management.api.v1.IdpProviderSearchRequest
- (*ExternalIDPSearchRequest)(nil), // 201: caos.zitadel.management.api.v1.ExternalIDPSearchRequest
- (*ExternalIDPSearchResponse)(nil), // 202: caos.zitadel.management.api.v1.ExternalIDPSearchResponse
- (*ExternalIDPView)(nil), // 203: caos.zitadel.management.api.v1.ExternalIDPView
- (*ExternalIDPRemoveRequest)(nil), // 204: caos.zitadel.management.api.v1.ExternalIDPRemoveRequest
- (*SecondFactorsResult)(nil), // 205: caos.zitadel.management.api.v1.SecondFactorsResult
- (*SecondFactor)(nil), // 206: caos.zitadel.management.api.v1.SecondFactor
- (*MultiFactorsResult)(nil), // 207: caos.zitadel.management.api.v1.MultiFactorsResult
- (*MultiFactor)(nil), // 208: caos.zitadel.management.api.v1.MultiFactor
- (*PasswordComplexityPolicy)(nil), // 209: caos.zitadel.management.api.v1.PasswordComplexityPolicy
- (*PasswordComplexityPolicyRequest)(nil), // 210: caos.zitadel.management.api.v1.PasswordComplexityPolicyRequest
- (*PasswordComplexityPolicyView)(nil), // 211: caos.zitadel.management.api.v1.PasswordComplexityPolicyView
- (*PasswordAgePolicy)(nil), // 212: caos.zitadel.management.api.v1.PasswordAgePolicy
- (*PasswordAgePolicyRequest)(nil), // 213: caos.zitadel.management.api.v1.PasswordAgePolicyRequest
- (*PasswordAgePolicyView)(nil), // 214: caos.zitadel.management.api.v1.PasswordAgePolicyView
- (*PasswordLockoutPolicy)(nil), // 215: caos.zitadel.management.api.v1.PasswordLockoutPolicy
- (*PasswordLockoutPolicyRequest)(nil), // 216: caos.zitadel.management.api.v1.PasswordLockoutPolicyRequest
- (*PasswordLockoutPolicyView)(nil), // 217: caos.zitadel.management.api.v1.PasswordLockoutPolicyView
- (*timestamp.Timestamp)(nil), // 218: google.protobuf.Timestamp
- (*message.LocalizedMessage)(nil), // 219: caos.zitadel.api.v1.LocalizedMessage
- (*_struct.Struct)(nil), // 220: google.protobuf.Struct
- (*empty.Empty)(nil), // 221: google.protobuf.Empty
-}
-var file_management_proto_depIdxs = []int32{
- 0, // 0: caos.zitadel.management.api.v1.Iam.set_up_done:type_name -> caos.zitadel.management.api.v1.IamSetupStep
- 0, // 1: caos.zitadel.management.api.v1.Iam.set_up_started:type_name -> caos.zitadel.management.api.v1.IamSetupStep
- 46, // 2: caos.zitadel.management.api.v1.Changes.changes:type_name -> caos.zitadel.management.api.v1.Change
- 218, // 3: caos.zitadel.management.api.v1.Change.change_date:type_name -> google.protobuf.Timestamp
- 219, // 4: caos.zitadel.management.api.v1.Change.event_type:type_name -> caos.zitadel.api.v1.LocalizedMessage
- 220, // 5: caos.zitadel.management.api.v1.Change.data:type_name -> google.protobuf.Struct
- 54, // 6: caos.zitadel.management.api.v1.CreateUserRequest.human:type_name -> caos.zitadel.management.api.v1.CreateHumanRequest
- 55, // 7: caos.zitadel.management.api.v1.CreateUserRequest.machine:type_name -> caos.zitadel.management.api.v1.CreateMachineRequest
- 2, // 8: caos.zitadel.management.api.v1.CreateHumanRequest.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 1, // 9: caos.zitadel.management.api.v1.UserResponse.state:type_name -> caos.zitadel.management.api.v1.UserState
- 218, // 10: caos.zitadel.management.api.v1.UserResponse.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 11: caos.zitadel.management.api.v1.UserResponse.change_date:type_name -> google.protobuf.Timestamp
- 58, // 12: caos.zitadel.management.api.v1.UserResponse.human:type_name -> caos.zitadel.management.api.v1.HumanResponse
- 60, // 13: caos.zitadel.management.api.v1.UserResponse.machine:type_name -> caos.zitadel.management.api.v1.MachineResponse
- 1, // 14: caos.zitadel.management.api.v1.UserView.state:type_name -> caos.zitadel.management.api.v1.UserState
- 218, // 15: caos.zitadel.management.api.v1.UserView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 16: caos.zitadel.management.api.v1.UserView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 17: caos.zitadel.management.api.v1.UserView.last_login:type_name -> google.protobuf.Timestamp
- 59, // 18: caos.zitadel.management.api.v1.UserView.human:type_name -> caos.zitadel.management.api.v1.HumanView
- 61, // 19: caos.zitadel.management.api.v1.UserView.machine:type_name -> caos.zitadel.management.api.v1.MachineView
- 2, // 20: caos.zitadel.management.api.v1.HumanResponse.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 218, // 21: caos.zitadel.management.api.v1.HumanView.password_changed:type_name -> google.protobuf.Timestamp
- 2, // 22: caos.zitadel.management.api.v1.HumanView.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 218, // 23: caos.zitadel.management.api.v1.MachineView.last_key_added:type_name -> google.protobuf.Timestamp
- 3, // 24: caos.zitadel.management.api.v1.AddMachineKeyRequest.type:type_name -> caos.zitadel.management.api.v1.MachineKeyType
- 218, // 25: caos.zitadel.management.api.v1.AddMachineKeyRequest.expiration_date:type_name -> google.protobuf.Timestamp
- 218, // 26: caos.zitadel.management.api.v1.AddMachineKeyResponse.creation_date:type_name -> google.protobuf.Timestamp
- 3, // 27: caos.zitadel.management.api.v1.AddMachineKeyResponse.type:type_name -> caos.zitadel.management.api.v1.MachineKeyType
- 218, // 28: caos.zitadel.management.api.v1.AddMachineKeyResponse.expiration_date:type_name -> google.protobuf.Timestamp
- 3, // 29: caos.zitadel.management.api.v1.MachineKeyView.type:type_name -> caos.zitadel.management.api.v1.MachineKeyType
- 218, // 30: caos.zitadel.management.api.v1.MachineKeyView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 31: caos.zitadel.management.api.v1.MachineKeyView.expiration_date:type_name -> google.protobuf.Timestamp
- 66, // 32: caos.zitadel.management.api.v1.MachineKeySearchResponse.result:type_name -> caos.zitadel.management.api.v1.MachineKeyView
- 218, // 33: caos.zitadel.management.api.v1.MachineKeySearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 4, // 34: caos.zitadel.management.api.v1.UserSearchRequest.sorting_column:type_name -> caos.zitadel.management.api.v1.UserSearchKey
- 70, // 35: caos.zitadel.management.api.v1.UserSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.UserSearchQuery
- 4, // 36: caos.zitadel.management.api.v1.UserSearchQuery.key:type_name -> caos.zitadel.management.api.v1.UserSearchKey
- 5, // 37: caos.zitadel.management.api.v1.UserSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 57, // 38: caos.zitadel.management.api.v1.UserSearchResponse.result:type_name -> caos.zitadel.management.api.v1.UserView
- 218, // 39: caos.zitadel.management.api.v1.UserSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 2, // 40: caos.zitadel.management.api.v1.UserProfile.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 218, // 41: caos.zitadel.management.api.v1.UserProfile.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 42: caos.zitadel.management.api.v1.UserProfile.change_date:type_name -> google.protobuf.Timestamp
- 2, // 43: caos.zitadel.management.api.v1.UserProfileView.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 218, // 44: caos.zitadel.management.api.v1.UserProfileView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 45: caos.zitadel.management.api.v1.UserProfileView.change_date:type_name -> google.protobuf.Timestamp
- 2, // 46: caos.zitadel.management.api.v1.UpdateUserProfileRequest.gender:type_name -> caos.zitadel.management.api.v1.Gender
- 218, // 47: caos.zitadel.management.api.v1.UserEmail.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 48: caos.zitadel.management.api.v1.UserEmail.change_date:type_name -> google.protobuf.Timestamp
- 218, // 49: caos.zitadel.management.api.v1.UserEmailView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 50: caos.zitadel.management.api.v1.UserEmailView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 51: caos.zitadel.management.api.v1.UserPhone.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 52: caos.zitadel.management.api.v1.UserPhone.change_date:type_name -> google.protobuf.Timestamp
- 218, // 53: caos.zitadel.management.api.v1.UserPhoneView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 54: caos.zitadel.management.api.v1.UserPhoneView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 55: caos.zitadel.management.api.v1.UserAddress.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 56: caos.zitadel.management.api.v1.UserAddress.change_date:type_name -> google.protobuf.Timestamp
- 218, // 57: caos.zitadel.management.api.v1.UserAddressView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 58: caos.zitadel.management.api.v1.UserAddressView.change_date:type_name -> google.protobuf.Timestamp
- 86, // 59: caos.zitadel.management.api.v1.UserMultiFactors.mfas:type_name -> caos.zitadel.management.api.v1.UserMultiFactor
- 6, // 60: caos.zitadel.management.api.v1.UserMultiFactor.type:type_name -> caos.zitadel.management.api.v1.MfaType
- 7, // 61: caos.zitadel.management.api.v1.UserMultiFactor.state:type_name -> caos.zitadel.management.api.v1.MFAState
- 8, // 62: caos.zitadel.management.api.v1.SetPasswordNotificationRequest.type:type_name -> caos.zitadel.management.api.v1.NotificationType
- 10, // 63: caos.zitadel.management.api.v1.Org.state:type_name -> caos.zitadel.management.api.v1.OrgState
- 218, // 64: caos.zitadel.management.api.v1.Org.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 65: caos.zitadel.management.api.v1.Org.change_date:type_name -> google.protobuf.Timestamp
- 10, // 66: caos.zitadel.management.api.v1.OrgView.state:type_name -> caos.zitadel.management.api.v1.OrgState
- 218, // 67: caos.zitadel.management.api.v1.OrgView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 68: caos.zitadel.management.api.v1.OrgView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 69: caos.zitadel.management.api.v1.OrgDomain.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 70: caos.zitadel.management.api.v1.OrgDomain.change_date:type_name -> google.protobuf.Timestamp
- 218, // 71: caos.zitadel.management.api.v1.OrgDomainView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 72: caos.zitadel.management.api.v1.OrgDomainView.change_date:type_name -> google.protobuf.Timestamp
- 11, // 73: caos.zitadel.management.api.v1.OrgDomainView.validation_type:type_name -> caos.zitadel.management.api.v1.OrgDomainValidationType
- 11, // 74: caos.zitadel.management.api.v1.OrgDomainValidationRequest.type:type_name -> caos.zitadel.management.api.v1.OrgDomainValidationType
- 95, // 75: caos.zitadel.management.api.v1.OrgDomainSearchResponse.result:type_name -> caos.zitadel.management.api.v1.OrgDomainView
- 218, // 76: caos.zitadel.management.api.v1.OrgDomainSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 104, // 77: caos.zitadel.management.api.v1.OrgDomainSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.OrgDomainSearchQuery
- 12, // 78: caos.zitadel.management.api.v1.OrgDomainSearchQuery.key:type_name -> caos.zitadel.management.api.v1.OrgDomainSearchKey
- 5, // 79: caos.zitadel.management.api.v1.OrgDomainSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 218, // 80: caos.zitadel.management.api.v1.OrgMember.change_date:type_name -> google.protobuf.Timestamp
- 218, // 81: caos.zitadel.management.api.v1.OrgMember.creation_date:type_name -> google.protobuf.Timestamp
- 111, // 82: caos.zitadel.management.api.v1.OrgMemberSearchResponse.result:type_name -> caos.zitadel.management.api.v1.OrgMemberView
- 218, // 83: caos.zitadel.management.api.v1.OrgMemberSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 218, // 84: caos.zitadel.management.api.v1.OrgMemberView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 85: caos.zitadel.management.api.v1.OrgMemberView.creation_date:type_name -> google.protobuf.Timestamp
- 113, // 86: caos.zitadel.management.api.v1.OrgMemberSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.OrgMemberSearchQuery
- 13, // 87: caos.zitadel.management.api.v1.OrgMemberSearchQuery.key:type_name -> caos.zitadel.management.api.v1.OrgMemberSearchKey
- 5, // 88: caos.zitadel.management.api.v1.OrgMemberSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 117, // 89: caos.zitadel.management.api.v1.ProjectSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectView
- 218, // 90: caos.zitadel.management.api.v1.ProjectSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 15, // 91: caos.zitadel.management.api.v1.ProjectView.state:type_name -> caos.zitadel.management.api.v1.ProjectState
- 218, // 92: caos.zitadel.management.api.v1.ProjectView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 93: caos.zitadel.management.api.v1.ProjectView.creation_date:type_name -> google.protobuf.Timestamp
- 119, // 94: caos.zitadel.management.api.v1.ProjectSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectSearchQuery
- 14, // 95: caos.zitadel.management.api.v1.ProjectSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ProjectSearchKey
- 5, // 96: caos.zitadel.management.api.v1.ProjectSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 121, // 97: caos.zitadel.management.api.v1.Projects.projects:type_name -> caos.zitadel.management.api.v1.Project
- 15, // 98: caos.zitadel.management.api.v1.Project.state:type_name -> caos.zitadel.management.api.v1.ProjectState
- 218, // 99: caos.zitadel.management.api.v1.Project.change_date:type_name -> google.protobuf.Timestamp
- 218, // 100: caos.zitadel.management.api.v1.Project.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 101: caos.zitadel.management.api.v1.ProjectMember.change_date:type_name -> google.protobuf.Timestamp
- 218, // 102: caos.zitadel.management.api.v1.ProjectMember.creation_date:type_name -> google.protobuf.Timestamp
- 127, // 103: caos.zitadel.management.api.v1.ProjectRoleAddBulk.project_roles:type_name -> caos.zitadel.management.api.v1.ProjectRoleAdd
- 218, // 104: caos.zitadel.management.api.v1.ProjectRole.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 105: caos.zitadel.management.api.v1.ProjectRole.change_date:type_name -> google.protobuf.Timestamp
- 218, // 106: caos.zitadel.management.api.v1.ProjectRoleView.creation_date:type_name -> google.protobuf.Timestamp
- 131, // 107: caos.zitadel.management.api.v1.ProjectRoleSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectRoleView
- 218, // 108: caos.zitadel.management.api.v1.ProjectRoleSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 135, // 109: caos.zitadel.management.api.v1.ProjectRoleSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectRoleSearchQuery
- 16, // 110: caos.zitadel.management.api.v1.ProjectRoleSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ProjectRoleSearchKey
- 5, // 111: caos.zitadel.management.api.v1.ProjectRoleSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 218, // 112: caos.zitadel.management.api.v1.ProjectMemberView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 113: caos.zitadel.management.api.v1.ProjectMemberView.creation_date:type_name -> google.protobuf.Timestamp
- 136, // 114: caos.zitadel.management.api.v1.ProjectMemberSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectMemberView
- 218, // 115: caos.zitadel.management.api.v1.ProjectMemberSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 139, // 116: caos.zitadel.management.api.v1.ProjectMemberSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectMemberSearchQuery
- 17, // 117: caos.zitadel.management.api.v1.ProjectMemberSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ProjectMemberSearchKey
- 5, // 118: caos.zitadel.management.api.v1.ProjectMemberSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 18, // 119: caos.zitadel.management.api.v1.Application.state:type_name -> caos.zitadel.management.api.v1.AppState
- 218, // 120: caos.zitadel.management.api.v1.Application.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 121: caos.zitadel.management.api.v1.Application.change_date:type_name -> google.protobuf.Timestamp
- 142, // 122: caos.zitadel.management.api.v1.Application.oidc_config:type_name -> caos.zitadel.management.api.v1.OIDCConfig
- 21, // 123: caos.zitadel.management.api.v1.OIDCConfig.response_types:type_name -> caos.zitadel.management.api.v1.OIDCResponseType
- 22, // 124: caos.zitadel.management.api.v1.OIDCConfig.grant_types:type_name -> caos.zitadel.management.api.v1.OIDCGrantType
- 23, // 125: caos.zitadel.management.api.v1.OIDCConfig.application_type:type_name -> caos.zitadel.management.api.v1.OIDCApplicationType
- 24, // 126: caos.zitadel.management.api.v1.OIDCConfig.auth_method_type:type_name -> caos.zitadel.management.api.v1.OIDCAuthMethodType
- 19, // 127: caos.zitadel.management.api.v1.OIDCConfig.version:type_name -> caos.zitadel.management.api.v1.OIDCVersion
- 219, // 128: caos.zitadel.management.api.v1.OIDCConfig.compliance_problems:type_name -> caos.zitadel.api.v1.LocalizedMessage
- 20, // 129: caos.zitadel.management.api.v1.OIDCConfig.access_token_type:type_name -> caos.zitadel.management.api.v1.OIDCTokenType
- 21, // 130: caos.zitadel.management.api.v1.OIDCApplicationCreate.response_types:type_name -> caos.zitadel.management.api.v1.OIDCResponseType
- 22, // 131: caos.zitadel.management.api.v1.OIDCApplicationCreate.grant_types:type_name -> caos.zitadel.management.api.v1.OIDCGrantType
- 23, // 132: caos.zitadel.management.api.v1.OIDCApplicationCreate.application_type:type_name -> caos.zitadel.management.api.v1.OIDCApplicationType
- 24, // 133: caos.zitadel.management.api.v1.OIDCApplicationCreate.auth_method_type:type_name -> caos.zitadel.management.api.v1.OIDCAuthMethodType
- 19, // 134: caos.zitadel.management.api.v1.OIDCApplicationCreate.version:type_name -> caos.zitadel.management.api.v1.OIDCVersion
- 20, // 135: caos.zitadel.management.api.v1.OIDCApplicationCreate.access_token_type:type_name -> caos.zitadel.management.api.v1.OIDCTokenType
- 21, // 136: caos.zitadel.management.api.v1.OIDCConfigUpdate.response_types:type_name -> caos.zitadel.management.api.v1.OIDCResponseType
- 22, // 137: caos.zitadel.management.api.v1.OIDCConfigUpdate.grant_types:type_name -> caos.zitadel.management.api.v1.OIDCGrantType
- 23, // 138: caos.zitadel.management.api.v1.OIDCConfigUpdate.application_type:type_name -> caos.zitadel.management.api.v1.OIDCApplicationType
- 24, // 139: caos.zitadel.management.api.v1.OIDCConfigUpdate.auth_method_type:type_name -> caos.zitadel.management.api.v1.OIDCAuthMethodType
- 20, // 140: caos.zitadel.management.api.v1.OIDCConfigUpdate.access_token_type:type_name -> caos.zitadel.management.api.v1.OIDCTokenType
- 18, // 141: caos.zitadel.management.api.v1.ApplicationView.state:type_name -> caos.zitadel.management.api.v1.AppState
- 218, // 142: caos.zitadel.management.api.v1.ApplicationView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 143: caos.zitadel.management.api.v1.ApplicationView.change_date:type_name -> google.protobuf.Timestamp
- 142, // 144: caos.zitadel.management.api.v1.ApplicationView.oidc_config:type_name -> caos.zitadel.management.api.v1.OIDCConfig
- 146, // 145: caos.zitadel.management.api.v1.ApplicationSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ApplicationView
- 218, // 146: caos.zitadel.management.api.v1.ApplicationSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 149, // 147: caos.zitadel.management.api.v1.ApplicationSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ApplicationSearchQuery
- 25, // 148: caos.zitadel.management.api.v1.ApplicationSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ApplicationSearchKey
- 5, // 149: caos.zitadel.management.api.v1.ApplicationSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 26, // 150: caos.zitadel.management.api.v1.ProjectGrant.state:type_name -> caos.zitadel.management.api.v1.ProjectGrantState
- 218, // 151: caos.zitadel.management.api.v1.ProjectGrant.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 152: caos.zitadel.management.api.v1.ProjectGrant.change_date:type_name -> google.protobuf.Timestamp
- 26, // 153: caos.zitadel.management.api.v1.ProjectGrantView.state:type_name -> caos.zitadel.management.api.v1.ProjectGrantState
- 218, // 154: caos.zitadel.management.api.v1.ProjectGrantView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 155: caos.zitadel.management.api.v1.ProjectGrantView.change_date:type_name -> google.protobuf.Timestamp
- 154, // 156: caos.zitadel.management.api.v1.ProjectGrantSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectGrantView
- 218, // 157: caos.zitadel.management.api.v1.ProjectGrantSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 119, // 158: caos.zitadel.management.api.v1.GrantedProjectSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectSearchQuery
- 158, // 159: caos.zitadel.management.api.v1.ProjectGrantSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectGrantSearchQuery
- 27, // 160: caos.zitadel.management.api.v1.ProjectGrantSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ProjectGrantSearchKey
- 5, // 161: caos.zitadel.management.api.v1.ProjectGrantSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 218, // 162: caos.zitadel.management.api.v1.ProjectGrantMember.change_date:type_name -> google.protobuf.Timestamp
- 218, // 163: caos.zitadel.management.api.v1.ProjectGrantMember.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 164: caos.zitadel.management.api.v1.ProjectGrantMemberView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 165: caos.zitadel.management.api.v1.ProjectGrantMemberView.creation_date:type_name -> google.protobuf.Timestamp
- 164, // 166: caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ProjectGrantMemberView
- 218, // 167: caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 167, // 168: caos.zitadel.management.api.v1.ProjectGrantMemberSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery
- 28, // 169: caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery.key:type_name -> caos.zitadel.management.api.v1.ProjectGrantMemberSearchKey
- 5, // 170: caos.zitadel.management.api.v1.ProjectGrantMemberSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 29, // 171: caos.zitadel.management.api.v1.UserGrant.state:type_name -> caos.zitadel.management.api.v1.UserGrantState
- 218, // 172: caos.zitadel.management.api.v1.UserGrant.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 173: caos.zitadel.management.api.v1.UserGrant.change_date:type_name -> google.protobuf.Timestamp
- 29, // 174: caos.zitadel.management.api.v1.UserGrantView.state:type_name -> caos.zitadel.management.api.v1.UserGrantState
- 218, // 175: caos.zitadel.management.api.v1.UserGrantView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 176: caos.zitadel.management.api.v1.UserGrantView.change_date:type_name -> google.protobuf.Timestamp
- 173, // 177: caos.zitadel.management.api.v1.UserGrantSearchResponse.result:type_name -> caos.zitadel.management.api.v1.UserGrantView
- 218, // 178: caos.zitadel.management.api.v1.UserGrantSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 176, // 179: caos.zitadel.management.api.v1.UserGrantSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.UserGrantSearchQuery
- 30, // 180: caos.zitadel.management.api.v1.UserGrantSearchQuery.key:type_name -> caos.zitadel.management.api.v1.UserGrantSearchKey
- 5, // 181: caos.zitadel.management.api.v1.UserGrantSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 180, // 182: caos.zitadel.management.api.v1.UserMembershipSearchResponse.result:type_name -> caos.zitadel.management.api.v1.UserMembershipView
- 218, // 183: caos.zitadel.management.api.v1.UserMembershipSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 179, // 184: caos.zitadel.management.api.v1.UserMembershipSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.UserMembershipSearchQuery
- 31, // 185: caos.zitadel.management.api.v1.UserMembershipSearchQuery.key:type_name -> caos.zitadel.management.api.v1.UserMembershipSearchKey
- 5, // 186: caos.zitadel.management.api.v1.UserMembershipSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 32, // 187: caos.zitadel.management.api.v1.UserMembershipView.member_type:type_name -> caos.zitadel.management.api.v1.MemberType
- 218, // 188: caos.zitadel.management.api.v1.UserMembershipView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 189: caos.zitadel.management.api.v1.UserMembershipView.change_date:type_name -> google.protobuf.Timestamp
- 34, // 190: caos.zitadel.management.api.v1.Idp.state:type_name -> caos.zitadel.management.api.v1.IdpState
- 218, // 191: caos.zitadel.management.api.v1.Idp.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 192: caos.zitadel.management.api.v1.Idp.change_date:type_name -> google.protobuf.Timestamp
- 33, // 193: caos.zitadel.management.api.v1.Idp.styling_type:type_name -> caos.zitadel.management.api.v1.IdpStylingType
- 184, // 194: caos.zitadel.management.api.v1.Idp.oidc_config:type_name -> caos.zitadel.management.api.v1.OidcIdpConfig
- 33, // 195: caos.zitadel.management.api.v1.IdpUpdate.styling_type:type_name -> caos.zitadel.management.api.v1.IdpStylingType
- 35, // 196: caos.zitadel.management.api.v1.OidcIdpConfig.idp_display_name_mapping:type_name -> caos.zitadel.management.api.v1.OIDCMappingField
- 35, // 197: caos.zitadel.management.api.v1.OidcIdpConfig.username_mapping:type_name -> caos.zitadel.management.api.v1.OIDCMappingField
- 33, // 198: caos.zitadel.management.api.v1.OidcIdpConfigCreate.styling_type:type_name -> caos.zitadel.management.api.v1.IdpStylingType
- 35, // 199: caos.zitadel.management.api.v1.OidcIdpConfigCreate.idp_display_name_mapping:type_name -> caos.zitadel.management.api.v1.OIDCMappingField
- 35, // 200: caos.zitadel.management.api.v1.OidcIdpConfigCreate.username_mapping:type_name -> caos.zitadel.management.api.v1.OIDCMappingField
- 35, // 201: caos.zitadel.management.api.v1.OidcIdpConfigUpdate.idp_display_name_mapping:type_name -> caos.zitadel.management.api.v1.OIDCMappingField
- 35, // 202: caos.zitadel.management.api.v1.OidcIdpConfigUpdate.username_mapping:type_name -> caos.zitadel.management.api.v1.OIDCMappingField
- 188, // 203: caos.zitadel.management.api.v1.IdpSearchResponse.result:type_name -> caos.zitadel.management.api.v1.IdpView
- 218, // 204: caos.zitadel.management.api.v1.IdpSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 34, // 205: caos.zitadel.management.api.v1.IdpView.state:type_name -> caos.zitadel.management.api.v1.IdpState
- 218, // 206: caos.zitadel.management.api.v1.IdpView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 207: caos.zitadel.management.api.v1.IdpView.change_date:type_name -> google.protobuf.Timestamp
- 33, // 208: caos.zitadel.management.api.v1.IdpView.styling_type:type_name -> caos.zitadel.management.api.v1.IdpStylingType
- 38, // 209: caos.zitadel.management.api.v1.IdpView.provider_type:type_name -> caos.zitadel.management.api.v1.IdpProviderType
- 189, // 210: caos.zitadel.management.api.v1.IdpView.oidc_config:type_name -> caos.zitadel.management.api.v1.OidcIdpConfigView
- 35, // 211: caos.zitadel.management.api.v1.OidcIdpConfigView.idp_display_name_mapping:type_name -> caos.zitadel.management.api.v1.OIDCMappingField
- 35, // 212: caos.zitadel.management.api.v1.OidcIdpConfigView.username_mapping:type_name -> caos.zitadel.management.api.v1.OIDCMappingField
- 191, // 213: caos.zitadel.management.api.v1.IdpSearchRequest.queries:type_name -> caos.zitadel.management.api.v1.IdpSearchQuery
- 36, // 214: caos.zitadel.management.api.v1.IdpSearchQuery.key:type_name -> caos.zitadel.management.api.v1.IdpSearchKey
- 5, // 215: caos.zitadel.management.api.v1.IdpSearchQuery.method:type_name -> caos.zitadel.management.api.v1.SearchMethod
- 218, // 216: caos.zitadel.management.api.v1.LoginPolicy.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 217: caos.zitadel.management.api.v1.LoginPolicy.change_date:type_name -> google.protobuf.Timestamp
- 38, // 218: caos.zitadel.management.api.v1.IdpProviderAdd.idp_provider_type:type_name -> caos.zitadel.management.api.v1.IdpProviderType
- 38, // 219: caos.zitadel.management.api.v1.IdpProvider.idp_provider_Type:type_name -> caos.zitadel.management.api.v1.IdpProviderType
- 218, // 220: caos.zitadel.management.api.v1.LoginPolicyView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 221: caos.zitadel.management.api.v1.LoginPolicyView.change_date:type_name -> google.protobuf.Timestamp
- 37, // 222: caos.zitadel.management.api.v1.IdpProviderView.type:type_name -> caos.zitadel.management.api.v1.IdpType
- 198, // 223: caos.zitadel.management.api.v1.IdpProviderSearchResponse.result:type_name -> caos.zitadel.management.api.v1.IdpProviderView
- 218, // 224: caos.zitadel.management.api.v1.IdpProviderSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 203, // 225: caos.zitadel.management.api.v1.ExternalIDPSearchResponse.result:type_name -> caos.zitadel.management.api.v1.ExternalIDPView
- 218, // 226: caos.zitadel.management.api.v1.ExternalIDPSearchResponse.view_timestamp:type_name -> google.protobuf.Timestamp
- 218, // 227: caos.zitadel.management.api.v1.ExternalIDPView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 228: caos.zitadel.management.api.v1.ExternalIDPView.change_date:type_name -> google.protobuf.Timestamp
- 40, // 229: caos.zitadel.management.api.v1.SecondFactorsResult.second_factors:type_name -> caos.zitadel.management.api.v1.SecondFactorType
- 40, // 230: caos.zitadel.management.api.v1.SecondFactor.second_factor:type_name -> caos.zitadel.management.api.v1.SecondFactorType
- 41, // 231: caos.zitadel.management.api.v1.MultiFactorsResult.multi_factors:type_name -> caos.zitadel.management.api.v1.MultiFactorType
- 41, // 232: caos.zitadel.management.api.v1.MultiFactor.multi_factor:type_name -> caos.zitadel.management.api.v1.MultiFactorType
- 218, // 233: caos.zitadel.management.api.v1.PasswordComplexityPolicy.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 234: caos.zitadel.management.api.v1.PasswordComplexityPolicy.change_date:type_name -> google.protobuf.Timestamp
- 218, // 235: caos.zitadel.management.api.v1.PasswordComplexityPolicyView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 236: caos.zitadel.management.api.v1.PasswordComplexityPolicyView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 237: caos.zitadel.management.api.v1.PasswordAgePolicy.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 238: caos.zitadel.management.api.v1.PasswordAgePolicy.change_date:type_name -> google.protobuf.Timestamp
- 218, // 239: caos.zitadel.management.api.v1.PasswordAgePolicyView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 240: caos.zitadel.management.api.v1.PasswordAgePolicyView.change_date:type_name -> google.protobuf.Timestamp
- 218, // 241: caos.zitadel.management.api.v1.PasswordLockoutPolicy.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 242: caos.zitadel.management.api.v1.PasswordLockoutPolicy.change_date:type_name -> google.protobuf.Timestamp
- 218, // 243: caos.zitadel.management.api.v1.PasswordLockoutPolicyView.creation_date:type_name -> google.protobuf.Timestamp
- 218, // 244: caos.zitadel.management.api.v1.PasswordLockoutPolicyView.change_date:type_name -> google.protobuf.Timestamp
- 221, // 245: caos.zitadel.management.api.v1.ManagementService.Healthz:input_type -> google.protobuf.Empty
- 221, // 246: caos.zitadel.management.api.v1.ManagementService.Ready:input_type -> google.protobuf.Empty
- 221, // 247: caos.zitadel.management.api.v1.ManagementService.Validate:input_type -> google.protobuf.Empty
- 221, // 248: caos.zitadel.management.api.v1.ManagementService.GetZitadelDocs:input_type -> google.protobuf.Empty
- 221, // 249: caos.zitadel.management.api.v1.ManagementService.GetIam:input_type -> google.protobuf.Empty
- 51, // 250: caos.zitadel.management.api.v1.ManagementService.IsUserUnique:input_type -> caos.zitadel.management.api.v1.UniqueUserRequest
- 49, // 251: caos.zitadel.management.api.v1.ManagementService.GetUserByID:input_type -> caos.zitadel.management.api.v1.UserID
- 50, // 252: caos.zitadel.management.api.v1.ManagementService.GetUserByLoginNameGlobal:input_type -> caos.zitadel.management.api.v1.LoginName
- 69, // 253: caos.zitadel.management.api.v1.ManagementService.SearchUsers:input_type -> caos.zitadel.management.api.v1.UserSearchRequest
- 53, // 254: caos.zitadel.management.api.v1.ManagementService.CreateUser:input_type -> caos.zitadel.management.api.v1.CreateUserRequest
- 49, // 255: caos.zitadel.management.api.v1.ManagementService.DeactivateUser:input_type -> caos.zitadel.management.api.v1.UserID
- 49, // 256: caos.zitadel.management.api.v1.ManagementService.ReactivateUser:input_type -> caos.zitadel.management.api.v1.UserID
- 49, // 257: caos.zitadel.management.api.v1.ManagementService.LockUser:input_type -> caos.zitadel.management.api.v1.UserID
- 49, // 258: caos.zitadel.management.api.v1.ManagementService.UnlockUser:input_type -> caos.zitadel.management.api.v1.UserID
- 49, // 259: caos.zitadel.management.api.v1.ManagementService.DeleteUser:input_type -> caos.zitadel.management.api.v1.UserID
- 44, // 260: caos.zitadel.management.api.v1.ManagementService.UserChanges:input_type -> caos.zitadel.management.api.v1.ChangeRequest
- 63, // 261: caos.zitadel.management.api.v1.ManagementService.AddMachineKey:input_type -> caos.zitadel.management.api.v1.AddMachineKeyRequest
- 65, // 262: caos.zitadel.management.api.v1.ManagementService.DeleteMachineKey:input_type -> caos.zitadel.management.api.v1.MachineKeyIDRequest
- 67, // 263: caos.zitadel.management.api.v1.ManagementService.SearchMachineKeys:input_type -> caos.zitadel.management.api.v1.MachineKeySearchRequest
- 65, // 264: caos.zitadel.management.api.v1.ManagementService.GetMachineKey:input_type -> caos.zitadel.management.api.v1.MachineKeyIDRequest
- 49, // 265: caos.zitadel.management.api.v1.ManagementService.GetUserProfile:input_type -> caos.zitadel.management.api.v1.UserID
- 74, // 266: caos.zitadel.management.api.v1.ManagementService.UpdateUserProfile:input_type -> caos.zitadel.management.api.v1.UpdateUserProfileRequest
- 49, // 267: caos.zitadel.management.api.v1.ManagementService.GetUserEmail:input_type -> caos.zitadel.management.api.v1.UserID
- 75, // 268: caos.zitadel.management.api.v1.ManagementService.ChangeUserUserName:input_type -> caos.zitadel.management.api.v1.UpdateUserUserNameRequest
- 78, // 269: caos.zitadel.management.api.v1.ManagementService.ChangeUserEmail:input_type -> caos.zitadel.management.api.v1.UpdateUserEmailRequest
- 49, // 270: caos.zitadel.management.api.v1.ManagementService.ResendEmailVerificationMail:input_type -> caos.zitadel.management.api.v1.UserID
- 49, // 271: caos.zitadel.management.api.v1.ManagementService.GetUserPhone:input_type -> caos.zitadel.management.api.v1.UserID
- 81, // 272: caos.zitadel.management.api.v1.ManagementService.ChangeUserPhone:input_type -> caos.zitadel.management.api.v1.UpdateUserPhoneRequest
- 49, // 273: caos.zitadel.management.api.v1.ManagementService.RemoveUserPhone:input_type -> caos.zitadel.management.api.v1.UserID
- 49, // 274: caos.zitadel.management.api.v1.ManagementService.ResendPhoneVerificationCode:input_type -> caos.zitadel.management.api.v1.UserID
- 49, // 275: caos.zitadel.management.api.v1.ManagementService.GetUserAddress:input_type -> caos.zitadel.management.api.v1.UserID
- 84, // 276: caos.zitadel.management.api.v1.ManagementService.UpdateUserAddress:input_type -> caos.zitadel.management.api.v1.UpdateUserAddressRequest
- 62, // 277: caos.zitadel.management.api.v1.ManagementService.UpdateUserMachine:input_type -> caos.zitadel.management.api.v1.UpdateMachineRequest
- 201, // 278: caos.zitadel.management.api.v1.ManagementService.SearchUserExternalIDPs:input_type -> caos.zitadel.management.api.v1.ExternalIDPSearchRequest
- 204, // 279: caos.zitadel.management.api.v1.ManagementService.RemoveExternalIDP:input_type -> caos.zitadel.management.api.v1.ExternalIDPRemoveRequest
- 49, // 280: caos.zitadel.management.api.v1.ManagementService.GetUserMfas:input_type -> caos.zitadel.management.api.v1.UserID
- 88, // 281: caos.zitadel.management.api.v1.ManagementService.SendSetPasswordNotification:input_type -> caos.zitadel.management.api.v1.SetPasswordNotificationRequest
- 87, // 282: caos.zitadel.management.api.v1.ManagementService.SetInitialPassword:input_type -> caos.zitadel.management.api.v1.PasswordRequest
- 178, // 283: caos.zitadel.management.api.v1.ManagementService.SearchUserMemberships:input_type -> caos.zitadel.management.api.v1.UserMembershipSearchRequest
- 90, // 284: caos.zitadel.management.api.v1.ManagementService.CreateOrg:input_type -> caos.zitadel.management.api.v1.OrgCreateRequest
- 44, // 285: caos.zitadel.management.api.v1.ManagementService.OrgChanges:input_type -> caos.zitadel.management.api.v1.ChangeRequest
- 221, // 286: caos.zitadel.management.api.v1.ManagementService.GetMyOrg:input_type -> google.protobuf.Empty
- 93, // 287: caos.zitadel.management.api.v1.ManagementService.GetOrgByDomainGlobal:input_type -> caos.zitadel.management.api.v1.Domain
- 221, // 288: caos.zitadel.management.api.v1.ManagementService.DeactivateMyOrg:input_type -> google.protobuf.Empty
- 221, // 289: caos.zitadel.management.api.v1.ManagementService.ReactivateMyOrg:input_type -> google.protobuf.Empty
- 103, // 290: caos.zitadel.management.api.v1.ManagementService.SearchMyOrgDomains:input_type -> caos.zitadel.management.api.v1.OrgDomainSearchRequest
- 96, // 291: caos.zitadel.management.api.v1.ManagementService.AddMyOrgDomain:input_type -> caos.zitadel.management.api.v1.AddOrgDomainRequest
- 97, // 292: caos.zitadel.management.api.v1.ManagementService.GenerateMyOrgDomainValidation:input_type -> caos.zitadel.management.api.v1.OrgDomainValidationRequest
- 99, // 293: caos.zitadel.management.api.v1.ManagementService.ValidateMyOrgDomain:input_type -> caos.zitadel.management.api.v1.ValidateOrgDomainRequest
- 100, // 294: caos.zitadel.management.api.v1.ManagementService.SetMyPrimaryOrgDomain:input_type -> caos.zitadel.management.api.v1.PrimaryOrgDomainRequest
- 101, // 295: caos.zitadel.management.api.v1.ManagementService.RemoveMyOrgDomain:input_type -> caos.zitadel.management.api.v1.RemoveOrgDomainRequest
- 221, // 296: caos.zitadel.management.api.v1.ManagementService.GetMyOrgIamPolicy:input_type -> google.protobuf.Empty
- 221, // 297: caos.zitadel.management.api.v1.ManagementService.GetOrgMemberRoles:input_type -> google.protobuf.Empty
- 107, // 298: caos.zitadel.management.api.v1.ManagementService.AddMyOrgMember:input_type -> caos.zitadel.management.api.v1.AddOrgMemberRequest
- 108, // 299: caos.zitadel.management.api.v1.ManagementService.ChangeMyOrgMember:input_type -> caos.zitadel.management.api.v1.ChangeOrgMemberRequest
- 109, // 300: caos.zitadel.management.api.v1.ManagementService.RemoveMyOrgMember:input_type -> caos.zitadel.management.api.v1.RemoveOrgMemberRequest
- 112, // 301: caos.zitadel.management.api.v1.ManagementService.SearchMyOrgMembers:input_type -> caos.zitadel.management.api.v1.OrgMemberSearchRequest
- 44, // 302: caos.zitadel.management.api.v1.ManagementService.ProjectChanges:input_type -> caos.zitadel.management.api.v1.ChangeRequest
- 118, // 303: caos.zitadel.management.api.v1.ManagementService.SearchProjects:input_type -> caos.zitadel.management.api.v1.ProjectSearchRequest
- 48, // 304: caos.zitadel.management.api.v1.ManagementService.ProjectByID:input_type -> caos.zitadel.management.api.v1.ProjectID
- 114, // 305: caos.zitadel.management.api.v1.ManagementService.CreateProject:input_type -> caos.zitadel.management.api.v1.ProjectCreateRequest
- 115, // 306: caos.zitadel.management.api.v1.ManagementService.UpdateProject:input_type -> caos.zitadel.management.api.v1.ProjectUpdateRequest
- 48, // 307: caos.zitadel.management.api.v1.ManagementService.DeactivateProject:input_type -> caos.zitadel.management.api.v1.ProjectID
- 48, // 308: caos.zitadel.management.api.v1.ManagementService.ReactivateProject:input_type -> caos.zitadel.management.api.v1.ProjectID
- 48, // 309: caos.zitadel.management.api.v1.ManagementService.RemoveProject:input_type -> caos.zitadel.management.api.v1.ProjectID
- 156, // 310: caos.zitadel.management.api.v1.ManagementService.SearchGrantedProjects:input_type -> caos.zitadel.management.api.v1.GrantedProjectSearchRequest
- 153, // 311: caos.zitadel.management.api.v1.ManagementService.GetGrantedProjectByID:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 221, // 312: caos.zitadel.management.api.v1.ManagementService.GetProjectMemberRoles:input_type -> google.protobuf.Empty
- 138, // 313: caos.zitadel.management.api.v1.ManagementService.SearchProjectMembers:input_type -> caos.zitadel.management.api.v1.ProjectMemberSearchRequest
- 124, // 314: caos.zitadel.management.api.v1.ManagementService.AddProjectMember:input_type -> caos.zitadel.management.api.v1.ProjectMemberAdd
- 125, // 315: caos.zitadel.management.api.v1.ManagementService.ChangeProjectMember:input_type -> caos.zitadel.management.api.v1.ProjectMemberChange
- 126, // 316: caos.zitadel.management.api.v1.ManagementService.RemoveProjectMember:input_type -> caos.zitadel.management.api.v1.ProjectMemberRemove
- 134, // 317: caos.zitadel.management.api.v1.ManagementService.SearchProjectRoles:input_type -> caos.zitadel.management.api.v1.ProjectRoleSearchRequest
- 127, // 318: caos.zitadel.management.api.v1.ManagementService.AddProjectRole:input_type -> caos.zitadel.management.api.v1.ProjectRoleAdd
- 128, // 319: caos.zitadel.management.api.v1.ManagementService.BulkAddProjectRole:input_type -> caos.zitadel.management.api.v1.ProjectRoleAddBulk
- 129, // 320: caos.zitadel.management.api.v1.ManagementService.ChangeProjectRole:input_type -> caos.zitadel.management.api.v1.ProjectRoleChange
- 132, // 321: caos.zitadel.management.api.v1.ManagementService.RemoveProjectRole:input_type -> caos.zitadel.management.api.v1.ProjectRoleRemove
- 148, // 322: caos.zitadel.management.api.v1.ManagementService.SearchApplications:input_type -> caos.zitadel.management.api.v1.ApplicationSearchRequest
- 47, // 323: caos.zitadel.management.api.v1.ManagementService.ApplicationByID:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 44, // 324: caos.zitadel.management.api.v1.ManagementService.ApplicationChanges:input_type -> caos.zitadel.management.api.v1.ChangeRequest
- 143, // 325: caos.zitadel.management.api.v1.ManagementService.CreateOIDCApplication:input_type -> caos.zitadel.management.api.v1.OIDCApplicationCreate
- 141, // 326: caos.zitadel.management.api.v1.ManagementService.UpdateApplication:input_type -> caos.zitadel.management.api.v1.ApplicationUpdate
- 47, // 327: caos.zitadel.management.api.v1.ManagementService.DeactivateApplication:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 47, // 328: caos.zitadel.management.api.v1.ManagementService.ReactivateApplication:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 47, // 329: caos.zitadel.management.api.v1.ManagementService.RemoveApplication:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 144, // 330: caos.zitadel.management.api.v1.ManagementService.UpdateApplicationOIDCConfig:input_type -> caos.zitadel.management.api.v1.OIDCConfigUpdate
- 47, // 331: caos.zitadel.management.api.v1.ManagementService.RegenerateOIDCClientSecret:input_type -> caos.zitadel.management.api.v1.ApplicationID
- 157, // 332: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrants:input_type -> caos.zitadel.management.api.v1.ProjectGrantSearchRequest
- 153, // 333: caos.zitadel.management.api.v1.ManagementService.ProjectGrantByID:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 151, // 334: caos.zitadel.management.api.v1.ManagementService.CreateProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantCreate
- 152, // 335: caos.zitadel.management.api.v1.ManagementService.UpdateProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantUpdate
- 153, // 336: caos.zitadel.management.api.v1.ManagementService.DeactivateProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 153, // 337: caos.zitadel.management.api.v1.ManagementService.ReactivateProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 153, // 338: caos.zitadel.management.api.v1.ManagementService.RemoveProjectGrant:input_type -> caos.zitadel.management.api.v1.ProjectGrantID
- 221, // 339: caos.zitadel.management.api.v1.ManagementService.GetProjectGrantMemberRoles:input_type -> google.protobuf.Empty
- 166, // 340: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrantMembers:input_type -> caos.zitadel.management.api.v1.ProjectGrantMemberSearchRequest
- 161, // 341: caos.zitadel.management.api.v1.ManagementService.AddProjectGrantMember:input_type -> caos.zitadel.management.api.v1.ProjectGrantMemberAdd
- 162, // 342: caos.zitadel.management.api.v1.ManagementService.ChangeProjectGrantMember:input_type -> caos.zitadel.management.api.v1.ProjectGrantMemberChange
- 163, // 343: caos.zitadel.management.api.v1.ManagementService.RemoveProjectGrantMember:input_type -> caos.zitadel.management.api.v1.ProjectGrantMemberRemove
- 175, // 344: caos.zitadel.management.api.v1.ManagementService.SearchUserGrants:input_type -> caos.zitadel.management.api.v1.UserGrantSearchRequest
- 172, // 345: caos.zitadel.management.api.v1.ManagementService.UserGrantByID:input_type -> caos.zitadel.management.api.v1.UserGrantID
- 169, // 346: caos.zitadel.management.api.v1.ManagementService.CreateUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantCreate
- 170, // 347: caos.zitadel.management.api.v1.ManagementService.UpdateUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantUpdate
- 172, // 348: caos.zitadel.management.api.v1.ManagementService.DeactivateUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantID
- 172, // 349: caos.zitadel.management.api.v1.ManagementService.ReactivateUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantID
- 172, // 350: caos.zitadel.management.api.v1.ManagementService.RemoveUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantID
- 171, // 351: caos.zitadel.management.api.v1.ManagementService.BulkRemoveUserGrant:input_type -> caos.zitadel.management.api.v1.UserGrantRemoveBulk
- 181, // 352: caos.zitadel.management.api.v1.ManagementService.IdpByID:input_type -> caos.zitadel.management.api.v1.IdpID
- 185, // 353: caos.zitadel.management.api.v1.ManagementService.CreateOidcIdp:input_type -> caos.zitadel.management.api.v1.OidcIdpConfigCreate
- 183, // 354: caos.zitadel.management.api.v1.ManagementService.UpdateIdpConfig:input_type -> caos.zitadel.management.api.v1.IdpUpdate
- 181, // 355: caos.zitadel.management.api.v1.ManagementService.DeactivateIdpConfig:input_type -> caos.zitadel.management.api.v1.IdpID
- 181, // 356: caos.zitadel.management.api.v1.ManagementService.ReactivateIdpConfig:input_type -> caos.zitadel.management.api.v1.IdpID
- 181, // 357: caos.zitadel.management.api.v1.ManagementService.RemoveIdpConfig:input_type -> caos.zitadel.management.api.v1.IdpID
- 186, // 358: caos.zitadel.management.api.v1.ManagementService.UpdateOidcIdpConfig:input_type -> caos.zitadel.management.api.v1.OidcIdpConfigUpdate
- 190, // 359: caos.zitadel.management.api.v1.ManagementService.SearchIdps:input_type -> caos.zitadel.management.api.v1.IdpSearchRequest
- 221, // 360: caos.zitadel.management.api.v1.ManagementService.GetLoginPolicy:input_type -> google.protobuf.Empty
- 221, // 361: caos.zitadel.management.api.v1.ManagementService.GetDefaultLoginPolicy:input_type -> google.protobuf.Empty
- 193, // 362: caos.zitadel.management.api.v1.ManagementService.CreateLoginPolicy:input_type -> caos.zitadel.management.api.v1.LoginPolicyRequest
- 193, // 363: caos.zitadel.management.api.v1.ManagementService.UpdateLoginPolicy:input_type -> caos.zitadel.management.api.v1.LoginPolicyRequest
- 221, // 364: caos.zitadel.management.api.v1.ManagementService.RemoveLoginPolicy:input_type -> google.protobuf.Empty
- 200, // 365: caos.zitadel.management.api.v1.ManagementService.GetLoginPolicyIdpProviders:input_type -> caos.zitadel.management.api.v1.IdpProviderSearchRequest
- 195, // 366: caos.zitadel.management.api.v1.ManagementService.AddIdpProviderToLoginPolicy:input_type -> caos.zitadel.management.api.v1.IdpProviderAdd
- 194, // 367: caos.zitadel.management.api.v1.ManagementService.RemoveIdpProviderFromLoginPolicy:input_type -> caos.zitadel.management.api.v1.IdpProviderID
- 221, // 368: caos.zitadel.management.api.v1.ManagementService.GetLoginPolicySecondFactors:input_type -> google.protobuf.Empty
- 206, // 369: caos.zitadel.management.api.v1.ManagementService.AddSecondFactorToLoginPolicy:input_type -> caos.zitadel.management.api.v1.SecondFactor
- 206, // 370: caos.zitadel.management.api.v1.ManagementService.RemoveSecondFactorFromLoginPolicy:input_type -> caos.zitadel.management.api.v1.SecondFactor
- 221, // 371: caos.zitadel.management.api.v1.ManagementService.GetLoginPolicyMultiFactors:input_type -> google.protobuf.Empty
- 208, // 372: caos.zitadel.management.api.v1.ManagementService.AddMultiFactorToLoginPolicy:input_type -> caos.zitadel.management.api.v1.MultiFactor
- 208, // 373: caos.zitadel.management.api.v1.ManagementService.RemoveMultiFactorFromLoginPolicy:input_type -> caos.zitadel.management.api.v1.MultiFactor
- 221, // 374: caos.zitadel.management.api.v1.ManagementService.GetPasswordComplexityPolicy:input_type -> google.protobuf.Empty
- 221, // 375: caos.zitadel.management.api.v1.ManagementService.GetDefaultPasswordComplexityPolicy:input_type -> google.protobuf.Empty
- 210, // 376: caos.zitadel.management.api.v1.ManagementService.CreatePasswordComplexityPolicy:input_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicyRequest
- 210, // 377: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordComplexityPolicy:input_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicyRequest
- 221, // 378: caos.zitadel.management.api.v1.ManagementService.RemovePasswordComplexityPolicy:input_type -> google.protobuf.Empty
- 221, // 379: caos.zitadel.management.api.v1.ManagementService.GetPasswordAgePolicy:input_type -> google.protobuf.Empty
- 221, // 380: caos.zitadel.management.api.v1.ManagementService.GetDefaultPasswordAgePolicy:input_type -> google.protobuf.Empty
- 213, // 381: caos.zitadel.management.api.v1.ManagementService.CreatePasswordAgePolicy:input_type -> caos.zitadel.management.api.v1.PasswordAgePolicyRequest
- 213, // 382: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordAgePolicy:input_type -> caos.zitadel.management.api.v1.PasswordAgePolicyRequest
- 221, // 383: caos.zitadel.management.api.v1.ManagementService.RemovePasswordAgePolicy:input_type -> google.protobuf.Empty
- 221, // 384: caos.zitadel.management.api.v1.ManagementService.GetPasswordLockoutPolicy:input_type -> google.protobuf.Empty
- 221, // 385: caos.zitadel.management.api.v1.ManagementService.GetDefaultPasswordLockoutPolicy:input_type -> google.protobuf.Empty
- 216, // 386: caos.zitadel.management.api.v1.ManagementService.CreatePasswordLockoutPolicy:input_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicyRequest
- 216, // 387: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordLockoutPolicy:input_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicyRequest
- 221, // 388: caos.zitadel.management.api.v1.ManagementService.RemovePasswordLockoutPolicy:input_type -> google.protobuf.Empty
- 221, // 389: caos.zitadel.management.api.v1.ManagementService.Healthz:output_type -> google.protobuf.Empty
- 221, // 390: caos.zitadel.management.api.v1.ManagementService.Ready:output_type -> google.protobuf.Empty
- 220, // 391: caos.zitadel.management.api.v1.ManagementService.Validate:output_type -> google.protobuf.Struct
- 42, // 392: caos.zitadel.management.api.v1.ManagementService.GetZitadelDocs:output_type -> caos.zitadel.management.api.v1.ZitadelDocs
- 43, // 393: caos.zitadel.management.api.v1.ManagementService.GetIam:output_type -> caos.zitadel.management.api.v1.Iam
- 52, // 394: caos.zitadel.management.api.v1.ManagementService.IsUserUnique:output_type -> caos.zitadel.management.api.v1.UniqueUserResponse
- 57, // 395: caos.zitadel.management.api.v1.ManagementService.GetUserByID:output_type -> caos.zitadel.management.api.v1.UserView
- 57, // 396: caos.zitadel.management.api.v1.ManagementService.GetUserByLoginNameGlobal:output_type -> caos.zitadel.management.api.v1.UserView
- 71, // 397: caos.zitadel.management.api.v1.ManagementService.SearchUsers:output_type -> caos.zitadel.management.api.v1.UserSearchResponse
- 56, // 398: caos.zitadel.management.api.v1.ManagementService.CreateUser:output_type -> caos.zitadel.management.api.v1.UserResponse
- 56, // 399: caos.zitadel.management.api.v1.ManagementService.DeactivateUser:output_type -> caos.zitadel.management.api.v1.UserResponse
- 56, // 400: caos.zitadel.management.api.v1.ManagementService.ReactivateUser:output_type -> caos.zitadel.management.api.v1.UserResponse
- 56, // 401: caos.zitadel.management.api.v1.ManagementService.LockUser:output_type -> caos.zitadel.management.api.v1.UserResponse
- 56, // 402: caos.zitadel.management.api.v1.ManagementService.UnlockUser:output_type -> caos.zitadel.management.api.v1.UserResponse
- 221, // 403: caos.zitadel.management.api.v1.ManagementService.DeleteUser:output_type -> google.protobuf.Empty
- 45, // 404: caos.zitadel.management.api.v1.ManagementService.UserChanges:output_type -> caos.zitadel.management.api.v1.Changes
- 64, // 405: caos.zitadel.management.api.v1.ManagementService.AddMachineKey:output_type -> caos.zitadel.management.api.v1.AddMachineKeyResponse
- 221, // 406: caos.zitadel.management.api.v1.ManagementService.DeleteMachineKey:output_type -> google.protobuf.Empty
- 68, // 407: caos.zitadel.management.api.v1.ManagementService.SearchMachineKeys:output_type -> caos.zitadel.management.api.v1.MachineKeySearchResponse
- 66, // 408: caos.zitadel.management.api.v1.ManagementService.GetMachineKey:output_type -> caos.zitadel.management.api.v1.MachineKeyView
- 73, // 409: caos.zitadel.management.api.v1.ManagementService.GetUserProfile:output_type -> caos.zitadel.management.api.v1.UserProfileView
- 72, // 410: caos.zitadel.management.api.v1.ManagementService.UpdateUserProfile:output_type -> caos.zitadel.management.api.v1.UserProfile
- 77, // 411: caos.zitadel.management.api.v1.ManagementService.GetUserEmail:output_type -> caos.zitadel.management.api.v1.UserEmailView
- 221, // 412: caos.zitadel.management.api.v1.ManagementService.ChangeUserUserName:output_type -> google.protobuf.Empty
- 76, // 413: caos.zitadel.management.api.v1.ManagementService.ChangeUserEmail:output_type -> caos.zitadel.management.api.v1.UserEmail
- 221, // 414: caos.zitadel.management.api.v1.ManagementService.ResendEmailVerificationMail:output_type -> google.protobuf.Empty
- 80, // 415: caos.zitadel.management.api.v1.ManagementService.GetUserPhone:output_type -> caos.zitadel.management.api.v1.UserPhoneView
- 79, // 416: caos.zitadel.management.api.v1.ManagementService.ChangeUserPhone:output_type -> caos.zitadel.management.api.v1.UserPhone
- 221, // 417: caos.zitadel.management.api.v1.ManagementService.RemoveUserPhone:output_type -> google.protobuf.Empty
- 221, // 418: caos.zitadel.management.api.v1.ManagementService.ResendPhoneVerificationCode:output_type -> google.protobuf.Empty
- 83, // 419: caos.zitadel.management.api.v1.ManagementService.GetUserAddress:output_type -> caos.zitadel.management.api.v1.UserAddressView
- 82, // 420: caos.zitadel.management.api.v1.ManagementService.UpdateUserAddress:output_type -> caos.zitadel.management.api.v1.UserAddress
- 60, // 421: caos.zitadel.management.api.v1.ManagementService.UpdateUserMachine:output_type -> caos.zitadel.management.api.v1.MachineResponse
- 202, // 422: caos.zitadel.management.api.v1.ManagementService.SearchUserExternalIDPs:output_type -> caos.zitadel.management.api.v1.ExternalIDPSearchResponse
- 221, // 423: caos.zitadel.management.api.v1.ManagementService.RemoveExternalIDP:output_type -> google.protobuf.Empty
- 85, // 424: caos.zitadel.management.api.v1.ManagementService.GetUserMfas:output_type -> caos.zitadel.management.api.v1.UserMultiFactors
- 221, // 425: caos.zitadel.management.api.v1.ManagementService.SendSetPasswordNotification:output_type -> google.protobuf.Empty
- 221, // 426: caos.zitadel.management.api.v1.ManagementService.SetInitialPassword:output_type -> google.protobuf.Empty
- 177, // 427: caos.zitadel.management.api.v1.ManagementService.SearchUserMemberships:output_type -> caos.zitadel.management.api.v1.UserMembershipSearchResponse
- 91, // 428: caos.zitadel.management.api.v1.ManagementService.CreateOrg:output_type -> caos.zitadel.management.api.v1.Org
- 45, // 429: caos.zitadel.management.api.v1.ManagementService.OrgChanges:output_type -> caos.zitadel.management.api.v1.Changes
- 92, // 430: caos.zitadel.management.api.v1.ManagementService.GetMyOrg:output_type -> caos.zitadel.management.api.v1.OrgView
- 92, // 431: caos.zitadel.management.api.v1.ManagementService.GetOrgByDomainGlobal:output_type -> caos.zitadel.management.api.v1.OrgView
- 91, // 432: caos.zitadel.management.api.v1.ManagementService.DeactivateMyOrg:output_type -> caos.zitadel.management.api.v1.Org
- 91, // 433: caos.zitadel.management.api.v1.ManagementService.ReactivateMyOrg:output_type -> caos.zitadel.management.api.v1.Org
- 102, // 434: caos.zitadel.management.api.v1.ManagementService.SearchMyOrgDomains:output_type -> caos.zitadel.management.api.v1.OrgDomainSearchResponse
- 94, // 435: caos.zitadel.management.api.v1.ManagementService.AddMyOrgDomain:output_type -> caos.zitadel.management.api.v1.OrgDomain
- 98, // 436: caos.zitadel.management.api.v1.ManagementService.GenerateMyOrgDomainValidation:output_type -> caos.zitadel.management.api.v1.OrgDomainValidationResponse
- 221, // 437: caos.zitadel.management.api.v1.ManagementService.ValidateMyOrgDomain:output_type -> google.protobuf.Empty
- 221, // 438: caos.zitadel.management.api.v1.ManagementService.SetMyPrimaryOrgDomain:output_type -> google.protobuf.Empty
- 221, // 439: caos.zitadel.management.api.v1.ManagementService.RemoveMyOrgDomain:output_type -> google.protobuf.Empty
- 89, // 440: caos.zitadel.management.api.v1.ManagementService.GetMyOrgIamPolicy:output_type -> caos.zitadel.management.api.v1.OrgIamPolicyView
- 105, // 441: caos.zitadel.management.api.v1.ManagementService.GetOrgMemberRoles:output_type -> caos.zitadel.management.api.v1.OrgMemberRoles
- 106, // 442: caos.zitadel.management.api.v1.ManagementService.AddMyOrgMember:output_type -> caos.zitadel.management.api.v1.OrgMember
- 106, // 443: caos.zitadel.management.api.v1.ManagementService.ChangeMyOrgMember:output_type -> caos.zitadel.management.api.v1.OrgMember
- 221, // 444: caos.zitadel.management.api.v1.ManagementService.RemoveMyOrgMember:output_type -> google.protobuf.Empty
- 110, // 445: caos.zitadel.management.api.v1.ManagementService.SearchMyOrgMembers:output_type -> caos.zitadel.management.api.v1.OrgMemberSearchResponse
- 45, // 446: caos.zitadel.management.api.v1.ManagementService.ProjectChanges:output_type -> caos.zitadel.management.api.v1.Changes
- 116, // 447: caos.zitadel.management.api.v1.ManagementService.SearchProjects:output_type -> caos.zitadel.management.api.v1.ProjectSearchResponse
- 117, // 448: caos.zitadel.management.api.v1.ManagementService.ProjectByID:output_type -> caos.zitadel.management.api.v1.ProjectView
- 121, // 449: caos.zitadel.management.api.v1.ManagementService.CreateProject:output_type -> caos.zitadel.management.api.v1.Project
- 121, // 450: caos.zitadel.management.api.v1.ManagementService.UpdateProject:output_type -> caos.zitadel.management.api.v1.Project
- 121, // 451: caos.zitadel.management.api.v1.ManagementService.DeactivateProject:output_type -> caos.zitadel.management.api.v1.Project
- 121, // 452: caos.zitadel.management.api.v1.ManagementService.ReactivateProject:output_type -> caos.zitadel.management.api.v1.Project
- 221, // 453: caos.zitadel.management.api.v1.ManagementService.RemoveProject:output_type -> google.protobuf.Empty
- 155, // 454: caos.zitadel.management.api.v1.ManagementService.SearchGrantedProjects:output_type -> caos.zitadel.management.api.v1.ProjectGrantSearchResponse
- 154, // 455: caos.zitadel.management.api.v1.ManagementService.GetGrantedProjectByID:output_type -> caos.zitadel.management.api.v1.ProjectGrantView
- 122, // 456: caos.zitadel.management.api.v1.ManagementService.GetProjectMemberRoles:output_type -> caos.zitadel.management.api.v1.ProjectMemberRoles
- 137, // 457: caos.zitadel.management.api.v1.ManagementService.SearchProjectMembers:output_type -> caos.zitadel.management.api.v1.ProjectMemberSearchResponse
- 123, // 458: caos.zitadel.management.api.v1.ManagementService.AddProjectMember:output_type -> caos.zitadel.management.api.v1.ProjectMember
- 123, // 459: caos.zitadel.management.api.v1.ManagementService.ChangeProjectMember:output_type -> caos.zitadel.management.api.v1.ProjectMember
- 221, // 460: caos.zitadel.management.api.v1.ManagementService.RemoveProjectMember:output_type -> google.protobuf.Empty
- 133, // 461: caos.zitadel.management.api.v1.ManagementService.SearchProjectRoles:output_type -> caos.zitadel.management.api.v1.ProjectRoleSearchResponse
- 130, // 462: caos.zitadel.management.api.v1.ManagementService.AddProjectRole:output_type -> caos.zitadel.management.api.v1.ProjectRole
- 221, // 463: caos.zitadel.management.api.v1.ManagementService.BulkAddProjectRole:output_type -> google.protobuf.Empty
- 130, // 464: caos.zitadel.management.api.v1.ManagementService.ChangeProjectRole:output_type -> caos.zitadel.management.api.v1.ProjectRole
- 221, // 465: caos.zitadel.management.api.v1.ManagementService.RemoveProjectRole:output_type -> google.protobuf.Empty
- 147, // 466: caos.zitadel.management.api.v1.ManagementService.SearchApplications:output_type -> caos.zitadel.management.api.v1.ApplicationSearchResponse
- 146, // 467: caos.zitadel.management.api.v1.ManagementService.ApplicationByID:output_type -> caos.zitadel.management.api.v1.ApplicationView
- 45, // 468: caos.zitadel.management.api.v1.ManagementService.ApplicationChanges:output_type -> caos.zitadel.management.api.v1.Changes
- 140, // 469: caos.zitadel.management.api.v1.ManagementService.CreateOIDCApplication:output_type -> caos.zitadel.management.api.v1.Application
- 140, // 470: caos.zitadel.management.api.v1.ManagementService.UpdateApplication:output_type -> caos.zitadel.management.api.v1.Application
- 140, // 471: caos.zitadel.management.api.v1.ManagementService.DeactivateApplication:output_type -> caos.zitadel.management.api.v1.Application
- 140, // 472: caos.zitadel.management.api.v1.ManagementService.ReactivateApplication:output_type -> caos.zitadel.management.api.v1.Application
- 221, // 473: caos.zitadel.management.api.v1.ManagementService.RemoveApplication:output_type -> google.protobuf.Empty
- 142, // 474: caos.zitadel.management.api.v1.ManagementService.UpdateApplicationOIDCConfig:output_type -> caos.zitadel.management.api.v1.OIDCConfig
- 145, // 475: caos.zitadel.management.api.v1.ManagementService.RegenerateOIDCClientSecret:output_type -> caos.zitadel.management.api.v1.ClientSecret
- 155, // 476: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrants:output_type -> caos.zitadel.management.api.v1.ProjectGrantSearchResponse
- 154, // 477: caos.zitadel.management.api.v1.ManagementService.ProjectGrantByID:output_type -> caos.zitadel.management.api.v1.ProjectGrantView
- 150, // 478: caos.zitadel.management.api.v1.ManagementService.CreateProjectGrant:output_type -> caos.zitadel.management.api.v1.ProjectGrant
- 150, // 479: caos.zitadel.management.api.v1.ManagementService.UpdateProjectGrant:output_type -> caos.zitadel.management.api.v1.ProjectGrant
- 150, // 480: caos.zitadel.management.api.v1.ManagementService.DeactivateProjectGrant:output_type -> caos.zitadel.management.api.v1.ProjectGrant
- 150, // 481: caos.zitadel.management.api.v1.ManagementService.ReactivateProjectGrant:output_type -> caos.zitadel.management.api.v1.ProjectGrant
- 221, // 482: caos.zitadel.management.api.v1.ManagementService.RemoveProjectGrant:output_type -> google.protobuf.Empty
- 159, // 483: caos.zitadel.management.api.v1.ManagementService.GetProjectGrantMemberRoles:output_type -> caos.zitadel.management.api.v1.ProjectGrantMemberRoles
- 165, // 484: caos.zitadel.management.api.v1.ManagementService.SearchProjectGrantMembers:output_type -> caos.zitadel.management.api.v1.ProjectGrantMemberSearchResponse
- 160, // 485: caos.zitadel.management.api.v1.ManagementService.AddProjectGrantMember:output_type -> caos.zitadel.management.api.v1.ProjectGrantMember
- 160, // 486: caos.zitadel.management.api.v1.ManagementService.ChangeProjectGrantMember:output_type -> caos.zitadel.management.api.v1.ProjectGrantMember
- 221, // 487: caos.zitadel.management.api.v1.ManagementService.RemoveProjectGrantMember:output_type -> google.protobuf.Empty
- 174, // 488: caos.zitadel.management.api.v1.ManagementService.SearchUserGrants:output_type -> caos.zitadel.management.api.v1.UserGrantSearchResponse
- 173, // 489: caos.zitadel.management.api.v1.ManagementService.UserGrantByID:output_type -> caos.zitadel.management.api.v1.UserGrantView
- 168, // 490: caos.zitadel.management.api.v1.ManagementService.CreateUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 168, // 491: caos.zitadel.management.api.v1.ManagementService.UpdateUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 168, // 492: caos.zitadel.management.api.v1.ManagementService.DeactivateUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 168, // 493: caos.zitadel.management.api.v1.ManagementService.ReactivateUserGrant:output_type -> caos.zitadel.management.api.v1.UserGrant
- 221, // 494: caos.zitadel.management.api.v1.ManagementService.RemoveUserGrant:output_type -> google.protobuf.Empty
- 221, // 495: caos.zitadel.management.api.v1.ManagementService.BulkRemoveUserGrant:output_type -> google.protobuf.Empty
- 188, // 496: caos.zitadel.management.api.v1.ManagementService.IdpByID:output_type -> caos.zitadel.management.api.v1.IdpView
- 182, // 497: caos.zitadel.management.api.v1.ManagementService.CreateOidcIdp:output_type -> caos.zitadel.management.api.v1.Idp
- 182, // 498: caos.zitadel.management.api.v1.ManagementService.UpdateIdpConfig:output_type -> caos.zitadel.management.api.v1.Idp
- 182, // 499: caos.zitadel.management.api.v1.ManagementService.DeactivateIdpConfig:output_type -> caos.zitadel.management.api.v1.Idp
- 182, // 500: caos.zitadel.management.api.v1.ManagementService.ReactivateIdpConfig:output_type -> caos.zitadel.management.api.v1.Idp
- 221, // 501: caos.zitadel.management.api.v1.ManagementService.RemoveIdpConfig:output_type -> google.protobuf.Empty
- 184, // 502: caos.zitadel.management.api.v1.ManagementService.UpdateOidcIdpConfig:output_type -> caos.zitadel.management.api.v1.OidcIdpConfig
- 187, // 503: caos.zitadel.management.api.v1.ManagementService.SearchIdps:output_type -> caos.zitadel.management.api.v1.IdpSearchResponse
- 197, // 504: caos.zitadel.management.api.v1.ManagementService.GetLoginPolicy:output_type -> caos.zitadel.management.api.v1.LoginPolicyView
- 197, // 505: caos.zitadel.management.api.v1.ManagementService.GetDefaultLoginPolicy:output_type -> caos.zitadel.management.api.v1.LoginPolicyView
- 192, // 506: caos.zitadel.management.api.v1.ManagementService.CreateLoginPolicy:output_type -> caos.zitadel.management.api.v1.LoginPolicy
- 192, // 507: caos.zitadel.management.api.v1.ManagementService.UpdateLoginPolicy:output_type -> caos.zitadel.management.api.v1.LoginPolicy
- 221, // 508: caos.zitadel.management.api.v1.ManagementService.RemoveLoginPolicy:output_type -> google.protobuf.Empty
- 199, // 509: caos.zitadel.management.api.v1.ManagementService.GetLoginPolicyIdpProviders:output_type -> caos.zitadel.management.api.v1.IdpProviderSearchResponse
- 196, // 510: caos.zitadel.management.api.v1.ManagementService.AddIdpProviderToLoginPolicy:output_type -> caos.zitadel.management.api.v1.IdpProvider
- 221, // 511: caos.zitadel.management.api.v1.ManagementService.RemoveIdpProviderFromLoginPolicy:output_type -> google.protobuf.Empty
- 205, // 512: caos.zitadel.management.api.v1.ManagementService.GetLoginPolicySecondFactors:output_type -> caos.zitadel.management.api.v1.SecondFactorsResult
- 206, // 513: caos.zitadel.management.api.v1.ManagementService.AddSecondFactorToLoginPolicy:output_type -> caos.zitadel.management.api.v1.SecondFactor
- 221, // 514: caos.zitadel.management.api.v1.ManagementService.RemoveSecondFactorFromLoginPolicy:output_type -> google.protobuf.Empty
- 207, // 515: caos.zitadel.management.api.v1.ManagementService.GetLoginPolicyMultiFactors:output_type -> caos.zitadel.management.api.v1.MultiFactorsResult
- 208, // 516: caos.zitadel.management.api.v1.ManagementService.AddMultiFactorToLoginPolicy:output_type -> caos.zitadel.management.api.v1.MultiFactor
- 221, // 517: caos.zitadel.management.api.v1.ManagementService.RemoveMultiFactorFromLoginPolicy:output_type -> google.protobuf.Empty
- 211, // 518: caos.zitadel.management.api.v1.ManagementService.GetPasswordComplexityPolicy:output_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicyView
- 211, // 519: caos.zitadel.management.api.v1.ManagementService.GetDefaultPasswordComplexityPolicy:output_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicyView
- 209, // 520: caos.zitadel.management.api.v1.ManagementService.CreatePasswordComplexityPolicy:output_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicy
- 209, // 521: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordComplexityPolicy:output_type -> caos.zitadel.management.api.v1.PasswordComplexityPolicy
- 221, // 522: caos.zitadel.management.api.v1.ManagementService.RemovePasswordComplexityPolicy:output_type -> google.protobuf.Empty
- 214, // 523: caos.zitadel.management.api.v1.ManagementService.GetPasswordAgePolicy:output_type -> caos.zitadel.management.api.v1.PasswordAgePolicyView
- 214, // 524: caos.zitadel.management.api.v1.ManagementService.GetDefaultPasswordAgePolicy:output_type -> caos.zitadel.management.api.v1.PasswordAgePolicyView
- 212, // 525: caos.zitadel.management.api.v1.ManagementService.CreatePasswordAgePolicy:output_type -> caos.zitadel.management.api.v1.PasswordAgePolicy
- 212, // 526: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordAgePolicy:output_type -> caos.zitadel.management.api.v1.PasswordAgePolicy
- 221, // 527: caos.zitadel.management.api.v1.ManagementService.RemovePasswordAgePolicy:output_type -> google.protobuf.Empty
- 217, // 528: caos.zitadel.management.api.v1.ManagementService.GetPasswordLockoutPolicy:output_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicyView
- 217, // 529: caos.zitadel.management.api.v1.ManagementService.GetDefaultPasswordLockoutPolicy:output_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicyView
- 215, // 530: caos.zitadel.management.api.v1.ManagementService.CreatePasswordLockoutPolicy:output_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicy
- 215, // 531: caos.zitadel.management.api.v1.ManagementService.UpdatePasswordLockoutPolicy:output_type -> caos.zitadel.management.api.v1.PasswordLockoutPolicy
- 221, // 532: caos.zitadel.management.api.v1.ManagementService.RemovePasswordLockoutPolicy:output_type -> google.protobuf.Empty
- 389, // [389:533] is the sub-list for method output_type
- 245, // [245:389] is the sub-list for method input_type
- 245, // [245:245] is the sub-list for extension type_name
- 245, // [245:245] is the sub-list for extension extendee
- 0, // [0:245] is the sub-list for field type_name
-}
-
-func init() { file_management_proto_init() }
-func file_management_proto_init() {
- if File_management_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_management_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ZitadelDocs); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Iam); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ChangeRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Changes); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Change); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*LoginName); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UniqueUserRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UniqueUserResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateUserRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateHumanRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateMachineRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*HumanResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*HumanView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MachineResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MachineView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateMachineRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AddMachineKeyRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AddMachineKeyResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MachineKeyIDRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MachineKeyView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MachineKeySearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MachineKeySearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[29].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[30].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserProfile); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[31].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserProfileView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[32].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserProfileRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[33].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserUserNameRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[34].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserEmail); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[35].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserEmailView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[36].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserEmailRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[37].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserPhone); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[38].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserPhoneView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[39].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserPhoneRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[40].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserAddress); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[41].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserAddressView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[42].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UpdateUserAddressRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[43].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserMultiFactors); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[44].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserMultiFactor); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[45].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[46].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SetPasswordNotificationRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[47].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgIamPolicyView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[48].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgCreateRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[49].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Org); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[50].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[51].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Domain); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[52].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomain); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[53].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[54].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AddOrgDomainRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[55].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainValidationRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[56].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainValidationResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[57].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ValidateOrgDomainRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[58].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PrimaryOrgDomainRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[59].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*RemoveOrgDomainRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[60].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[61].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[62].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgDomainSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[63].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberRoles); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[64].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMember); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[65].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AddOrgMemberRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[66].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ChangeOrgMemberRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[67].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*RemoveOrgMemberRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[68].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[69].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[70].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[71].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OrgMemberSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[72].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectCreateRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[73].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectUpdateRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[74].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[75].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[76].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[77].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[78].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Projects); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[79].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Project); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[80].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberRoles); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[81].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMember); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[82].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberAdd); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[83].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberChange); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[84].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberRemove); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[85].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleAdd); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[86].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleAddBulk); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[87].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleChange); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[88].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRole); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[89].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[90].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleRemove); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[91].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[92].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[93].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectRoleSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[94].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[95].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[96].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[97].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectMemberSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[98].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Application); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[99].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[100].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OIDCConfig); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[101].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OIDCApplicationCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[102].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OIDCConfigUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[103].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ClientSecret); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[104].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[105].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[106].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[107].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ApplicationSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[108].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrant); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[109].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[110].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[111].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[112].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[113].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[114].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GrantedProjectSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[115].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[116].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[117].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberRoles); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[118].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMember); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[119].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberAdd); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[120].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberChange); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[121].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberRemove); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[122].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[123].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[124].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[125].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ProjectGrantMemberSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[126].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrant); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[127].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[128].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[129].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantRemoveBulk); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[130].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[131].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[132].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[133].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[134].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserGrantSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[135].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserMembershipSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[136].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserMembershipSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[137].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserMembershipSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[138].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*UserMembershipView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[139].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[140].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*Idp); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[141].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[142].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OidcIdpConfig); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[143].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OidcIdpConfigCreate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[144].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OidcIdpConfigUpdate); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[145].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[146].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[147].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OidcIdpConfigView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[148].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[149].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpSearchQuery); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[150].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*LoginPolicy); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[151].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*LoginPolicyRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[152].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpProviderID); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[153].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpProviderAdd); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[154].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpProvider); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[155].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*LoginPolicyView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[156].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpProviderView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[157].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpProviderSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[158].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*IdpProviderSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[159].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExternalIDPSearchRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[160].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExternalIDPSearchResponse); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[161].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExternalIDPView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[162].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExternalIDPRemoveRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[163].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SecondFactorsResult); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[164].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SecondFactor); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[165].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MultiFactorsResult); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[166].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*MultiFactor); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[167].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordComplexityPolicy); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[168].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordComplexityPolicyRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[169].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordComplexityPolicyView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[170].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordAgePolicy); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[171].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordAgePolicyRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[172].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordAgePolicyView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[173].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordLockoutPolicy); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[174].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordLockoutPolicyRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_management_proto_msgTypes[175].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PasswordLockoutPolicyView); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- }
- file_management_proto_msgTypes[11].OneofWrappers = []interface{}{
- (*CreateUserRequest_Human)(nil),
- (*CreateUserRequest_Machine)(nil),
- }
- file_management_proto_msgTypes[14].OneofWrappers = []interface{}{
- (*UserResponse_Human)(nil),
- (*UserResponse_Machine)(nil),
- }
- file_management_proto_msgTypes[15].OneofWrappers = []interface{}{
- (*UserView_Human)(nil),
- (*UserView_Machine)(nil),
- }
- file_management_proto_msgTypes[98].OneofWrappers = []interface{}{
- (*Application_OidcConfig)(nil),
- }
- file_management_proto_msgTypes[104].OneofWrappers = []interface{}{
- (*ApplicationView_OidcConfig)(nil),
- }
- file_management_proto_msgTypes[140].OneofWrappers = []interface{}{
- (*Idp_OidcConfig)(nil),
- }
- file_management_proto_msgTypes[146].OneofWrappers = []interface{}{
- (*IdpView_OidcConfig)(nil),
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: file_management_proto_rawDesc,
- NumEnums: 42,
- NumMessages: 176,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_management_proto_goTypes,
- DependencyIndexes: file_management_proto_depIdxs,
- EnumInfos: file_management_proto_enumTypes,
- MessageInfos: file_management_proto_msgTypes,
- }.Build()
- File_management_proto = out.File
- file_management_proto_rawDesc = nil
- file_management_proto_goTypes = nil
- file_management_proto_depIdxs = nil
+var fileDescriptor_edc174f991dc0a25 = []byte{
+ // 12438 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x7d, 0x79, 0x70, 0x1b, 0x59,
+ 0x7a, 0xdf, 0x34, 0x40, 0x82, 0xe0, 0x07, 0x1e, 0xe0, 0xe3, 0x05, 0x82, 0x3a, 0xa8, 0x1e, 0x69,
+ 0x24, 0x61, 0x24, 0x42, 0xe2, 0x8c, 0x66, 0x46, 0x33, 0xb3, 0x3b, 0x03, 0x12, 0x10, 0x85, 0x15,
+ 0x49, 0x60, 0x00, 0x6a, 0xe4, 0xd9, 0x8d, 0x0d, 0xb7, 0xd0, 0x4d, 0xb2, 0x2d, 0x5c, 0x8b, 0x06,
+ 0xa5, 0xe5, 0x2a, 0x63, 0xc7, 0xf2, 0xb1, 0x8e, 0xaf, 0xd8, 0xbb, 0x76, 0xd6, 0xc7, 0x7a, 0x9d,
+ 0xf2, 0x66, 0xb3, 0xb1, 0x1d, 0xdb, 0x7f, 0xd8, 0xda, 0xac, 0xed, 0x8a, 0x5d, 0x65, 0x3b, 0xb6,
+ 0xe3, 0x24, 0xae, 0x72, 0xd6, 0xe5, 0x38, 0xe5, 0xb8, 0x9c, 0xab, 0x5c, 0x89, 0x2b, 0x15, 0x27,
+ 0x15, 0x57, 0x25, 0xbb, 0xf9, 0x27, 0xf5, 0x8e, 0xee, 0x7e, 0x7d, 0xa1, 0xbb, 0x49, 0x91, 0xe2,
+ 0xce, 0xce, 0x5f, 0x24, 0xde, 0xf9, 0x7b, 0xdf, 0xfb, 0xae, 0xf7, 0xbd, 0xd7, 0xef, 0x41, 0xb2,
+ 0x29, 0xb5, 0xa4, 0x6d, 0xa5, 0xa9, 0xb4, 0x7a, 0x8b, 0x9d, 0x6e, 0xbb, 0xd7, 0x46, 0xa7, 0xea,
+ 0x52, 0x5b, 0x5b, 0xfc, 0xb8, 0xda, 0x93, 0x64, 0xa5, 0xb1, 0xc8, 0x65, 0x4b, 0x1d, 0x75, 0xf1,
+ 0xfe, 0xd5, 0xf4, 0x89, 0xed, 0x76, 0x7b, 0xbb, 0xa1, 0x64, 0xa5, 0x8e, 0x9a, 0x95, 0x5a, 0xad,
+ 0x76, 0x4f, 0xea, 0xa9, 0xed, 0x96, 0x46, 0x6b, 0xa7, 0xe7, 0x59, 0x2e, 0xf9, 0x75, 0x77, 0x77,
+ 0x2b, 0xab, 0x34, 0x3b, 0xbd, 0x3d, 0x96, 0x79, 0xc2, 0x9e, 0xa9, 0xf5, 0xba, 0xbb, 0x75, 0xd6,
+ 0x71, 0xfa, 0xb4, 0x3d, 0xb7, 0xa7, 0x36, 0x15, 0xad, 0x27, 0x35, 0x3b, 0xac, 0xc0, 0x25, 0xf2,
+ 0xa7, 0x7e, 0x79, 0x5b, 0x69, 0x5d, 0xd6, 0x1e, 0x48, 0xdb, 0xdb, 0x4a, 0x37, 0xdb, 0xee, 0x90,
+ 0xde, 0x5d, 0x90, 0xcc, 0xde, 0x97, 0x1a, 0xaa, 0x2c, 0xf5, 0x94, 0xac, 0xfe, 0x0f, 0xcb, 0x48,
+ 0x49, 0xbb, 0xbd, 0x1d, 0x5a, 0x4f, 0xaf, 0xce, 0x72, 0x26, 0xc9, 0x9f, 0x6c, 0x53, 0xd1, 0x34,
+ 0x69, 0x9b, 0x15, 0x17, 0x37, 0x21, 0xf1, 0x61, 0x4a, 0x8c, 0x7c, 0xbb, 0xae, 0xa1, 0x19, 0x88,
+ 0xa9, 0x9a, 0xb6, 0xab, 0x74, 0x53, 0xc2, 0x82, 0x70, 0x61, 0xb8, 0xc2, 0x7e, 0xa1, 0xcb, 0x80,
+ 0x64, 0x55, 0xab, 0xb7, 0xef, 0x2b, 0xdd, 0xbd, 0x9a, 0xd2, 0x92, 0x3b, 0x6d, 0xb5, 0xd5, 0x4b,
+ 0x45, 0x48, 0x99, 0x09, 0x23, 0xa7, 0xc0, 0x32, 0xc4, 0xff, 0x25, 0x40, 0xb4, 0x28, 0x35, 0x91,
+ 0x08, 0xa3, 0xdb, 0x8d, 0xf6, 0x5d, 0xa9, 0x51, 0x6b, 0x77, 0xb7, 0x6b, 0xaa, 0xcc, 0x5a, 0x4d,
+ 0xd0, 0xc4, 0x52, 0x77, 0xbb, 0x28, 0xa3, 0xb3, 0x30, 0xa6, 0x4a, 0xcd, 0x5a, 0xa7, 0xdb, 0xfe,
+ 0x16, 0xa5, 0xde, 0xc3, 0x85, 0x68, 0xb3, 0x23, 0xaa, 0xd4, 0x2c, 0xd3, 0xc4, 0xa2, 0x8c, 0xd6,
+ 0x20, 0xa1, 0x29, 0xbd, 0xda, 0x6e, 0xa7, 0x26, 0xb7, 0x5b, 0x4a, 0x2a, 0xba, 0x20, 0x5c, 0x18,
+ 0x5b, 0xba, 0xb4, 0xd8, 0x7f, 0x36, 0x17, 0x8b, 0x52, 0xb3, 0xaa, 0xf4, 0x76, 0x3b, 0xd5, 0x9e,
+ 0xd2, 0xa9, 0x0c, 0x6b, 0x4a, 0xef, 0x76, 0x27, 0xdf, 0x6e, 0x29, 0xa8, 0x02, 0x63, 0xac, 0x35,
+ 0xad, 0x27, 0x75, 0x7b, 0x8a, 0x9c, 0x1a, 0xd8, 0x47, 0x83, 0x23, 0xa4, 0xc1, 0x2a, 0x6d, 0x41,
+ 0xfc, 0x84, 0x00, 0xa3, 0x2b, 0x3b, 0x52, 0x6b, 0x5b, 0xa9, 0x28, 0x1f, 0xdd, 0x55, 0xb4, 0x1e,
+ 0x1a, 0x83, 0x88, 0x31, 0xe4, 0x88, 0x2a, 0xa3, 0x69, 0x88, 0x69, 0x4a, 0xdd, 0x1c, 0xe1, 0xa0,
+ 0xa6, 0xd4, 0x8b, 0x32, 0x9a, 0x82, 0xc1, 0x86, 0xda, 0x54, 0x7b, 0x64, 0x50, 0x03, 0x15, 0xfa,
+ 0x03, 0x9d, 0x87, 0x71, 0x0d, 0xb7, 0xd3, 0xaa, 0x2b, 0xb5, 0xf6, 0xd6, 0x96, 0xa6, 0xf4, 0x08,
+ 0xc6, 0x81, 0xca, 0x98, 0x9e, 0x5c, 0x22, 0xa9, 0x28, 0x09, 0x51, 0x49, 0xab, 0xa7, 0x06, 0x17,
+ 0x84, 0x0b, 0xf1, 0x0a, 0xfe, 0x57, 0xdc, 0x83, 0x21, 0x0a, 0x44, 0x43, 0x6f, 0xc2, 0x50, 0x9d,
+ 0xfe, 0x9b, 0x12, 0x16, 0xa2, 0x17, 0x12, 0x4b, 0xcf, 0xf9, 0x8d, 0x90, 0x0d, 0x41, 0xaf, 0x86,
+ 0x39, 0x82, 0x75, 0x1f, 0x21, 0xdd, 0xb3, 0x5f, 0xee, 0xa8, 0xc5, 0xbf, 0x1b, 0x81, 0x18, 0x6d,
+ 0x01, 0xbd, 0x06, 0x09, 0xda, 0x46, 0x0d, 0x73, 0x27, 0x21, 0x43, 0x62, 0x29, 0xbd, 0x48, 0xc5,
+ 0x60, 0x51, 0x17, 0x83, 0xc5, 0x4d, 0x5d, 0x0c, 0x2a, 0x40, 0x8b, 0xe7, 0xa5, 0x9e, 0x82, 0xf2,
+ 0x00, 0xca, 0x7d, 0xa5, 0xd5, 0xab, 0xf5, 0xf6, 0x3a, 0x0a, 0xe9, 0x39, 0xb1, 0x74, 0xce, 0x0a,
+ 0x9d, 0xe1, 0x5d, 0x6b, 0xd7, 0xa5, 0x86, 0xfa, 0x71, 0x45, 0x5e, 0xa7, 0x7c, 0x5d, 0x19, 0x26,
+ 0x15, 0x37, 0xf7, 0x3a, 0x0a, 0x4a, 0x43, 0x5c, 0x27, 0x16, 0x83, 0x69, 0xfc, 0x46, 0xf3, 0x30,
+ 0xac, 0xc8, 0x6a, 0xaf, 0xdd, 0xc5, 0xf3, 0x31, 0x40, 0xe6, 0x23, 0x4e, 0x13, 0x8a, 0x32, 0x1e,
+ 0x34, 0xfd, 0x9f, 0x90, 0x75, 0xb8, 0xc2, 0x7e, 0xa1, 0xe7, 0x61, 0x40, 0x96, 0x7a, 0x52, 0x2a,
+ 0x46, 0x00, 0xcd, 0x3a, 0x06, 0x53, 0x25, 0x12, 0x5f, 0x21, 0x85, 0xc4, 0x32, 0x8c, 0xe6, 0x3a,
+ 0x9d, 0x86, 0x5a, 0x27, 0x82, 0x5b, 0xcc, 0xa3, 0x59, 0x93, 0x1f, 0x96, 0x87, 0xbe, 0xba, 0x3c,
+ 0xd0, 0x8d, 0x24, 0x05, 0xc2, 0x18, 0xcf, 0x01, 0xd8, 0xd9, 0xdf, 0x2c, 0x30, 0xdc, 0xd1, 0x85,
+ 0x40, 0x3c, 0x0b, 0xc3, 0xba, 0x44, 0x78, 0xb7, 0x26, 0x9e, 0x81, 0xd8, 0x6d, 0x4d, 0xe9, 0xf6,
+ 0x2b, 0xf2, 0x02, 0x0c, 0xaf, 0xb5, 0xb7, 0xd5, 0xd6, 0x86, 0xd4, 0x54, 0x70, 0xef, 0x0d, 0xfc,
+ 0xa3, 0xd6, 0x92, 0x9a, 0x8a, 0xbd, 0xf4, 0x70, 0x43, 0x2f, 0x27, 0x76, 0x60, 0xe2, 0x76, 0x4b,
+ 0xfd, 0xe8, 0xae, 0x82, 0x5b, 0xd7, 0x79, 0xfc, 0x3a, 0x0c, 0xef, 0x6a, 0x4a, 0x97, 0xaf, 0x7b,
+ 0xe2, 0xab, 0xcb, 0x73, 0xdd, 0xd9, 0xa5, 0xe9, 0x6f, 0xfa, 0xc8, 0x37, 0x7d, 0xe4, 0x55, 0xad,
+ 0x23, 0xd5, 0x95, 0x57, 0xbf, 0xf1, 0x1b, 0x1f, 0x5e, 0xbd, 0xb4, 0x74, 0xe5, 0xca, 0xbb, 0x67,
+ 0x2b, 0x71, 0x5c, 0x9c, 0xf4, 0xbb, 0x00, 0x83, 0x4a, 0x53, 0x52, 0x1b, 0x6c, 0xc0, 0xf0, 0xd5,
+ 0xe5, 0xa1, 0xee, 0x60, 0x52, 0x48, 0xfd, 0xbe, 0x50, 0xa1, 0x19, 0xe2, 0x55, 0x40, 0x7c, 0x8f,
+ 0x5a, 0xa7, 0xdd, 0xd2, 0xc8, 0xcc, 0xa9, 0x5a, 0x6d, 0x97, 0x64, 0x90, 0x2e, 0xe3, 0x95, 0xb8,
+ 0xaa, 0xd1, 0x82, 0xe2, 0x57, 0x04, 0x98, 0x58, 0xe9, 0x2a, 0x52, 0xef, 0x49, 0xa1, 0xfc, 0x10,
+ 0x0c, 0xee, 0xec, 0x36, 0xa5, 0x16, 0x63, 0xc2, 0x25, 0x5f, 0xf9, 0x21, 0x9d, 0xdf, 0xc4, 0x55,
+ 0x58, 0xef, 0x37, 0x9f, 0xa9, 0xd0, 0x26, 0x50, 0x19, 0x86, 0x9a, 0x52, 0x7d, 0x47, 0x65, 0x0a,
+ 0x2c, 0xb1, 0xf4, 0x62, 0xb0, 0xd6, 0xd6, 0x69, 0x25, 0xb3, 0x3d, 0xbd, 0x99, 0xe5, 0x04, 0x0c,
+ 0x60, 0xa4, 0x28, 0xfa, 0x7f, 0x97, 0x05, 0xf1, 0x87, 0x06, 0x01, 0x39, 0xbb, 0x47, 0x17, 0x01,
+ 0xb6, 0xd4, 0xae, 0xd6, 0xe3, 0x47, 0xcf, 0x13, 0x7b, 0x98, 0xe4, 0x92, 0xc1, 0x9e, 0x87, 0xe1,
+ 0x86, 0xa4, 0x97, 0x74, 0x4e, 0x4b, 0x1c, 0x67, 0x92, 0x82, 0xe7, 0x60, 0xb8, 0xa5, 0xd6, 0xef,
+ 0xd1, 0x82, 0x51, 0x52, 0x30, 0xfe, 0xd5, 0xe5, 0xc1, 0x6e, 0x94, 0x14, 0xc3, 0x59, 0xa4, 0xd8,
+ 0xcb, 0x80, 0x3a, 0x5d, 0x65, 0x4b, 0xe9, 0x76, 0x15, 0xb9, 0xd6, 0x90, 0x5a, 0xdb, 0xbb, 0xd2,
+ 0xb6, 0x42, 0xa5, 0x8d, 0x2b, 0x3f, 0x61, 0x94, 0x59, 0x63, 0x45, 0xd0, 0x07, 0x21, 0xb6, 0xad,
+ 0xb4, 0x64, 0x85, 0x0a, 0xe0, 0x98, 0xbf, 0xda, 0x5a, 0x25, 0xa5, 0x2b, 0xac, 0x16, 0x12, 0x75,
+ 0xde, 0x8a, 0x91, 0xbe, 0x46, 0xbe, 0xba, 0x3c, 0xdc, 0x1d, 0x22, 0x83, 0xf8, 0x66, 0x9d, 0xbb,
+ 0x50, 0x06, 0x26, 0x54, 0xad, 0x46, 0xfe, 0xaf, 0xdd, 0x57, 0xba, 0xea, 0x96, 0xaa, 0xc8, 0xa9,
+ 0x21, 0xc2, 0x4f, 0xe3, 0xaa, 0x56, 0xc0, 0xe9, 0x6f, 0xb3, 0x64, 0x74, 0x12, 0x06, 0x3b, 0x3b,
+ 0xd8, 0xf0, 0xc4, 0x39, 0xf1, 0x48, 0x4d, 0x55, 0x68, 0x2a, 0x6b, 0x8a, 0xfc, 0x6f, 0x36, 0x35,
+ 0xac, 0x37, 0x55, 0xc6, 0xe9, 0x46, 0x53, 0x22, 0x0c, 0xd5, 0xdb, 0xbb, 0xad, 0x5e, 0x77, 0x2f,
+ 0x05, 0x36, 0x42, 0xe8, 0x19, 0xe8, 0x2c, 0xc4, 0x1b, 0x44, 0xaf, 0xf5, 0xf6, 0x52, 0x09, 0x3b,
+ 0x75, 0xf5, 0x1c, 0x74, 0x11, 0x12, 0x9d, 0xb6, 0xd6, 0x93, 0x1a, 0xb5, 0x7a, 0x5b, 0x56, 0x52,
+ 0x23, 0xb6, 0x82, 0x40, 0x33, 0x57, 0xda, 0x32, 0x96, 0xb5, 0x58, 0x57, 0xd9, 0x56, 0xdb, 0xad,
+ 0xd4, 0xa8, 0xad, 0x14, 0x4b, 0x47, 0x59, 0x18, 0xd3, 0x7a, 0x5d, 0x45, 0xe9, 0xd5, 0x24, 0x59,
+ 0xee, 0x2a, 0x9a, 0x96, 0x1a, 0xb3, 0x95, 0x1c, 0xa5, 0xf9, 0x39, 0x9a, 0x8d, 0x9e, 0x85, 0x78,
+ 0x47, 0xd2, 0xb4, 0x07, 0xed, 0xae, 0x9c, 0x1a, 0xe7, 0xa9, 0x72, 0xb3, 0x62, 0x64, 0x88, 0x77,
+ 0x61, 0xca, 0x8d, 0x85, 0xd1, 0x29, 0x18, 0xf0, 0xe0, 0x46, 0x92, 0x8e, 0x32, 0x90, 0x90, 0x15,
+ 0xad, 0xde, 0x55, 0x89, 0x07, 0xc3, 0x58, 0x91, 0x41, 0xf9, 0x9b, 0x68, 0x85, 0xcf, 0x14, 0xff,
+ 0x69, 0x14, 0x46, 0x2c, 0x0a, 0xc2, 0x6e, 0x77, 0xdf, 0x80, 0x41, 0xad, 0x87, 0x6d, 0x50, 0x84,
+ 0xf0, 0xd2, 0x45, 0x3f, 0x5e, 0xc2, 0x8d, 0x55, 0x71, 0x85, 0x0a, 0xad, 0x87, 0xde, 0x80, 0xd1,
+ 0x3a, 0x1e, 0x85, 0xda, 0x6e, 0x51, 0x63, 0x16, 0xf5, 0x35, 0x66, 0x23, 0x7a, 0x05, 0x62, 0xce,
+ 0x6c, 0xb6, 0x70, 0x20, 0x94, 0x2d, 0xe4, 0xad, 0xd8, 0xa0, 0xd3, 0x8a, 0x99, 0x8a, 0x2d, 0x46,
+ 0xad, 0x98, 0xa1, 0xba, 0x0a, 0xba, 0xea, 0x1a, 0x22, 0xfd, 0x5d, 0xf6, 0x1b, 0x37, 0xd3, 0x1a,
+ 0x94, 0x8a, 0xa6, 0xd6, 0xba, 0x65, 0x6a, 0xad, 0x38, 0x69, 0x28, 0xeb, 0xd7, 0x90, 0x31, 0xd9,
+ 0x46, 0x53, 0xee, 0x0a, 0xeb, 0x3f, 0x0c, 0x40, 0x1c, 0x13, 0xfb, 0x6d, 0x55, 0x79, 0xf0, 0xf5,
+ 0x34, 0x6b, 0xa7, 0x21, 0x61, 0x5a, 0x5c, 0x2d, 0x15, 0x5b, 0x88, 0x5e, 0x18, 0xae, 0x80, 0x61,
+ 0x69, 0x35, 0x74, 0x05, 0xa6, 0x38, 0xbd, 0x69, 0x1a, 0xe7, 0x21, 0x42, 0x1d, 0x53, 0xa7, 0x9a,
+ 0x46, 0xfc, 0x3a, 0x00, 0xd1, 0xdc, 0xa4, 0x30, 0x9b, 0xa7, 0x7e, 0x50, 0x89, 0x9e, 0x27, 0xd5,
+ 0xd1, 0x39, 0x18, 0xeb, 0x2a, 0x5a, 0x7b, 0xb7, 0x8b, 0x3d, 0xcd, 0x07, 0x2d, 0xa5, 0x4b, 0x34,
+ 0xd7, 0x70, 0x65, 0x54, 0x4f, 0x2d, 0xe1, 0x44, 0x2b, 0xab, 0x81, 0x8d, 0xd5, 0x72, 0x3a, 0xab,
+ 0x25, 0x48, 0xcf, 0x17, 0x03, 0xb1, 0x1a, 0x9e, 0x76, 0x93, 0xcd, 0x56, 0x4d, 0x36, 0x1b, 0x21,
+ 0x8d, 0x3c, 0x1f, 0x90, 0xcd, 0x58, 0x33, 0xee, 0x2c, 0xf6, 0x23, 0x03, 0x30, 0x6a, 0xe1, 0x6b,
+ 0x74, 0xd2, 0x69, 0x0e, 0x79, 0x13, 0x38, 0xef, 0x30, 0x81, 0x9c, 0xd9, 0x3b, 0x03, 0x23, 0xb2,
+ 0xaa, 0x75, 0x1a, 0xd2, 0x1e, 0x67, 0xf9, 0x2a, 0x09, 0x96, 0xa6, 0xd7, 0x37, 0x2d, 0x23, 0xf3,
+ 0x2b, 0x0d, 0x7b, 0x78, 0xd9, 0xd5, 0x1e, 0x52, 0x1f, 0xb3, 0xaf, 0x15, 0x8c, 0xed, 0xcb, 0x0a,
+ 0x4e, 0xe9, 0x56, 0x90, 0xf2, 0x4d, 0x3f, 0xbb, 0x17, 0x77, 0xb7, 0x7b, 0x53, 0xba, 0xdd, 0xa3,
+ 0x2c, 0xd1, 0xcf, 0xdc, 0x81, 0xbb, 0xb9, 0x4b, 0x99, 0xe6, 0x8e, 0x58, 0x32, 0xd3, 0xc8, 0xa5,
+ 0x39, 0x23, 0x37, 0xc2, 0x08, 0xad, 0x9b, 0xb6, 0xd3, 0x56, 0xd3, 0x46, 0x8c, 0x96, 0xc5, 0xa0,
+ 0xcd, 0x18, 0x06, 0x6d, 0x8c, 0x7a, 0xe8, 0xcc, 0x8c, 0x9d, 0x73, 0x98, 0xb1, 0x71, 0xca, 0xcc,
+ 0x16, 0xe3, 0x25, 0xfe, 0xdb, 0x01, 0x18, 0x36, 0x78, 0x10, 0x15, 0x20, 0xa9, 0x5b, 0xac, 0x1a,
+ 0x15, 0x61, 0x39, 0xc0, 0x7a, 0x65, 0x5c, 0xaf, 0x43, 0x17, 0x3c, 0xb2, 0x8d, 0xb3, 0x22, 0x7d,
+ 0x39, 0x2b, 0xea, 0xc3, 0x59, 0x03, 0x3e, 0x9c, 0x35, 0x18, 0x88, 0xb3, 0x62, 0xfe, 0x9c, 0x35,
+ 0x74, 0x30, 0xce, 0x8a, 0xfb, 0x72, 0xd6, 0xb0, 0x0f, 0x67, 0x81, 0x2f, 0x67, 0x25, 0x7c, 0x39,
+ 0x6b, 0xc4, 0x9b, 0xb3, 0x46, 0xfb, 0x73, 0xd6, 0x58, 0x1f, 0xce, 0x1a, 0xf7, 0xe1, 0xac, 0xa4,
+ 0x1b, 0x67, 0xad, 0xc2, 0xb8, 0xcd, 0xfc, 0x21, 0xc4, 0x3b, 0x3b, 0xcc, 0xc1, 0x59, 0x70, 0x71,
+ 0x70, 0xac, 0x6e, 0xcd, 0x77, 0x09, 0x90, 0xe0, 0x34, 0x1c, 0x7a, 0x13, 0xc6, 0x08, 0xfb, 0xdc,
+ 0x53, 0xf6, 0x30, 0x82, 0x40, 0x2c, 0x3a, 0x82, 0x6b, 0xdc, 0x52, 0xf6, 0x72, 0xb8, 0xbc, 0x81,
+ 0x23, 0xe2, 0x8d, 0x23, 0xea, 0xc4, 0xf1, 0x11, 0x98, 0xba, 0xdd, 0x91, 0x9d, 0x2e, 0x9c, 0xe7,
+ 0x6a, 0x36, 0x8c, 0xef, 0xf6, 0x2f, 0x05, 0x98, 0xca, 0xc9, 0x32, 0x6b, 0xfa, 0x96, 0xb2, 0xa7,
+ 0xb7, 0xbe, 0x00, 0x43, 0xc4, 0xda, 0x38, 0xbb, 0x88, 0xe1, 0x74, 0x12, 0x11, 0x1a, 0x30, 0x82,
+ 0x03, 0x63, 0x4b, 0x8b, 0x01, 0x8d, 0xc5, 0x2d, 0x65, 0x6f, 0x73, 0xaf, 0xa3, 0x10, 0x3c, 0x8f,
+ 0x84, 0xc8, 0xc2, 0x33, 0x15, 0xd2, 0x0a, 0x5a, 0x81, 0x71, 0xe5, 0x63, 0x1d, 0xb5, 0x1b, 0xca,
+ 0x5d, 0x18, 0x33, 0xab, 0x60, 0x9b, 0x2f, 0xfe, 0x62, 0x04, 0xa6, 0x6d, 0xa3, 0xf1, 0x74, 0x49,
+ 0x6d, 0xbe, 0x49, 0x24, 0xa4, 0x6f, 0xd2, 0x2f, 0xb4, 0xb1, 0xcc, 0x28, 0x33, 0xb0, 0x1f, 0xca,
+ 0x78, 0xd3, 0x63, 0x30, 0x2c, 0x3d, 0xb0, 0xac, 0x61, 0x6e, 0x95, 0x95, 0x9e, 0xa4, 0x36, 0x34,
+ 0xa2, 0x8d, 0x46, 0x2a, 0x70, 0x4f, 0xd9, 0xcb, 0xd3, 0x14, 0xf1, 0x0e, 0x4c, 0x9a, 0xbd, 0x17,
+ 0xf3, 0xc1, 0x27, 0xff, 0x14, 0xc4, 0x70, 0xcb, 0xce, 0x68, 0xc9, 0xe0, 0x3d, 0x65, 0xaf, 0x28,
+ 0x8b, 0xdf, 0x1d, 0x81, 0x31, 0xb3, 0x65, 0x57, 0xff, 0x72, 0xf9, 0x20, 0xfc, 0xc3, 0xa8, 0xd4,
+ 0x6f, 0x16, 0x1c, 0x53, 0x3c, 0x10, 0x72, 0x8a, 0x9f, 0xc4, 0x14, 0x88, 0x0f, 0x61, 0xd6, 0x44,
+ 0x5e, 0x55, 0xa4, 0x6e, 0x7d, 0x47, 0xa7, 0xb2, 0x19, 0xd9, 0x13, 0xdc, 0x23, 0x7b, 0x11, 0x3e,
+ 0x1e, 0xc9, 0xc2, 0x8c, 0x51, 0x23, 0xcc, 0xc8, 0xcf, 0xd2, 0x80, 0xeb, 0x2c, 0x89, 0x9f, 0x8f,
+ 0x40, 0xca, 0xd9, 0x3b, 0x13, 0x89, 0x70, 0xdd, 0x9f, 0x81, 0x91, 0x5e, 0x1b, 0x6b, 0xed, 0xae,
+ 0xa2, 0xed, 0x36, 0xf4, 0xa8, 0x63, 0x82, 0xa4, 0x55, 0x48, 0x12, 0xba, 0x81, 0x15, 0x37, 0xc9,
+ 0x1c, 0x20, 0xa1, 0xce, 0x10, 0x53, 0x8a, 0x19, 0xa4, 0xc2, 0x6a, 0x53, 0x53, 0xda, 0xae, 0x2b,
+ 0x9a, 0xa6, 0xc8, 0x35, 0x9b, 0x0f, 0x3f, 0x61, 0xe4, 0x54, 0xf5, 0x79, 0xce, 0xc1, 0xd8, 0x7d,
+ 0x55, 0x79, 0x50, 0x33, 0xe2, 0xf9, 0x2c, 0x3a, 0xd8, 0x6f, 0x96, 0x46, 0x71, 0x0d, 0xe3, 0xa7,
+ 0xf8, 0x37, 0x02, 0x4c, 0x90, 0xe5, 0xcb, 0x01, 0xe6, 0x67, 0x13, 0xc6, 0xb4, 0x76, 0xb7, 0xa7,
+ 0xb6, 0xb6, 0x6b, 0xf5, 0x76, 0x63, 0xb7, 0xd9, 0x62, 0x31, 0xf2, 0xcb, 0x81, 0xd6, 0x4d, 0xa4,
+ 0x63, 0xac, 0xb0, 0x46, 0x59, 0x23, 0x2b, 0xa4, 0x0d, 0x7d, 0xd6, 0x07, 0xcc, 0x59, 0x2f, 0xc2,
+ 0xd0, 0x47, 0x77, 0x95, 0xae, 0xaa, 0x68, 0xa9, 0x41, 0x42, 0xe6, 0x6c, 0xf0, 0x0e, 0xde, 0xda,
+ 0x55, 0xba, 0x7b, 0x15, 0xbd, 0xbe, 0xf8, 0x25, 0x01, 0xc6, 0x6d, 0x99, 0xa8, 0x08, 0xd1, 0x7b,
+ 0xca, 0x1e, 0x19, 0x71, 0x58, 0xec, 0x9c, 0x4e, 0xc7, 0x6d, 0xa0, 0x3c, 0xc4, 0x9a, 0x4a, 0x6f,
+ 0xa7, 0x2d, 0x33, 0x11, 0xf7, 0x0d, 0xee, 0xd3, 0x96, 0xd6, 0x49, 0x9d, 0x0a, 0xab, 0x8b, 0xa9,
+ 0x7d, 0x5f, 0x6a, 0xec, 0xea, 0x1e, 0x1b, 0xfd, 0x21, 0xfe, 0x78, 0x04, 0x10, 0x3f, 0x63, 0x87,
+ 0xc5, 0xd3, 0x6f, 0xda, 0x78, 0xfa, 0x42, 0x10, 0x8a, 0x3c, 0x65, 0x6e, 0xfe, 0x99, 0x28, 0x24,
+ 0x30, 0x8c, 0x72, 0xb7, 0xbd, 0xa5, 0x36, 0x9c, 0xb6, 0xef, 0x20, 0x6e, 0x72, 0xdf, 0xd5, 0x95,
+ 0xdd, 0x87, 0x1e, 0x74, 0xfa, 0xd0, 0x47, 0xec, 0x26, 0xf3, 0xf6, 0x21, 0xee, 0x67, 0x1f, 0x86,
+ 0x0f, 0x16, 0x9e, 0x80, 0x30, 0xe1, 0x09, 0xf1, 0x2b, 0x51, 0x2a, 0x7b, 0x6c, 0x92, 0x5c, 0x2d,
+ 0xe4, 0xfb, 0x13, 0xf5, 0xf4, 0x27, 0xca, 0x1e, 0x2b, 0x4a, 0x04, 0x8e, 0x15, 0x8d, 0x78, 0xc5,
+ 0x8a, 0xc4, 0xcf, 0x46, 0x20, 0x45, 0x5d, 0x7a, 0x8e, 0x03, 0xbc, 0x36, 0x2d, 0x2f, 0x3a, 0x99,
+ 0x20, 0xd0, 0xee, 0x41, 0x34, 0xe8, 0xee, 0xc1, 0x40, 0xc8, 0xdd, 0x83, 0xc1, 0x30, 0xbb, 0x07,
+ 0xfb, 0x8a, 0x9b, 0x88, 0x5b, 0x30, 0x67, 0xd2, 0xe7, 0x36, 0x8b, 0x71, 0x79, 0x11, 0xc8, 0xb2,
+ 0xb7, 0x14, 0x09, 0xb3, 0xb7, 0x24, 0xfe, 0x1f, 0x01, 0x86, 0x71, 0xf3, 0x64, 0x65, 0xec, 0x68,
+ 0x78, 0xca, 0xb2, 0x3f, 0xd6, 0x77, 0x8d, 0x1d, 0x75, 0x5f, 0x63, 0xf3, 0x5c, 0x3d, 0xe0, 0xc7,
+ 0xd5, 0x83, 0x07, 0xe3, 0xea, 0x58, 0x28, 0xf5, 0xf3, 0xff, 0x04, 0x18, 0x35, 0x46, 0xee, 0xaa,
+ 0x7c, 0xde, 0xcb, 0xa3, 0xbf, 0x0f, 0x33, 0x26, 0x7f, 0x11, 0xd0, 0x5e, 0xcc, 0xe5, 0xbb, 0x47,
+ 0x1a, 0x86, 0x22, 0x06, 0xbf, 0x91, 0x38, 0x8a, 0x1b, 0xc5, 0x69, 0x44, 0x26, 0xe2, 0x1b, 0x91,
+ 0x89, 0xba, 0x47, 0x64, 0xfa, 0xc5, 0xbc, 0x1d, 0x14, 0x8f, 0x1d, 0x8c, 0xe2, 0x43, 0xfb, 0xe2,
+ 0x37, 0x8a, 0xd7, 0x83, 0xdf, 0xde, 0xb3, 0xa3, 0xff, 0x56, 0x9e, 0xdf, 0x08, 0x68, 0xdf, 0x20,
+ 0xce, 0x69, 0x0b, 0x39, 0x96, 0x87, 0xbf, 0xba, 0x1c, 0xeb, 0x0e, 0x24, 0x05, 0x9f, 0x2d, 0x4f,
+ 0x77, 0xca, 0x88, 0xff, 0x3a, 0x42, 0x3d, 0x42, 0x7d, 0xeb, 0xd0, 0x4e, 0x7b, 0x2e, 0x92, 0x17,
+ 0xf1, 0x8e, 0xe4, 0x45, 0xfb, 0x47, 0xf2, 0x06, 0xfa, 0x44, 0xf2, 0x06, 0x7d, 0x22, 0x79, 0x31,
+ 0x97, 0x48, 0x9e, 0x65, 0x3e, 0x87, 0xfc, 0xe6, 0x33, 0x7e, 0xb0, 0xf9, 0x1c, 0x0e, 0x35, 0x9f,
+ 0x7f, 0x14, 0xa1, 0xce, 0x1b, 0x43, 0xea, 0xca, 0xcf, 0xef, 0xd3, 0x74, 0x38, 0xac, 0x86, 0xe0,
+ 0x9c, 0x22, 0x86, 0xd7, 0x57, 0x4c, 0x44, 0x1b, 0x95, 0xfd, 0x36, 0xf3, 0xa3, 0x41, 0x37, 0xf3,
+ 0x07, 0x02, 0x6d, 0xe6, 0x0f, 0x06, 0xde, 0xcc, 0x8f, 0xf5, 0xdd, 0xcc, 0x17, 0xef, 0x40, 0x12,
+ 0x0f, 0x7b, 0x7d, 0xb7, 0xd1, 0x53, 0x6f, 0x48, 0xf5, 0x5e, 0xbb, 0xab, 0xa1, 0x15, 0x18, 0x68,
+ 0x6e, 0x49, 0xfa, 0xc1, 0xb1, 0x40, 0xcb, 0x7c, 0xae, 0x7e, 0x85, 0x54, 0x16, 0x7f, 0x90, 0xad,
+ 0xf1, 0xb9, 0x1c, 0xf4, 0x1a, 0x8b, 0xbc, 0xd1, 0x45, 0xfe, 0x79, 0xdf, 0x30, 0xcd, 0x96, 0xc4,
+ 0x85, 0xdc, 0x3e, 0x68, 0xdd, 0x16, 0xf6, 0x5d, 0x10, 0xaf, 0xdf, 0xc8, 0xf1, 0xbb, 0xc2, 0xe2,
+ 0x5b, 0x30, 0x5e, 0x66, 0xfb, 0x36, 0xbe, 0xb3, 0x7b, 0x8e, 0x3b, 0xe2, 0x60, 0xd3, 0x83, 0xfc,
+ 0x21, 0x87, 0x6f, 0x83, 0x53, 0x55, 0xa5, 0xa7, 0xb7, 0xba, 0xd1, 0xee, 0xa9, 0x5b, 0xec, 0xd0,
+ 0x97, 0x6f, 0x0f, 0x79, 0x4b, 0x10, 0xf2, 0x8a, 0xdf, 0x60, 0xf8, 0xb6, 0x4d, 0x9a, 0x88, 0x2b,
+ 0x80, 0x8a, 0x2d, 0xb5, 0xa7, 0x4a, 0x8d, 0x75, 0xce, 0x97, 0xf0, 0xec, 0xd4, 0xd5, 0xb5, 0x12,
+ 0xb7, 0x20, 0x59, 0xea, 0x6e, 0x17, 0xa5, 0x66, 0xb9, 0xdd, 0x50, 0xeb, 0x34, 0x66, 0xfa, 0x0a,
+ 0xcc, 0x11, 0xdf, 0x96, 0x2e, 0x2b, 0x9a, 0xbb, 0x5a, 0xaf, 0x76, 0x57, 0xa9, 0xc9, 0xed, 0xa6,
+ 0xa4, 0xb6, 0xd8, 0xd1, 0xab, 0x69, 0x5c, 0x80, 0xac, 0x2d, 0xd6, 0x77, 0xb5, 0xde, 0xb2, 0x92,
+ 0x27, 0x99, 0x58, 0xfd, 0xc8, 0xca, 0x96, 0xb4, 0xdb, 0xa0, 0x31, 0x8f, 0x78, 0x45, 0xff, 0x29,
+ 0x2e, 0x91, 0x7e, 0xe8, 0xa9, 0x90, 0x80, 0xc7, 0x41, 0xc4, 0xef, 0x88, 0x40, 0xb4, 0xd4, 0xdd,
+ 0x76, 0x28, 0xb9, 0xb0, 0xcc, 0x50, 0xea, 0x6e, 0x1f, 0xa3, 0x23, 0x02, 0xfa, 0x7e, 0xcc, 0x20,
+ 0xb7, 0x1f, 0xc3, 0x2b, 0xc8, 0x98, 0x55, 0x41, 0x8a, 0x9f, 0x88, 0xc0, 0x50, 0xa9, 0xbb, 0xed,
+ 0xaa, 0xee, 0xbf, 0xbe, 0x28, 0x71, 0x11, 0x62, 0x8c, 0xcf, 0x4e, 0x43, 0x8c, 0x63, 0x47, 0x3e,
+ 0x06, 0x4d, 0x93, 0xc5, 0xef, 0x8d, 0xc0, 0x70, 0xa9, 0xbb, 0xcd, 0x8a, 0x4f, 0x43, 0xcc, 0x72,
+ 0x12, 0x79, 0xb0, 0x4d, 0xce, 0x20, 0x1f, 0x78, 0x3b, 0xc6, 0x36, 0xfa, 0x68, 0xa8, 0xd1, 0xcf,
+ 0x18, 0x63, 0xa0, 0xf6, 0x96, 0xfd, 0xc2, 0x14, 0x30, 0x3c, 0x2b, 0x7a, 0xbc, 0xd7, 0xf8, 0x8d,
+ 0xe5, 0xab, 0xd3, 0x55, 0x9b, 0x52, 0x77, 0x8f, 0x10, 0x27, 0x5e, 0xd1, 0x7f, 0xf6, 0x33, 0xb1,
+ 0xe2, 0xff, 0x8c, 0xc0, 0xa8, 0x41, 0x0c, 0xc2, 0x47, 0x5f, 0xdf, 0x04, 0x41, 0xdf, 0x0c, 0xe3,
+ 0xec, 0xfc, 0x3c, 0x1e, 0x29, 0x51, 0xc5, 0x71, 0x22, 0x40, 0x2f, 0x07, 0x10, 0x20, 0x46, 0x46,
+ 0xa3, 0x3e, 0xd1, 0xc8, 0x63, 0xf7, 0x2d, 0xbf, 0xc5, 0xeb, 0x30, 0x99, 0x93, 0x65, 0xa3, 0xb4,
+ 0xae, 0xf1, 0x44, 0x1b, 0xdf, 0xf2, 0x3a, 0x4f, 0x67, 0xdd, 0x4f, 0x0b, 0x90, 0x76, 0xe9, 0x26,
+ 0x44, 0x13, 0xe8, 0xb6, 0xc5, 0xbe, 0xec, 0x77, 0x50, 0xf6, 0xdd, 0x52, 0xb1, 0x00, 0xf3, 0xae,
+ 0xc0, 0x58, 0x18, 0x7c, 0x0a, 0x06, 0x7b, 0xed, 0x7b, 0x4a, 0x4b, 0xe7, 0x29, 0xf2, 0x03, 0x25,
+ 0x21, 0xba, 0xdb, 0xd5, 0x8d, 0x0e, 0xfe, 0x57, 0xfc, 0x20, 0xa4, 0x58, 0x6d, 0x65, 0x5f, 0x04,
+ 0x7a, 0x15, 0x66, 0xcb, 0x74, 0x92, 0x1d, 0xd5, 0x7d, 0xf5, 0xc2, 0x75, 0x98, 0xa9, 0x28, 0xcd,
+ 0xf6, 0x7d, 0x25, 0x7c, 0xd5, 0xcf, 0x45, 0x60, 0xd6, 0xa8, 0x75, 0xd8, 0x3b, 0x00, 0x05, 0xdb,
+ 0x0e, 0xc0, 0xe5, 0xe0, 0x73, 0xf8, 0x74, 0xb7, 0x01, 0xfe, 0xbe, 0x00, 0x33, 0x0e, 0x2a, 0xed,
+ 0x67, 0x67, 0x6b, 0xc3, 0xdc, 0x71, 0x8a, 0x12, 0x12, 0xbc, 0x18, 0x98, 0x04, 0xae, 0xdb, 0x4e,
+ 0xbf, 0x25, 0xc0, 0x94, 0x5b, 0x09, 0xb4, 0xc1, 0xef, 0x3d, 0x2d, 0x85, 0xec, 0xe4, 0x88, 0x37,
+ 0xa0, 0x9e, 0x83, 0xb1, 0x52, 0x77, 0x7b, 0x5d, 0x69, 0xde, 0x55, 0xba, 0x95, 0x76, 0x43, 0xd1,
+ 0x70, 0xb9, 0x2e, 0xfe, 0x87, 0xf8, 0xeb, 0xc3, 0x15, 0xfa, 0x43, 0xfc, 0x63, 0x81, 0x98, 0x3f,
+ 0x5a, 0x10, 0xcd, 0xda, 0x36, 0xd6, 0x8d, 0xfd, 0x74, 0xa3, 0x72, 0x84, 0xab, 0x7c, 0x30, 0x25,
+ 0x7e, 0xe0, 0xfd, 0xef, 0x3e, 0xf1, 0x14, 0x71, 0x5d, 0xd7, 0xaa, 0x8c, 0x02, 0x81, 0x0f, 0x0e,
+ 0xb8, 0x0e, 0x54, 0x2c, 0xc3, 0x0c, 0x3d, 0xc4, 0xf5, 0xc4, 0x5a, 0x7c, 0x95, 0x53, 0x2f, 0x21,
+ 0x5b, 0xd4, 0xf5, 0x0b, 0xad, 0x76, 0x1c, 0xf5, 0x0b, 0x45, 0xf6, 0x94, 0xf5, 0xcb, 0x5f, 0x51,
+ 0x5f, 0xc6, 0xc4, 0xf2, 0x9e, 0xe1, 0xee, 0xfe, 0xa7, 0xba, 0xdd, 0x0f, 0x75, 0x5a, 0xf7, 0xea,
+ 0xe2, 0x7d, 0xf7, 0xea, 0x86, 0x7d, 0xce, 0x1e, 0x82, 0x63, 0x3b, 0x4e, 0x57, 0xe6, 0x56, 0x96,
+ 0x3c, 0x32, 0x65, 0xce, 0x77, 0xeb, 0xae, 0xcc, 0x1d, 0x25, 0xc2, 0x2b, 0x73, 0xbe, 0x89, 0x23,
+ 0x56, 0xe6, 0x3f, 0x21, 0xc0, 0x14, 0xfb, 0xb0, 0x2b, 0xd4, 0xba, 0x18, 0xbd, 0x08, 0x33, 0xfa,
+ 0x87, 0x63, 0x98, 0xa7, 0x6b, 0x92, 0xa6, 0x29, 0x5d, 0xe3, 0xd4, 0x5d, 0xbc, 0x32, 0xc5, 0x72,
+ 0xb1, 0x85, 0xc8, 0xe9, 0x79, 0xe8, 0x12, 0x91, 0x55, 0xb3, 0x56, 0x7d, 0x47, 0xa9, 0xdf, 0x63,
+ 0xb1, 0xdb, 0x24, 0x57, 0x63, 0x05, 0xa7, 0x8b, 0xbf, 0x6c, 0x82, 0xa3, 0xf1, 0x31, 0xdf, 0xf8,
+ 0xc2, 0x29, 0xfe, 0x9c, 0x61, 0x28, 0xd4, 0xd1, 0xd0, 0xa8, 0x07, 0x3c, 0x50, 0xff, 0x74, 0x04,
+ 0xa6, 0x19, 0xea, 0xc3, 0xd6, 0xa0, 0x2b, 0x36, 0x0d, 0xea, 0x7b, 0x6e, 0x9d, 0xe1, 0x7a, 0xca,
+ 0xfa, 0xf3, 0x67, 0xa3, 0x90, 0xe0, 0x90, 0x60, 0x0d, 0xc2, 0x7d, 0x84, 0xc8, 0xce, 0xc5, 0x1b,
+ 0xdf, 0x1e, 0xba, 0x1e, 0x1e, 0x5d, 0xd6, 0x83, 0x0e, 0x01, 0x3f, 0xc7, 0xd5, 0x27, 0x84, 0x0f,
+ 0x3c, 0x1c, 0x28, 0x6e, 0x70, 0xe0, 0x6d, 0x3c, 0xe7, 0xb7, 0x0f, 0x31, 0xb7, 0x6f, 0x1f, 0xfa,
+ 0x2d, 0x21, 0xbd, 0xb9, 0x39, 0x1e, 0x9a, 0x9b, 0x87, 0x3d, 0xb8, 0xf9, 0x93, 0xa6, 0x0c, 0x1e,
+ 0x44, 0xf9, 0xae, 0xd9, 0x95, 0xef, 0x52, 0xd0, 0x19, 0x73, 0x53, 0xbd, 0xbf, 0x21, 0x00, 0x72,
+ 0xe6, 0xa3, 0x35, 0x5e, 0xf1, 0x5e, 0x09, 0xd5, 0xc1, 0x11, 0xab, 0xdd, 0x12, 0xc4, 0x59, 0xf7,
+ 0x1a, 0x5a, 0x81, 0x38, 0xa3, 0xba, 0x1e, 0xf0, 0x3e, 0x1f, 0x10, 0x7a, 0xc5, 0xa8, 0x28, 0xfe,
+ 0x75, 0x04, 0x86, 0x58, 0xaa, 0x23, 0x40, 0xf7, 0xde, 0x94, 0x9f, 0x3e, 0x41, 0xba, 0x3e, 0x82,
+ 0x31, 0x14, 0x5a, 0x30, 0xe2, 0x1e, 0x82, 0x91, 0x31, 0x58, 0xd0, 0x7f, 0x29, 0xf4, 0xa7, 0x02,
+ 0x8c, 0x5a, 0x0a, 0xbf, 0x77, 0x96, 0x43, 0x75, 0x48, 0x5a, 0x46, 0x96, 0x93, 0x65, 0x6f, 0xf3,
+ 0xcc, 0x2d, 0x40, 0x22, 0x3e, 0x4b, 0x9a, 0x28, 0x4f, 0xbf, 0x2d, 0x98, 0xb4, 0x74, 0xc2, 0xbe,
+ 0xf3, 0x7f, 0xe2, 0xfd, 0x94, 0x6d, 0xfd, 0xd0, 0x75, 0xd4, 0x01, 0xfa, 0x11, 0x7b, 0x30, 0x56,
+ 0xe6, 0x78, 0xad, 0x1f, 0x71, 0x92, 0x54, 0x7b, 0xb1, 0x20, 0x15, 0xd6, 0x40, 0x01, 0xbe, 0xf9,
+ 0x9a, 0x82, 0xc1, 0xed, 0x6e, 0x7b, 0xb7, 0xc3, 0xc2, 0x95, 0xf4, 0x87, 0xf8, 0xc8, 0xd4, 0x8f,
+ 0xac, 0xdb, 0xe5, 0xdd, 0xc6, 0x3d, 0xef, 0xae, 0xab, 0x30, 0xca, 0x73, 0x3e, 0x65, 0xbe, 0x00,
+ 0xc7, 0x98, 0xad, 0x7d, 0x54, 0x46, 0x38, 0x21, 0xd1, 0xc4, 0xbf, 0x23, 0xc0, 0x44, 0x99, 0x97,
+ 0x9a, 0xfe, 0x73, 0x36, 0xc7, 0x0d, 0xdf, 0xcc, 0x39, 0x18, 0x1d, 0x7e, 0x38, 0x62, 0x38, 0x1a,
+ 0x18, 0x82, 0x9f, 0xa3, 0xb1, 0xaf, 0x19, 0x38, 0xb0, 0x74, 0xd9, 0x64, 0x7b, 0x30, 0x94, 0x6c,
+ 0x1b, 0xe3, 0x8e, 0x71, 0xe3, 0xee, 0x1b, 0x88, 0xff, 0x53, 0x01, 0xc6, 0x39, 0x9a, 0x04, 0x71,
+ 0xc0, 0x9e, 0x0e, 0x5d, 0xc2, 0x0f, 0x6d, 0xd5, 0xc2, 0x70, 0x7e, 0xc2, 0xeb, 0xcd, 0x70, 0xe2,
+ 0x17, 0x22, 0x30, 0xc7, 0xb5, 0x74, 0xd8, 0x6e, 0xfc, 0xaa, 0xcd, 0x8d, 0xcf, 0x86, 0x90, 0xbb,
+ 0xa7, 0xec, 0xca, 0xff, 0x96, 0x00, 0x29, 0x17, 0x4a, 0x51, 0x17, 0xf1, 0x39, 0x27, 0x5b, 0xb9,
+ 0x5d, 0x2e, 0x12, 0xee, 0xa2, 0x17, 0x54, 0x36, 0x5d, 0x49, 0x4a, 0xae, 0x97, 0x42, 0x90, 0xcb,
+ 0xd5, 0x9d, 0xfc, 0x5d, 0x01, 0x66, 0xdc, 0xcb, 0xa0, 0x32, 0xef, 0x52, 0xbe, 0x18, 0xba, 0xa3,
+ 0x23, 0x76, 0x2b, 0xff, 0x47, 0xc4, 0x90, 0x80, 0x20, 0xc1, 0xa9, 0x79, 0xc7, 0xf9, 0x51, 0xb7,
+ 0x60, 0x4f, 0xd4, 0x3b, 0xd8, 0x33, 0xd0, 0x37, 0xd8, 0x33, 0x68, 0x0b, 0xf6, 0x18, 0x36, 0x37,
+ 0xd6, 0xc7, 0xb5, 0x19, 0x3a, 0x98, 0x6b, 0x13, 0x3f, 0x80, 0x6b, 0x03, 0x36, 0x2f, 0xd2, 0xae,
+ 0xe4, 0x12, 0xce, 0xe0, 0xd4, 0xcf, 0x47, 0x60, 0xde, 0x42, 0xf0, 0xc3, 0x56, 0x15, 0x45, 0x9b,
+ 0xaa, 0xb8, 0x1a, 0x90, 0x25, 0x8f, 0x45, 0xdc, 0xf4, 0x77, 0x05, 0x48, 0xbb, 0x52, 0xeb, 0x30,
+ 0xd5, 0x45, 0xc5, 0xae, 0x2e, 0x5e, 0x09, 0x45, 0x32, 0x57, 0x85, 0xf1, 0x07, 0xa6, 0xd6, 0x73,
+ 0x86, 0xff, 0x2a, 0xbc, 0xca, 0x78, 0x69, 0x1f, 0x9d, 0x1d, 0xb1, 0xd2, 0xf8, 0xaf, 0x11, 0x48,
+ 0x70, 0xb7, 0x45, 0x1d, 0xf8, 0x7c, 0x47, 0xae, 0xd3, 0x39, 0xe6, 0xe7, 0x3b, 0xd6, 0x21, 0xd1,
+ 0x56, 0xe5, 0x7a, 0xad, 0xde, 0x6e, 0x6d, 0xa9, 0xdb, 0x4c, 0x67, 0x64, 0x7c, 0x03, 0xb5, 0xc5,
+ 0xfc, 0xca, 0x0a, 0xa9, 0x71, 0xf3, 0x99, 0x0a, 0xe0, 0x06, 0xe8, 0x2f, 0x8b, 0x0e, 0x19, 0xb6,
+ 0xea, 0x90, 0xe5, 0x11, 0x00, 0xa9, 0xd3, 0x61, 0x3d, 0x89, 0x3d, 0x98, 0xe0, 0x28, 0x4d, 0x63,
+ 0x9a, 0x81, 0xd9, 0x9e, 0x3a, 0x32, 0x11, 0xef, 0xa0, 0xe7, 0xa0, 0xc7, 0x11, 0xa6, 0xdf, 0x1b,
+ 0x02, 0x30, 0xc1, 0xa3, 0x67, 0x61, 0xb4, 0xab, 0xc8, 0x6a, 0x17, 0x77, 0xb8, 0xdb, 0x55, 0xf5,
+ 0xa5, 0xea, 0x88, 0x9e, 0x78, 0xbb, 0xab, 0x6a, 0xe8, 0x0e, 0x89, 0x4e, 0x11, 0x25, 0x46, 0xce,
+ 0x26, 0xd0, 0x25, 0x41, 0x80, 0xa8, 0x0a, 0xee, 0x48, 0x57, 0x7f, 0xe4, 0x54, 0xc2, 0x68, 0x97,
+ 0xfb, 0xa5, 0xa1, 0x0d, 0x48, 0x6c, 0x77, 0x25, 0x76, 0xbd, 0x1a, 0x5d, 0x7e, 0x05, 0xf8, 0xda,
+ 0x0e, 0xb7, 0xba, 0x8a, 0xab, 0x91, 0x26, 0x61, 0x5b, 0xff, 0x57, 0x43, 0xdf, 0x04, 0x49, 0xc9,
+ 0x24, 0x69, 0x8d, 0xfb, 0xfa, 0xf8, 0x85, 0x20, 0x8d, 0x72, 0xd3, 0x41, 0x9a, 0x1e, 0x97, 0xac,
+ 0x09, 0xd8, 0xa2, 0xd5, 0x1b, 0xaa, 0xd2, 0x22, 0x93, 0xc3, 0x2c, 0x1a, 0x4d, 0x28, 0xca, 0x98,
+ 0x94, 0x2c, 0x53, 0x53, 0xea, 0x5d, 0xa5, 0xc7, 0x5c, 0xd5, 0x11, 0x9a, 0x58, 0x25, 0x69, 0xe8,
+ 0x6f, 0x41, 0x52, 0xda, 0xed, 0xed, 0xd4, 0xa8, 0x10, 0x52, 0x84, 0x43, 0x01, 0xf7, 0x06, 0x30,
+ 0xc2, 0xdd, 0x1e, 0x93, 0x63, 0x7a, 0xc8, 0x43, 0xb2, 0xfc, 0x46, 0xd7, 0x61, 0xae, 0xd3, 0xa6,
+ 0xb7, 0xaf, 0xb4, 0x77, 0x7b, 0x35, 0xeb, 0xcc, 0xc6, 0xc9, 0xcc, 0xce, 0xe0, 0x02, 0x6b, 0x24,
+ 0xbf, 0xc2, 0xcf, 0x71, 0x01, 0x86, 0xee, 0x2b, 0x5d, 0x4d, 0x6d, 0xb7, 0x08, 0xdb, 0x8e, 0xf9,
+ 0x87, 0x8f, 0x31, 0x9e, 0xb7, 0x69, 0x95, 0x8a, 0x5e, 0x17, 0x9d, 0x83, 0xb1, 0x56, 0xbb, 0xa5,
+ 0xd4, 0xea, 0xed, 0x66, 0xa7, 0xa1, 0x4a, 0xad, 0x1e, 0xbb, 0x8f, 0x63, 0x14, 0xa7, 0xae, 0xe8,
+ 0x89, 0xe8, 0x6d, 0x98, 0xd4, 0x4b, 0xd4, 0x95, 0x5a, 0xa7, 0xdb, 0xbe, 0xdb, 0x50, 0x9a, 0xf4,
+ 0xab, 0xa2, 0xc0, 0x17, 0xec, 0x21, 0xb3, 0x85, 0x32, 0x6b, 0x00, 0xcd, 0x41, 0x5c, 0x56, 0xee,
+ 0xd7, 0x9a, 0xfa, 0x3d, 0x54, 0xe4, 0xbc, 0xdf, 0xfd, 0xf5, 0xb6, 0xac, 0xa0, 0x77, 0x60, 0x42,
+ 0xaa, 0x63, 0x33, 0x56, 0x23, 0xc7, 0x40, 0x28, 0xe9, 0x47, 0x83, 0x7d, 0xdf, 0x89, 0x87, 0xba,
+ 0x89, 0x6b, 0x31, 0xb6, 0x20, 0xed, 0x18, 0x09, 0xe8, 0x03, 0x30, 0x6f, 0x69, 0xda, 0x16, 0x66,
+ 0x1a, 0x23, 0x40, 0x52, 0x5c, 0x2d, 0x6b, 0xa8, 0xe9, 0x1a, 0xcc, 0xaa, 0xb2, 0x7b, 0xd5, 0x71,
+ 0x1a, 0xa1, 0x52, 0x65, 0x67, 0x35, 0xf1, 0xdf, 0xc5, 0x60, 0xda, 0xc6, 0xb5, 0x74, 0xd7, 0x26,
+ 0xb0, 0x12, 0xf1, 0xdb, 0x20, 0x71, 0x28, 0x87, 0x68, 0x20, 0xe5, 0x30, 0x70, 0x28, 0xca, 0x61,
+ 0xf0, 0x30, 0x94, 0x43, 0xec, 0x09, 0x2a, 0x87, 0xf7, 0xba, 0x68, 0xf3, 0xb2, 0x05, 0x01, 0x64,
+ 0x2b, 0x71, 0x14, 0xb2, 0x35, 0xb2, 0x7f, 0xd9, 0x1a, 0xed, 0x23, 0x5b, 0x3f, 0x15, 0x83, 0xa4,
+ 0x69, 0x25, 0x43, 0xda, 0xe6, 0x45, 0x18, 0xe3, 0x19, 0xcd, 0x69, 0xa7, 0x47, 0xb9, 0x6c, 0x6a,
+ 0x38, 0xde, 0x17, 0xb3, 0xaf, 0x7d, 0x31, 0xe3, 0xe5, 0x63, 0x38, 0x80, 0x7c, 0xc0, 0x51, 0xc8,
+ 0x47, 0x62, 0xff, 0xf2, 0x31, 0xd2, 0x47, 0x3e, 0x5e, 0x80, 0x91, 0x15, 0xde, 0xad, 0x71, 0xf8,
+ 0x3e, 0x82, 0xd3, 0xf7, 0x11, 0xff, 0x7b, 0x04, 0xc6, 0xb9, 0xe9, 0x7d, 0x22, 0xe7, 0xc7, 0xdf,
+ 0x5f, 0x5f, 0x78, 0xae, 0x2f, 0xbe, 0x10, 0x81, 0x39, 0x8e, 0xdc, 0xc7, 0x2e, 0x6e, 0x69, 0x63,
+ 0x85, 0xa7, 0x1c, 0xb7, 0x74, 0xa1, 0xd4, 0xf1, 0x8a, 0x5b, 0x3a, 0x00, 0xba, 0xc4, 0x2d, 0xdd,
+ 0xcb, 0x84, 0x8c, 0x5b, 0x3a, 0x1a, 0x39, 0xe2, 0x10, 0xc4, 0x7f, 0x8e, 0xc0, 0x08, 0x0b, 0x84,
+ 0x10, 0x0b, 0xe3, 0x76, 0x1f, 0x84, 0xe3, 0x96, 0x76, 0x6e, 0x22, 0xce, 0xc2, 0x18, 0x31, 0x47,
+ 0x8a, 0xac, 0xdf, 0xf6, 0x4e, 0x9b, 0x1f, 0x61, 0xa9, 0xf4, 0xba, 0xf7, 0x79, 0x18, 0x26, 0xfa,
+ 0xee, 0x9e, 0xb2, 0x47, 0xa7, 0x60, 0xb8, 0x12, 0xc7, 0x09, 0xb7, 0x94, 0x3d, 0x0d, 0xad, 0xea,
+ 0x5a, 0x88, 0xde, 0xfa, 0x1b, 0x34, 0xae, 0x46, 0xe0, 0xf6, 0x57, 0x47, 0x47, 0xf9, 0xbd, 0x6d,
+ 0x3f, 0x5d, 0x21, 0x7e, 0x8f, 0xb9, 0x2b, 0x48, 0x60, 0x87, 0x5c, 0x3a, 0x5c, 0x76, 0x10, 0xd9,
+ 0xe6, 0xe3, 0xf4, 0xa1, 0x76, 0xd4, 0x4a, 0x6d, 0xb1, 0x6b, 0x45, 0xf2, 0xa4, 0x22, 0x21, 0x7d,
+ 0xfb, 0x7c, 0xcb, 0xd8, 0x8a, 0x25, 0x7d, 0x16, 0xf3, 0x07, 0xee, 0x4f, 0xfc, 0xbe, 0x01, 0x63,
+ 0xf7, 0x9b, 0xb4, 0xe9, 0x75, 0x97, 0xc9, 0xc1, 0x79, 0xf7, 0x02, 0x24, 0xf9, 0x52, 0x5c, 0xf4,
+ 0x7d, 0xcc, 0x2c, 0xa7, 0x87, 0xe0, 0x4d, 0x1a, 0x0c, 0x7a, 0x71, 0x79, 0xec, 0x49, 0x73, 0xf9,
+ 0xd0, 0xc1, 0xb8, 0x3c, 0x1e, 0x8a, 0xcb, 0xcf, 0x80, 0xbe, 0xd5, 0xcc, 0x1f, 0x2b, 0x4d, 0xb0,
+ 0xb4, 0x0d, 0xfb, 0x37, 0x5c, 0xf6, 0xc0, 0xbe, 0xf3, 0xe8, 0x55, 0xc2, 0xed, 0xe8, 0xd5, 0x22,
+ 0x4c, 0x5a, 0x8b, 0xf1, 0xb7, 0x9b, 0x4c, 0x58, 0xca, 0x92, 0xcd, 0x80, 0x9f, 0x8d, 0x18, 0xe1,
+ 0x6d, 0x4a, 0xb0, 0x43, 0x36, 0xbf, 0x37, 0x6d, 0xe6, 0xf7, 0x4a, 0x98, 0xd9, 0x7c, 0xca, 0xf6,
+ 0xf7, 0xc7, 0x05, 0x98, 0x5f, 0xa5, 0x8c, 0x7b, 0xec, 0x4e, 0x97, 0xfd, 0x8e, 0x60, 0xec, 0xfe,
+ 0x5a, 0xe6, 0xf1, 0x30, 0x9d, 0x83, 0xb7, 0xec, 0xce, 0xc1, 0xcb, 0xa1, 0x44, 0xd3, 0x6d, 0x18,
+ 0xbf, 0x2f, 0xc0, 0xac, 0x47, 0x21, 0xf4, 0x16, 0xef, 0x1e, 0x5c, 0x0b, 0xdf, 0xd5, 0x11, 0xfb,
+ 0x07, 0x59, 0xeb, 0x48, 0xfc, 0x0f, 0x5c, 0xfd, 0xb9, 0xcd, 0xd4, 0xbd, 0xd7, 0x4e, 0x5d, 0xfd,
+ 0xa4, 0x60, 0x9c, 0x31, 0xe6, 0xc6, 0x97, 0x93, 0xe5, 0xc0, 0xec, 0x29, 0x42, 0x9c, 0xc6, 0x00,
+ 0x9c, 0x96, 0x6d, 0x88, 0x64, 0x14, 0x2d, 0xc7, 0x9b, 0xa2, 0x3e, 0xc7, 0xa8, 0x06, 0x78, 0xea,
+ 0x7f, 0xd6, 0xdc, 0x1e, 0xe3, 0xd0, 0xb1, 0x03, 0x40, 0xc7, 0x01, 0xe0, 0xf7, 0xb8, 0x02, 0x64,
+ 0x07, 0x46, 0x8e, 0x14, 0xa0, 0xf8, 0xbf, 0x23, 0xc6, 0xd9, 0x03, 0x0e, 0xca, 0xfb, 0xfb, 0xf6,
+ 0x21, 0x84, 0x63, 0xd8, 0x67, 0xdf, 0xde, 0xe5, 0xa3, 0x92, 0xc7, 0x11, 0x58, 0x70, 0x52, 0xfd,
+ 0xb0, 0x0d, 0xf6, 0x86, 0xcd, 0x60, 0xbf, 0x14, 0x46, 0xf1, 0x1e, 0x8b, 0x1d, 0xfc, 0xbf, 0x11,
+ 0xe0, 0xb4, 0x37, 0xdd, 0xc2, 0x19, 0xc8, 0x20, 0xf2, 0x63, 0x4e, 0x41, 0xd4, 0x7d, 0x0a, 0x06,
+ 0xf8, 0x29, 0xb8, 0x63, 0xbf, 0x20, 0xf4, 0x03, 0xe1, 0x09, 0xec, 0x6a, 0x4a, 0xff, 0x58, 0x80,
+ 0x93, 0x7d, 0x8b, 0xa2, 0x3b, 0xbc, 0x41, 0x7d, 0x6d, 0xbf, 0xdd, 0x1e, 0xb1, 0x59, 0x7d, 0x14,
+ 0xa5, 0x97, 0x72, 0xb9, 0xaf, 0xb9, 0x67, 0x6d, 0x87, 0x5b, 0x0d, 0xf5, 0x63, 0x7e, 0xb8, 0x1f,
+ 0xe5, 0x3f, 0xdc, 0xb7, 0xae, 0x73, 0x06, 0xec, 0xeb, 0x9c, 0xbe, 0xeb, 0x92, 0xbc, 0x75, 0x5d,
+ 0xb2, 0x18, 0xe4, 0xc6, 0x97, 0xe3, 0xb6, 0x28, 0xe9, 0xa7, 0x92, 0xe6, 0x38, 0x5e, 0xa7, 0xea,
+ 0x48, 0x67, 0x71, 0xf1, 0x53, 0xec, 0x9a, 0x1a, 0x7e, 0x49, 0xee, 0xff, 0xe9, 0x67, 0xc0, 0x77,
+ 0xbb, 0xfa, 0xae, 0x88, 0x2d, 0xa8, 0x06, 0xac, 0xa8, 0x54, 0x0e, 0x14, 0x5b, 0x9d, 0xfb, 0x83,
+ 0xda, 0xdf, 0xba, 0xfc, 0x2a, 0x4c, 0x1a, 0x5d, 0x51, 0x13, 0x4c, 0x0e, 0x2b, 0xa7, 0x21, 0xaa,
+ 0xca, 0xcc, 0xad, 0x23, 0x42, 0xf1, 0x49, 0x21, 0x12, 0x17, 0x2a, 0x38, 0x51, 0xbc, 0x49, 0x2f,
+ 0xf5, 0xd2, 0xd7, 0xf1, 0xfb, 0x47, 0x26, 0x7e, 0x66, 0x90, 0xde, 0xce, 0xe6, 0xbd, 0x7c, 0x7f,
+ 0x5f, 0x0c, 0xc2, 0x89, 0x81, 0xc5, 0x39, 0x19, 0xb6, 0x39, 0x27, 0x56, 0x37, 0x04, 0xfa, 0xba,
+ 0x21, 0x09, 0xa7, 0x1b, 0x42, 0x1d, 0x9b, 0x11, 0xde, 0xb1, 0x99, 0x83, 0xb8, 0x11, 0x10, 0xa1,
+ 0x0f, 0x2e, 0x0c, 0xb5, 0x59, 0x24, 0xe4, 0x24, 0x00, 0xce, 0x62, 0x37, 0x2a, 0xd0, 0xe7, 0x16,
+ 0x86, 0xdb, 0xc6, 0x85, 0x2c, 0xf6, 0x20, 0xc2, 0x78, 0xff, 0x20, 0x42, 0xd2, 0x37, 0x88, 0x30,
+ 0xe1, 0x16, 0x44, 0xb0, 0x3b, 0x23, 0xc8, 0x79, 0x52, 0x9a, 0x17, 0xc3, 0x49, 0xab, 0x18, 0x7e,
+ 0x2e, 0x02, 0xb3, 0xe6, 0x24, 0x1f, 0xb7, 0xef, 0xb1, 0x2d, 0x82, 0xf3, 0x94, 0xef, 0x7b, 0x70,
+ 0x50, 0xe9, 0x68, 0x3e, 0x11, 0xb6, 0x75, 0x6b, 0xf3, 0x1b, 0xfe, 0x95, 0x00, 0x53, 0x6e, 0x25,
+ 0x42, 0x7e, 0x22, 0x6c, 0x6b, 0xc2, 0xc5, 0x4b, 0xd8, 0x38, 0x88, 0x97, 0xa0, 0x37, 0x96, 0x7a,
+ 0xc6, 0xc7, 0x5f, 0xf8, 0x85, 0x08, 0x9c, 0x20, 0x37, 0xaa, 0x11, 0x97, 0x45, 0xdb, 0x51, 0x3b,
+ 0x87, 0xcd, 0x92, 0x1f, 0xb2, 0xb1, 0x64, 0x20, 0x52, 0x99, 0xf0, 0x9e, 0xfe, 0x26, 0xd3, 0xbc,
+ 0x3b, 0xbd, 0x82, 0xde, 0xf0, 0x10, 0x2e, 0x88, 0x54, 0xb5, 0x07, 0x91, 0xae, 0x87, 0x23, 0x97,
+ 0x2b, 0x0f, 0xff, 0x89, 0x00, 0x73, 0x9e, 0xc5, 0x50, 0x95, 0x67, 0xe4, 0x97, 0xf7, 0xd3, 0xdd,
+ 0x53, 0xe3, 0xe6, 0x5f, 0x89, 0xd2, 0x8b, 0xf4, 0xad, 0xec, 0xe2, 0xbd, 0xea, 0xbe, 0x05, 0x89,
+ 0x26, 0x29, 0x5a, 0xe3, 0xee, 0x35, 0xf2, 0xdd, 0xd5, 0xa5, 0xad, 0xd3, 0x23, 0x13, 0x4d, 0xe3,
+ 0x7f, 0xcc, 0xfb, 0xd2, 0xf6, 0x76, 0x57, 0xd9, 0x96, 0x7a, 0x8a, 0xe9, 0x42, 0x24, 0x8c, 0x34,
+ 0xea, 0x29, 0xb4, 0xef, 0x5a, 0xfd, 0x88, 0x38, 0x4d, 0xe0, 0xe3, 0x1a, 0x83, 0xfc, 0x9a, 0xdc,
+ 0x6e, 0x6c, 0x62, 0x01, 0x3e, 0xcb, 0x39, 0x36, 0x3e, 0xb2, 0xd3, 0xa0, 0x82, 0x8b, 0x41, 0x15,
+ 0x17, 0x60, 0xb0, 0x28, 0x77, 0xfa, 0x3d, 0x31, 0xfb, 0xc5, 0x28, 0x44, 0x8b, 0x72, 0xe7, 0xc0,
+ 0x07, 0x0d, 0x8a, 0xf2, 0x71, 0x3f, 0x68, 0xf0, 0x16, 0x8c, 0x68, 0xbd, 0xbd, 0x86, 0xda, 0xda,
+ 0xe6, 0x0f, 0xdd, 0x2c, 0x06, 0x1a, 0x18, 0xa9, 0x46, 0xf8, 0x32, 0xa1, 0x99, 0x3f, 0x50, 0xd9,
+ 0x7a, 0x76, 0x21, 0xe0, 0xfb, 0x8d, 0x25, 0x55, 0xae, 0x17, 0xe5, 0x8e, 0xef, 0xf1, 0x85, 0xb8,
+ 0xf3, 0xf8, 0x82, 0x2a, 0x1b, 0xc7, 0x17, 0x3e, 0x2d, 0xc0, 0x70, 0x51, 0xee, 0xb0, 0xf5, 0xc6,
+ 0xbe, 0x2f, 0x79, 0xb0, 0x53, 0x25, 0x7a, 0x60, 0xaa, 0x88, 0xff, 0x22, 0x02, 0xa3, 0x96, 0x31,
+ 0x5a, 0xcf, 0x05, 0x0b, 0x7e, 0xe7, 0x82, 0x23, 0x2e, 0xe7, 0x82, 0xcd, 0x07, 0xcf, 0xa3, 0x96,
+ 0x07, 0xcf, 0x67, 0x20, 0xa6, 0xd5, 0xdb, 0x1d, 0x23, 0x66, 0xc9, 0x7e, 0x21, 0x15, 0x52, 0x98,
+ 0x56, 0xbc, 0x80, 0xd7, 0x9a, 0x52, 0xa7, 0xa3, 0xb6, 0xb6, 0xd9, 0xa6, 0x75, 0xa0, 0x83, 0x61,
+ 0xeb, 0xb4, 0xca, 0x0d, 0x55, 0x69, 0xc8, 0x95, 0x69, 0x55, 0xee, 0xe4, 0x4d, 0xed, 0xc0, 0xf2,
+ 0xd0, 0x47, 0x20, 0x89, 0x95, 0x9e, 0xa5, 0x8b, 0xd8, 0x3e, 0xbb, 0x18, 0xd7, 0x5b, 0x62, 0xa9,
+ 0xe2, 0x5f, 0x46, 0x61, 0xd2, 0x42, 0x4b, 0xb6, 0xe8, 0xf5, 0xbb, 0x71, 0xc4, 0x3e, 0xad, 0x91,
+ 0x83, 0x33, 0xfb, 0x79, 0x7e, 0x12, 0x5d, 0x9e, 0x0d, 0x30, 0x26, 0x34, 0x6b, 0x9f, 0xd0, 0x01,
+ 0x47, 0x61, 0xeb, 0xe4, 0x8a, 0xc6, 0xe4, 0x3a, 0x4f, 0xe5, 0x3b, 0x27, 0x3a, 0x16, 0x78, 0xa2,
+ 0x87, 0x0e, 0x7f, 0xa2, 0xe3, 0x4f, 0x6a, 0xa2, 0x3f, 0x61, 0x9f, 0x68, 0x26, 0xd8, 0xa7, 0x20,
+ 0x86, 0xc7, 0xe7, 0x14, 0xee, 0x41, 0x55, 0xee, 0x14, 0x65, 0xeb, 0xac, 0x44, 0xfa, 0xcc, 0x8a,
+ 0x43, 0xcc, 0xa2, 0x2e, 0x62, 0x66, 0xce, 0xc4, 0x40, 0x80, 0x99, 0x18, 0x0c, 0x3c, 0x13, 0xb1,
+ 0xc3, 0x9f, 0x89, 0xa1, 0x27, 0x35, 0x13, 0x9f, 0x8e, 0xc0, 0x04, 0x96, 0x83, 0x43, 0xf6, 0xd6,
+ 0xdf, 0xb0, 0x79, 0xeb, 0xe7, 0x03, 0xc8, 0xe6, 0xd3, 0xde, 0x87, 0x1e, 0x80, 0x21, 0x86, 0xe2,
+ 0x7d, 0x7f, 0x61, 0x3f, 0x2a, 0x74, 0x93, 0x5c, 0x1d, 0x70, 0x5f, 0x95, 0x75, 0xbf, 0x98, 0x32,
+ 0x6d, 0x36, 0x40, 0x9b, 0x65, 0x56, 0x8f, 0x34, 0x3a, 0xd2, 0xe1, 0x7e, 0xa1, 0x4d, 0xb7, 0x13,
+ 0x94, 0x57, 0x43, 0x79, 0x21, 0xec, 0x6d, 0xde, 0xa0, 0x07, 0x29, 0x27, 0x60, 0xdc, 0xf4, 0x44,
+ 0x6a, 0x98, 0x49, 0xc4, 0x7f, 0x1c, 0x81, 0x09, 0x47, 0x93, 0xfd, 0x0d, 0xbf, 0x69, 0xd3, 0x23,
+ 0x1e, 0x36, 0x3d, 0x1a, 0x58, 0xc1, 0x0c, 0x1c, 0xbe, 0x82, 0x19, 0x7c, 0x52, 0x0a, 0xe6, 0x7b,
+ 0x05, 0x48, 0x72, 0x0a, 0x66, 0x3f, 0xb1, 0x97, 0x9b, 0xf6, 0xd8, 0x4b, 0x20, 0xb6, 0x74, 0x5b,
+ 0xb1, 0x7e, 0x51, 0x80, 0x31, 0x6b, 0x1e, 0xba, 0xc9, 0x2f, 0x53, 0x2f, 0x05, 0x6e, 0xf8, 0x88,
+ 0xf7, 0x63, 0x1e, 0x47, 0x20, 0x41, 0xee, 0x33, 0xa7, 0xf7, 0xa0, 0xa3, 0x97, 0x60, 0x56, 0x6a,
+ 0x34, 0xda, 0x0f, 0x6a, 0xc6, 0xc4, 0x19, 0x77, 0xc2, 0xb3, 0x1b, 0xd0, 0x49, 0xf6, 0x6d, 0x96,
+ 0xab, 0x5f, 0x03, 0x8f, 0x57, 0x52, 0xb4, 0x5e, 0x57, 0xd9, 0x56, 0xb5, 0x1e, 0xe3, 0xc6, 0x78,
+ 0x65, 0x94, 0xa4, 0x56, 0x58, 0x22, 0xba, 0x04, 0x88, 0x16, 0x53, 0x3e, 0xd6, 0xc3, 0x2d, 0x34,
+ 0x6a, 0xaa, 0xdc, 0xd1, 0x2f, 0x63, 0x23, 0x39, 0x05, 0x96, 0x81, 0x57, 0x53, 0x4f, 0xf7, 0x9e,
+ 0x8b, 0x79, 0x18, 0xde, 0x6a, 0xe3, 0x95, 0x61, 0x73, 0x4b, 0x62, 0xb7, 0x2c, 0xc7, 0x49, 0xc2,
+ 0xfa, 0x96, 0x44, 0xae, 0x83, 0xe2, 0xe8, 0xa6, 0xf3, 0xdf, 0xb1, 0x22, 0x9f, 0x65, 0x00, 0x03,
+ 0xb6, 0x01, 0xbc, 0x0e, 0xa3, 0x9c, 0x3e, 0x2c, 0xe6, 0xd1, 0xf3, 0x30, 0xca, 0x69, 0x23, 0xa7,
+ 0xa7, 0x94, 0x50, 0x75, 0x9d, 0x54, 0x94, 0xc5, 0x2f, 0x50, 0x7e, 0xd7, 0xab, 0xe7, 0x64, 0x19,
+ 0x2d, 0xba, 0xd7, 0xe7, 0x7d, 0x1f, 0xbe, 0x09, 0xa4, 0xc0, 0x04, 0x2e, 0x6f, 0xd5, 0xe4, 0x91,
+ 0x7d, 0x69, 0x72, 0x4e, 0x60, 0xb0, 0x46, 0xe5, 0xb3, 0xc4, 0x1f, 0x14, 0x20, 0xc1, 0x15, 0x47,
+ 0xa2, 0x2b, 0x4c, 0x2b, 0xb4, 0x8f, 0xd8, 0xa0, 0x6d, 0xee, 0x1f, 0x9a, 0x13, 0xd0, 0x97, 0x23,
+ 0x30, 0xce, 0x71, 0x0e, 0x51, 0xf0, 0xdc, 0xfb, 0x01, 0x82, 0xe5, 0xfd, 0x80, 0x7e, 0x0c, 0x15,
+ 0x09, 0xc7, 0x50, 0xd1, 0xe0, 0x0c, 0x35, 0x10, 0x54, 0x1e, 0x8f, 0xf2, 0x1d, 0x29, 0x2b, 0x3b,
+ 0x0f, 0xd9, 0xd8, 0xf9, 0xbb, 0x05, 0x18, 0xe7, 0x48, 0x4f, 0xa8, 0x1a, 0x64, 0xaa, 0xdd, 0x2e,
+ 0x2a, 0xd3, 0x5f, 0xec, 0x88, 0x06, 0x7b, 0xb1, 0xa3, 0x28, 0x77, 0xb8, 0xd7, 0x29, 0xbe, 0x10,
+ 0x81, 0x39, 0x0e, 0xc8, 0xb1, 0xfb, 0x1e, 0xc2, 0x46, 0xa4, 0xa7, 0xe8, 0x07, 0xdf, 0x84, 0x94,
+ 0x0b, 0xa1, 0xf6, 0x61, 0xc7, 0x45, 0x09, 0x52, 0x06, 0x9b, 0xe6, 0xcb, 0x07, 0xf1, 0x08, 0x66,
+ 0x6d, 0x87, 0xa7, 0x8c, 0x33, 0x53, 0x78, 0x5a, 0x5d, 0xfa, 0x38, 0x36, 0xd3, 0xca, 0x61, 0x7b,
+ 0xca, 0xd3, 0xfa, 0x87, 0x11, 0x18, 0xb7, 0xa1, 0xf1, 0x0e, 0x70, 0x3b, 0x44, 0x34, 0xe2, 0x14,
+ 0xd1, 0x0b, 0x90, 0x34, 0xb4, 0x93, 0x75, 0x72, 0xc6, 0xf4, 0xf4, 0xdb, 0xb4, 0xb5, 0x39, 0x88,
+ 0xe3, 0xd6, 0xb8, 0xf3, 0x66, 0x43, 0xaa, 0xdc, 0xd9, 0xa0, 0x32, 0x9d, 0xb6, 0x36, 0xe2, 0xf2,
+ 0x24, 0xe7, 0x2c, 0xdf, 0x5c, 0xbe, 0x5f, 0x00, 0xfb, 0x48, 0xdf, 0x33, 0xfb, 0x76, 0xc1, 0xc2,
+ 0xde, 0xf4, 0xbc, 0x82, 0x79, 0x2d, 0xed, 0x51, 0x50, 0x56, 0x6c, 0xc1, 0x64, 0x55, 0xa9, 0xb7,
+ 0x5b, 0x32, 0x7b, 0x2e, 0x89, 0xb1, 0xe9, 0x1d, 0x18, 0xd3, 0x48, 0x72, 0x6d, 0x8b, 0xa6, 0x93,
+ 0xb3, 0x13, 0x01, 0xdc, 0x7b, 0xbe, 0x31, 0xfa, 0xb9, 0xa8, 0xc6, 0x37, 0x2f, 0x2a, 0x30, 0xc2,
+ 0x17, 0x41, 0xb7, 0x61, 0xd4, 0xd2, 0x51, 0xd0, 0x0b, 0x37, 0x1d, 0xfd, 0x8c, 0xf0, 0xfd, 0x88,
+ 0xdf, 0x02, 0x88, 0x7f, 0x04, 0x8a, 0x8d, 0x6a, 0x13, 0x46, 0x9b, 0x38, 0xd5, 0x36, 0x28, 0x5f,
+ 0x19, 0xe4, 0x9a, 0xa2, 0x7d, 0x35, 0xb9, 0xb6, 0x45, 0x09, 0x12, 0xfc, 0xb3, 0x50, 0x15, 0x18,
+ 0xe1, 0x3b, 0x61, 0x03, 0x0a, 0xdd, 0x47, 0x82, 0xeb, 0x43, 0xfc, 0xb3, 0x08, 0xa4, 0x74, 0x0f,
+ 0x80, 0xdc, 0x82, 0xa0, 0x7c, 0x4c, 0xed, 0xed, 0x31, 0xcf, 0xfe, 0x24, 0x40, 0x53, 0x6d, 0xd5,
+ 0x1a, 0x4a, 0x6b, 0xbb, 0xb7, 0xc3, 0xf4, 0xd4, 0x70, 0x53, 0x6d, 0xad, 0x91, 0x04, 0xf4, 0x2c,
+ 0x8c, 0xee, 0x48, 0x5a, 0xad, 0xd1, 0x7e, 0xa0, 0x74, 0xeb, 0x92, 0xa6, 0x30, 0xf7, 0x62, 0x64,
+ 0x47, 0xd2, 0xd6, 0xf4, 0x34, 0xbd, 0xd0, 0x6e, 0xa7, 0xc3, 0x0a, 0x45, 0x8d, 0x42, 0xb7, 0xf5,
+ 0x34, 0xdc, 0x11, 0x2e, 0xd4, 0xda, 0x6d, 0xde, 0x65, 0x11, 0xb0, 0x78, 0x65, 0x78, 0x47, 0xd2,
+ 0x36, 0x48, 0x82, 0x9e, 0xad, 0xed, 0x35, 0xef, 0xb6, 0x1b, 0xec, 0x61, 0x13, 0x9c, 0x5d, 0x25,
+ 0x09, 0x7d, 0xef, 0xd8, 0x7c, 0xaa, 0x1b, 0x49, 0xe2, 0xef, 0x0b, 0x70, 0xda, 0x8b, 0xba, 0xba,
+ 0x38, 0x7e, 0x6d, 0x10, 0x59, 0xfc, 0x4a, 0x04, 0x4e, 0x78, 0x0d, 0xc5, 0xc7, 0x21, 0xb5, 0x8e,
+ 0x30, 0xe2, 0x3b, 0xc2, 0x68, 0x90, 0x11, 0x0e, 0xf8, 0x8e, 0x70, 0xb0, 0xff, 0x08, 0x63, 0xfd,
+ 0xd8, 0xe8, 0x78, 0x3d, 0xbd, 0xf7, 0x15, 0x01, 0x26, 0x74, 0xda, 0xe7, 0xb6, 0x15, 0x26, 0x9d,
+ 0x0b, 0x30, 0xd2, 0x94, 0x3e, 0x56, 0x93, 0x48, 0x9b, 0x7b, 0x1a, 0x63, 0x1d, 0x68, 0x4a, 0x1f,
+ 0xcb, 0xe1, 0x7a, 0x7b, 0x1a, 0x55, 0xd6, 0x1d, 0xb5, 0xab, 0xd4, 0x1e, 0x48, 0xdd, 0x16, 0x2d,
+ 0x45, 0xc9, 0x3f, 0x46, 0xd3, 0xef, 0x48, 0xdd, 0x16, 0x29, 0xc9, 0x8f, 0x3d, 0xea, 0x37, 0xf6,
+ 0xa3, 0x5c, 0x52, 0x8b, 0x5b, 0xa6, 0x7e, 0x32, 0x86, 0x6e, 0x9e, 0x4c, 0x78, 0x62, 0x14, 0x10,
+ 0x3f, 0x1d, 0x81, 0x69, 0x47, 0x47, 0x3e, 0x8c, 0x6d, 0xef, 0x3f, 0x12, 0xa8, 0xff, 0xa8, 0xef,
+ 0x0c, 0x1c, 0xaf, 0xc7, 0x78, 0xbf, 0x9b, 0xa3, 0xcc, 0x5a, 0xbb, 0x7e, 0xaf, 0xbd, 0xdb, 0x63,
+ 0x1c, 0x78, 0x86, 0x8d, 0xbf, 0xd7, 0x53, 0x9a, 0x9d, 0x9e, 0x4e, 0xff, 0x04, 0x1e, 0x3f, 0x4b,
+ 0x42, 0x57, 0x60, 0x4a, 0xdb, 0x69, 0x3f, 0xa8, 0x35, 0x68, 0xc5, 0xda, 0x96, 0xa4, 0x36, 0x76,
+ 0xbb, 0xba, 0x16, 0x43, 0x38, 0x8f, 0xb5, 0x79, 0x83, 0xe6, 0x1c, 0x63, 0x56, 0xd4, 0x4c, 0x0d,
+ 0x68, 0xa1, 0x83, 0xce, 0x8e, 0x87, 0x41, 0x0e, 0xf1, 0x1f, 0x46, 0x60, 0xce, 0xb5, 0x57, 0x1f,
+ 0xde, 0xb4, 0x83, 0x89, 0x04, 0x07, 0x13, 0x0d, 0x34, 0x37, 0xc7, 0x8a, 0x49, 0x33, 0xdf, 0x00,
+ 0x23, 0x45, 0xa9, 0x59, 0x55, 0x7a, 0xbb, 0x9d, 0x6a, 0x4f, 0xe9, 0xa0, 0x13, 0x90, 0x52, 0xa5,
+ 0x66, 0x4d, 0xc3, 0x09, 0x35, 0xad, 0xa7, 0x74, 0x6a, 0xb7, 0x37, 0xf2, 0x85, 0x1b, 0xc5, 0x8d,
+ 0x42, 0x3e, 0xf9, 0x0c, 0x9a, 0x82, 0xa4, 0x2d, 0xf7, 0x6a, 0x52, 0x70, 0x49, 0x5d, 0x4a, 0x46,
+ 0x32, 0xbf, 0xc4, 0xde, 0x84, 0x26, 0x9b, 0x26, 0x68, 0x0e, 0xa6, 0x6f, 0x57, 0x0b, 0x95, 0xea,
+ 0x66, 0x6e, 0xb3, 0x50, 0xbb, 0xbd, 0x51, 0x2d, 0x17, 0x56, 0x8a, 0x37, 0x8a, 0x7a, 0xa3, 0x66,
+ 0x56, 0x6e, 0x65, 0xb3, 0xf8, 0x76, 0x21, 0x29, 0xa0, 0x19, 0x40, 0x66, 0x6a, 0x71, 0x83, 0xa5,
+ 0x47, 0xd0, 0x34, 0x4c, 0x98, 0xe9, 0xf9, 0xc2, 0x5a, 0x61, 0xb3, 0x90, 0x4f, 0x46, 0xad, 0x8d,
+ 0xac, 0x95, 0x56, 0x6e, 0x15, 0xf2, 0xc9, 0x01, 0x6b, 0xe1, 0xea, 0xed, 0x6a, 0xb9, 0xb0, 0x91,
+ 0x4f, 0x0e, 0x5a, 0x93, 0x8b, 0x1b, 0xc5, 0xcd, 0x62, 0x6e, 0x2d, 0x19, 0xcb, 0x7c, 0x03, 0xc4,
+ 0xe8, 0x7b, 0xed, 0xb8, 0xf3, 0xd5, 0xc2, 0x46, 0xbe, 0x50, 0xb1, 0x41, 0x9d, 0x80, 0x51, 0x96,
+ 0x7e, 0xa3, 0xb0, 0x9e, 0x5b, 0xc3, 0x38, 0xc7, 0x21, 0xc1, 0x92, 0x48, 0x42, 0x04, 0x21, 0x18,
+ 0x63, 0x09, 0xf9, 0xe2, 0xdb, 0x85, 0x4a, 0xb5, 0x90, 0x8c, 0x66, 0x72, 0x30, 0xb6, 0x2e, 0xd5,
+ 0x77, 0xd4, 0x96, 0x72, 0x4b, 0xd9, 0x23, 0x5b, 0x20, 0x69, 0x98, 0x59, 0xcf, 0xad, 0xdc, 0x2c,
+ 0x6e, 0x14, 0x6e, 0x15, 0xde, 0xb1, 0xf5, 0x32, 0x09, 0xe3, 0x5c, 0xde, 0x87, 0xaa, 0xa5, 0x8d,
+ 0xa4, 0x90, 0xf9, 0x81, 0x08, 0x3d, 0xca, 0x6c, 0x84, 0xae, 0xd1, 0x49, 0x98, 0x23, 0xa3, 0x28,
+ 0xe4, 0x2a, 0x2b, 0x37, 0x9d, 0xad, 0xcc, 0xc3, 0xac, 0x2d, 0xbb, 0x5a, 0xa8, 0xd4, 0x36, 0x72,
+ 0xeb, 0x18, 0xf5, 0x09, 0x48, 0x59, 0x33, 0x6f, 0x14, 0x2b, 0xd5, 0x4d, 0x9a, 0x1b, 0x71, 0x56,
+ 0x5d, 0xcb, 0xe9, 0x99, 0x51, 0x67, 0xe6, 0x46, 0x71, 0xe5, 0x16, 0xcd, 0x1c, 0x40, 0xa7, 0x20,
+ 0x6d, 0xcd, 0xcc, 0x17, 0xab, 0xe5, 0xb5, 0xdc, 0x3b, 0x34, 0x7f, 0x10, 0xcd, 0xc2, 0xa4, 0x35,
+ 0xbf, 0xb0, 0x9e, 0x2b, 0xae, 0x25, 0x63, 0xce, 0x0c, 0x32, 0x39, 0xc9, 0x21, 0x83, 0x0f, 0x8c,
+ 0x8c, 0xcd, 0x77, 0xca, 0x85, 0x64, 0x3c, 0xf3, 0x57, 0x11, 0xbc, 0x6e, 0x31, 0x83, 0xef, 0xb8,
+ 0x05, 0x5a, 0x68, 0xbd, 0xb0, 0x79, 0xb3, 0x94, 0xaf, 0x15, 0xde, 0xba, 0x9d, 0x5b, 0xab, 0x26,
+ 0x9f, 0xc1, 0x63, 0xb5, 0x64, 0x54, 0x37, 0x73, 0x95, 0xcd, 0x6a, 0xed, 0x4e, 0x71, 0xf3, 0x66,
+ 0x52, 0xc0, 0x8c, 0x69, 0xc9, 0x5d, 0x29, 0x6d, 0x6c, 0xe6, 0x8a, 0x1b, 0xd5, 0x64, 0x04, 0x3d,
+ 0x0b, 0xa7, 0x5d, 0x5a, 0xac, 0x15, 0x57, 0x37, 0x4a, 0x95, 0x42, 0x6d, 0x25, 0x87, 0xa7, 0x16,
+ 0x5d, 0x80, 0xb3, 0x5e, 0xad, 0x5b, 0x4a, 0x0e, 0xa0, 0x73, 0x70, 0xc6, 0xb5, 0x27, 0x4b, 0xb1,
+ 0x41, 0x4c, 0x5f, 0x4b, 0xb1, 0x8d, 0xd2, 0xa6, 0x3e, 0x96, 0x18, 0x9e, 0x73, 0x4b, 0xe6, 0x6a,
+ 0xa5, 0x90, 0xdb, 0x2c, 0x54, 0x6a, 0x9b, 0x37, 0x73, 0x1b, 0xc9, 0x21, 0xcc, 0x55, 0x96, 0xec,
+ 0xb5, 0x42, 0xb5, 0x4a, 0xf3, 0xe2, 0x8e, 0xbc, 0x62, 0xb5, 0x56, 0xda, 0x28, 0xd4, 0x4a, 0x37,
+ 0x92, 0xc3, 0x78, 0xda, 0xac, 0xf5, 0x8a, 0xd5, 0x4d, 0x93, 0x12, 0x90, 0xc9, 0xc3, 0x10, 0x7b,
+ 0x2c, 0x17, 0x93, 0x79, 0xfd, 0x46, 0x0e, 0x4f, 0x82, 0x8d, 0xdf, 0xc6, 0x21, 0xa1, 0x67, 0x54,
+ 0xd7, 0xab, 0x54, 0x32, 0xf4, 0x84, 0xd2, 0x66, 0x39, 0x19, 0xc9, 0x6c, 0x41, 0x5c, 0x7f, 0x34,
+ 0x17, 0xa5, 0x60, 0x0a, 0xff, 0xef, 0xa2, 0x0e, 0x66, 0x00, 0x19, 0x39, 0x78, 0xec, 0x95, 0x42,
+ 0x2e, 0xff, 0x4e, 0x52, 0xc0, 0x72, 0x65, 0xa4, 0xd3, 0xb4, 0x08, 0x96, 0x7a, 0x2e, 0x6d, 0xbd,
+ 0xf4, 0x36, 0xd6, 0x05, 0x99, 0x9b, 0x90, 0xb4, 0xbf, 0x67, 0x8b, 0x47, 0xbf, 0x51, 0xda, 0x2c,
+ 0xde, 0x28, 0xae, 0xe4, 0x36, 0x8b, 0xa5, 0x0d, 0x82, 0x8a, 0xf2, 0xde, 0x33, 0x18, 0x8b, 0x23,
+ 0x8f, 0x0c, 0x21, 0xb3, 0x0b, 0x09, 0x6a, 0x34, 0x28, 0xe8, 0x79, 0x98, 0x2d, 0x97, 0xd6, 0x8a,
+ 0x2b, 0xef, 0x78, 0xe0, 0xe6, 0x33, 0x0d, 0x45, 0x96, 0x82, 0x29, 0x3e, 0x9d, 0x53, 0x65, 0xb3,
+ 0x30, 0xc9, 0xe7, 0x18, 0xca, 0x2c, 0x53, 0x86, 0xb8, 0xfe, 0x8c, 0x2a, 0xae, 0x5e, 0xaa, 0xac,
+ 0xba, 0x75, 0x38, 0x09, 0xe3, 0x46, 0x8e, 0xd1, 0xdb, 0x34, 0x4c, 0x18, 0x89, 0x66, 0x57, 0x99,
+ 0xef, 0x12, 0xb8, 0x97, 0x05, 0xad, 0x6f, 0x30, 0xa2, 0xf3, 0xf0, 0x6c, 0xa9, 0xb2, 0x9a, 0x2f,
+ 0xad, 0xe7, 0x8a, 0x1b, 0x6f, 0xe7, 0xd6, 0x8a, 0x79, 0x93, 0x0a, 0xd6, 0x0e, 0x17, 0xe0, 0x84,
+ 0x57, 0xc1, 0x9b, 0x9b, 0x9b, 0xe5, 0xa4, 0x80, 0x4e, 0xc3, 0xbc, 0x57, 0x89, 0x3c, 0x16, 0xa9,
+ 0xcc, 0x1d, 0x40, 0xce, 0xe7, 0xed, 0x90, 0x08, 0xa7, 0x8c, 0x6a, 0x5e, 0xea, 0xec, 0x24, 0xcc,
+ 0xb9, 0x94, 0xa1, 0xbf, 0x93, 0x42, 0xe6, 0xd7, 0x05, 0xd2, 0xb2, 0xed, 0x73, 0x2b, 0xd6, 0xf2,
+ 0x7a, 0x61, 0x7d, 0xd9, 0x5b, 0x51, 0x9e, 0x81, 0x93, 0x2e, 0x65, 0x38, 0x85, 0x28, 0xb0, 0x91,
+ 0xdb, 0x8b, 0x98, 0x5a, 0x31, 0x82, 0x95, 0x8c, 0x4b, 0x09, 0xca, 0x61, 0x51, 0x2c, 0x5f, 0x6e,
+ 0x30, 0xb0, 0x42, 0x2e, 0xe6, 0x93, 0x03, 0x99, 0x3b, 0xc6, 0x45, 0x13, 0x26, 0xf4, 0x05, 0x38,
+ 0x51, 0xae, 0x94, 0x3e, 0x54, 0x58, 0xd9, 0xec, 0x03, 0xdc, 0x51, 0x82, 0x25, 0x30, 0xe0, 0x99,
+ 0x6f, 0x36, 0x6e, 0x5e, 0xa1, 0xdc, 0x74, 0x02, 0x52, 0x7a, 0x15, 0x17, 0x8e, 0xc2, 0x0c, 0xc9,
+ 0xe7, 0x1a, 0x5c, 0x35, 0x07, 0xd3, 0x96, 0x0c, 0x8e, 0xb3, 0xbe, 0xdd, 0x7c, 0x41, 0xc6, 0x72,
+ 0x31, 0x36, 0x3a, 0x0b, 0x0b, 0xac, 0x4e, 0xa5, 0xb4, 0x56, 0xf0, 0x1a, 0x83, 0x09, 0xc8, 0x5a,
+ 0xea, 0x56, 0x01, 0xcb, 0xfc, 0x39, 0x38, 0xe3, 0x9a, 0x6b, 0xb1, 0x2a, 0x91, 0xcc, 0x57, 0xcc,
+ 0x1b, 0xbe, 0xed, 0x0c, 0xf0, 0x1c, 0x88, 0xac, 0x85, 0xfe, 0x4c, 0x60, 0xf6, 0xd4, 0x97, 0x11,
+ 0xcc, 0x41, 0xf5, 0x63, 0x06, 0x73, 0xea, 0xbc, 0x18, 0x42, 0x84, 0x53, 0x5e, 0xb0, 0x74, 0xa6,
+ 0xe8, 0xd3, 0x97, 0x69, 0xc9, 0x07, 0xb1, 0xae, 0xd0, 0xaf, 0xcc, 0xc2, 0xba, 0x22, 0x57, 0x2e,
+ 0x7b, 0xe8, 0x0a, 0x23, 0x87, 0xd7, 0x15, 0x46, 0x22, 0x37, 0xa3, 0xf3, 0x90, 0xe0, 0xae, 0x0b,
+ 0x44, 0x23, 0x10, 0x27, 0x3f, 0xaf, 0xd6, 0xae, 0x24, 0x9f, 0xc9, 0xbc, 0x09, 0xa3, 0x96, 0xfb,
+ 0xcb, 0x88, 0x7e, 0xe2, 0x13, 0x6a, 0xcb, 0x8a, 0xd4, 0x55, 0xba, 0xc9, 0x67, 0x88, 0x2a, 0xb2,
+ 0xe4, 0x7c, 0xe8, 0xce, 0x66, 0x52, 0xc8, 0x7c, 0x94, 0x5e, 0xc4, 0xc7, 0xdf, 0x60, 0x87, 0xf9,
+ 0x8b, 0xa4, 0x15, 0xaa, 0xe5, 0xd2, 0x46, 0xb5, 0x40, 0x14, 0xc6, 0x4a, 0x29, 0x5f, 0x60, 0x72,
+ 0x6f, 0xcf, 0x2a, 0xe6, 0x6b, 0x9b, 0xa5, 0x5b, 0x85, 0x8d, 0xa4, 0x80, 0x6d, 0xb4, 0x67, 0x36,
+ 0x2b, 0x14, 0xc9, 0x74, 0x29, 0x68, 0xe3, 0x7a, 0x3b, 0x4c, 0x5a, 0x92, 0x50, 0xc9, 0x6d, 0x6c,
+ 0x92, 0x2a, 0xb9, 0xdb, 0x9b, 0x37, 0x4b, 0x95, 0xe2, 0x87, 0x89, 0xbe, 0xd2, 0xbb, 0x4e, 0xc3,
+ 0x8c, 0xb5, 0x54, 0x71, 0xbd, 0xbc, 0x56, 0x5c, 0x29, 0x6e, 0x32, 0x4d, 0x67, 0xc9, 0xab, 0x14,
+ 0x6e, 0x54, 0x0a, 0xd5, 0x9b, 0x46, 0x9f, 0xf7, 0x61, 0xd2, 0xe5, 0xf6, 0x3b, 0x6c, 0x42, 0x48,
+ 0x72, 0x19, 0xb7, 0x64, 0x6a, 0xc7, 0x3b, 0x85, 0xe5, 0xe4, 0x33, 0x44, 0x5b, 0xb9, 0x64, 0x92,
+ 0xe9, 0xce, 0xad, 0x16, 0x36, 0x70, 0xc7, 0x58, 0x95, 0xb8, 0x94, 0xd9, 0xc8, 0xb1, 0xd9, 0x6b,
+ 0x00, 0x72, 0xde, 0x8a, 0x47, 0xd4, 0x13, 0x4e, 0xbd, 0xbd, 0xc9, 0x4c, 0x3c, 0xa9, 0xb4, 0x9c,
+ 0xab, 0x16, 0x57, 0xa8, 0xab, 0xe8, 0x92, 0x5b, 0x2e, 0x55, 0x71, 0x87, 0xee, 0x99, 0x1b, 0xa5,
+ 0x0d, 0xdc, 0x5b, 0x0d, 0xa6, 0xdc, 0x6e, 0x97, 0xc2, 0x04, 0xe6, 0x10, 0x56, 0x0b, 0x95, 0x9c,
+ 0x87, 0x02, 0xb3, 0x94, 0xd2, 0xf9, 0x3b, 0x57, 0x2e, 0xeb, 0x0a, 0xac, 0x67, 0x5c, 0x79, 0x6f,
+ 0x7e, 0x09, 0xc7, 0x29, 0x3e, 0x42, 0x7f, 0x37, 0x86, 0x37, 0xf5, 0x0a, 0x57, 0xc4, 0xe0, 0xfc,
+ 0x53, 0x90, 0x76, 0xe6, 0x72, 0x22, 0xf0, 0xbd, 0xb6, 0x0b, 0x18, 0xcc, 0x81, 0x99, 0x7a, 0x82,
+ 0xd6, 0xf4, 0x50, 0x27, 0xa6, 0xda, 0xb1, 0x15, 0xb3, 0xea, 0x67, 0x4e, 0x0f, 0xd8, 0xca, 0x61,
+ 0x7d, 0x47, 0x94, 0x60, 0x24, 0xf3, 0x19, 0xf3, 0x16, 0x7a, 0xb7, 0x4f, 0x8a, 0xd1, 0xf3, 0x70,
+ 0x9e, 0x6f, 0xa3, 0xbf, 0x9e, 0xcb, 0xc0, 0x73, 0xfd, 0x0a, 0x5b, 0x94, 0xdd, 0x45, 0x38, 0xd7,
+ 0xaf, 0x2c, 0xaf, 0xf1, 0x6c, 0x64, 0xf1, 0x52, 0x7b, 0xe7, 0xe1, 0xd9, 0xbe, 0x50, 0x0d, 0xdd,
+ 0xe7, 0xd3, 0x35, 0xaf, 0x00, 0x77, 0x60, 0xcc, 0xfa, 0xa1, 0xa4, 0xbe, 0x08, 0xf1, 0xe4, 0x0d,
+ 0xb6, 0x16, 0x75, 0x63, 0x0c, 0xb6, 0xb8, 0x71, 0xe7, 0x8a, 0xbf, 0x66, 0x9f, 0x94, 0xd8, 0x58,
+ 0x42, 0x84, 0x53, 0x66, 0x1d, 0x6f, 0x53, 0xed, 0x52, 0x46, 0x67, 0x86, 0x62, 0x9e, 0xf2, 0xa4,
+ 0x5b, 0x33, 0x8c, 0x24, 0x11, 0x7d, 0xb9, 0x67, 0xcb, 0x2f, 0x55, 0x56, 0x71, 0x76, 0x14, 0x2b,
+ 0x24, 0x97, 0x6c, 0x83, 0x8d, 0x06, 0x3c, 0x0a, 0x90, 0x9f, 0xb8, 0x85, 0x41, 0x6c, 0xb5, 0xbc,
+ 0x00, 0x10, 0x52, 0xc7, 0x3c, 0x46, 0xc1, 0xf1, 0xcc, 0x90, 0x47, 0x23, 0x26, 0xab, 0xc4, 0xf5,
+ 0xa5, 0xa7, 0xad, 0x04, 0xe5, 0x90, 0x61, 0x0f, 0x94, 0x78, 0x94, 0xa4, 0x3a, 0x78, 0x60, 0xc0,
+ 0x05, 0x98, 0x2f, 0x98, 0xc0, 0x36, 0xa1, 0x0f, 0xb1, 0x49, 0x3b, 0x23, 0x1e, 0x85, 0x2c, 0x8e,
+ 0xc5, 0x68, 0xe6, 0xfb, 0x04, 0xfa, 0x81, 0xa6, 0xcb, 0x57, 0x4d, 0x98, 0x97, 0x71, 0x03, 0x8c,
+ 0x35, 0x6f, 0x16, 0xcb, 0x5e, 0x73, 0xcf, 0x48, 0xe2, 0x56, 0x90, 0xac, 0x65, 0x89, 0x9b, 0xe3,
+ 0x55, 0xa2, 0xb4, 0xac, 0x73, 0x48, 0x24, 0xf3, 0x10, 0xc0, 0xfc, 0xde, 0x88, 0x44, 0x10, 0x48,
+ 0x05, 0x17, 0x4f, 0x7d, 0x1e, 0x66, 0xb9, 0xbc, 0x52, 0x65, 0x35, 0xb7, 0x51, 0xac, 0x12, 0x25,
+ 0x4b, 0x23, 0x2b, 0x5c, 0x26, 0x23, 0x0b, 0x75, 0x61, 0x9d, 0xe9, 0x94, 0x41, 0x92, 0xd1, 0xcc,
+ 0x2d, 0x7a, 0xea, 0x8e, 0x3b, 0x1b, 0x7a, 0x0a, 0xd2, 0xc5, 0x7c, 0xb9, 0xba, 0xf9, 0xce, 0x5a,
+ 0x71, 0x63, 0xd5, 0x05, 0xc4, 0x1c, 0x4c, 0xdb, 0xf2, 0x57, 0x4b, 0xa5, 0xd5, 0x35, 0xac, 0xd5,
+ 0xef, 0x42, 0x5c, 0x3f, 0x4e, 0xcb, 0x9a, 0x59, 0x29, 0x6d, 0xdc, 0x28, 0xae, 0x7a, 0x48, 0xab,
+ 0x2d, 0x9f, 0x97, 0x56, 0x5b, 0x16, 0x27, 0xad, 0x7b, 0xd4, 0xcf, 0xe0, 0x4f, 0x36, 0x12, 0x3f,
+ 0x1e, 0xa7, 0xe5, 0xca, 0xe5, 0xe2, 0xc6, 0xea, 0x8d, 0x62, 0x61, 0x2d, 0x6f, 0xeb, 0x0d, 0x2f,
+ 0x86, 0xec, 0x25, 0xca, 0x95, 0xc2, 0x8d, 0x42, 0xa5, 0x52, 0xc8, 0x13, 0x61, 0x60, 0xca, 0x91,
+ 0x39, 0x07, 0x96, 0x82, 0x94, 0x89, 0x23, 0x99, 0xef, 0x10, 0x60, 0x84, 0x3f, 0x65, 0x88, 0x49,
+ 0x8b, 0x49, 0xe1, 0xc1, 0x20, 0x8c, 0x90, 0x46, 0x6e, 0x31, 0x5f, 0xae, 0xd1, 0x41, 0x51, 0xcd,
+ 0x30, 0x0d, 0x13, 0x96, 0x7c, 0xa6, 0x73, 0xed, 0xd5, 0xca, 0x95, 0xd2, 0xdb, 0xc5, 0x7c, 0xa1,
+ 0x42, 0xb9, 0x2a, 0x9a, 0xb9, 0x41, 0xce, 0x3e, 0xeb, 0x8b, 0xf6, 0x62, 0xbe, 0xec, 0x32, 0x47,
+ 0x49, 0x18, 0xd1, 0x33, 0xf0, 0x68, 0x92, 0x02, 0x9f, 0x52, 0xcd, 0xad, 0xe3, 0xd1, 0x6c, 0x5b,
+ 0x8e, 0xfb, 0x90, 0xf6, 0x4e, 0xc3, 0x7c, 0x31, 0x5f, 0xd6, 0x3b, 0x74, 0x69, 0x37, 0x0d, 0x33,
+ 0xf6, 0x02, 0xd5, 0x77, 0xaa, 0x9b, 0x85, 0xf5, 0xa4, 0xc0, 0xc0, 0x58, 0xf2, 0x4a, 0x95, 0xd5,
+ 0x64, 0x24, 0xf3, 0x61, 0xe3, 0x39, 0x2f, 0xdd, 0x55, 0x62, 0x4c, 0xe8, 0xd2, 0xc1, 0x34, 0x4c,
+ 0xf0, 0x99, 0xa5, 0x3b, 0x1b, 0x85, 0x3c, 0x6d, 0x9b, 0x4f, 0x26, 0xcc, 0x5b, 0xc0, 0xb2, 0xb3,
+ 0x03, 0x49, 0xfb, 0x06, 0x35, 0xe6, 0x86, 0x6a, 0x61, 0xa5, 0xb4, 0x91, 0xbf, 0x91, 0x5b, 0xd9,
+ 0x2c, 0xb9, 0x0d, 0x23, 0x05, 0x53, 0x8e, 0x12, 0x25, 0xb2, 0xd2, 0x75, 0xcb, 0xb9, 0xbd, 0x74,
+ 0x23, 0x19, 0xc9, 0x6c, 0xc2, 0xb8, 0x6d, 0xe7, 0x18, 0x93, 0x6b, 0xfd, 0xf6, 0xda, 0x66, 0xd1,
+ 0xb3, 0x9f, 0x05, 0x38, 0xe1, 0x28, 0xb0, 0x74, 0x83, 0x06, 0x91, 0xca, 0x78, 0x7d, 0xbb, 0xf4,
+ 0x67, 0xbf, 0x2d, 0xc0, 0xc4, 0xba, 0xb1, 0x47, 0x5d, 0x55, 0xba, 0xf7, 0xd5, 0xba, 0x82, 0x6e,
+ 0xc1, 0xd0, 0x4d, 0x45, 0x6a, 0xf4, 0x76, 0x3e, 0x8e, 0x66, 0x1c, 0x11, 0xdf, 0x42, 0xb3, 0xd3,
+ 0xdb, 0x4b, 0x7b, 0xa4, 0x8b, 0xc9, 0x47, 0x5f, 0xfe, 0x2f, 0x9f, 0x8a, 0x00, 0x8a, 0x67, 0x77,
+ 0x58, 0x0b, 0xab, 0x30, 0x58, 0x51, 0x24, 0x79, 0x2f, 0x74, 0x53, 0x63, 0xa4, 0xa9, 0x38, 0x8a,
+ 0x65, 0xbb, 0xa4, 0xfe, 0x06, 0xc4, 0x59, 0x8c, 0x41, 0xf1, 0x6c, 0x6b, 0xd6, 0x91, 0x5e, 0xed,
+ 0x75, 0x77, 0xeb, 0x3d, 0x71, 0x82, 0x34, 0x96, 0x40, 0xc3, 0xd9, 0xfb, 0x7a, 0x1b, 0x0d, 0x18,
+ 0x5b, 0x55, 0x7a, 0x1f, 0xa6, 0x3b, 0xf5, 0xf9, 0x76, 0x5d, 0xf3, 0x6c, 0xd5, 0xf7, 0x22, 0x74,
+ 0xae, 0x11, 0x71, 0x9a, 0xf4, 0x34, 0x8e, 0x46, 0xb3, 0xac, 0x7c, 0x56, 0xc6, 0x6d, 0x6f, 0x41,
+ 0x6c, 0x55, 0xe9, 0x15, 0xa5, 0xa6, 0x67, 0x2f, 0xcf, 0xfa, 0x9e, 0xfc, 0x92, 0x9a, 0xe2, 0xe9,
+ 0x47, 0x8f, 0x53, 0xe3, 0x30, 0x2a, 0xed, 0xf6, 0x76, 0x94, 0x56, 0x0f, 0x7b, 0xc8, 0x8a, 0x4c,
+ 0x3a, 0x8c, 0xa1, 0x81, 0xac, 0x2a, 0x35, 0xd1, 0x67, 0xb1, 0x96, 0xd0, 0xb0, 0x79, 0xb9, 0xdd,
+ 0x52, 0x3f, 0xba, 0xab, 0x20, 0xdf, 0x13, 0xf0, 0xb4, 0x1c, 0xae, 0xc1, 0xb6, 0x4e, 0xd2, 0x4b,
+ 0x61, 0xaa, 0xd0, 0x05, 0x97, 0x78, 0xfe, 0xd1, 0xe3, 0x54, 0x82, 0x5e, 0xe3, 0xb0, 0x88, 0xe7,
+ 0x8b, 0x80, 0x42, 0x28, 0x99, 0xc5, 0x29, 0x5a, 0xb6, 0xa6, 0x6a, 0xbb, 0x14, 0xcf, 0x77, 0x08,
+ 0x90, 0x58, 0x55, 0x7a, 0xb8, 0xf2, 0xf2, 0x5e, 0x31, 0x8f, 0x9e, 0x0b, 0xf2, 0x01, 0x70, 0x31,
+ 0x9f, 0xbe, 0x10, 0xa4, 0xdc, 0xdb, 0xaa, 0xf2, 0x40, 0x14, 0xdd, 0xa0, 0x8c, 0xa2, 0x04, 0x83,
+ 0xf2, 0x50, 0x95, 0xdf, 0x45, 0x3f, 0x2b, 0x40, 0xca, 0x40, 0x41, 0x4e, 0x73, 0x6e, 0x48, 0x4d,
+ 0x65, 0xb5, 0xd1, 0xbe, 0x2b, 0x35, 0xd0, 0x45, 0xbf, 0xae, 0x8c, 0x0a, 0x21, 0x50, 0xbd, 0xf2,
+ 0xe8, 0x71, 0x0a, 0xd1, 0xf3, 0xf4, 0x8b, 0xdb, 0xa4, 0x1f, 0x13, 0xdc, 0x09, 0x94, 0xce, 0xd2,
+ 0x34, 0x9d, 0x5c, 0x77, 0xf7, 0x1a, 0xb8, 0x0f, 0x72, 0x9c, 0xf1, 0xb3, 0x02, 0x24, 0xa8, 0xd6,
+ 0xc7, 0x8d, 0x69, 0x01, 0x66, 0x54, 0xb3, 0x1d, 0xc7, 0x4b, 0x2f, 0x85, 0xa9, 0xc2, 0x66, 0xf4,
+ 0x82, 0x1b, 0x19, 0x27, 0xc5, 0x31, 0x1d, 0xa2, 0x46, 0x8a, 0xbf, 0x2a, 0x64, 0xd0, 0x0f, 0x09,
+ 0x00, 0xf4, 0x83, 0x3c, 0xdc, 0x8c, 0x3f, 0x3e, 0xb3, 0xac, 0x8e, 0xef, 0x52, 0x10, 0x7c, 0x06,
+ 0xb2, 0x33, 0x8f, 0x1e, 0xa7, 0x46, 0x00, 0x08, 0xb2, 0x07, 0x5d, 0xb5, 0xa7, 0x50, 0xe1, 0x16,
+ 0x63, 0x14, 0x1a, 0x86, 0xf4, 0x13, 0x02, 0x8c, 0xe5, 0x15, 0xa9, 0xde, 0x53, 0xef, 0xeb, 0xb0,
+ 0x82, 0x32, 0x5a, 0x38, 0x2c, 0x4b, 0xae, 0x58, 0x4e, 0xa4, 0x67, 0x39, 0x6e, 0xcb, 0xd6, 0x64,
+ 0x03, 0x8a, 0x0e, 0xae, 0x72, 0x7c, 0xc0, 0x75, 0x2d, 0xe0, 0x7e, 0x50, 0x80, 0xf8, 0x5a, 0xbb,
+ 0x7e, 0xef, 0x10, 0x61, 0x5d, 0x72, 0x85, 0x35, 0x93, 0x9e, 0xb0, 0xc0, 0x6a, 0xb4, 0xeb, 0xf7,
+ 0x30, 0xa0, 0x4f, 0x0a, 0x00, 0xb7, 0x5b, 0x8d, 0xc3, 0x85, 0xb4, 0xe8, 0x0a, 0x29, 0x95, 0x9e,
+ 0xb4, 0x40, 0xda, 0x6d, 0xe9, 0xa0, 0xba, 0x00, 0x79, 0xa5, 0xa1, 0x84, 0x9c, 0x3d, 0x2f, 0x53,
+ 0x77, 0xf6, 0xd1, 0xe3, 0xd4, 0x28, 0x24, 0x48, 0xef, 0x32, 0x69, 0x96, 0xea, 0xac, 0x8c, 0x45,
+ 0x67, 0xfd, 0xb0, 0x40, 0xaf, 0x30, 0xa2, 0x97, 0x22, 0x6a, 0xc8, 0xf7, 0x0b, 0x6b, 0x5a, 0x50,
+ 0x97, 0xb1, 0xf3, 0xc1, 0x8a, 0x6b, 0x62, 0xc6, 0x4d, 0xf0, 0xa7, 0x91, 0x85, 0x14, 0x75, 0x86,
+ 0xe1, 0x17, 0x05, 0x18, 0xcd, 0xc9, 0xb2, 0xb9, 0x0f, 0x89, 0xfc, 0x2f, 0x0e, 0xe7, 0x8b, 0xeb,
+ 0xe0, 0xae, 0x85, 0xac, 0xc5, 0xa6, 0xed, 0x8a, 0xeb, 0xb4, 0xa5, 0xc5, 0x69, 0x1d, 0x2b, 0x3b,
+ 0x15, 0xf9, 0x6e, 0xf6, 0x9e, 0xb2, 0x47, 0x14, 0xc3, 0xa7, 0x05, 0x48, 0xd2, 0x99, 0xe3, 0x30,
+ 0xfb, 0x3e, 0x39, 0x61, 0x96, 0x2d, 0xe6, 0x75, 0xc8, 0x5e, 0x93, 0xf9, 0x92, 0x2b, 0xa6, 0x85,
+ 0xcc, 0x29, 0x57, 0x4c, 0xd9, 0x87, 0xf7, 0x94, 0x3d, 0xfc, 0x0b, 0xfd, 0xa6, 0x00, 0x13, 0x6c,
+ 0xef, 0xd1, 0xe8, 0x4d, 0x43, 0x2f, 0x07, 0x87, 0x66, 0x55, 0xf9, 0xaf, 0x84, 0xaf, 0xc8, 0x88,
+ 0xfa, 0xb2, 0xdb, 0xfc, 0x8b, 0xe2, 0x49, 0x77, 0xfc, 0x9c, 0x1d, 0xf8, 0x79, 0x01, 0x46, 0x57,
+ 0x95, 0xde, 0x41, 0x09, 0xbb, 0x18, 0xbc, 0x12, 0xb1, 0xac, 0xd7, 0xdc, 0xf0, 0x2e, 0x20, 0x3f,
+ 0x7a, 0xff, 0xa8, 0x40, 0x1c, 0x40, 0x2c, 0x51, 0xe5, 0x6e, 0x7b, 0x4b, 0x6d, 0x28, 0x81, 0xe5,
+ 0x38, 0x1b, 0xa4, 0x1c, 0x6b, 0x94, 0x40, 0x0c, 0x22, 0x52, 0x1d, 0x06, 0xe2, 0xe7, 0x04, 0x98,
+ 0xa0, 0x5f, 0x3d, 0xf3, 0xd0, 0x7c, 0xa7, 0xd3, 0x51, 0x45, 0x27, 0xe7, 0xf3, 0x21, 0xc0, 0x06,
+ 0xd3, 0x83, 0x0c, 0x29, 0x9e, 0xf2, 0xbf, 0x27, 0xc0, 0x08, 0x23, 0x62, 0x81, 0xdc, 0xad, 0x15,
+ 0x94, 0x84, 0x81, 0x2e, 0x8a, 0x22, 0x4d, 0x12, 0x02, 0xba, 0x3b, 0x23, 0xc8, 0x62, 0x31, 0xe8,
+ 0xe5, 0x5e, 0x3f, 0x2a, 0x00, 0xa2, 0x9a, 0x8c, 0x38, 0xc1, 0xfa, 0x2d, 0x62, 0xd7, 0x83, 0xd3,
+ 0x4f, 0xaf, 0xe3, 0x27, 0xe8, 0x1e, 0x66, 0x0c, 0x4d, 0xf1, 0xa0, 0xf4, 0xcf, 0x7e, 0xd0, 0xcf,
+ 0x08, 0x30, 0x6e, 0xe2, 0xa2, 0xc4, 0x7a, 0x29, 0x38, 0x28, 0x52, 0x41, 0x47, 0x74, 0x31, 0x30,
+ 0xf1, 0x82, 0xd9, 0x5a, 0x42, 0x39, 0x3c, 0x9d, 0x3f, 0x2d, 0xc0, 0x7c, 0x45, 0xd1, 0x94, 0x96,
+ 0x4c, 0x49, 0xaf, 0x74, 0x8d, 0x0d, 0xef, 0xf5, 0x30, 0xb3, 0xeb, 0x45, 0xb2, 0x37, 0x5d, 0xd1,
+ 0x64, 0xc4, 0x73, 0x0e, 0x34, 0xd8, 0x2d, 0xc1, 0x38, 0xee, 0x73, 0x10, 0x6c, 0x0c, 0x57, 0xde,
+ 0x69, 0xb7, 0x94, 0x27, 0xcb, 0x70, 0xa4, 0xc9, 0xc0, 0x0c, 0xd7, 0x21, 0x00, 0xac, 0x13, 0x4b,
+ 0x41, 0x85, 0x98, 0x58, 0x52, 0x21, 0xd4, 0xc4, 0x92, 0x1a, 0xc1, 0x26, 0x96, 0x20, 0xc4, 0x64,
+ 0xfb, 0xdb, 0x30, 0x4e, 0xbf, 0x3b, 0x08, 0x4f, 0x38, 0xaf, 0xb9, 0xbc, 0xe8, 0x0a, 0x60, 0x32,
+ 0xe3, 0x42, 0x22, 0x93, 0xad, 0x28, 0x81, 0xb9, 0x39, 0x5d, 0x69, 0xcb, 0xca, 0xd1, 0xb0, 0x15,
+ 0x81, 0xe2, 0xc5, 0x56, 0x9c, 0x31, 0xc8, 0xc9, 0x72, 0x57, 0xd1, 0xb4, 0x27, 0x6b, 0x0c, 0x58,
+ 0xa3, 0x81, 0x8d, 0x81, 0xc4, 0x40, 0x58, 0x8d, 0x81, 0x0e, 0x2d, 0x84, 0x31, 0x60, 0x55, 0x42,
+ 0x19, 0x03, 0x56, 0x27, 0x98, 0x31, 0x60, 0x48, 0x31, 0x11, 0xad, 0x60, 0x99, 0x95, 0xf6, 0x77,
+ 0x08, 0x69, 0x15, 0x56, 0x5c, 0x07, 0x9a, 0x0d, 0xe8, 0x04, 0x84, 0xf3, 0xe0, 0x9b, 0xb4, 0x12,
+ 0x06, 0xfb, 0x87, 0x02, 0xcc, 0x98, 0xab, 0x6a, 0xee, 0xfb, 0x9c, 0x00, 0xe4, 0xf5, 0xfa, 0x58,
+ 0x2d, 0x7d, 0x7d, 0x1f, 0x35, 0x19, 0xfe, 0x37, 0xdc, 0xb8, 0x82, 0x63, 0x61, 0xc3, 0x8b, 0xd1,
+ 0xbf, 0xec, 0x51, 0xe5, 0x8e, 0xc5, 0xfb, 0xc2, 0xfe, 0x23, 0x95, 0x71, 0xae, 0x93, 0x50, 0x63,
+ 0xb1, 0x7c, 0x99, 0xe4, 0x29, 0x6c, 0xdf, 0xe0, 0x4a, 0xe8, 0xe5, 0xcc, 0x9b, 0xfd, 0x91, 0x3e,
+ 0xb4, 0x7c, 0xcd, 0xf4, 0x6e, 0xf6, 0xa1, 0xfd, 0xcb, 0xa5, 0x77, 0xd1, 0x0f, 0x99, 0xa1, 0xa1,
+ 0xf5, 0x2d, 0x29, 0xb8, 0x04, 0x5e, 0x09, 0x74, 0x87, 0x1c, 0xff, 0x2d, 0x8f, 0x4f, 0xb4, 0x8a,
+ 0xf2, 0x0a, 0x86, 0xf0, 0xeb, 0x02, 0xcc, 0x57, 0x95, 0x96, 0x5c, 0x55, 0x7a, 0xfa, 0xb9, 0x5f,
+ 0xfe, 0x14, 0x18, 0xfa, 0xa0, 0xff, 0x07, 0x4c, 0xae, 0x15, 0xfd, 0x88, 0x9c, 0x77, 0x25, 0xf2,
+ 0xa2, 0x78, 0xd1, 0xa2, 0xd1, 0x58, 0xc3, 0x98, 0x0b, 0x5a, 0xb2, 0xa6, 0xf4, 0x5a, 0x5c, 0x0f,
+ 0x2c, 0xd0, 0x80, 0xaa, 0x4a, 0xaf, 0xd8, 0x52, 0x7b, 0xaa, 0xd4, 0x30, 0xbe, 0x2d, 0xf6, 0x95,
+ 0x2d, 0xbd, 0xa4, 0x1f, 0xca, 0xd7, 0x5c, 0x51, 0x9e, 0x13, 0x17, 0xdc, 0x51, 0xaa, 0x14, 0x87,
+ 0xfa, 0x71, 0x22, 0x80, 0x3f, 0x45, 0xf8, 0x15, 0x23, 0x67, 0xf8, 0x88, 0x87, 0xe1, 0x1b, 0xa9,
+ 0xe2, 0x0a, 0xfb, 0xc1, 0x7b, 0xdd, 0x15, 0xde, 0x73, 0xe2, 0x19, 0x5b, 0xf8, 0x03, 0x63, 0xd0,
+ 0xb1, 0x69, 0x06, 0xf1, 0xfe, 0x5c, 0x80, 0x69, 0x53, 0x41, 0x98, 0x9b, 0x75, 0x1a, 0x7a, 0x6d,
+ 0x3f, 0x77, 0x16, 0xea, 0x60, 0x5f, 0xdf, 0x5f, 0x65, 0xa6, 0x25, 0x8a, 0x8f, 0x1e, 0xa7, 0x66,
+ 0x60, 0x8a, 0x0c, 0xa9, 0x69, 0x14, 0x32, 0x79, 0xf8, 0xa2, 0x78, 0xd6, 0x21, 0x86, 0x66, 0x39,
+ 0x8b, 0xbe, 0xf8, 0x4e, 0x01, 0x86, 0x69, 0x24, 0xae, 0xd4, 0xdd, 0x46, 0xfe, 0x17, 0x7a, 0x74,
+ 0xd9, 0xa5, 0x5b, 0xfa, 0x40, 0x9e, 0x0d, 0x50, 0x43, 0x5c, 0xa0, 0x53, 0xd0, 0xee, 0x6e, 0x2f,
+ 0x92, 0xe3, 0xe5, 0x74, 0x0a, 0x40, 0x1c, 0xcc, 0xb6, 0xbb, 0xdb, 0x1a, 0x8b, 0x37, 0x01, 0x6e,
+ 0xfb, 0x90, 0x83, 0x1a, 0xd8, 0x9f, 0x03, 0x72, 0xef, 0xaf, 0x49, 0xac, 0x29, 0x84, 0x08, 0x0c,
+ 0x6b, 0x48, 0xe3, 0x1e, 0xc4, 0xf1, 0x22, 0x76, 0x0f, 0x53, 0xc5, 0x2b, 0x56, 0x7f, 0x3e, 0xc0,
+ 0xd8, 0x89, 0xad, 0x3f, 0xe5, 0xd2, 0x2d, 0xa0, 0x38, 0xed, 0xb6, 0xa9, 0xa0, 0xcf, 0x08, 0x30,
+ 0xb5, 0xaa, 0xf4, 0x4a, 0xdd, 0xed, 0xe5, 0x3d, 0x7a, 0x80, 0x91, 0xc5, 0xa0, 0x7d, 0x75, 0x1f,
+ 0x2d, 0x1d, 0x1c, 0xc9, 0x0b, 0x8f, 0x1e, 0xa7, 0x26, 0x60, 0x1c, 0x23, 0xb1, 0x87, 0x9f, 0x53,
+ 0x68, 0x46, 0x0f, 0x3f, 0x13, 0x5c, 0xb5, 0xbb, 0x7b, 0xf4, 0x02, 0x64, 0xf4, 0xad, 0x30, 0x6e,
+ 0x46, 0x51, 0xfb, 0x93, 0x24, 0x10, 0x3b, 0x2c, 0x52, 0xbd, 0x8b, 0x41, 0x98, 0x02, 0x39, 0x97,
+ 0x9e, 0xd2, 0xe9, 0x61, 0x8f, 0x94, 0x7e, 0x2b, 0x76, 0x5b, 0x8f, 0xb4, 0x7f, 0x6b, 0x30, 0xf4,
+ 0x4b, 0x44, 0x81, 0x92, 0x98, 0xcc, 0x9e, 0x71, 0xc4, 0x54, 0xf3, 0x77, 0xef, 0x6d, 0xc7, 0x51,
+ 0x75, 0x6e, 0x7d, 0x39, 0x74, 0x3d, 0x26, 0xf6, 0x57, 0x5d, 0xd8, 0xe8, 0xa4, 0x98, 0x32, 0x60,
+ 0xd3, 0xe9, 0xb2, 0x88, 0xf7, 0x67, 0x04, 0x18, 0xcb, 0xc9, 0x32, 0x87, 0xdb, 0x3f, 0x1a, 0x93,
+ 0x93, 0x65, 0xa3, 0x74, 0xe0, 0x25, 0x89, 0x51, 0x43, 0x77, 0x6c, 0xad, 0xd4, 0x9d, 0x16, 0x93,
+ 0x76, 0x98, 0x18, 0xde, 0x5f, 0x08, 0x70, 0x72, 0x55, 0x69, 0x29, 0x5d, 0x7d, 0x62, 0xed, 0xa7,
+ 0x88, 0xd1, 0xab, 0x81, 0x3b, 0x36, 0x2b, 0xe9, 0xa0, 0x5f, 0xdb, 0x57, 0x5d, 0x46, 0xec, 0x82,
+ 0xdb, 0x30, 0xae, 0x88, 0xcf, 0x3b, 0xa8, 0xfd, 0x90, 0xfe, 0xf3, 0xae, 0xbe, 0xa7, 0xa8, 0xb6,
+ 0x5b, 0x59, 0xaa, 0xe5, 0xf0, 0x08, 0x7f, 0x41, 0x80, 0x49, 0x7d, 0xc3, 0x92, 0x9f, 0x05, 0x5f,
+ 0x8f, 0x4c, 0xaf, 0xe4, 0x98, 0x8a, 0x7e, 0xce, 0x82, 0x03, 0x70, 0x56, 0xcc, 0x04, 0x03, 0xbc,
+ 0xa3, 0xd0, 0x90, 0xf6, 0xe7, 0x88, 0xbd, 0xeb, 0xad, 0xef, 0x95, 0xbb, 0x6a, 0x53, 0xea, 0x72,
+ 0x88, 0x03, 0xbc, 0x2b, 0x65, 0xad, 0xe1, 0x07, 0xf8, 0xba, 0x1b, 0xe0, 0xb3, 0xa2, 0xe8, 0x0d,
+ 0xb8, 0xd6, 0xa1, 0x5d, 0xe0, 0x85, 0x1a, 0xf3, 0x72, 0x79, 0x9a, 0xfa, 0x0a, 0x24, 0xad, 0x12,
+ 0x18, 0xe0, 0x15, 0x37, 0x80, 0xf3, 0x99, 0x39, 0x4f, 0x80, 0xe8, 0xfb, 0x05, 0x98, 0xd0, 0xcd,
+ 0x46, 0x51, 0x6a, 0xb2, 0x6f, 0xf2, 0xbc, 0x94, 0x55, 0x10, 0x6b, 0x6b, 0xb4, 0x42, 0xd4, 0xf7,
+ 0x65, 0xaf, 0x8d, 0x5f, 0xc3, 0x88, 0x35, 0x95, 0xac, 0x2a, 0x35, 0x3b, 0xb4, 0xe3, 0x1f, 0xa0,
+ 0x70, 0x8c, 0xc3, 0xeb, 0xf4, 0xe1, 0x2b, 0x2f, 0x38, 0x8b, 0x01, 0xe0, 0x70, 0xed, 0x10, 0xf2,
+ 0x30, 0x5b, 0x42, 0x9d, 0x0b, 0xeb, 0x3a, 0x96, 0xc1, 0x21, 0x5e, 0x47, 0x96, 0xde, 0x32, 0xfc,
+ 0x39, 0x4e, 0x1b, 0xb1, 0x87, 0xb5, 0x02, 0x6a, 0x23, 0xfd, 0x9d, 0xa5, 0xe0, 0xda, 0x88, 0xd6,
+ 0x20, 0x3a, 0x13, 0x41, 0x92, 0x03, 0xe9, 0xae, 0x94, 0x18, 0x50, 0x2c, 0x02, 0xbf, 0x2c, 0xc0,
+ 0x04, 0x75, 0x18, 0x78, 0xa0, 0x2f, 0x05, 0xf3, 0x31, 0x0e, 0x82, 0xf5, 0xb5, 0x3e, 0x58, 0x4f,
+ 0xa7, 0xd3, 0x76, 0xac, 0xa6, 0x73, 0x87, 0x51, 0x7f, 0xd6, 0x2a, 0x12, 0x41, 0x51, 0x1b, 0x22,
+ 0x61, 0x45, 0xdd, 0x4f, 0x66, 0x27, 0x61, 0x82, 0x83, 0xc8, 0xed, 0x54, 0x9d, 0xc8, 0xf4, 0xc1,
+ 0x88, 0x57, 0xa6, 0xbc, 0x15, 0x65, 0xce, 0x6d, 0x20, 0x2b, 0xea, 0xf2, 0x58, 0x50, 0x20, 0x2b,
+ 0xea, 0xf6, 0x38, 0x13, 0xd9, 0x82, 0xf7, 0x60, 0x5b, 0xde, 0x98, 0xea, 0x03, 0xe0, 0x8c, 0xe9,
+ 0x4f, 0x08, 0xc6, 0x43, 0xa0, 0x87, 0xed, 0xa8, 0x62, 0xd9, 0x1a, 0x33, 0x9e, 0x99, 0xb0, 0x3a,
+ 0x69, 0x2c, 0xd1, 0xe6, 0xb0, 0xfe, 0x82, 0x00, 0x63, 0x74, 0xa4, 0x0c, 0xa2, 0xe6, 0x1f, 0x73,
+ 0x71, 0x7b, 0x40, 0x31, 0x7d, 0x2d, 0x64, 0x2d, 0x2e, 0xf2, 0xe2, 0x86, 0x78, 0x46, 0x9c, 0x30,
+ 0x11, 0x73, 0xc4, 0xfc, 0x94, 0x60, 0x1c, 0xc9, 0x22, 0x27, 0x40, 0x2e, 0x06, 0xec, 0xb6, 0x98,
+ 0xf7, 0x0f, 0x5f, 0xb1, 0xa2, 0x44, 0x65, 0x5e, 0x22, 0x42, 0x65, 0xc1, 0x85, 0x22, 0x45, 0x8a,
+ 0x2d, 0x89, 0xc6, 0xac, 0xd4, 0x44, 0x3f, 0x26, 0xc0, 0x28, 0x5d, 0xe0, 0xb0, 0x36, 0x02, 0x13,
+ 0xd1, 0xba, 0x2c, 0x3a, 0x1f, 0xb0, 0x16, 0x59, 0x91, 0x24, 0x61, 0x4c, 0x87, 0xc7, 0x2d, 0x8f,
+ 0xc6, 0xc4, 0x61, 0x03, 0x1c, 0x26, 0xd8, 0x3f, 0x10, 0x60, 0x94, 0x06, 0xc9, 0xc2, 0x42, 0xa3,
+ 0xb5, 0x42, 0x43, 0xbb, 0x42, 0x64, 0x7d, 0x54, 0x87, 0x46, 0x74, 0x91, 0x41, 0xba, 0xc9, 0xb4,
+ 0x8d, 0x74, 0x18, 0xe2, 0xe7, 0x05, 0x98, 0x30, 0x57, 0x0a, 0x3a, 0xcc, 0x10, 0x33, 0x1b, 0x18,
+ 0xdb, 0xeb, 0xfd, 0xb0, 0x61, 0x5d, 0x69, 0x15, 0x12, 0xdb, 0x82, 0xe2, 0xf3, 0x44, 0x57, 0x1e,
+ 0x47, 0x9c, 0xd6, 0x85, 0xc7, 0x23, 0x01, 0x46, 0xa9, 0x82, 0xde, 0x07, 0x46, 0x2f, 0x15, 0x8e,
+ 0x05, 0x75, 0xca, 0xe4, 0x38, 0xaa, 0xbf, 0x4d, 0x91, 0xc8, 0xd8, 0x45, 0xe2, 0xf7, 0x8c, 0x08,
+ 0x88, 0xf5, 0xd9, 0xd5, 0x00, 0x11, 0x90, 0x3e, 0xef, 0xb4, 0xa6, 0x5f, 0x0d, 0xff, 0x76, 0xa8,
+ 0xa1, 0x6b, 0xae, 0x79, 0xe8, 0x1a, 0xac, 0xbf, 0xd9, 0xa3, 0xc6, 0x6e, 0x2a, 0xe7, 0x37, 0x04,
+ 0x98, 0x5e, 0x55, 0x7a, 0x56, 0x54, 0x44, 0xf9, 0x2c, 0x86, 0x01, 0x13, 0x24, 0xd6, 0x68, 0x7f,
+ 0x30, 0x57, 0x5c, 0xf1, 0x80, 0xfc, 0x3c, 0xba, 0xe8, 0x80, 0xfc, 0xd0, 0x7c, 0x06, 0xea, 0x5d,
+ 0x9a, 0xc9, 0xa6, 0xe2, 0xa7, 0xe8, 0x00, 0x2c, 0xdf, 0xa3, 0xf5, 0xf7, 0xe9, 0x82, 0x3e, 0x67,
+ 0xcb, 0xfb, 0x75, 0xd8, 0x40, 0x4e, 0xc3, 0xa4, 0x0e, 0xd5, 0x6e, 0x24, 0xe7, 0xd0, 0xac, 0xc9,
+ 0x21, 0x56, 0xff, 0xee, 0x2f, 0x05, 0x98, 0xb2, 0xd8, 0x20, 0xdd, 0xc8, 0xbf, 0x1a, 0x0a, 0x86,
+ 0x95, 0x51, 0x5e, 0xdb, 0x57, 0x5d, 0xc6, 0x29, 0xb7, 0x1f, 0x3d, 0x4e, 0x2d, 0xb8, 0x8e, 0x05,
+ 0x0d, 0xeb, 0xa2, 0xc2, 0x26, 0x42, 0x7c, 0x2e, 0xeb, 0x3e, 0x03, 0x2e, 0x9e, 0xc0, 0xaf, 0x08,
+ 0x90, 0xcc, 0xc9, 0xb2, 0xa5, 0x67, 0x74, 0x25, 0x14, 0xd0, 0x9c, 0x2c, 0xfb, 0xef, 0x46, 0x5a,
+ 0x6a, 0x90, 0xcd, 0x81, 0x34, 0x4c, 0xd9, 0x06, 0x63, 0xd5, 0x29, 0xf3, 0xa2, 0xdd, 0x41, 0xe0,
+ 0x3c, 0xdb, 0xdf, 0x11, 0x60, 0x92, 0x7a, 0x18, 0x56, 0xe4, 0x2f, 0x84, 0xc2, 0x41, 0x5b, 0x08,
+ 0x0b, 0xbe, 0x18, 0x00, 0xfc, 0xb9, 0xf4, 0x82, 0x3b, 0x78, 0xab, 0xab, 0xfb, 0xf3, 0x02, 0x4c,
+ 0x5a, 0xd4, 0xe2, 0xbe, 0x86, 0x41, 0x5b, 0xf0, 0x54, 0x93, 0xab, 0x8f, 0x1e, 0xa7, 0xe6, 0x61,
+ 0xda, 0x86, 0xd7, 0xa6, 0x2d, 0xc5, 0x8c, 0x2f, 0x60, 0xf4, 0xef, 0x0d, 0xbf, 0x97, 0xfb, 0x96,
+ 0x35, 0xc0, 0xf6, 0x92, 0xe3, 0xcb, 0xd7, 0xc0, 0xdb, 0x4b, 0x2e, 0x35, 0x99, 0x38, 0xbc, 0xf5,
+ 0xe8, 0x71, 0xea, 0x14, 0x4c, 0x18, 0x5a, 0xa8, 0xdd, 0x50, 0x5c, 0x85, 0xe1, 0xa2, 0x78, 0xd6,
+ 0x43, 0x18, 0x88, 0xa0, 0xf3, 0xa2, 0xf0, 0x73, 0x74, 0x4d, 0xc7, 0xf5, 0x19, 0x58, 0x9b, 0xe2,
+ 0xc2, 0x58, 0x0c, 0x9e, 0x0f, 0x51, 0x9e, 0x2c, 0x92, 0x52, 0xe4, 0x3a, 0x44, 0x73, 0x08, 0x56,
+ 0x2e, 0x9a, 0x13, 0xa7, 0x6c, 0x93, 0x42, 0x40, 0xb3, 0xe8, 0x06, 0x5a, 0xde, 0x6d, 0xdc, 0xb3,
+ 0x01, 0x5e, 0x0a, 0x07, 0x18, 0xb7, 0xe0, 0xc9, 0x37, 0x39, 0x5f, 0x7c, 0xa7, 0xc5, 0xb4, 0x1b,
+ 0xbe, 0x6c, 0xed, 0xee, 0x6e, 0x83, 0xc4, 0x60, 0xbe, 0x68, 0x2c, 0x40, 0x79, 0x90, 0x57, 0x43,
+ 0x80, 0x64, 0x22, 0x1a, 0x8a, 0xb0, 0x01, 0x80, 0xa7, 0xdd, 0x81, 0x3f, 0xbc, 0xa7, 0xec, 0xbd,
+ 0xcb, 0x0e, 0x8e, 0x4c, 0x58, 0x04, 0x33, 0x34, 0x70, 0x1f, 0xa1, 0xc4, 0x1a, 0x70, 0xce, 0x54,
+ 0xe7, 0x04, 0xa3, 0x4d, 0x24, 0xf1, 0x22, 0xd4, 0x13, 0x24, 0xfa, 0x4f, 0x86, 0x30, 0x72, 0xdf,
+ 0x96, 0x06, 0x10, 0x46, 0xc7, 0x97, 0xa8, 0x81, 0x85, 0xd1, 0xa5, 0x26, 0x13, 0xc6, 0x3b, 0x8f,
+ 0x1e, 0xa7, 0x4e, 0x42, 0x52, 0x1f, 0x8c, 0xd4, 0xe9, 0xb8, 0xca, 0xe2, 0x15, 0xf1, 0x79, 0x0f,
+ 0x59, 0x94, 0xb8, 0x21, 0xf0, 0x22, 0xf9, 0x3b, 0x02, 0x8c, 0x73, 0xdd, 0x12, 0x0f, 0xe7, 0x72,
+ 0x08, 0x9c, 0x41, 0x8e, 0x33, 0x70, 0xc5, 0x89, 0x7f, 0xf3, 0x56, 0xb0, 0xc1, 0x64, 0xd0, 0x85,
+ 0x20, 0x83, 0x21, 0xde, 0xce, 0x97, 0x04, 0x40, 0x5c, 0x37, 0x87, 0xbd, 0xe4, 0xfe, 0x10, 0x8d,
+ 0xbe, 0xd8, 0x47, 0x40, 0xb7, 0x5c, 0xd1, 0x25, 0x1b, 0x53, 0x59, 0xe1, 0x6a, 0x4a, 0xbd, 0xc6,
+ 0x2f, 0xc6, 0xff, 0x8d, 0x00, 0xd3, 0x6c, 0x57, 0xcd, 0xfa, 0xa1, 0x36, 0xba, 0x16, 0xe4, 0xca,
+ 0x7c, 0x7e, 0xd4, 0xa4, 0x15, 0x7f, 0x49, 0xe6, 0xaa, 0x10, 0xa7, 0x87, 0xd3, 0xf2, 0x78, 0x24,
+ 0x54, 0x90, 0x6d, 0x93, 0x71, 0x59, 0x0c, 0x34, 0x19, 0x6d, 0x55, 0xae, 0x63, 0xb6, 0xfa, 0x03,
+ 0xe3, 0x60, 0x07, 0x3f, 0xa0, 0xab, 0x21, 0x90, 0xd1, 0xda, 0x87, 0x34, 0x98, 0x74, 0x60, 0xce,
+ 0xc2, 0x83, 0xf9, 0x13, 0x01, 0xa6, 0xcd, 0xa5, 0x2a, 0x3f, 0xa0, 0x90, 0x92, 0x12, 0x6a, 0x30,
+ 0x52, 0xc0, 0xc1, 0x5c, 0x4f, 0xbf, 0x18, 0x74, 0x30, 0xf6, 0xb5, 0x2d, 0x1e, 0x58, 0xe5, 0xbd,
+ 0x31, 0x30, 0xeb, 0x62, 0xf8, 0x97, 0x0c, 0xe3, 0x72, 0x80, 0x41, 0x79, 0x19, 0x96, 0xea, 0xa3,
+ 0xc7, 0xa9, 0xd3, 0xa6, 0xf1, 0xc3, 0xf8, 0x99, 0x5d, 0xb1, 0x2b, 0xb0, 0x4c, 0x70, 0x05, 0xf6,
+ 0xdf, 0x04, 0x98, 0x77, 0x08, 0x0c, 0x96, 0x6f, 0xf6, 0xaa, 0x48, 0xa0, 0xe7, 0x33, 0xf8, 0x07,
+ 0x90, 0xd2, 0x99, 0xe0, 0x35, 0xc4, 0x46, 0xc0, 0x29, 0xc9, 0xa7, 0xdf, 0x08, 0x34, 0x22, 0xee,
+ 0x17, 0xc9, 0xc5, 0x6a, 0x81, 0x9e, 0xe4, 0xc1, 0xb3, 0xf3, 0xd7, 0x02, 0xa4, 0x2b, 0xca, 0x36,
+ 0xdb, 0xcb, 0x23, 0x30, 0xf8, 0xb7, 0x94, 0x42, 0x4e, 0x93, 0xef, 0x67, 0x1b, 0x7c, 0xe3, 0x62,
+ 0x2f, 0xe0, 0x48, 0xd7, 0xd2, 0xab, 0x81, 0x99, 0xcf, 0x1c, 0x5d, 0xb6, 0x46, 0xb5, 0x3a, 0x7d,
+ 0xaa, 0x85, 0xbe, 0x17, 0x85, 0x47, 0xfc, 0x1f, 0x05, 0x98, 0xb4, 0xf8, 0xf5, 0x64, 0xb1, 0xaf,
+ 0xa1, 0xeb, 0xfb, 0x09, 0x6c, 0x1c, 0x3c, 0x26, 0x62, 0xe3, 0x60, 0x12, 0x36, 0x70, 0x37, 0xc1,
+ 0xe2, 0xb9, 0x6c, 0xdf, 0x50, 0x03, 0xe7, 0x49, 0x7c, 0x49, 0x30, 0x6e, 0x0f, 0x22, 0x7d, 0x1e,
+ 0x51, 0xb0, 0x64, 0x99, 0x84, 0xa8, 0x5c, 0xc6, 0x42, 0xb7, 0x08, 0x91, 0x98, 0xf5, 0x8f, 0x95,
+ 0xfc, 0xaa, 0x00, 0xc8, 0x12, 0xc9, 0xa5, 0x6f, 0xd5, 0x2f, 0x85, 0x01, 0xc3, 0x8c, 0xef, 0xa5,
+ 0x30, 0x75, 0x88, 0x1f, 0xcd, 0x85, 0x4f, 0x28, 0x78, 0x73, 0x23, 0x47, 0x14, 0x4f, 0xf6, 0x45,
+ 0xcf, 0x02, 0x55, 0xc8, 0x12, 0xea, 0xdd, 0x07, 0x76, 0xa6, 0x31, 0xc2, 0x61, 0xbf, 0xd1, 0x1f,
+ 0xfb, 0xf9, 0x74, 0x00, 0xca, 0x33, 0x57, 0x61, 0xc6, 0x11, 0x08, 0xa6, 0x83, 0x08, 0xcb, 0x3d,
+ 0xe1, 0x06, 0x50, 0xe9, 0x3f, 0x80, 0x17, 0xd2, 0x8b, 0xfe, 0x03, 0xb0, 0x5b, 0x54, 0x3c, 0x98,
+ 0xca, 0xd7, 0xee, 0x60, 0xac, 0x56, 0xf4, 0x67, 0x04, 0x40, 0x96, 0x25, 0xda, 0xfe, 0x06, 0xd2,
+ 0xef, 0x10, 0xc2, 0x8c, 0x19, 0xe5, 0xa1, 0x90, 0xb9, 0x2d, 0xc2, 0xb3, 0x99, 0x20, 0xb2, 0xfb,
+ 0x2b, 0x02, 0xa4, 0xcd, 0x38, 0x27, 0x77, 0x33, 0x4d, 0xff, 0x60, 0xe7, 0xcb, 0x61, 0x06, 0xc1,
+ 0x47, 0x3c, 0x0b, 0x24, 0xd6, 0x33, 0x67, 0x45, 0x6d, 0x8f, 0x7b, 0x2e, 0xa0, 0x53, 0x26, 0x74,
+ 0x86, 0xd6, 0x1a, 0xfe, 0x7c, 0x14, 0x81, 0x39, 0xa7, 0x45, 0xd0, 0x63, 0xa0, 0x6f, 0x84, 0x47,
+ 0x67, 0xb5, 0x0e, 0x6f, 0xee, 0xbf, 0x01, 0x66, 0x23, 0xee, 0x06, 0x19, 0xe7, 0x07, 0xc4, 0x57,
+ 0x7c, 0xa6, 0x48, 0x7f, 0x73, 0xde, 0x35, 0x34, 0xfa, 0x17, 0x02, 0x4c, 0x9b, 0xe1, 0x15, 0x0e,
+ 0x0b, 0xba, 0x16, 0x1e, 0x7f, 0x4e, 0x96, 0xd3, 0x4b, 0xe1, 0xab, 0x89, 0x1f, 0x79, 0xf4, 0x38,
+ 0x75, 0x02, 0xd2, 0xae, 0x03, 0x35, 0x05, 0xe8, 0x9a, 0x78, 0x25, 0xec, 0x48, 0x99, 0xab, 0x93,
+ 0xb2, 0x84, 0x67, 0xf8, 0x41, 0xbe, 0x12, 0x1e, 0x2d, 0x0b, 0xd6, 0xec, 0x67, 0x9c, 0x4a, 0xa0,
+ 0x71, 0xbe, 0x91, 0x7e, 0x35, 0xf4, 0x8c, 0x5a, 0x02, 0xae, 0x7f, 0x24, 0x40, 0xca, 0xa9, 0x34,
+ 0xf6, 0x3f, 0x62, 0x9f, 0x28, 0x4f, 0x9d, 0xc4, 0x12, 0xe6, 0x5d, 0x47, 0xc5, 0xe9, 0x92, 0xd7,
+ 0x33, 0x07, 0x18, 0x16, 0xfa, 0x35, 0x01, 0x92, 0xe6, 0xc1, 0x5e, 0xe6, 0xbb, 0xbd, 0x14, 0xf2,
+ 0x41, 0xfd, 0xc0, 0x87, 0x11, 0x1c, 0xf5, 0xb8, 0x9d, 0xac, 0x09, 0x18, 0xa7, 0xf7, 0x01, 0x58,
+ 0xdd, 0x1c, 0xf3, 0xfb, 0x55, 0xa7, 0x5f, 0xf6, 0x8f, 0x04, 0x7a, 0x63, 0xaf, 0xe9, 0x94, 0x3d,
+ 0x1f, 0x18, 0x41, 0xd0, 0xaf, 0xa0, 0x4c, 0x77, 0xec, 0xba, 0x37, 0xc8, 0x53, 0xe8, 0x84, 0xe3,
+ 0xa4, 0x31, 0xaf, 0xc9, 0xbf, 0x20, 0xc0, 0xb8, 0xf9, 0xa1, 0x3f, 0xb5, 0x35, 0xd9, 0xc0, 0xbd,
+ 0x33, 0xff, 0xeb, 0x62, 0xe0, 0x0a, 0xd6, 0xfb, 0x15, 0x6c, 0xf6, 0xf2, 0x84, 0x38, 0xeb, 0x81,
+ 0x15, 0x93, 0xf4, 0x9f, 0x08, 0x30, 0x6e, 0x7e, 0xb6, 0x12, 0x16, 0x29, 0xf3, 0xb6, 0x42, 0x20,
+ 0xfd, 0x40, 0x1f, 0xa4, 0x67, 0xd2, 0x7d, 0xa9, 0xca, 0x3c, 0xf3, 0x49, 0xeb, 0xd5, 0x06, 0x14,
+ 0x72, 0x28, 0x3e, 0x08, 0x01, 0xb7, 0xd8, 0x07, 0xee, 0xe5, 0xf4, 0x85, 0x7e, 0x70, 0xed, 0xfe,
+ 0xd4, 0x97, 0xc8, 0xf6, 0xcd, 0xd7, 0x08, 0x74, 0xab, 0xf7, 0xf4, 0x29, 0x81, 0xff, 0x82, 0x6e,
+ 0x1f, 0xb0, 0xfb, 0x7d, 0x43, 0x31, 0x09, 0x13, 0x1c, 0x46, 0x4e, 0xd1, 0x9d, 0xca, 0xf4, 0x17,
+ 0xb2, 0x1f, 0x13, 0x60, 0x72, 0x79, 0xb7, 0x71, 0xcf, 0x8e, 0xec, 0x85, 0xc0, 0xc8, 0x68, 0xcd,
+ 0xbe, 0xfb, 0x1a, 0x2f, 0xf6, 0x43, 0x38, 0x9b, 0x41, 0x14, 0xa1, 0xae, 0xaa, 0xf4, 0xad, 0x8c,
+ 0x4f, 0x08, 0xe4, 0xa6, 0x28, 0xa2, 0xa2, 0xce, 0x05, 0x78, 0xd4, 0x2c, 0xc8, 0xd9, 0x0a, 0xf6,
+ 0xea, 0x2e, 0x39, 0xd9, 0x33, 0x06, 0x23, 0xed, 0xee, 0xf6, 0xa2, 0x2a, 0x77, 0x5c, 0x0e, 0xf4,
+ 0x37, 0x95, 0xac, 0xfe, 0xd1, 0xd1, 0xbb, 0xe8, 0x27, 0x8d, 0x93, 0x3d, 0xec, 0x65, 0x56, 0x7f,
+ 0xf2, 0xb8, 0xbc, 0x35, 0x1e, 0xe0, 0x7e, 0x1e, 0xb9, 0x43, 0x4e, 0xce, 0x8c, 0xc3, 0xa8, 0x8e,
+ 0xcc, 0x64, 0xb7, 0x59, 0xd1, 0x06, 0x4d, 0x8f, 0xad, 0x7e, 0xca, 0xd0, 0x3e, 0xe6, 0x43, 0xf1,
+ 0x17, 0x03, 0x74, 0xc5, 0xf4, 0xce, 0x01, 0x51, 0xa5, 0x5d, 0x08, 0xc6, 0xf6, 0x73, 0x38, 0x25,
+ 0x63, 0x22, 0x0b, 0x38, 0x93, 0x81, 0x50, 0xbd, 0xee, 0x85, 0xea, 0xd9, 0xf4, 0x29, 0x27, 0x2a,
+ 0xbb, 0x2e, 0xf9, 0x69, 0x8b, 0x2e, 0x39, 0x1e, 0x08, 0xad, 0x2a, 0xe3, 0xdb, 0x74, 0x8d, 0x11,
+ 0x1a, 0x9c, 0x97, 0x24, 0x5e, 0xf6, 0xc2, 0x33, 0x95, 0x71, 0x63, 0xfc, 0x5f, 0x13, 0x60, 0x92,
+ 0xb2, 0x89, 0x85, 0x9f, 0x43, 0xb2, 0x3f, 0x63, 0xb4, 0xcb, 0xa1, 0x2a, 0x91, 0xfd, 0x3a, 0x57,
+ 0xa8, 0xcf, 0xa5, 0xcf, 0x38, 0xa0, 0x76, 0x5c, 0xc2, 0x8a, 0x9f, 0x17, 0x00, 0xa8, 0xcb, 0x54,
+ 0x94, 0x3b, 0x9a, 0x7f, 0xc4, 0xd4, 0xfe, 0x94, 0x70, 0xfa, 0x6a, 0x88, 0x1a, 0xdc, 0x7d, 0x39,
+ 0x6e, 0x7a, 0x05, 0x3b, 0x64, 0x16, 0xcc, 0x9c, 0x43, 0xf6, 0x7d, 0xf4, 0xcb, 0x61, 0xfe, 0x0d,
+ 0x5e, 0xaf, 0x55, 0x6a, 0x36, 0xd0, 0xbd, 0x52, 0xdc, 0xa1, 0xef, 0x2b, 0xf4, 0x5e, 0x18, 0x7a,
+ 0xa6, 0xdb, 0x7a, 0x0e, 0x47, 0x87, 0x43, 0xf2, 0x54, 0x45, 0xcb, 0x92, 0xfb, 0xa2, 0xd0, 0xa7,
+ 0xe9, 0x39, 0xa1, 0x3c, 0x7d, 0x77, 0xe4, 0x50, 0x40, 0x5d, 0x73, 0x07, 0x85, 0xfd, 0x41, 0x02,
+ 0x8a, 0xbd, 0x79, 0x62, 0x47, 0xf6, 0x73, 0x02, 0x4c, 0x50, 0x4d, 0xca, 0xa3, 0x5a, 0x0a, 0xd1,
+ 0x7b, 0xe0, 0x6f, 0x98, 0xb9, 0x3a, 0xc4, 0x78, 0x8d, 0xc1, 0x08, 0x43, 0x6b, 0x75, 0x09, 0xdd,
+ 0x69, 0x68, 0xfd, 0x92, 0xf9, 0x78, 0x80, 0x4d, 0xf7, 0x03, 0xfb, 0x40, 0xdf, 0x1d, 0x09, 0x32,
+ 0xdd, 0x5e, 0xaa, 0x65, 0x89, 0xca, 0x2b, 0xeb, 0x9a, 0x33, 0xf0, 0x73, 0x19, 0x4f, 0x66, 0xfb,
+ 0x33, 0x1a, 0xac, 0xe1, 0xba, 0xe5, 0xae, 0x74, 0x0c, 0xb0, 0xb5, 0xee, 0xf5, 0x7a, 0xa8, 0xff,
+ 0xd6, 0xba, 0xe7, 0x03, 0xad, 0xe2, 0x4d, 0x77, 0xee, 0xbc, 0x2a, 0x5e, 0xf2, 0x18, 0x05, 0x16,
+ 0x68, 0xfd, 0xa1, 0x60, 0x8b, 0x60, 0xff, 0x33, 0x01, 0xe6, 0x73, 0xb2, 0xcc, 0xdf, 0x52, 0xd9,
+ 0xe6, 0x29, 0xbc, 0x18, 0x02, 0x64, 0xa0, 0xb3, 0x2e, 0x5c, 0x79, 0x12, 0x4a, 0x76, 0xe3, 0x84,
+ 0x8b, 0xe2, 0xd9, 0x20, 0xe3, 0xc0, 0xf8, 0x7f, 0x55, 0x80, 0x05, 0xc3, 0xfe, 0xe8, 0x0d, 0xdf,
+ 0xe8, 0xb6, 0x9b, 0xfc, 0x20, 0x2e, 0x87, 0x00, 0xd5, 0xc7, 0x30, 0x6d, 0x78, 0xc0, 0x7d, 0x29,
+ 0xf3, 0x62, 0x20, 0xb2, 0xdb, 0x3e, 0x0e, 0x47, 0x5f, 0x14, 0x60, 0xde, 0xca, 0x59, 0x96, 0xd7,
+ 0x2b, 0x3d, 0xb9, 0xfb, 0x85, 0x30, 0xef, 0x49, 0xb2, 0xe7, 0x22, 0xc9, 0xf6, 0xff, 0x04, 0x8c,
+ 0xab, 0x52, 0x73, 0xd1, 0xce, 0x36, 0x59, 0x74, 0xd9, 0x0b, 0x3f, 0x7d, 0x87, 0x92, 0xbd, 0x30,
+ 0xa9, 0xf3, 0x0d, 0xfa, 0x2d, 0x01, 0x4e, 0xe4, 0x64, 0xd9, 0x72, 0x2b, 0xa8, 0x85, 0x6b, 0x2e,
+ 0x85, 0x41, 0x98, 0x0e, 0x55, 0x9a, 0xc4, 0xf0, 0x11, 0x79, 0x36, 0x69, 0xd1, 0x31, 0x13, 0x19,
+ 0xf1, 0x5c, 0xa0, 0x91, 0xb0, 0x4d, 0x88, 0x33, 0x94, 0x73, 0xf8, 0xe6, 0xed, 0xac, 0x13, 0x6e,
+ 0x24, 0xfd, 0xb6, 0x5f, 0xbd, 0x30, 0xbf, 0x9c, 0xb9, 0x16, 0x8c, 0xfa, 0x0f, 0x2d, 0x6f, 0x8b,
+ 0xbe, 0x8b, 0x7e, 0xd9, 0xa1, 0x98, 0xf8, 0xaf, 0xff, 0xf7, 0x7f, 0x64, 0xd6, 0xf9, 0xd6, 0x28,
+ 0x59, 0x62, 0x7a, 0x30, 0xcf, 0x22, 0xf2, 0xd4, 0x39, 0xe4, 0xd1, 0x4f, 0x3b, 0xef, 0xfc, 0x06,
+ 0x55, 0x38, 0xfc, 0x3d, 0xaf, 0x16, 0xd6, 0x79, 0x3e, 0x04, 0xbc, 0x74, 0x98, 0xc2, 0x24, 0x0a,
+ 0xee, 0x35, 0x09, 0x7d, 0x34, 0x0e, 0x3f, 0x0a, 0xcc, 0x37, 0xbf, 0x66, 0x68, 0x1c, 0xae, 0x71,
+ 0x3b, 0xdb, 0x84, 0x1a, 0x85, 0x17, 0xd7, 0xbc, 0xd5, 0x07, 0xf0, 0xb5, 0xcc, 0x0b, 0x81, 0xc8,
+ 0xfe, 0x90, 0x7f, 0xbe, 0x95, 0xf0, 0x0c, 0x56, 0x39, 0x9e, 0xcf, 0xaf, 0x7a, 0x31, 0xcd, 0xeb,
+ 0x41, 0x2f, 0x53, 0x70, 0x7b, 0xa7, 0x53, 0xfc, 0xa0, 0xbb, 0xb9, 0x3a, 0x8f, 0x5c, 0xa4, 0xd5,
+ 0xb8, 0x48, 0xa1, 0x6e, 0xb4, 0x84, 0x7e, 0x53, 0x00, 0xd1, 0xf4, 0xf7, 0x8e, 0x18, 0xfc, 0x8a,
+ 0x3b, 0xf8, 0x4b, 0x28, 0xe3, 0xe1, 0x09, 0xba, 0x8d, 0xe0, 0x2f, 0x04, 0x38, 0xc5, 0x76, 0x6b,
+ 0xbd, 0xd0, 0xbf, 0xb1, 0x5f, 0x94, 0x81, 0xef, 0xc2, 0xf3, 0x6a, 0x80, 0xec, 0x47, 0xbb, 0x19,
+ 0x36, 0x57, 0x75, 0xea, 0x32, 0x3c, 0xb6, 0x2f, 0x72, 0x8a, 0xed, 0xe9, 0x7e, 0x2d, 0x8d, 0x30,
+ 0x1d, 0x7c, 0x84, 0x9f, 0x14, 0xe0, 0x14, 0xdb, 0x25, 0x08, 0xcb, 0x81, 0xfd, 0xae, 0x74, 0x72,
+ 0xf5, 0x47, 0xcf, 0x67, 0x02, 0x8a, 0xc6, 0x67, 0xe9, 0xd5, 0x0a, 0xce, 0xa7, 0x5a, 0xbd, 0xa0,
+ 0x5c, 0x0b, 0x4a, 0x43, 0xcb, 0x8b, 0xa4, 0xe4, 0xba, 0x44, 0x17, 0x29, 0x58, 0x40, 0xa7, 0xfa,
+ 0xe0, 0x94, 0xb6, 0xc9, 0x45, 0x7f, 0xf3, 0x4e, 0xd9, 0x3d, 0x34, 0x9c, 0xaf, 0xbb, 0xe3, 0x3c,
+ 0x87, 0x9e, 0xf5, 0x93, 0x56, 0x0c, 0xf6, 0xb7, 0x05, 0x98, 0xb5, 0x8a, 0xa9, 0x09, 0xf4, 0x95,
+ 0xd0, 0x80, 0x02, 0xaf, 0xd1, 0x1d, 0x35, 0x49, 0xbc, 0xd4, 0x8d, 0x5f, 0x9f, 0x15, 0x7d, 0xe8,
+ 0x8d, 0x19, 0x15, 0x8f, 0xc2, 0x2a, 0x8a, 0xc7, 0x6d, 0x14, 0xe9, 0x00, 0xa3, 0xf8, 0x4e, 0x01,
+ 0x66, 0xad, 0xe2, 0xe6, 0xcf, 0x34, 0xfd, 0x3e, 0xeb, 0x75, 0x95, 0xb3, 0x85, 0x4c, 0x00, 0xfe,
+ 0x4d, 0x71, 0x02, 0x66, 0x7d, 0x8d, 0xd6, 0x0b, 0xc7, 0xf5, 0xa0, 0xb4, 0x72, 0x3c, 0xaf, 0x4a,
+ 0x68, 0xe6, 0xc2, 0xc0, 0x67, 0x91, 0xd8, 0x07, 0x28, 0x7b, 0x4e, 0x15, 0xaf, 0x28, 0x4e, 0x3b,
+ 0x85, 0xed, 0xd0, 0x31, 0xbf, 0xe9, 0x8e, 0xf9, 0x22, 0x3a, 0xef, 0x27, 0x74, 0x3a, 0xf0, 0x2f,
+ 0x0b, 0x30, 0x6f, 0x15, 0x3c, 0x2b, 0xe8, 0xd7, 0xf7, 0x05, 0x2e, 0xf8, 0x27, 0xbf, 0x6e, 0xb5,
+ 0x49, 0x74, 0xcf, 0x8d, 0x7d, 0xcf, 0x8b, 0x01, 0xe6, 0x02, 0xb3, 0xf0, 0x97, 0x8d, 0x03, 0x92,
+ 0x5f, 0x0b, 0xa3, 0x4a, 0x07, 0x1c, 0xd5, 0xf7, 0x93, 0x7b, 0x0e, 0x79, 0xc1, 0x0c, 0xc6, 0x60,
+ 0x5e, 0xc2, 0xf9, 0x01, 0x2f, 0xe1, 0x3c, 0x9b, 0x09, 0x80, 0x68, 0xf9, 0x9f, 0x0b, 0x9f, 0xcc,
+ 0xfd, 0x88, 0x80, 0x56, 0x61, 0xcc, 0x7c, 0xe3, 0x61, 0x21, 0x57, 0x2e, 0x8a, 0x57, 0xd0, 0xe2,
+ 0x4e, 0xaf, 0xd7, 0xd1, 0x5e, 0xcd, 0x66, 0xb7, 0xd5, 0xde, 0xce, 0xee, 0xdd, 0xc5, 0x7a, 0xbb,
+ 0x99, 0xc5, 0x34, 0x33, 0x1e, 0x2d, 0xe8, 0xdc, 0xdb, 0xce, 0x9a, 0x74, 0x5b, 0x8a, 0x5e, 0x59,
+ 0xbc, 0x9a, 0x11, 0x22, 0x4b, 0x49, 0xee, 0xbc, 0x64, 0xf6, 0x5b, 0xb4, 0x76, 0xcb, 0x9a, 0xb2,
+ 0xdd, 0xed, 0xd4, 0x5f, 0x75, 0x94, 0x79, 0xd5, 0x51, 0xe6, 0xc3, 0xcf, 0xf7, 0xeb, 0x17, 0x97,
+ 0xe0, 0x3a, 0xbf, 0x1b, 0x23, 0x64, 0x79, 0xe1, 0xff, 0x07, 0x00, 0x00, 0xff, 0xff, 0x54, 0xe6,
+ 0x02, 0x53, 0x20, 0x15, 0x01, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -23240,6 +14682,7 @@ type ManagementServiceClient interface {
SendSetPasswordNotification(ctx context.Context, in *SetPasswordNotificationRequest, opts ...grpc.CallOption) (*empty.Empty, error)
// A Manager is only allowed to set an initial password, on the next login the user has to change his password
SetInitialPassword(ctx context.Context, in *PasswordRequest, opts ...grpc.CallOption) (*empty.Empty, error)
+ ResendInitialMail(ctx context.Context, in *InitialMailRequest, opts ...grpc.CallOption) (*empty.Empty, error)
SearchUserMemberships(ctx context.Context, in *UserMembershipSearchRequest, opts ...grpc.CallOption) (*UserMembershipSearchResponse, error)
CreateOrg(ctx context.Context, in *OrgCreateRequest, opts ...grpc.CallOption) (*Org, error)
// OrgChanges returns the event stream of the org object
@@ -23708,6 +15151,15 @@ func (c *managementServiceClient) SetInitialPassword(ctx context.Context, in *Pa
return out, nil
}
+func (c *managementServiceClient) ResendInitialMail(ctx context.Context, in *InitialMailRequest, opts ...grpc.CallOption) (*empty.Empty, error) {
+ out := new(empty.Empty)
+ err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/ResendInitialMail", in, out, opts...)
+ if err != nil {
+ return nil, err
+ }
+ return out, nil
+}
+
func (c *managementServiceClient) SearchUserMemberships(ctx context.Context, in *UserMembershipSearchRequest, opts ...grpc.CallOption) (*UserMembershipSearchResponse, error) {
out := new(UserMembershipSearchResponse)
err := c.cc.Invoke(ctx, "/caos.zitadel.management.api.v1.ManagementService/SearchUserMemberships", in, out, opts...)
@@ -24709,6 +16161,7 @@ type ManagementServiceServer interface {
SendSetPasswordNotification(context.Context, *SetPasswordNotificationRequest) (*empty.Empty, error)
// A Manager is only allowed to set an initial password, on the next login the user has to change his password
SetInitialPassword(context.Context, *PasswordRequest) (*empty.Empty, error)
+ ResendInitialMail(context.Context, *InitialMailRequest) (*empty.Empty, error)
SearchUserMemberships(context.Context, *UserMembershipSearchRequest) (*UserMembershipSearchResponse, error)
CreateOrg(context.Context, *OrgCreateRequest) (*Org, error)
// OrgChanges returns the event stream of the org object
@@ -24831,436 +16284,439 @@ type ManagementServiceServer interface {
type UnimplementedManagementServiceServer struct {
}
-func (*UnimplementedManagementServiceServer) Healthz(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) Healthz(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Healthz not implemented")
}
-func (*UnimplementedManagementServiceServer) Ready(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) Ready(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method Ready not implemented")
}
-func (*UnimplementedManagementServiceServer) Validate(context.Context, *empty.Empty) (*_struct.Struct, error) {
+func (*UnimplementedManagementServiceServer) Validate(ctx context.Context, req *empty.Empty) (*_struct.Struct, error) {
return nil, status.Errorf(codes.Unimplemented, "method Validate not implemented")
}
-func (*UnimplementedManagementServiceServer) GetZitadelDocs(context.Context, *empty.Empty) (*ZitadelDocs, error) {
+func (*UnimplementedManagementServiceServer) GetZitadelDocs(ctx context.Context, req *empty.Empty) (*ZitadelDocs, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetZitadelDocs not implemented")
}
-func (*UnimplementedManagementServiceServer) GetIam(context.Context, *empty.Empty) (*Iam, error) {
+func (*UnimplementedManagementServiceServer) GetIam(ctx context.Context, req *empty.Empty) (*Iam, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetIam not implemented")
}
-func (*UnimplementedManagementServiceServer) IsUserUnique(context.Context, *UniqueUserRequest) (*UniqueUserResponse, error) {
+func (*UnimplementedManagementServiceServer) IsUserUnique(ctx context.Context, req *UniqueUserRequest) (*UniqueUserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method IsUserUnique not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserByID(context.Context, *UserID) (*UserView, error) {
+func (*UnimplementedManagementServiceServer) GetUserByID(ctx context.Context, req *UserID) (*UserView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserByID not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserByLoginNameGlobal(context.Context, *LoginName) (*UserView, error) {
+func (*UnimplementedManagementServiceServer) GetUserByLoginNameGlobal(ctx context.Context, req *LoginName) (*UserView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserByLoginNameGlobal not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchUsers(context.Context, *UserSearchRequest) (*UserSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchUsers(ctx context.Context, req *UserSearchRequest) (*UserSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchUsers not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateUser(context.Context, *CreateUserRequest) (*UserResponse, error) {
+func (*UnimplementedManagementServiceServer) CreateUser(ctx context.Context, req *CreateUserRequest) (*UserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateUser not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateUser(context.Context, *UserID) (*UserResponse, error) {
+func (*UnimplementedManagementServiceServer) DeactivateUser(ctx context.Context, req *UserID) (*UserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateUser not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateUser(context.Context, *UserID) (*UserResponse, error) {
+func (*UnimplementedManagementServiceServer) ReactivateUser(ctx context.Context, req *UserID) (*UserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateUser not implemented")
}
-func (*UnimplementedManagementServiceServer) LockUser(context.Context, *UserID) (*UserResponse, error) {
+func (*UnimplementedManagementServiceServer) LockUser(ctx context.Context, req *UserID) (*UserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method LockUser not implemented")
}
-func (*UnimplementedManagementServiceServer) UnlockUser(context.Context, *UserID) (*UserResponse, error) {
+func (*UnimplementedManagementServiceServer) UnlockUser(ctx context.Context, req *UserID) (*UserResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method UnlockUser not implemented")
}
-func (*UnimplementedManagementServiceServer) DeleteUser(context.Context, *UserID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) DeleteUser(ctx context.Context, req *UserID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteUser not implemented")
}
-func (*UnimplementedManagementServiceServer) UserChanges(context.Context, *ChangeRequest) (*Changes, error) {
+func (*UnimplementedManagementServiceServer) UserChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
return nil, status.Errorf(codes.Unimplemented, "method UserChanges not implemented")
}
-func (*UnimplementedManagementServiceServer) AddMachineKey(context.Context, *AddMachineKeyRequest) (*AddMachineKeyResponse, error) {
+func (*UnimplementedManagementServiceServer) AddMachineKey(ctx context.Context, req *AddMachineKeyRequest) (*AddMachineKeyResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddMachineKey not implemented")
}
-func (*UnimplementedManagementServiceServer) DeleteMachineKey(context.Context, *MachineKeyIDRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) DeleteMachineKey(ctx context.Context, req *MachineKeyIDRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeleteMachineKey not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchMachineKeys(context.Context, *MachineKeySearchRequest) (*MachineKeySearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchMachineKeys(ctx context.Context, req *MachineKeySearchRequest) (*MachineKeySearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchMachineKeys not implemented")
}
-func (*UnimplementedManagementServiceServer) GetMachineKey(context.Context, *MachineKeyIDRequest) (*MachineKeyView, error) {
+func (*UnimplementedManagementServiceServer) GetMachineKey(ctx context.Context, req *MachineKeyIDRequest) (*MachineKeyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMachineKey not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserProfile(context.Context, *UserID) (*UserProfileView, error) {
+func (*UnimplementedManagementServiceServer) GetUserProfile(ctx context.Context, req *UserID) (*UserProfileView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserProfile not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateUserProfile(context.Context, *UpdateUserProfileRequest) (*UserProfile, error) {
+func (*UnimplementedManagementServiceServer) UpdateUserProfile(ctx context.Context, req *UpdateUserProfileRequest) (*UserProfile, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserProfile not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserEmail(context.Context, *UserID) (*UserEmailView, error) {
+func (*UnimplementedManagementServiceServer) GetUserEmail(ctx context.Context, req *UserID) (*UserEmailView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserEmail not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeUserUserName(context.Context, *UpdateUserUserNameRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) ChangeUserUserName(ctx context.Context, req *UpdateUserUserNameRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeUserUserName not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeUserEmail(context.Context, *UpdateUserEmailRequest) (*UserEmail, error) {
+func (*UnimplementedManagementServiceServer) ChangeUserEmail(ctx context.Context, req *UpdateUserEmailRequest) (*UserEmail, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeUserEmail not implemented")
}
-func (*UnimplementedManagementServiceServer) ResendEmailVerificationMail(context.Context, *UserID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) ResendEmailVerificationMail(ctx context.Context, req *UserID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ResendEmailVerificationMail not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserPhone(context.Context, *UserID) (*UserPhoneView, error) {
+func (*UnimplementedManagementServiceServer) GetUserPhone(ctx context.Context, req *UserID) (*UserPhoneView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserPhone not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeUserPhone(context.Context, *UpdateUserPhoneRequest) (*UserPhone, error) {
+func (*UnimplementedManagementServiceServer) ChangeUserPhone(ctx context.Context, req *UpdateUserPhoneRequest) (*UserPhone, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeUserPhone not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveUserPhone(context.Context, *UserID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveUserPhone(ctx context.Context, req *UserID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveUserPhone not implemented")
}
-func (*UnimplementedManagementServiceServer) ResendPhoneVerificationCode(context.Context, *UserID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) ResendPhoneVerificationCode(ctx context.Context, req *UserID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ResendPhoneVerificationCode not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserAddress(context.Context, *UserID) (*UserAddressView, error) {
+func (*UnimplementedManagementServiceServer) GetUserAddress(ctx context.Context, req *UserID) (*UserAddressView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserAddress not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateUserAddress(context.Context, *UpdateUserAddressRequest) (*UserAddress, error) {
+func (*UnimplementedManagementServiceServer) UpdateUserAddress(ctx context.Context, req *UpdateUserAddressRequest) (*UserAddress, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserAddress not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateUserMachine(context.Context, *UpdateMachineRequest) (*MachineResponse, error) {
+func (*UnimplementedManagementServiceServer) UpdateUserMachine(ctx context.Context, req *UpdateMachineRequest) (*MachineResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserMachine not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchUserExternalIDPs(context.Context, *ExternalIDPSearchRequest) (*ExternalIDPSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchUserExternalIDPs(ctx context.Context, req *ExternalIDPSearchRequest) (*ExternalIDPSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchUserExternalIDPs not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveExternalIDP(context.Context, *ExternalIDPRemoveRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveExternalIDP(ctx context.Context, req *ExternalIDPRemoveRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveExternalIDP not implemented")
}
-func (*UnimplementedManagementServiceServer) GetUserMfas(context.Context, *UserID) (*UserMultiFactors, error) {
+func (*UnimplementedManagementServiceServer) GetUserMfas(ctx context.Context, req *UserID) (*UserMultiFactors, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetUserMfas not implemented")
}
-func (*UnimplementedManagementServiceServer) SendSetPasswordNotification(context.Context, *SetPasswordNotificationRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) SendSetPasswordNotification(ctx context.Context, req *SetPasswordNotificationRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SendSetPasswordNotification not implemented")
}
-func (*UnimplementedManagementServiceServer) SetInitialPassword(context.Context, *PasswordRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) SetInitialPassword(ctx context.Context, req *PasswordRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetInitialPassword not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchUserMemberships(context.Context, *UserMembershipSearchRequest) (*UserMembershipSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) ResendInitialMail(ctx context.Context, req *InitialMailRequest) (*empty.Empty, error) {
+ return nil, status.Errorf(codes.Unimplemented, "method ResendInitialMail not implemented")
+}
+func (*UnimplementedManagementServiceServer) SearchUserMemberships(ctx context.Context, req *UserMembershipSearchRequest) (*UserMembershipSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchUserMemberships not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateOrg(context.Context, *OrgCreateRequest) (*Org, error) {
+func (*UnimplementedManagementServiceServer) CreateOrg(ctx context.Context, req *OrgCreateRequest) (*Org, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateOrg not implemented")
}
-func (*UnimplementedManagementServiceServer) OrgChanges(context.Context, *ChangeRequest) (*Changes, error) {
+func (*UnimplementedManagementServiceServer) OrgChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
return nil, status.Errorf(codes.Unimplemented, "method OrgChanges not implemented")
}
-func (*UnimplementedManagementServiceServer) GetMyOrg(context.Context, *empty.Empty) (*OrgView, error) {
+func (*UnimplementedManagementServiceServer) GetMyOrg(ctx context.Context, req *empty.Empty) (*OrgView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyOrg not implemented")
}
-func (*UnimplementedManagementServiceServer) GetOrgByDomainGlobal(context.Context, *Domain) (*OrgView, error) {
+func (*UnimplementedManagementServiceServer) GetOrgByDomainGlobal(ctx context.Context, req *Domain) (*OrgView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetOrgByDomainGlobal not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateMyOrg(context.Context, *empty.Empty) (*Org, error) {
+func (*UnimplementedManagementServiceServer) DeactivateMyOrg(ctx context.Context, req *empty.Empty) (*Org, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateMyOrg not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateMyOrg(context.Context, *empty.Empty) (*Org, error) {
+func (*UnimplementedManagementServiceServer) ReactivateMyOrg(ctx context.Context, req *empty.Empty) (*Org, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateMyOrg not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchMyOrgDomains(context.Context, *OrgDomainSearchRequest) (*OrgDomainSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchMyOrgDomains(ctx context.Context, req *OrgDomainSearchRequest) (*OrgDomainSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchMyOrgDomains not implemented")
}
-func (*UnimplementedManagementServiceServer) AddMyOrgDomain(context.Context, *AddOrgDomainRequest) (*OrgDomain, error) {
+func (*UnimplementedManagementServiceServer) AddMyOrgDomain(ctx context.Context, req *AddOrgDomainRequest) (*OrgDomain, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddMyOrgDomain not implemented")
}
-func (*UnimplementedManagementServiceServer) GenerateMyOrgDomainValidation(context.Context, *OrgDomainValidationRequest) (*OrgDomainValidationResponse, error) {
+func (*UnimplementedManagementServiceServer) GenerateMyOrgDomainValidation(ctx context.Context, req *OrgDomainValidationRequest) (*OrgDomainValidationResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GenerateMyOrgDomainValidation not implemented")
}
-func (*UnimplementedManagementServiceServer) ValidateMyOrgDomain(context.Context, *ValidateOrgDomainRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) ValidateMyOrgDomain(ctx context.Context, req *ValidateOrgDomainRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method ValidateMyOrgDomain not implemented")
}
-func (*UnimplementedManagementServiceServer) SetMyPrimaryOrgDomain(context.Context, *PrimaryOrgDomainRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) SetMyPrimaryOrgDomain(ctx context.Context, req *PrimaryOrgDomainRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method SetMyPrimaryOrgDomain not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveMyOrgDomain(context.Context, *RemoveOrgDomainRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveMyOrgDomain(ctx context.Context, req *RemoveOrgDomainRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveMyOrgDomain not implemented")
}
-func (*UnimplementedManagementServiceServer) GetMyOrgIamPolicy(context.Context, *empty.Empty) (*OrgIamPolicyView, error) {
+func (*UnimplementedManagementServiceServer) GetMyOrgIamPolicy(ctx context.Context, req *empty.Empty) (*OrgIamPolicyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetMyOrgIamPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetOrgMemberRoles(context.Context, *empty.Empty) (*OrgMemberRoles, error) {
+func (*UnimplementedManagementServiceServer) GetOrgMemberRoles(ctx context.Context, req *empty.Empty) (*OrgMemberRoles, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetOrgMemberRoles not implemented")
}
-func (*UnimplementedManagementServiceServer) AddMyOrgMember(context.Context, *AddOrgMemberRequest) (*OrgMember, error) {
+func (*UnimplementedManagementServiceServer) AddMyOrgMember(ctx context.Context, req *AddOrgMemberRequest) (*OrgMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddMyOrgMember not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeMyOrgMember(context.Context, *ChangeOrgMemberRequest) (*OrgMember, error) {
+func (*UnimplementedManagementServiceServer) ChangeMyOrgMember(ctx context.Context, req *ChangeOrgMemberRequest) (*OrgMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeMyOrgMember not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveMyOrgMember(context.Context, *RemoveOrgMemberRequest) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveMyOrgMember(ctx context.Context, req *RemoveOrgMemberRequest) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveMyOrgMember not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchMyOrgMembers(context.Context, *OrgMemberSearchRequest) (*OrgMemberSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchMyOrgMembers(ctx context.Context, req *OrgMemberSearchRequest) (*OrgMemberSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchMyOrgMembers not implemented")
}
-func (*UnimplementedManagementServiceServer) ProjectChanges(context.Context, *ChangeRequest) (*Changes, error) {
+func (*UnimplementedManagementServiceServer) ProjectChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProjectChanges not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjects(context.Context, *ProjectSearchRequest) (*ProjectSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjects(ctx context.Context, req *ProjectSearchRequest) (*ProjectSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjects not implemented")
}
-func (*UnimplementedManagementServiceServer) ProjectByID(context.Context, *ProjectID) (*ProjectView, error) {
+func (*UnimplementedManagementServiceServer) ProjectByID(ctx context.Context, req *ProjectID) (*ProjectView, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProjectByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateProject(context.Context, *ProjectCreateRequest) (*Project, error) {
+func (*UnimplementedManagementServiceServer) CreateProject(ctx context.Context, req *ProjectCreateRequest) (*Project, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateProject not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateProject(context.Context, *ProjectUpdateRequest) (*Project, error) {
+func (*UnimplementedManagementServiceServer) UpdateProject(ctx context.Context, req *ProjectUpdateRequest) (*Project, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateProject not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateProject(context.Context, *ProjectID) (*Project, error) {
+func (*UnimplementedManagementServiceServer) DeactivateProject(ctx context.Context, req *ProjectID) (*Project, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProject not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateProject(context.Context, *ProjectID) (*Project, error) {
+func (*UnimplementedManagementServiceServer) ReactivateProject(ctx context.Context, req *ProjectID) (*Project, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProject not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveProject(context.Context, *ProjectID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveProject(ctx context.Context, req *ProjectID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveProject not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchGrantedProjects(context.Context, *GrantedProjectSearchRequest) (*ProjectGrantSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchGrantedProjects(ctx context.Context, req *GrantedProjectSearchRequest) (*ProjectGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchGrantedProjects not implemented")
}
-func (*UnimplementedManagementServiceServer) GetGrantedProjectByID(context.Context, *ProjectGrantID) (*ProjectGrantView, error) {
+func (*UnimplementedManagementServiceServer) GetGrantedProjectByID(ctx context.Context, req *ProjectGrantID) (*ProjectGrantView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetGrantedProjectByID not implemented")
}
-func (*UnimplementedManagementServiceServer) GetProjectMemberRoles(context.Context, *empty.Empty) (*ProjectMemberRoles, error) {
+func (*UnimplementedManagementServiceServer) GetProjectMemberRoles(ctx context.Context, req *empty.Empty) (*ProjectMemberRoles, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetProjectMemberRoles not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectMembers(context.Context, *ProjectMemberSearchRequest) (*ProjectMemberSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectMembers(ctx context.Context, req *ProjectMemberSearchRequest) (*ProjectMemberSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectMembers not implemented")
}
-func (*UnimplementedManagementServiceServer) AddProjectMember(context.Context, *ProjectMemberAdd) (*ProjectMember, error) {
+func (*UnimplementedManagementServiceServer) AddProjectMember(ctx context.Context, req *ProjectMemberAdd) (*ProjectMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddProjectMember not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeProjectMember(context.Context, *ProjectMemberChange) (*ProjectMember, error) {
+func (*UnimplementedManagementServiceServer) ChangeProjectMember(ctx context.Context, req *ProjectMemberChange) (*ProjectMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectMember not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveProjectMember(context.Context, *ProjectMemberRemove) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveProjectMember(ctx context.Context, req *ProjectMemberRemove) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectMember not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectRoles(context.Context, *ProjectRoleSearchRequest) (*ProjectRoleSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectRoles(ctx context.Context, req *ProjectRoleSearchRequest) (*ProjectRoleSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectRoles not implemented")
}
-func (*UnimplementedManagementServiceServer) AddProjectRole(context.Context, *ProjectRoleAdd) (*ProjectRole, error) {
+func (*UnimplementedManagementServiceServer) AddProjectRole(ctx context.Context, req *ProjectRoleAdd) (*ProjectRole, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddProjectRole not implemented")
}
-func (*UnimplementedManagementServiceServer) BulkAddProjectRole(context.Context, *ProjectRoleAddBulk) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) BulkAddProjectRole(ctx context.Context, req *ProjectRoleAddBulk) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method BulkAddProjectRole not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeProjectRole(context.Context, *ProjectRoleChange) (*ProjectRole, error) {
+func (*UnimplementedManagementServiceServer) ChangeProjectRole(ctx context.Context, req *ProjectRoleChange) (*ProjectRole, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectRole not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveProjectRole(context.Context, *ProjectRoleRemove) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveProjectRole(ctx context.Context, req *ProjectRoleRemove) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectRole not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchApplications(context.Context, *ApplicationSearchRequest) (*ApplicationSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchApplications(ctx context.Context, req *ApplicationSearchRequest) (*ApplicationSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchApplications not implemented")
}
-func (*UnimplementedManagementServiceServer) ApplicationByID(context.Context, *ApplicationID) (*ApplicationView, error) {
+func (*UnimplementedManagementServiceServer) ApplicationByID(ctx context.Context, req *ApplicationID) (*ApplicationView, error) {
return nil, status.Errorf(codes.Unimplemented, "method ApplicationByID not implemented")
}
-func (*UnimplementedManagementServiceServer) ApplicationChanges(context.Context, *ChangeRequest) (*Changes, error) {
+func (*UnimplementedManagementServiceServer) ApplicationChanges(ctx context.Context, req *ChangeRequest) (*Changes, error) {
return nil, status.Errorf(codes.Unimplemented, "method ApplicationChanges not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateOIDCApplication(context.Context, *OIDCApplicationCreate) (*Application, error) {
+func (*UnimplementedManagementServiceServer) CreateOIDCApplication(ctx context.Context, req *OIDCApplicationCreate) (*Application, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateOIDCApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateApplication(context.Context, *ApplicationUpdate) (*Application, error) {
+func (*UnimplementedManagementServiceServer) UpdateApplication(ctx context.Context, req *ApplicationUpdate) (*Application, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateApplication(context.Context, *ApplicationID) (*Application, error) {
+func (*UnimplementedManagementServiceServer) DeactivateApplication(ctx context.Context, req *ApplicationID) (*Application, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateApplication(context.Context, *ApplicationID) (*Application, error) {
+func (*UnimplementedManagementServiceServer) ReactivateApplication(ctx context.Context, req *ApplicationID) (*Application, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveApplication(context.Context, *ApplicationID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveApplication(ctx context.Context, req *ApplicationID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveApplication not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateApplicationOIDCConfig(context.Context, *OIDCConfigUpdate) (*OIDCConfig, error) {
+func (*UnimplementedManagementServiceServer) UpdateApplicationOIDCConfig(ctx context.Context, req *OIDCConfigUpdate) (*OIDCConfig, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateApplicationOIDCConfig not implemented")
}
-func (*UnimplementedManagementServiceServer) RegenerateOIDCClientSecret(context.Context, *ApplicationID) (*ClientSecret, error) {
+func (*UnimplementedManagementServiceServer) RegenerateOIDCClientSecret(ctx context.Context, req *ApplicationID) (*ClientSecret, error) {
return nil, status.Errorf(codes.Unimplemented, "method RegenerateOIDCClientSecret not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectGrants(context.Context, *ProjectGrantSearchRequest) (*ProjectGrantSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectGrants(ctx context.Context, req *ProjectGrantSearchRequest) (*ProjectGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectGrants not implemented")
}
-func (*UnimplementedManagementServiceServer) ProjectGrantByID(context.Context, *ProjectGrantID) (*ProjectGrantView, error) {
+func (*UnimplementedManagementServiceServer) ProjectGrantByID(ctx context.Context, req *ProjectGrantID) (*ProjectGrantView, error) {
return nil, status.Errorf(codes.Unimplemented, "method ProjectGrantByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateProjectGrant(context.Context, *ProjectGrantCreate) (*ProjectGrant, error) {
+func (*UnimplementedManagementServiceServer) CreateProjectGrant(ctx context.Context, req *ProjectGrantCreate) (*ProjectGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateProjectGrant(context.Context, *ProjectGrantUpdate) (*ProjectGrant, error) {
+func (*UnimplementedManagementServiceServer) UpdateProjectGrant(ctx context.Context, req *ProjectGrantUpdate) (*ProjectGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateProjectGrant(context.Context, *ProjectGrantID) (*ProjectGrant, error) {
+func (*UnimplementedManagementServiceServer) DeactivateProjectGrant(ctx context.Context, req *ProjectGrantID) (*ProjectGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateProjectGrant(context.Context, *ProjectGrantID) (*ProjectGrant, error) {
+func (*UnimplementedManagementServiceServer) ReactivateProjectGrant(ctx context.Context, req *ProjectGrantID) (*ProjectGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveProjectGrant(context.Context, *ProjectGrantID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveProjectGrant(ctx context.Context, req *ProjectGrantID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) GetProjectGrantMemberRoles(context.Context, *empty.Empty) (*ProjectGrantMemberRoles, error) {
+func (*UnimplementedManagementServiceServer) GetProjectGrantMemberRoles(ctx context.Context, req *empty.Empty) (*ProjectGrantMemberRoles, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetProjectGrantMemberRoles not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchProjectGrantMembers(context.Context, *ProjectGrantMemberSearchRequest) (*ProjectGrantMemberSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchProjectGrantMembers(ctx context.Context, req *ProjectGrantMemberSearchRequest) (*ProjectGrantMemberSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchProjectGrantMembers not implemented")
}
-func (*UnimplementedManagementServiceServer) AddProjectGrantMember(context.Context, *ProjectGrantMemberAdd) (*ProjectGrantMember, error) {
+func (*UnimplementedManagementServiceServer) AddProjectGrantMember(ctx context.Context, req *ProjectGrantMemberAdd) (*ProjectGrantMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddProjectGrantMember not implemented")
}
-func (*UnimplementedManagementServiceServer) ChangeProjectGrantMember(context.Context, *ProjectGrantMemberChange) (*ProjectGrantMember, error) {
+func (*UnimplementedManagementServiceServer) ChangeProjectGrantMember(ctx context.Context, req *ProjectGrantMemberChange) (*ProjectGrantMember, error) {
return nil, status.Errorf(codes.Unimplemented, "method ChangeProjectGrantMember not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveProjectGrantMember(context.Context, *ProjectGrantMemberRemove) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveProjectGrantMember(ctx context.Context, req *ProjectGrantMemberRemove) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveProjectGrantMember not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchUserGrants(context.Context, *UserGrantSearchRequest) (*UserGrantSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchUserGrants(ctx context.Context, req *UserGrantSearchRequest) (*UserGrantSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchUserGrants not implemented")
}
-func (*UnimplementedManagementServiceServer) UserGrantByID(context.Context, *UserGrantID) (*UserGrantView, error) {
+func (*UnimplementedManagementServiceServer) UserGrantByID(ctx context.Context, req *UserGrantID) (*UserGrantView, error) {
return nil, status.Errorf(codes.Unimplemented, "method UserGrantByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateUserGrant(context.Context, *UserGrantCreate) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) CreateUserGrant(ctx context.Context, req *UserGrantCreate) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateUserGrant(context.Context, *UserGrantUpdate) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) UpdateUserGrant(ctx context.Context, req *UserGrantUpdate) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateUserGrant(context.Context, *UserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) DeactivateUserGrant(ctx context.Context, req *UserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateUserGrant(context.Context, *UserGrantID) (*UserGrant, error) {
+func (*UnimplementedManagementServiceServer) ReactivateUserGrant(ctx context.Context, req *UserGrantID) (*UserGrant, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveUserGrant(context.Context, *UserGrantID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveUserGrant(ctx context.Context, req *UserGrantID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) BulkRemoveUserGrant(context.Context, *UserGrantRemoveBulk) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) BulkRemoveUserGrant(ctx context.Context, req *UserGrantRemoveBulk) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method BulkRemoveUserGrant not implemented")
}
-func (*UnimplementedManagementServiceServer) IdpByID(context.Context, *IdpID) (*IdpView, error) {
+func (*UnimplementedManagementServiceServer) IdpByID(ctx context.Context, req *IdpID) (*IdpView, error) {
return nil, status.Errorf(codes.Unimplemented, "method IdpByID not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateOidcIdp(context.Context, *OidcIdpConfigCreate) (*Idp, error) {
+func (*UnimplementedManagementServiceServer) CreateOidcIdp(ctx context.Context, req *OidcIdpConfigCreate) (*Idp, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateOidcIdp not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateIdpConfig(context.Context, *IdpUpdate) (*Idp, error) {
+func (*UnimplementedManagementServiceServer) UpdateIdpConfig(ctx context.Context, req *IdpUpdate) (*Idp, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateIdpConfig not implemented")
}
-func (*UnimplementedManagementServiceServer) DeactivateIdpConfig(context.Context, *IdpID) (*Idp, error) {
+func (*UnimplementedManagementServiceServer) DeactivateIdpConfig(ctx context.Context, req *IdpID) (*Idp, error) {
return nil, status.Errorf(codes.Unimplemented, "method DeactivateIdpConfig not implemented")
}
-func (*UnimplementedManagementServiceServer) ReactivateIdpConfig(context.Context, *IdpID) (*Idp, error) {
+func (*UnimplementedManagementServiceServer) ReactivateIdpConfig(ctx context.Context, req *IdpID) (*Idp, error) {
return nil, status.Errorf(codes.Unimplemented, "method ReactivateIdpConfig not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveIdpConfig(context.Context, *IdpID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveIdpConfig(ctx context.Context, req *IdpID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveIdpConfig not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateOidcIdpConfig(context.Context, *OidcIdpConfigUpdate) (*OidcIdpConfig, error) {
+func (*UnimplementedManagementServiceServer) UpdateOidcIdpConfig(ctx context.Context, req *OidcIdpConfigUpdate) (*OidcIdpConfig, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateOidcIdpConfig not implemented")
}
-func (*UnimplementedManagementServiceServer) SearchIdps(context.Context, *IdpSearchRequest) (*IdpSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) SearchIdps(ctx context.Context, req *IdpSearchRequest) (*IdpSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method SearchIdps not implemented")
}
-func (*UnimplementedManagementServiceServer) GetLoginPolicy(context.Context, *empty.Empty) (*LoginPolicyView, error) {
+func (*UnimplementedManagementServiceServer) GetLoginPolicy(ctx context.Context, req *empty.Empty) (*LoginPolicyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetDefaultLoginPolicy(context.Context, *empty.Empty) (*LoginPolicyView, error) {
+func (*UnimplementedManagementServiceServer) GetDefaultLoginPolicy(ctx context.Context, req *empty.Empty) (*LoginPolicyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetDefaultLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) CreateLoginPolicy(context.Context, *LoginPolicyRequest) (*LoginPolicy, error) {
+func (*UnimplementedManagementServiceServer) CreateLoginPolicy(ctx context.Context, req *LoginPolicyRequest) (*LoginPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreateLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdateLoginPolicy(context.Context, *LoginPolicyRequest) (*LoginPolicy, error) {
+func (*UnimplementedManagementServiceServer) UpdateLoginPolicy(ctx context.Context, req *LoginPolicyRequest) (*LoginPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdateLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveLoginPolicy(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveLoginPolicy(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetLoginPolicyIdpProviders(context.Context, *IdpProviderSearchRequest) (*IdpProviderSearchResponse, error) {
+func (*UnimplementedManagementServiceServer) GetLoginPolicyIdpProviders(ctx context.Context, req *IdpProviderSearchRequest) (*IdpProviderSearchResponse, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetLoginPolicyIdpProviders not implemented")
}
-func (*UnimplementedManagementServiceServer) AddIdpProviderToLoginPolicy(context.Context, *IdpProviderAdd) (*IdpProvider, error) {
+func (*UnimplementedManagementServiceServer) AddIdpProviderToLoginPolicy(ctx context.Context, req *IdpProviderAdd) (*IdpProvider, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddIdpProviderToLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveIdpProviderFromLoginPolicy(context.Context, *IdpProviderID) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveIdpProviderFromLoginPolicy(ctx context.Context, req *IdpProviderID) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveIdpProviderFromLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetLoginPolicySecondFactors(context.Context, *empty.Empty) (*SecondFactorsResult, error) {
+func (*UnimplementedManagementServiceServer) GetLoginPolicySecondFactors(ctx context.Context, req *empty.Empty) (*SecondFactorsResult, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetLoginPolicySecondFactors not implemented")
}
-func (*UnimplementedManagementServiceServer) AddSecondFactorToLoginPolicy(context.Context, *SecondFactor) (*SecondFactor, error) {
+func (*UnimplementedManagementServiceServer) AddSecondFactorToLoginPolicy(ctx context.Context, req *SecondFactor) (*SecondFactor, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddSecondFactorToLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveSecondFactorFromLoginPolicy(context.Context, *SecondFactor) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveSecondFactorFromLoginPolicy(ctx context.Context, req *SecondFactor) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveSecondFactorFromLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetLoginPolicyMultiFactors(context.Context, *empty.Empty) (*MultiFactorsResult, error) {
+func (*UnimplementedManagementServiceServer) GetLoginPolicyMultiFactors(ctx context.Context, req *empty.Empty) (*MultiFactorsResult, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetLoginPolicyMultiFactors not implemented")
}
-func (*UnimplementedManagementServiceServer) AddMultiFactorToLoginPolicy(context.Context, *MultiFactor) (*MultiFactor, error) {
+func (*UnimplementedManagementServiceServer) AddMultiFactorToLoginPolicy(ctx context.Context, req *MultiFactor) (*MultiFactor, error) {
return nil, status.Errorf(codes.Unimplemented, "method AddMultiFactorToLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) RemoveMultiFactorFromLoginPolicy(context.Context, *MultiFactor) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemoveMultiFactorFromLoginPolicy(ctx context.Context, req *MultiFactor) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemoveMultiFactorFromLoginPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetPasswordComplexityPolicy(context.Context, *empty.Empty) (*PasswordComplexityPolicyView, error) {
+func (*UnimplementedManagementServiceServer) GetPasswordComplexityPolicy(ctx context.Context, req *empty.Empty) (*PasswordComplexityPolicyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetPasswordComplexityPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetDefaultPasswordComplexityPolicy(context.Context, *empty.Empty) (*PasswordComplexityPolicyView, error) {
+func (*UnimplementedManagementServiceServer) GetDefaultPasswordComplexityPolicy(ctx context.Context, req *empty.Empty) (*PasswordComplexityPolicyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetDefaultPasswordComplexityPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) CreatePasswordComplexityPolicy(context.Context, *PasswordComplexityPolicyRequest) (*PasswordComplexityPolicy, error) {
+func (*UnimplementedManagementServiceServer) CreatePasswordComplexityPolicy(ctx context.Context, req *PasswordComplexityPolicyRequest) (*PasswordComplexityPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreatePasswordComplexityPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdatePasswordComplexityPolicy(context.Context, *PasswordComplexityPolicyRequest) (*PasswordComplexityPolicy, error) {
+func (*UnimplementedManagementServiceServer) UpdatePasswordComplexityPolicy(ctx context.Context, req *PasswordComplexityPolicyRequest) (*PasswordComplexityPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdatePasswordComplexityPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) RemovePasswordComplexityPolicy(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemovePasswordComplexityPolicy(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemovePasswordComplexityPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetPasswordAgePolicy(context.Context, *empty.Empty) (*PasswordAgePolicyView, error) {
+func (*UnimplementedManagementServiceServer) GetPasswordAgePolicy(ctx context.Context, req *empty.Empty) (*PasswordAgePolicyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetPasswordAgePolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetDefaultPasswordAgePolicy(context.Context, *empty.Empty) (*PasswordAgePolicyView, error) {
+func (*UnimplementedManagementServiceServer) GetDefaultPasswordAgePolicy(ctx context.Context, req *empty.Empty) (*PasswordAgePolicyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetDefaultPasswordAgePolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) CreatePasswordAgePolicy(context.Context, *PasswordAgePolicyRequest) (*PasswordAgePolicy, error) {
+func (*UnimplementedManagementServiceServer) CreatePasswordAgePolicy(ctx context.Context, req *PasswordAgePolicyRequest) (*PasswordAgePolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreatePasswordAgePolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdatePasswordAgePolicy(context.Context, *PasswordAgePolicyRequest) (*PasswordAgePolicy, error) {
+func (*UnimplementedManagementServiceServer) UpdatePasswordAgePolicy(ctx context.Context, req *PasswordAgePolicyRequest) (*PasswordAgePolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdatePasswordAgePolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) RemovePasswordAgePolicy(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemovePasswordAgePolicy(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemovePasswordAgePolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetPasswordLockoutPolicy(context.Context, *empty.Empty) (*PasswordLockoutPolicyView, error) {
+func (*UnimplementedManagementServiceServer) GetPasswordLockoutPolicy(ctx context.Context, req *empty.Empty) (*PasswordLockoutPolicyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetPasswordLockoutPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) GetDefaultPasswordLockoutPolicy(context.Context, *empty.Empty) (*PasswordLockoutPolicyView, error) {
+func (*UnimplementedManagementServiceServer) GetDefaultPasswordLockoutPolicy(ctx context.Context, req *empty.Empty) (*PasswordLockoutPolicyView, error) {
return nil, status.Errorf(codes.Unimplemented, "method GetDefaultPasswordLockoutPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) CreatePasswordLockoutPolicy(context.Context, *PasswordLockoutPolicyRequest) (*PasswordLockoutPolicy, error) {
+func (*UnimplementedManagementServiceServer) CreatePasswordLockoutPolicy(ctx context.Context, req *PasswordLockoutPolicyRequest) (*PasswordLockoutPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method CreatePasswordLockoutPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) UpdatePasswordLockoutPolicy(context.Context, *PasswordLockoutPolicyRequest) (*PasswordLockoutPolicy, error) {
+func (*UnimplementedManagementServiceServer) UpdatePasswordLockoutPolicy(ctx context.Context, req *PasswordLockoutPolicyRequest) (*PasswordLockoutPolicy, error) {
return nil, status.Errorf(codes.Unimplemented, "method UpdatePasswordLockoutPolicy not implemented")
}
-func (*UnimplementedManagementServiceServer) RemovePasswordLockoutPolicy(context.Context, *empty.Empty) (*empty.Empty, error) {
+func (*UnimplementedManagementServiceServer) RemovePasswordLockoutPolicy(ctx context.Context, req *empty.Empty) (*empty.Empty, error) {
return nil, status.Errorf(codes.Unimplemented, "method RemovePasswordLockoutPolicy not implemented")
}
@@ -25952,6 +17408,24 @@ func _ManagementService_SetInitialPassword_Handler(srv interface{}, ctx context.
return interceptor(ctx, in, info, handler)
}
+func _ManagementService_ResendInitialMail_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+ in := new(InitialMailRequest)
+ if err := dec(in); err != nil {
+ return nil, err
+ }
+ if interceptor == nil {
+ return srv.(ManagementServiceServer).ResendInitialMail(ctx, in)
+ }
+ info := &grpc.UnaryServerInfo{
+ Server: srv,
+ FullMethod: "/caos.zitadel.management.api.v1.ManagementService/ResendInitialMail",
+ }
+ handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+ return srv.(ManagementServiceServer).ResendInitialMail(ctx, req.(*InitialMailRequest))
+ }
+ return interceptor(ctx, in, info, handler)
+}
+
func _ManagementService_SearchUserMemberships_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
in := new(UserMembershipSearchRequest)
if err := dec(in); err != nil {
@@ -28016,6 +19490,10 @@ var _ManagementService_serviceDesc = grpc.ServiceDesc{
MethodName: "SetInitialPassword",
Handler: _ManagementService_SetInitialPassword_Handler,
},
+ {
+ MethodName: "ResendInitialMail",
+ Handler: _ManagementService_ResendInitialMail_Handler,
+ },
{
MethodName: "SearchUserMemberships",
Handler: _ManagementService_SearchUserMemberships_Handler,
diff --git a/pkg/grpc/management/management.pb.gw.go b/pkg/grpc/management/management.pb.gw.go
index 5fe3550114..967a763364 100644
--- a/pkg/grpc/management/management.pb.gw.go
+++ b/pkg/grpc/management/management.pb.gw.go
@@ -21,6 +21,7 @@ import (
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/grpclog"
+ "google.golang.org/grpc/metadata"
"google.golang.org/grpc/status"
)
@@ -31,6 +32,7 @@ var _ status.Status
var _ = runtime.String
var _ = utilities.NewDoubleArray
var _ = descriptor.ForMessage
+var _ = metadata.Join
func request_ManagementService_Healthz_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq empty.Empty
@@ -2208,6 +2210,76 @@ func local_request_ManagementService_SetInitialPassword_0(ctx context.Context, m
}
+func request_ManagementService_ResendInitialMail_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq InitialMailRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := client.ResendInitialMail(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
+ return msg, metadata, err
+
+}
+
+func local_request_ManagementService_ResendInitialMail_0(ctx context.Context, marshaler runtime.Marshaler, server ManagementServiceServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
+ var protoReq InitialMailRequest
+ var metadata runtime.ServerMetadata
+
+ newReader, berr := utilities.IOReaderFactory(req.Body)
+ if berr != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
+ }
+ if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
+ }
+
+ var (
+ val string
+ ok bool
+ err error
+ _ = err
+ )
+
+ val, ok = pathParams["id"]
+ if !ok {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "missing parameter %s", "id")
+ }
+
+ protoReq.Id, err = runtime.String(val)
+
+ if err != nil {
+ return nil, metadata, status.Errorf(codes.InvalidArgument, "type mismatch, parameter: %s, error: %v", "id", err)
+ }
+
+ msg, err := server.ResendInitialMail(ctx, &protoReq)
+ return msg, metadata, err
+
+}
+
func request_ManagementService_SearchUserMemberships_0(ctx context.Context, marshaler runtime.Marshaler, client ManagementServiceClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
var protoReq UserMembershipSearchRequest
var metadata runtime.ServerMetadata
@@ -8009,11 +8081,14 @@ func local_request_ManagementService_RemovePasswordLockoutPolicy_0(ctx context.C
// RegisterManagementServiceHandlerServer registers the http handlers for service ManagementService to "mux".
// UnaryRPC :call ManagementServiceServer directly.
// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
+// Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterManagementServiceHandlerFromEndpoint instead.
func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ManagementServiceServer) error {
mux.Handle("GET", pattern_ManagementService_Healthz_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8021,6 +8096,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_Healthz_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8034,6 +8110,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_Ready_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8041,6 +8119,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_Ready_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8054,6 +8133,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_Validate_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8061,6 +8142,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_Validate_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8074,6 +8156,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetZitadelDocs_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8081,6 +8165,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetZitadelDocs_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8094,6 +8179,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetIam_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8101,6 +8188,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetIam_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8114,6 +8202,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_IsUserUnique_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8121,6 +8211,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_IsUserUnique_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8134,6 +8225,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetUserByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8141,6 +8234,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetUserByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8154,6 +8248,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetUserByLoginNameGlobal_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8161,6 +8257,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetUserByLoginNameGlobal_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8174,6 +8271,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchUsers_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8181,6 +8280,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchUsers_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8194,6 +8294,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreateUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8201,6 +8303,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreateUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8214,6 +8317,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_DeactivateUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8221,6 +8326,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_DeactivateUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8234,6 +8340,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ReactivateUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8241,6 +8349,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ReactivateUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8254,6 +8363,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_LockUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8261,6 +8372,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_LockUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8274,6 +8386,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UnlockUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8281,6 +8395,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UnlockUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8294,6 +8409,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_DeleteUser_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8301,6 +8418,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_DeleteUser_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8314,6 +8432,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_UserChanges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8321,6 +8441,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UserChanges_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8334,6 +8455,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_AddMachineKey_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8341,6 +8464,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_AddMachineKey_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8354,6 +8478,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_DeleteMachineKey_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8361,6 +8487,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_DeleteMachineKey_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8374,6 +8501,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchMachineKeys_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8381,6 +8510,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchMachineKeys_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8394,6 +8524,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetMachineKey_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8401,6 +8533,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetMachineKey_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8414,6 +8547,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetUserProfile_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8421,6 +8556,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetUserProfile_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8434,6 +8570,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateUserProfile_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8441,6 +8579,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateUserProfile_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8454,6 +8593,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetUserEmail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8461,6 +8602,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetUserEmail_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8474,6 +8616,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_ChangeUserUserName_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8481,6 +8625,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ChangeUserUserName_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8494,6 +8639,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ChangeUserEmail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8501,6 +8648,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ChangeUserEmail_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8514,6 +8662,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_ResendEmailVerificationMail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8521,6 +8671,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ResendEmailVerificationMail_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8534,6 +8685,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetUserPhone_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8541,6 +8694,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetUserPhone_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8554,6 +8708,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ChangeUserPhone_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8561,6 +8717,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ChangeUserPhone_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8574,6 +8731,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveUserPhone_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8581,6 +8740,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveUserPhone_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8594,6 +8754,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_ResendPhoneVerificationCode_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8601,6 +8763,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ResendPhoneVerificationCode_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8614,6 +8777,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetUserAddress_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8621,6 +8786,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetUserAddress_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8634,6 +8800,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateUserAddress_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8641,6 +8809,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateUserAddress_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8654,6 +8823,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateUserMachine_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8661,6 +8832,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateUserMachine_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8674,6 +8846,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchUserExternalIDPs_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8681,6 +8855,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchUserExternalIDPs_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8694,6 +8869,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveExternalIDP_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8701,6 +8878,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveExternalIDP_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8714,6 +8892,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetUserMfas_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8721,6 +8901,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetUserMfas_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8734,6 +8915,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SendSetPasswordNotification_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8741,6 +8924,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SendSetPasswordNotification_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8754,6 +8938,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SetInitialPassword_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8761,6 +8947,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SetInitialPassword_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8771,9 +8958,34 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
})
+ mux.Handle("POST", pattern_ManagementService_ResendInitialMail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := local_request_ManagementService_ResendInitialMail_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ResendInitialMail_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
mux.Handle("POST", pattern_ManagementService_SearchUserMemberships_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8781,6 +8993,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchUserMemberships_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8794,6 +9007,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreateOrg_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8801,6 +9016,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreateOrg_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8814,6 +9030,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_OrgChanges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8821,6 +9039,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_OrgChanges_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8834,6 +9053,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetMyOrg_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8841,6 +9062,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetMyOrg_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8854,6 +9076,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetOrgByDomainGlobal_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8861,6 +9085,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetOrgByDomainGlobal_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8874,6 +9099,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_DeactivateMyOrg_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8881,6 +9108,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_DeactivateMyOrg_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8894,6 +9122,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ReactivateMyOrg_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8901,6 +9131,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ReactivateMyOrg_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8914,6 +9145,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchMyOrgDomains_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8921,6 +9154,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchMyOrgDomains_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8934,6 +9168,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_AddMyOrgDomain_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8941,6 +9177,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_AddMyOrgDomain_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8954,6 +9191,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_GenerateMyOrgDomainValidation_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8961,6 +9200,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GenerateMyOrgDomainValidation_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8974,6 +9214,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_ValidateMyOrgDomain_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -8981,6 +9223,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ValidateMyOrgDomain_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -8994,6 +9237,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SetMyPrimaryOrgDomain_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9001,6 +9246,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SetMyPrimaryOrgDomain_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9014,6 +9260,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveMyOrgDomain_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9021,6 +9269,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveMyOrgDomain_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9034,6 +9283,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetMyOrgIamPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9041,6 +9292,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetMyOrgIamPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9054,6 +9306,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetOrgMemberRoles_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9061,6 +9315,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetOrgMemberRoles_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9074,6 +9329,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_AddMyOrgMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9081,6 +9338,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_AddMyOrgMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9094,6 +9352,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ChangeMyOrgMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9101,6 +9361,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ChangeMyOrgMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9114,6 +9375,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveMyOrgMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9121,6 +9384,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveMyOrgMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9134,6 +9398,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchMyOrgMembers_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9141,6 +9407,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchMyOrgMembers_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9154,6 +9421,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_ProjectChanges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9161,6 +9430,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ProjectChanges_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9174,6 +9444,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchProjects_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9181,6 +9453,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchProjects_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9194,6 +9467,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_ProjectByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9201,6 +9476,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ProjectByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9214,6 +9490,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreateProject_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9221,6 +9499,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreateProject_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9234,6 +9513,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateProject_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9241,6 +9522,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateProject_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9254,6 +9536,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_DeactivateProject_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9261,6 +9545,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_DeactivateProject_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9274,6 +9559,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ReactivateProject_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9281,6 +9568,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ReactivateProject_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9294,6 +9582,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveProject_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9301,6 +9591,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveProject_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9314,6 +9605,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchGrantedProjects_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9321,6 +9614,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchGrantedProjects_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9334,6 +9628,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetGrantedProjectByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9341,6 +9637,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetGrantedProjectByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9354,6 +9651,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetProjectMemberRoles_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9361,6 +9660,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetProjectMemberRoles_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9374,6 +9674,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchProjectMembers_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9381,6 +9683,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchProjectMembers_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9394,6 +9697,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_AddProjectMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9401,6 +9706,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_AddProjectMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9414,6 +9720,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ChangeProjectMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9421,6 +9729,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ChangeProjectMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9434,6 +9743,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveProjectMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9441,6 +9752,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveProjectMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9454,6 +9766,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchProjectRoles_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9461,6 +9775,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchProjectRoles_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9474,6 +9789,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_AddProjectRole_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9481,6 +9798,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_AddProjectRole_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9494,6 +9812,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_BulkAddProjectRole_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9501,6 +9821,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_BulkAddProjectRole_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9514,6 +9835,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ChangeProjectRole_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9521,6 +9844,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ChangeProjectRole_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9534,6 +9858,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveProjectRole_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9541,6 +9867,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveProjectRole_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9554,6 +9881,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchApplications_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9561,6 +9890,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchApplications_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9574,6 +9904,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_ApplicationByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9581,6 +9913,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ApplicationByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9594,6 +9927,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_ApplicationChanges_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9601,6 +9936,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ApplicationChanges_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9614,6 +9950,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreateOIDCApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9621,6 +9959,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreateOIDCApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9634,6 +9973,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9641,6 +9982,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9654,6 +9996,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_DeactivateApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9661,6 +10005,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_DeactivateApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9674,6 +10019,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ReactivateApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9681,6 +10028,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ReactivateApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9694,6 +10042,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveApplication_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9701,6 +10051,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveApplication_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9714,6 +10065,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateApplicationOIDCConfig_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9721,6 +10074,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateApplicationOIDCConfig_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9734,6 +10088,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_RegenerateOIDCClientSecret_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9741,6 +10097,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RegenerateOIDCClientSecret_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9754,6 +10111,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchProjectGrants_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9761,6 +10120,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchProjectGrants_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9774,6 +10134,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_ProjectGrantByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9781,6 +10143,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ProjectGrantByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9794,6 +10157,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreateProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9801,6 +10166,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreateProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9814,6 +10180,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9821,6 +10189,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9834,6 +10203,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_DeactivateProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9841,6 +10212,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_DeactivateProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9854,6 +10226,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ReactivateProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9861,6 +10235,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ReactivateProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9874,6 +10249,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveProjectGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9881,6 +10258,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveProjectGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9894,6 +10272,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetProjectGrantMemberRoles_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9901,6 +10281,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetProjectGrantMemberRoles_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9914,6 +10295,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchProjectGrantMembers_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9921,6 +10304,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchProjectGrantMembers_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9934,6 +10318,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_AddProjectGrantMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9941,6 +10327,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_AddProjectGrantMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9954,6 +10341,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ChangeProjectGrantMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9961,6 +10350,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ChangeProjectGrantMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9974,6 +10364,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveProjectGrantMember_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -9981,6 +10373,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveProjectGrantMember_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -9994,6 +10387,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchUserGrants_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10001,6 +10396,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchUserGrants_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10014,6 +10410,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_UserGrantByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10021,6 +10419,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UserGrantByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10034,6 +10433,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreateUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10041,6 +10442,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreateUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10054,6 +10456,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10061,6 +10465,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10074,6 +10479,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_DeactivateUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10081,6 +10488,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_DeactivateUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10094,6 +10502,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ReactivateUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10101,6 +10511,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ReactivateUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10114,6 +10525,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10121,6 +10534,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10134,6 +10548,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_BulkRemoveUserGrant_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10141,6 +10557,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_BulkRemoveUserGrant_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10154,6 +10571,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_IdpByID_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10161,6 +10580,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_IdpByID_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10174,6 +10594,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreateOidcIdp_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10181,6 +10603,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreateOidcIdp_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10194,6 +10617,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateIdpConfig_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10201,6 +10626,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateIdpConfig_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10214,6 +10640,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_DeactivateIdpConfig_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10221,6 +10649,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_DeactivateIdpConfig_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10234,6 +10663,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_ReactivateIdpConfig_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10241,6 +10672,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_ReactivateIdpConfig_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10254,6 +10686,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveIdpConfig_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10261,6 +10695,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveIdpConfig_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10274,6 +10709,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateOidcIdpConfig_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10281,6 +10718,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateOidcIdpConfig_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10294,6 +10732,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_SearchIdps_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10301,6 +10741,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_SearchIdps_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10314,6 +10755,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10321,6 +10764,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10334,6 +10778,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetDefaultLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10341,6 +10787,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetDefaultLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10354,6 +10801,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreateLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10361,6 +10810,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreateLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10374,6 +10824,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdateLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10381,6 +10833,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdateLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10394,6 +10847,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10401,6 +10856,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10414,6 +10870,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_GetLoginPolicyIdpProviders_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10421,6 +10879,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetLoginPolicyIdpProviders_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10434,6 +10893,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_AddIdpProviderToLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10441,6 +10902,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_AddIdpProviderToLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10454,6 +10916,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveIdpProviderFromLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10461,6 +10925,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveIdpProviderFromLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10474,6 +10939,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetLoginPolicySecondFactors_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10481,6 +10948,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetLoginPolicySecondFactors_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10494,6 +10962,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_AddSecondFactorToLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10501,6 +10971,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_AddSecondFactorToLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10514,6 +10985,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveSecondFactorFromLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10521,6 +10994,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveSecondFactorFromLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10534,6 +11008,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetLoginPolicyMultiFactors_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10541,6 +11017,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetLoginPolicyMultiFactors_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10554,6 +11031,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_AddMultiFactorToLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10561,6 +11040,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_AddMultiFactorToLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10574,6 +11054,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemoveMultiFactorFromLoginPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10581,6 +11063,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemoveMultiFactorFromLoginPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10594,6 +11077,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetPasswordComplexityPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10601,6 +11086,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetPasswordComplexityPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10614,6 +11100,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetDefaultPasswordComplexityPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10621,6 +11109,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetDefaultPasswordComplexityPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10634,6 +11123,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreatePasswordComplexityPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10641,6 +11132,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreatePasswordComplexityPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10654,6 +11146,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdatePasswordComplexityPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10661,6 +11155,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdatePasswordComplexityPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10674,6 +11169,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemovePasswordComplexityPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10681,6 +11178,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemovePasswordComplexityPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10694,6 +11192,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetPasswordAgePolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10701,6 +11201,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetPasswordAgePolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10714,6 +11215,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetDefaultPasswordAgePolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10721,6 +11224,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetDefaultPasswordAgePolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10734,6 +11238,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreatePasswordAgePolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10741,6 +11247,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreatePasswordAgePolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10754,6 +11261,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdatePasswordAgePolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10761,6 +11270,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdatePasswordAgePolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10774,6 +11284,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemovePasswordAgePolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10781,6 +11293,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemovePasswordAgePolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10794,6 +11307,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetPasswordLockoutPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10801,6 +11316,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetPasswordLockoutPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10814,6 +11330,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("GET", pattern_ManagementService_GetDefaultPasswordLockoutPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10821,6 +11339,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_GetDefaultPasswordLockoutPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10834,6 +11353,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("POST", pattern_ManagementService_CreatePasswordLockoutPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10841,6 +11362,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_CreatePasswordLockoutPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10854,6 +11376,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("PUT", pattern_ManagementService_UpdatePasswordLockoutPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10861,6 +11385,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_UpdatePasswordLockoutPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -10874,6 +11399,8 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
mux.Handle("DELETE", pattern_ManagementService_RemovePasswordLockoutPolicy_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
+ var stream runtime.ServerTransportStream
+ ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req)
if err != nil {
@@ -10881,6 +11408,7 @@ func RegisterManagementServiceHandlerServer(ctx context.Context, mux *runtime.Se
return
}
resp, md, err := local_request_ManagementService_RemovePasswordLockoutPolicy_0(rctx, inboundMarshaler, server, req, pathParams)
+ md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
ctx = runtime.NewServerMetadataContext(ctx, md)
if err != nil {
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
@@ -11692,6 +12220,26 @@ func RegisterManagementServiceHandlerClient(ctx context.Context, mux *runtime.Se
})
+ mux.Handle("POST", pattern_ManagementService_ResendInitialMail_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
+ ctx, cancel := context.WithCancel(req.Context())
+ defer cancel()
+ inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
+ rctx, err := runtime.AnnotateContext(ctx, mux, req)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+ resp, md, err := request_ManagementService_ResendInitialMail_0(rctx, inboundMarshaler, client, req, pathParams)
+ ctx = runtime.NewServerMetadataContext(ctx, md)
+ if err != nil {
+ runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
+ return
+ }
+
+ forward_ManagementService_ResendInitialMail_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
+
+ })
+
mux.Handle("POST", pattern_ManagementService_SearchUserMemberships_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
ctx, cancel := context.WithCancel(req.Context())
defer cancel()
@@ -13892,6 +14440,8 @@ var (
pattern_ManagementService_SetInitialPassword_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"users", "id", "password", "_initialize"}, "", runtime.AssumeColonVerbOpt(true)))
+ pattern_ManagementService_ResendInitialMail_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2}, []string{"users", "id", "_resendinitialisation"}, "", runtime.AssumeColonVerbOpt(true)))
+
pattern_ManagementService_SearchUserMemberships_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 1, 0, 4, 1, 5, 1, 2, 2, 2, 3}, []string{"users", "user_id", "memberships", "_search"}, "", runtime.AssumeColonVerbOpt(true)))
pattern_ManagementService_CreateOrg_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0}, []string{"orgs"}, "", runtime.AssumeColonVerbOpt(true)))
@@ -14182,6 +14732,8 @@ var (
forward_ManagementService_SetInitialPassword_0 = runtime.ForwardResponseMessage
+ forward_ManagementService_ResendInitialMail_0 = runtime.ForwardResponseMessage
+
forward_ManagementService_SearchUserMemberships_0 = runtime.ForwardResponseMessage
forward_ManagementService_CreateOrg_0 = runtime.ForwardResponseMessage
diff --git a/pkg/grpc/management/management.pb.validate.go b/pkg/grpc/management/management.pb.validate.go
index 416167df2e..098d2f5b92 100644
--- a/pkg/grpc/management/management.pb.validate.go
+++ b/pkg/grpc/management/management.pb.validate.go
@@ -4316,6 +4316,82 @@ var _ interface {
ErrorName() string
} = SetPasswordNotificationRequestValidationError{}
+// Validate checks the field values on InitialMailRequest with the rules
+// defined in the proto definition for this message. If any rules are
+// violated, an error is returned.
+func (m *InitialMailRequest) Validate() error {
+ if m == nil {
+ return nil
+ }
+
+ if utf8.RuneCountInString(m.GetId()) < 1 {
+ return InitialMailRequestValidationError{
+ field: "Id",
+ reason: "value length must be at least 1 runes",
+ }
+ }
+
+ // no validation rules for Email
+
+ return nil
+}
+
+// InitialMailRequestValidationError is the validation error returned by
+// InitialMailRequest.Validate if the designated constraints aren't met.
+type InitialMailRequestValidationError struct {
+ field string
+ reason string
+ cause error
+ key bool
+}
+
+// Field function returns field value.
+func (e InitialMailRequestValidationError) Field() string { return e.field }
+
+// Reason function returns reason value.
+func (e InitialMailRequestValidationError) Reason() string { return e.reason }
+
+// Cause function returns cause value.
+func (e InitialMailRequestValidationError) Cause() error { return e.cause }
+
+// Key function returns key value.
+func (e InitialMailRequestValidationError) Key() bool { return e.key }
+
+// ErrorName returns error name.
+func (e InitialMailRequestValidationError) ErrorName() string {
+ return "InitialMailRequestValidationError"
+}
+
+// Error satisfies the builtin error interface
+func (e InitialMailRequestValidationError) Error() string {
+ cause := ""
+ if e.cause != nil {
+ cause = fmt.Sprintf(" | caused by: %v", e.cause)
+ }
+
+ key := ""
+ if e.key {
+ key = "key for "
+ }
+
+ return fmt.Sprintf(
+ "invalid %sInitialMailRequest.%s: %s%s",
+ key,
+ e.field,
+ e.reason,
+ cause)
+}
+
+var _ error = InitialMailRequestValidationError{}
+
+var _ interface {
+ Field() string
+ Reason() string
+ Key() bool
+ Cause() error
+ ErrorName() string
+} = InitialMailRequestValidationError{}
+
// Validate checks the field values on OrgIamPolicyView with the rules defined
// in the proto definition for this message. If any rules are violated, an
// error is returned.
diff --git a/pkg/grpc/management/management.swagger.json b/pkg/grpc/management/management.swagger.json
index 134e3084d6..ff9909c23e 100644
--- a/pkg/grpc/management/management.swagger.json
+++ b/pkg/grpc/management/management.swagger.json
@@ -31,7 +31,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -62,7 +62,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -93,7 +93,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -126,7 +126,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -163,7 +163,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -186,7 +186,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -208,7 +208,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -240,7 +240,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -262,7 +262,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -284,7 +284,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -306,7 +306,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -328,7 +328,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -350,7 +350,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -382,7 +382,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -414,7 +414,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -446,7 +446,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -478,7 +478,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -508,7 +508,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -538,7 +538,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -576,7 +576,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -614,7 +614,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -636,7 +636,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -668,7 +668,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -700,7 +700,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -738,7 +738,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -766,7 +766,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -794,7 +794,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -832,7 +832,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -870,7 +870,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -908,7 +908,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -940,7 +940,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -972,7 +972,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1000,7 +1000,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1038,7 +1038,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1058,7 +1058,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1078,7 +1078,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1108,7 +1108,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1140,7 +1140,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1172,7 +1172,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1204,7 +1204,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1234,7 +1234,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1266,7 +1266,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1288,7 +1288,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1322,7 +1322,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1354,7 +1354,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1376,7 +1376,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1411,7 +1411,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1431,7 +1431,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1451,7 +1451,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1481,7 +1481,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1513,7 +1513,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1533,7 +1533,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1553,7 +1553,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1583,7 +1583,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1615,7 +1615,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1635,7 +1635,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1655,7 +1655,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1685,7 +1685,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1717,7 +1717,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1740,7 +1740,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1777,8 +1777,7 @@
"name": "asc",
"in": "query",
"required": false,
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
],
"tags": [
@@ -1797,7 +1796,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1829,7 +1828,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1861,7 +1860,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1883,7 +1882,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1905,7 +1904,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1933,7 +1932,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1961,7 +1960,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -1999,7 +1998,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2037,7 +2036,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2076,7 +2075,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2113,8 +2112,7 @@
"name": "asc",
"in": "query",
"required": false,
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
],
"tags": [
@@ -2134,7 +2132,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2171,8 +2169,7 @@
"name": "asc",
"in": "query",
"required": false,
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
],
"tags": [
@@ -2191,7 +2188,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2229,7 +2226,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2263,7 +2260,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2307,7 +2304,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2346,7 +2343,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2385,7 +2382,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2419,7 +2416,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2463,7 +2460,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2501,7 +2498,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2539,7 +2536,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2583,7 +2580,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2617,7 +2614,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2651,7 +2648,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2695,7 +2692,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2739,7 +2736,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2783,7 +2780,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2827,7 +2824,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2865,7 +2862,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2903,7 +2900,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2947,7 +2944,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -2991,7 +2988,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3031,7 +3028,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3081,7 +3078,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3116,7 +3113,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3150,7 +3147,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3194,7 +3191,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3238,7 +3235,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3282,7 +3279,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3320,7 +3317,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3358,7 +3355,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3380,7 +3377,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3412,7 +3409,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3449,7 +3446,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3481,7 +3478,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3513,7 +3510,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3541,7 +3538,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3571,7 +3568,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3609,7 +3606,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3647,7 +3644,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3674,6 +3671,44 @@
]
}
},
+ "/users/{id}/_resendinitialisation": {
+ "post": {
+ "operationId": "ManagementService_ResendInitialMail",
+ "responses": {
+ "200": {
+ "description": "A successful response.",
+ "schema": {
+ "properties": {}
+ }
+ },
+ "default": {
+ "description": "An unexpected error response.",
+ "schema": {
+ "$ref": "#/definitions/runtimeError"
+ }
+ }
+ },
+ "parameters": [
+ {
+ "name": "id",
+ "in": "path",
+ "required": true,
+ "type": "string"
+ },
+ {
+ "name": "body",
+ "in": "body",
+ "required": true,
+ "schema": {
+ "$ref": "#/definitions/v1InitialMailRequest"
+ }
+ }
+ ],
+ "tags": [
+ "ManagementService"
+ ]
+ }
+ },
"/users/{id}/_unlock": {
"put": {
"operationId": "ManagementService_UnlockUser",
@@ -3685,7 +3720,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3723,7 +3758,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3751,7 +3786,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3790,7 +3825,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3827,8 +3862,7 @@
"name": "asc",
"in": "query",
"required": false,
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
],
"tags": [
@@ -3847,7 +3881,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3875,7 +3909,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3913,7 +3947,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3951,7 +3985,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -3989,7 +4023,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4020,7 +4054,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4059,7 +4093,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4097,7 +4131,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4125,7 +4159,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4153,7 +4187,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4191,7 +4225,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4229,7 +4263,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4257,7 +4291,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4295,7 +4329,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4331,7 +4365,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4369,7 +4403,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4411,7 +4445,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4449,7 +4483,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4483,7 +4517,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4517,7 +4551,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4561,7 +4595,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4605,7 +4639,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4649,7 +4683,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4687,7 +4721,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4725,7 +4759,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4759,7 +4793,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4795,7 +4829,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4834,7 +4868,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4866,7 +4900,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -4888,7 +4922,7 @@
}
},
"default": {
- "description": "An unexpected error response",
+ "description": "An unexpected error response.",
"schema": {
"$ref": "#/definitions/runtimeError"
}
@@ -5264,15 +5298,13 @@
"type": "string"
},
"is_email_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"phone": {
"type": "string"
},
"is_phone_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"country": {
"type": "string"
@@ -5448,15 +5480,13 @@
"type": "string"
},
"is_email_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"phone": {
"type": "string"
},
"is_phone_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"country": {
"type": "string"
@@ -5504,15 +5534,13 @@
"type": "string"
},
"is_email_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"phone": {
"type": "string"
},
"is_phone_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"country": {
"type": "string"
@@ -5835,6 +5863,17 @@
}
}
},
+ "v1InitialMailRequest": {
+ "type": "object",
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "email": {
+ "type": "string"
+ }
+ }
+ },
"v1LocalizedMessage": {
"type": "object",
"properties": {
@@ -5850,16 +5889,13 @@
"type": "object",
"properties": {
"allow_username_password": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"allow_register": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"allow_external_idp": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"creation_date": {
"type": "string",
@@ -5870,8 +5906,7 @@
"format": "date-time"
},
"force_mfa": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -5879,20 +5914,16 @@
"type": "object",
"properties": {
"allow_username_password": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"allow_register": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"allow_external_idp": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"force_mfa": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -5900,20 +5931,16 @@
"type": "object",
"properties": {
"default": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"allow_username_password": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"allow_register": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"allow_external_idp": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"creation_date": {
"type": "string",
@@ -5924,8 +5951,7 @@
"format": "date-time"
},
"force_mfa": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -5951,8 +5977,7 @@
"format": "uint64"
},
"asc": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"user_id": {
"type": "string"
@@ -6144,19 +6169,16 @@
"$ref": "#/definitions/v1OIDCVersion"
},
"dev_mode": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"access_token_type": {
"$ref": "#/definitions/v1OIDCTokenType"
},
"access_token_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"id_token_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -6221,8 +6243,7 @@
"$ref": "#/definitions/v1OIDCVersion"
},
"none_compliant": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"compliance_problems": {
"type": "array",
@@ -6231,19 +6252,16 @@
}
},
"dev_mode": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"access_token_type": {
"$ref": "#/definitions/v1OIDCTokenType"
},
"access_token_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"id_token_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -6287,19 +6305,16 @@
}
},
"dev_mode": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"access_token_type": {
"$ref": "#/definitions/v1OIDCTokenType"
},
"access_token_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"id_token_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -6507,12 +6522,10 @@
"type": "string"
},
"verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"primary": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -6641,12 +6654,10 @@
"type": "string"
},
"verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"primary": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -6661,12 +6672,10 @@
"type": "object",
"properties": {
"user_login_must_be_domain": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"default": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -6900,8 +6909,7 @@
"type": "object",
"properties": {
"default": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"max_age_days": {
"type": "string",
@@ -6933,20 +6941,16 @@
"format": "uint64"
},
"has_lowercase": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"has_uppercase": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"has_number": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"has_symbol": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -6970,20 +6974,16 @@
"format": "uint64"
},
"has_lowercase": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"has_uppercase": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"has_number": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"has_symbol": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -6991,28 +6991,23 @@
"type": "object",
"properties": {
"default": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"min_length": {
"type": "string",
"format": "uint64"
},
"has_lowercase": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"has_uppercase": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"has_number": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"has_symbol": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -7036,8 +7031,7 @@
"format": "uint64"
},
"show_lockout_failure": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -7061,8 +7055,7 @@
"format": "uint64"
},
"show_lockout_failure": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -7070,16 +7063,14 @@
"type": "object",
"properties": {
"default": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"max_attempts": {
"type": "string",
"format": "uint64"
},
"show_lockout_failure": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -7131,12 +7122,10 @@
"format": "uint64"
},
"project_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"project_role_check": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -7147,12 +7136,10 @@
"type": "string"
},
"project_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"project_role_check": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -8036,12 +8023,10 @@
"type": "string"
},
"project_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"project_role_check": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -8073,12 +8058,10 @@
"format": "uint64"
},
"project_role_assertion": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"project_role_check": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -8142,8 +8125,7 @@
"type": "object",
"properties": {
"is_unique": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -8191,8 +8173,7 @@
"type": "string"
},
"is_email_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -8206,8 +8187,7 @@
"type": "string"
},
"is_phone_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
}
}
},
@@ -8314,8 +8294,7 @@
"type": "string"
},
"is_email_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -8341,8 +8320,7 @@
"type": "string"
},
"is_email_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -8776,8 +8754,7 @@
"type": "string"
},
"is_phone_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -8803,8 +8780,7 @@
"type": "string"
},
"is_phone_verified": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"sequence": {
"type": "string",
@@ -8981,8 +8957,7 @@
"$ref": "#/definitions/v1UserSearchKey"
},
"asc": {
- "type": "boolean",
- "format": "boolean"
+ "type": "boolean"
},
"queries": {
"type": "array",
diff --git a/pkg/grpc/management/mock/management.proto.mock.go b/pkg/grpc/management/mock/management.proto.mock.go
index d331552773..14f877f20c 100644
--- a/pkg/grpc/management/mock/management.proto.mock.go
+++ b/pkg/grpc/management/mock/management.proto.mock.go
@@ -2157,6 +2157,26 @@ func (mr *MockManagementServiceClientMockRecorder) ResendEmailVerificationMail(a
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ResendEmailVerificationMail", reflect.TypeOf((*MockManagementServiceClient)(nil).ResendEmailVerificationMail), varargs...)
}
+// ResendInitialMail mocks base method
+func (m *MockManagementServiceClient) ResendInitialMail(arg0 context.Context, arg1 *management.InitialMailRequest, arg2 ...grpc.CallOption) (*emptypb.Empty, error) {
+ m.ctrl.T.Helper()
+ varargs := []interface{}{arg0, arg1}
+ for _, a := range arg2 {
+ varargs = append(varargs, a)
+ }
+ ret := m.ctrl.Call(m, "ResendInitialMail", varargs...)
+ ret0, _ := ret[0].(*emptypb.Empty)
+ ret1, _ := ret[1].(error)
+ return ret0, ret1
+}
+
+// ResendInitialMail indicates an expected call of ResendInitialMail
+func (mr *MockManagementServiceClientMockRecorder) ResendInitialMail(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call {
+ mr.mock.ctrl.T.Helper()
+ varargs := append([]interface{}{arg0, arg1}, arg2...)
+ return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ResendInitialMail", reflect.TypeOf((*MockManagementServiceClient)(nil).ResendInitialMail), varargs...)
+}
+
// ResendPhoneVerificationCode mocks base method
func (m *MockManagementServiceClient) ResendPhoneVerificationCode(arg0 context.Context, arg1 *management.UserID, arg2 ...grpc.CallOption) (*emptypb.Empty, error) {
m.ctrl.T.Helper()
diff --git a/pkg/grpc/management/proto/management.proto b/pkg/grpc/management/proto/management.proto
index 1fe5dec303..0297b4fa03 100644
--- a/pkg/grpc/management/proto/management.proto
+++ b/pkg/grpc/management/proto/management.proto
@@ -424,6 +424,17 @@ rpc GetUserByID(UserID) returns (UserView) {
};
}
+ rpc ResendInitialMail(InitialMailRequest) returns (google.protobuf.Empty) {
+ option (google.api.http) = {
+ post: "/users/{id}/_resendinitialisation"
+ body: "*"
+ };
+
+ option (caos.zitadel.utils.v1.auth_option) = {
+ permission: "user.write"
+ };
+ }
+
rpc SearchUserMemberships(UserMembershipSearchRequest) returns (UserMembershipSearchResponse) {
option (google.api.http) = {
post: "/users/{user_id}/memberships/_search"
@@ -2049,6 +2060,11 @@ enum NotificationType {
NOTIFICATIONTYPE_SMS = 1;
}
+message InitialMailRequest {
+ string id = 1 [(validate.rules).string.min_len = 1];
+ string email = 2;
+}
+
enum PolicyState {
POLICYSTATE_UNSPECIFIED = 0;
POLICYSTATE_ACTIVE = 1;