@temporalio/proto 1.12.0-rc.0 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/protos/root.d.ts CHANGED
@@ -4561,11 +4561,11 @@ export namespace coresdk {
4561
4561
  seq?: (number|null);
4562
4562
 
4563
4563
  /**
4564
- * The operation started asynchronously. Contains an ID that can be used to perform
4564
+ * The operation started asynchronously. Contains a token that can be used to perform
4565
4565
  * operations on the started operation by, ex, clients. A `ResolveNexusOperation` job will
4566
4566
  * follow at some point.
4567
4567
  */
4568
- operationId?: (string|null);
4568
+ operationToken?: (string|null);
4569
4569
 
4570
4570
  /**
4571
4571
  * If true the operation "started" but only because it's also already resolved. A
@@ -4594,11 +4594,11 @@ export namespace coresdk {
4594
4594
  public seq: number;
4595
4595
 
4596
4596
  /**
4597
- * The operation started asynchronously. Contains an ID that can be used to perform
4597
+ * The operation started asynchronously. Contains a token that can be used to perform
4598
4598
  * operations on the started operation by, ex, clients. A `ResolveNexusOperation` job will
4599
4599
  * follow at some point.
4600
4600
  */
4601
- public operationId?: (string|null);
4601
+ public operationToken?: (string|null);
4602
4602
 
4603
4603
  /**
4604
4604
  * If true the operation "started" but only because it's also already resolved. A
@@ -4614,7 +4614,7 @@ export namespace coresdk {
4614
4614
  public cancelledBeforeStart?: (temporal.api.failure.v1.IFailure|null);
4615
4615
 
4616
4616
  /** ResolveNexusOperationStart status. */
4617
- public status?: ("operationId"|"startedSync"|"cancelledBeforeStart");
4617
+ public status?: ("operationToken"|"startedSync"|"cancelledBeforeStart");
4618
4618
 
4619
4619
  /**
4620
4620
  * Creates a new ResolveNexusOperationStart instance using the specified properties.
@@ -5773,6 +5773,14 @@ export namespace coresdk {
5773
5773
  TIMED_OUT = 0,
5774
5774
  WORKER_SHUTDOWN = 1
5775
5775
  }
5776
+
5777
+ /** Controls at which point to report back to lang when a nexus operation is cancelled */
5778
+ enum NexusOperationCancellationType {
5779
+ WAIT_CANCELLATION_COMPLETED = 0,
5780
+ ABANDON = 1,
5781
+ TRY_CANCEL = 2,
5782
+ WAIT_CANCELLATION_REQUESTED = 3
5783
+ }
5776
5784
  }
5777
5785
 
5778
5786
  /** Namespace workflow_commands. */
@@ -8550,6 +8558,9 @@ export namespace coresdk {
8550
8558
  * external and are not traditional payloads.
8551
8559
  */
8552
8560
  nexusHeader?: ({ [k: string]: string }|null);
8561
+
8562
+ /** Defines behaviour of the underlying nexus operation when operation cancellation has been requested. */
8563
+ cancellationType?: (coresdk.nexus.NexusOperationCancellationType|null);
8553
8564
  }
8554
8565
 
8555
8566
  /** A request to begin a Nexus operation */
@@ -8598,6 +8609,9 @@ export namespace coresdk {
8598
8609
  */
8599
8610
  public nexusHeader: { [k: string]: string };
8600
8611
 
8612
+ /** Defines behaviour of the underlying nexus operation when operation cancellation has been requested. */
8613
+ public cancellationType: coresdk.nexus.NexusOperationCancellationType;
8614
+
8601
8615
  /**
8602
8616
  * Creates a new ScheduleNexusOperation instance using the specified properties.
8603
8617
  * @param [properties] Properties to set
@@ -68414,6 +68428,20 @@ export namespace temporal {
68414
68428
  */
68415
68429
  public addNamespaceRegion(request: temporal.api.cloud.cloudservice.v1.IAddNamespaceRegionRequest): Promise<temporal.api.cloud.cloudservice.v1.AddNamespaceRegionResponse>;
68416
68430
 
68431
+ /**
68432
+ * Delete a region from a namespace
68433
+ * @param request DeleteNamespaceRegionRequest message or plain object
68434
+ * @param callback Node-style callback called with the error, if any, and DeleteNamespaceRegionResponse
68435
+ */
68436
+ public deleteNamespaceRegion(request: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionRequest, callback: temporal.api.cloud.cloudservice.v1.CloudService.DeleteNamespaceRegionCallback): void;
68437
+
68438
+ /**
68439
+ * Delete a region from a namespace
68440
+ * @param request DeleteNamespaceRegionRequest message or plain object
68441
+ * @returns Promise
68442
+ */
68443
+ public deleteNamespaceRegion(request: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionRequest): Promise<temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionResponse>;
68444
+
68417
68445
  /**
68418
68446
  * Get all regions
68419
68447
  * @param request GetRegionsRequest message or plain object
@@ -68666,6 +68694,48 @@ export namespace temporal {
68666
68694
  */
68667
68695
  public setUserGroupNamespaceAccess(request: temporal.api.cloud.cloudservice.v1.ISetUserGroupNamespaceAccessRequest): Promise<temporal.api.cloud.cloudservice.v1.SetUserGroupNamespaceAccessResponse>;
68668
68696
 
68697
+ /**
68698
+ * Add a member to the group, can only be used with Cloud group types.
68699
+ * @param request AddUserGroupMemberRequest message or plain object
68700
+ * @param callback Node-style callback called with the error, if any, and AddUserGroupMemberResponse
68701
+ */
68702
+ public addUserGroupMember(request: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberRequest, callback: temporal.api.cloud.cloudservice.v1.CloudService.AddUserGroupMemberCallback): void;
68703
+
68704
+ /**
68705
+ * Add a member to the group, can only be used with Cloud group types.
68706
+ * @param request AddUserGroupMemberRequest message or plain object
68707
+ * @returns Promise
68708
+ */
68709
+ public addUserGroupMember(request: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberRequest): Promise<temporal.api.cloud.cloudservice.v1.AddUserGroupMemberResponse>;
68710
+
68711
+ /**
68712
+ * Remove a member from the group, can only be used with Cloud group types.
68713
+ * @param request RemoveUserGroupMemberRequest message or plain object
68714
+ * @param callback Node-style callback called with the error, if any, and RemoveUserGroupMemberResponse
68715
+ */
68716
+ public removeUserGroupMember(request: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberRequest, callback: temporal.api.cloud.cloudservice.v1.CloudService.RemoveUserGroupMemberCallback): void;
68717
+
68718
+ /**
68719
+ * Remove a member from the group, can only be used with Cloud group types.
68720
+ * @param request RemoveUserGroupMemberRequest message or plain object
68721
+ * @returns Promise
68722
+ */
68723
+ public removeUserGroupMember(request: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberRequest): Promise<temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberResponse>;
68724
+
68725
+ /**
68726
+ * Calls GetUserGroupMembers.
68727
+ * @param request GetUserGroupMembersRequest message or plain object
68728
+ * @param callback Node-style callback called with the error, if any, and GetUserGroupMembersResponse
68729
+ */
68730
+ public getUserGroupMembers(request: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersRequest, callback: temporal.api.cloud.cloudservice.v1.CloudService.GetUserGroupMembersCallback): void;
68731
+
68732
+ /**
68733
+ * Calls GetUserGroupMembers.
68734
+ * @param request GetUserGroupMembersRequest message or plain object
68735
+ * @returns Promise
68736
+ */
68737
+ public getUserGroupMembers(request: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersRequest): Promise<temporal.api.cloud.cloudservice.v1.GetUserGroupMembersResponse>;
68738
+
68669
68739
  /**
68670
68740
  * Create a service account.
68671
68741
  * @param request CreateServiceAccountRequest message or plain object
@@ -68974,6 +69044,13 @@ export namespace temporal {
68974
69044
  */
68975
69045
  type AddNamespaceRegionCallback = (error: (Error|null), response?: temporal.api.cloud.cloudservice.v1.AddNamespaceRegionResponse) => void;
68976
69046
 
69047
+ /**
69048
+ * Callback as used by {@link temporal.api.cloud.cloudservice.v1.CloudService#deleteNamespaceRegion}.
69049
+ * @param error Error, if any
69050
+ * @param [response] DeleteNamespaceRegionResponse
69051
+ */
69052
+ type DeleteNamespaceRegionCallback = (error: (Error|null), response?: temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionResponse) => void;
69053
+
68977
69054
  /**
68978
69055
  * Callback as used by {@link temporal.api.cloud.cloudservice.v1.CloudService#getRegions}.
68979
69056
  * @param error Error, if any
@@ -69100,6 +69177,27 @@ export namespace temporal {
69100
69177
  */
69101
69178
  type SetUserGroupNamespaceAccessCallback = (error: (Error|null), response?: temporal.api.cloud.cloudservice.v1.SetUserGroupNamespaceAccessResponse) => void;
69102
69179
 
69180
+ /**
69181
+ * Callback as used by {@link temporal.api.cloud.cloudservice.v1.CloudService#addUserGroupMember}.
69182
+ * @param error Error, if any
69183
+ * @param [response] AddUserGroupMemberResponse
69184
+ */
69185
+ type AddUserGroupMemberCallback = (error: (Error|null), response?: temporal.api.cloud.cloudservice.v1.AddUserGroupMemberResponse) => void;
69186
+
69187
+ /**
69188
+ * Callback as used by {@link temporal.api.cloud.cloudservice.v1.CloudService#removeUserGroupMember}.
69189
+ * @param error Error, if any
69190
+ * @param [response] RemoveUserGroupMemberResponse
69191
+ */
69192
+ type RemoveUserGroupMemberCallback = (error: (Error|null), response?: temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberResponse) => void;
69193
+
69194
+ /**
69195
+ * Callback as used by {@link temporal.api.cloud.cloudservice.v1.CloudService#getUserGroupMembers}.
69196
+ * @param error Error, if any
69197
+ * @param [response] GetUserGroupMembersResponse
69198
+ */
69199
+ type GetUserGroupMembersCallback = (error: (Error|null), response?: temporal.api.cloud.cloudservice.v1.GetUserGroupMembersResponse) => void;
69200
+
69103
69201
  /**
69104
69202
  * Callback as used by {@link temporal.api.cloud.cloudservice.v1.CloudService#createServiceAccount}.
69105
69203
  * @param error Error, if any
@@ -72209,6 +72307,218 @@ export namespace temporal {
72209
72307
  public static getTypeUrl(typeUrlPrefix?: string): string;
72210
72308
  }
72211
72309
 
72310
+ /** Properties of a DeleteNamespaceRegionRequest. */
72311
+ interface IDeleteNamespaceRegionRequest {
72312
+
72313
+ /** The namespace to delete a region. */
72314
+ namespace?: (string|null);
72315
+
72316
+ /**
72317
+ * The id of the standby region to be deleted.
72318
+ * The GetRegions API can be used to get the list of valid region ids.
72319
+ * Example: "aws-us-west-2".
72320
+ */
72321
+ region?: (string|null);
72322
+
72323
+ /**
72324
+ * The version of the namespace for which this delete region operation is intended for.
72325
+ * The latest version can be found in the GetNamespace operation response.
72326
+ */
72327
+ resourceVersion?: (string|null);
72328
+
72329
+ /** The id to use for this async operation - optional. */
72330
+ asyncOperationId?: (string|null);
72331
+ }
72332
+
72333
+ /** Represents a DeleteNamespaceRegionRequest. */
72334
+ class DeleteNamespaceRegionRequest implements IDeleteNamespaceRegionRequest {
72335
+
72336
+ /**
72337
+ * Constructs a new DeleteNamespaceRegionRequest.
72338
+ * @param [properties] Properties to set
72339
+ */
72340
+ constructor(properties?: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionRequest);
72341
+
72342
+ /** The namespace to delete a region. */
72343
+ public namespace: string;
72344
+
72345
+ /**
72346
+ * The id of the standby region to be deleted.
72347
+ * The GetRegions API can be used to get the list of valid region ids.
72348
+ * Example: "aws-us-west-2".
72349
+ */
72350
+ public region: string;
72351
+
72352
+ /**
72353
+ * The version of the namespace for which this delete region operation is intended for.
72354
+ * The latest version can be found in the GetNamespace operation response.
72355
+ */
72356
+ public resourceVersion: string;
72357
+
72358
+ /** The id to use for this async operation - optional. */
72359
+ public asyncOperationId: string;
72360
+
72361
+ /**
72362
+ * Creates a new DeleteNamespaceRegionRequest instance using the specified properties.
72363
+ * @param [properties] Properties to set
72364
+ * @returns DeleteNamespaceRegionRequest instance
72365
+ */
72366
+ public static create(properties?: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionRequest): temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionRequest;
72367
+
72368
+ /**
72369
+ * Encodes the specified DeleteNamespaceRegionRequest message. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionRequest.verify|verify} messages.
72370
+ * @param message DeleteNamespaceRegionRequest message or plain object to encode
72371
+ * @param [writer] Writer to encode to
72372
+ * @returns Writer
72373
+ */
72374
+ public static encode(message: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
72375
+
72376
+ /**
72377
+ * Encodes the specified DeleteNamespaceRegionRequest message, length delimited. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionRequest.verify|verify} messages.
72378
+ * @param message DeleteNamespaceRegionRequest message or plain object to encode
72379
+ * @param [writer] Writer to encode to
72380
+ * @returns Writer
72381
+ */
72382
+ public static encodeDelimited(message: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionRequest, writer?: $protobuf.Writer): $protobuf.Writer;
72383
+
72384
+ /**
72385
+ * Decodes a DeleteNamespaceRegionRequest message from the specified reader or buffer.
72386
+ * @param reader Reader or buffer to decode from
72387
+ * @param [length] Message length if known beforehand
72388
+ * @returns DeleteNamespaceRegionRequest
72389
+ * @throws {Error} If the payload is not a reader or valid buffer
72390
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
72391
+ */
72392
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionRequest;
72393
+
72394
+ /**
72395
+ * Decodes a DeleteNamespaceRegionRequest message from the specified reader or buffer, length delimited.
72396
+ * @param reader Reader or buffer to decode from
72397
+ * @returns DeleteNamespaceRegionRequest
72398
+ * @throws {Error} If the payload is not a reader or valid buffer
72399
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
72400
+ */
72401
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionRequest;
72402
+
72403
+ /**
72404
+ * Creates a DeleteNamespaceRegionRequest message from a plain object. Also converts values to their respective internal types.
72405
+ * @param object Plain object
72406
+ * @returns DeleteNamespaceRegionRequest
72407
+ */
72408
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionRequest;
72409
+
72410
+ /**
72411
+ * Creates a plain object from a DeleteNamespaceRegionRequest message. Also converts values to other types if specified.
72412
+ * @param message DeleteNamespaceRegionRequest
72413
+ * @param [options] Conversion options
72414
+ * @returns Plain object
72415
+ */
72416
+ public static toObject(message: temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
72417
+
72418
+ /**
72419
+ * Converts this DeleteNamespaceRegionRequest to JSON.
72420
+ * @returns JSON object
72421
+ */
72422
+ public toJSON(): { [k: string]: any };
72423
+
72424
+ /**
72425
+ * Gets the default type url for DeleteNamespaceRegionRequest
72426
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
72427
+ * @returns The default type url
72428
+ */
72429
+ public static getTypeUrl(typeUrlPrefix?: string): string;
72430
+ }
72431
+
72432
+ /** Properties of a DeleteNamespaceRegionResponse. */
72433
+ interface IDeleteNamespaceRegionResponse {
72434
+
72435
+ /** The async operation. */
72436
+ asyncOperation?: (temporal.api.cloud.operation.v1.IAsyncOperation|null);
72437
+ }
72438
+
72439
+ /** Represents a DeleteNamespaceRegionResponse. */
72440
+ class DeleteNamespaceRegionResponse implements IDeleteNamespaceRegionResponse {
72441
+
72442
+ /**
72443
+ * Constructs a new DeleteNamespaceRegionResponse.
72444
+ * @param [properties] Properties to set
72445
+ */
72446
+ constructor(properties?: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionResponse);
72447
+
72448
+ /** The async operation. */
72449
+ public asyncOperation?: (temporal.api.cloud.operation.v1.IAsyncOperation|null);
72450
+
72451
+ /**
72452
+ * Creates a new DeleteNamespaceRegionResponse instance using the specified properties.
72453
+ * @param [properties] Properties to set
72454
+ * @returns DeleteNamespaceRegionResponse instance
72455
+ */
72456
+ public static create(properties?: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionResponse): temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionResponse;
72457
+
72458
+ /**
72459
+ * Encodes the specified DeleteNamespaceRegionResponse message. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionResponse.verify|verify} messages.
72460
+ * @param message DeleteNamespaceRegionResponse message or plain object to encode
72461
+ * @param [writer] Writer to encode to
72462
+ * @returns Writer
72463
+ */
72464
+ public static encode(message: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
72465
+
72466
+ /**
72467
+ * Encodes the specified DeleteNamespaceRegionResponse message, length delimited. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionResponse.verify|verify} messages.
72468
+ * @param message DeleteNamespaceRegionResponse message or plain object to encode
72469
+ * @param [writer] Writer to encode to
72470
+ * @returns Writer
72471
+ */
72472
+ public static encodeDelimited(message: temporal.api.cloud.cloudservice.v1.IDeleteNamespaceRegionResponse, writer?: $protobuf.Writer): $protobuf.Writer;
72473
+
72474
+ /**
72475
+ * Decodes a DeleteNamespaceRegionResponse message from the specified reader or buffer.
72476
+ * @param reader Reader or buffer to decode from
72477
+ * @param [length] Message length if known beforehand
72478
+ * @returns DeleteNamespaceRegionResponse
72479
+ * @throws {Error} If the payload is not a reader or valid buffer
72480
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
72481
+ */
72482
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionResponse;
72483
+
72484
+ /**
72485
+ * Decodes a DeleteNamespaceRegionResponse message from the specified reader or buffer, length delimited.
72486
+ * @param reader Reader or buffer to decode from
72487
+ * @returns DeleteNamespaceRegionResponse
72488
+ * @throws {Error} If the payload is not a reader or valid buffer
72489
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
72490
+ */
72491
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionResponse;
72492
+
72493
+ /**
72494
+ * Creates a DeleteNamespaceRegionResponse message from a plain object. Also converts values to their respective internal types.
72495
+ * @param object Plain object
72496
+ * @returns DeleteNamespaceRegionResponse
72497
+ */
72498
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionResponse;
72499
+
72500
+ /**
72501
+ * Creates a plain object from a DeleteNamespaceRegionResponse message. Also converts values to other types if specified.
72502
+ * @param message DeleteNamespaceRegionResponse
72503
+ * @param [options] Conversion options
72504
+ * @returns Plain object
72505
+ */
72506
+ public static toObject(message: temporal.api.cloud.cloudservice.v1.DeleteNamespaceRegionResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
72507
+
72508
+ /**
72509
+ * Converts this DeleteNamespaceRegionResponse to JSON.
72510
+ * @returns JSON object
72511
+ */
72512
+ public toJSON(): { [k: string]: any };
72513
+
72514
+ /**
72515
+ * Gets the default type url for DeleteNamespaceRegionResponse
72516
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
72517
+ * @returns The default type url
72518
+ */
72519
+ public static getTypeUrl(typeUrlPrefix?: string): string;
72520
+ }
72521
+
72212
72522
  /** Properties of a GetRegionsRequest. */
72213
72523
  interface IGetRegionsRequest {
72214
72524
  }
@@ -74595,6 +74905,9 @@ export namespace temporal {
74595
74905
 
74596
74906
  /** Filter groups by the google group specification - optional. */
74597
74907
  googleGroup?: (temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.IGoogleGroupFilter|null);
74908
+
74909
+ /** Filter groups by the SCIM group specification - optional. */
74910
+ scimGroup?: (temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.ISCIMGroupFilter|null);
74598
74911
  }
74599
74912
 
74600
74913
  /** Represents a GetUserGroupsRequest. */
@@ -74624,6 +74937,9 @@ export namespace temporal {
74624
74937
  /** Filter groups by the google group specification - optional. */
74625
74938
  public googleGroup?: (temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.IGoogleGroupFilter|null);
74626
74939
 
74940
+ /** Filter groups by the SCIM group specification - optional. */
74941
+ public scimGroup?: (temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.ISCIMGroupFilter|null);
74942
+
74627
74943
  /**
74628
74944
  * Creates a new GetUserGroupsRequest instance using the specified properties.
74629
74945
  * @param [properties] Properties to set
@@ -74786,6 +75102,96 @@ export namespace temporal {
74786
75102
  */
74787
75103
  public static getTypeUrl(typeUrlPrefix?: string): string;
74788
75104
  }
75105
+
75106
+ /** Properties of a SCIMGroupFilter. */
75107
+ interface ISCIMGroupFilter {
75108
+
75109
+ /** Filter groups by the SCIM IDP id - optional. */
75110
+ idpId?: (string|null);
75111
+ }
75112
+
75113
+ /** Represents a SCIMGroupFilter. */
75114
+ class SCIMGroupFilter implements ISCIMGroupFilter {
75115
+
75116
+ /**
75117
+ * Constructs a new SCIMGroupFilter.
75118
+ * @param [properties] Properties to set
75119
+ */
75120
+ constructor(properties?: temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.ISCIMGroupFilter);
75121
+
75122
+ /** Filter groups by the SCIM IDP id - optional. */
75123
+ public idpId: string;
75124
+
75125
+ /**
75126
+ * Creates a new SCIMGroupFilter instance using the specified properties.
75127
+ * @param [properties] Properties to set
75128
+ * @returns SCIMGroupFilter instance
75129
+ */
75130
+ public static create(properties?: temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.ISCIMGroupFilter): temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.SCIMGroupFilter;
75131
+
75132
+ /**
75133
+ * Encodes the specified SCIMGroupFilter message. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.SCIMGroupFilter.verify|verify} messages.
75134
+ * @param message SCIMGroupFilter message or plain object to encode
75135
+ * @param [writer] Writer to encode to
75136
+ * @returns Writer
75137
+ */
75138
+ public static encode(message: temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.ISCIMGroupFilter, writer?: $protobuf.Writer): $protobuf.Writer;
75139
+
75140
+ /**
75141
+ * Encodes the specified SCIMGroupFilter message, length delimited. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.SCIMGroupFilter.verify|verify} messages.
75142
+ * @param message SCIMGroupFilter message or plain object to encode
75143
+ * @param [writer] Writer to encode to
75144
+ * @returns Writer
75145
+ */
75146
+ public static encodeDelimited(message: temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.ISCIMGroupFilter, writer?: $protobuf.Writer): $protobuf.Writer;
75147
+
75148
+ /**
75149
+ * Decodes a SCIMGroupFilter message from the specified reader or buffer.
75150
+ * @param reader Reader or buffer to decode from
75151
+ * @param [length] Message length if known beforehand
75152
+ * @returns SCIMGroupFilter
75153
+ * @throws {Error} If the payload is not a reader or valid buffer
75154
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
75155
+ */
75156
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.SCIMGroupFilter;
75157
+
75158
+ /**
75159
+ * Decodes a SCIMGroupFilter message from the specified reader or buffer, length delimited.
75160
+ * @param reader Reader or buffer to decode from
75161
+ * @returns SCIMGroupFilter
75162
+ * @throws {Error} If the payload is not a reader or valid buffer
75163
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
75164
+ */
75165
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.SCIMGroupFilter;
75166
+
75167
+ /**
75168
+ * Creates a SCIMGroupFilter message from a plain object. Also converts values to their respective internal types.
75169
+ * @param object Plain object
75170
+ * @returns SCIMGroupFilter
75171
+ */
75172
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.SCIMGroupFilter;
75173
+
75174
+ /**
75175
+ * Creates a plain object from a SCIMGroupFilter message. Also converts values to other types if specified.
75176
+ * @param message SCIMGroupFilter
75177
+ * @param [options] Conversion options
75178
+ * @returns Plain object
75179
+ */
75180
+ public static toObject(message: temporal.api.cloud.cloudservice.v1.GetUserGroupsRequest.SCIMGroupFilter, options?: $protobuf.IConversionOptions): { [k: string]: any };
75181
+
75182
+ /**
75183
+ * Converts this SCIMGroupFilter to JSON.
75184
+ * @returns JSON object
75185
+ */
75186
+ public toJSON(): { [k: string]: any };
75187
+
75188
+ /**
75189
+ * Gets the default type url for SCIMGroupFilter
75190
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
75191
+ * @returns The default type url
75192
+ */
75193
+ public static getTypeUrl(typeUrlPrefix?: string): string;
75194
+ }
74789
75195
  }
74790
75196
 
74791
75197
  /** Properties of a GetUserGroupsResponse. */
@@ -75886,6 +76292,606 @@ export namespace temporal {
75886
76292
  public static getTypeUrl(typeUrlPrefix?: string): string;
75887
76293
  }
75888
76294
 
76295
+ /** Properties of an AddUserGroupMemberRequest. */
76296
+ interface IAddUserGroupMemberRequest {
76297
+
76298
+ /** The id of the group to add the member for. */
76299
+ groupId?: (string|null);
76300
+
76301
+ /** The member id to add to the group. */
76302
+ memberId?: (temporal.api.cloud.identity.v1.IUserGroupMemberId|null);
76303
+
76304
+ /**
76305
+ * The id to use for this async operation.
76306
+ * Optional, if not provided a random id will be generated.
76307
+ */
76308
+ asyncOperationId?: (string|null);
76309
+ }
76310
+
76311
+ /** Represents an AddUserGroupMemberRequest. */
76312
+ class AddUserGroupMemberRequest implements IAddUserGroupMemberRequest {
76313
+
76314
+ /**
76315
+ * Constructs a new AddUserGroupMemberRequest.
76316
+ * @param [properties] Properties to set
76317
+ */
76318
+ constructor(properties?: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberRequest);
76319
+
76320
+ /** The id of the group to add the member for. */
76321
+ public groupId: string;
76322
+
76323
+ /** The member id to add to the group. */
76324
+ public memberId?: (temporal.api.cloud.identity.v1.IUserGroupMemberId|null);
76325
+
76326
+ /**
76327
+ * The id to use for this async operation.
76328
+ * Optional, if not provided a random id will be generated.
76329
+ */
76330
+ public asyncOperationId: string;
76331
+
76332
+ /**
76333
+ * Creates a new AddUserGroupMemberRequest instance using the specified properties.
76334
+ * @param [properties] Properties to set
76335
+ * @returns AddUserGroupMemberRequest instance
76336
+ */
76337
+ public static create(properties?: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberRequest): temporal.api.cloud.cloudservice.v1.AddUserGroupMemberRequest;
76338
+
76339
+ /**
76340
+ * Encodes the specified AddUserGroupMemberRequest message. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.AddUserGroupMemberRequest.verify|verify} messages.
76341
+ * @param message AddUserGroupMemberRequest message or plain object to encode
76342
+ * @param [writer] Writer to encode to
76343
+ * @returns Writer
76344
+ */
76345
+ public static encode(message: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberRequest, writer?: $protobuf.Writer): $protobuf.Writer;
76346
+
76347
+ /**
76348
+ * Encodes the specified AddUserGroupMemberRequest message, length delimited. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.AddUserGroupMemberRequest.verify|verify} messages.
76349
+ * @param message AddUserGroupMemberRequest message or plain object to encode
76350
+ * @param [writer] Writer to encode to
76351
+ * @returns Writer
76352
+ */
76353
+ public static encodeDelimited(message: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberRequest, writer?: $protobuf.Writer): $protobuf.Writer;
76354
+
76355
+ /**
76356
+ * Decodes an AddUserGroupMemberRequest message from the specified reader or buffer.
76357
+ * @param reader Reader or buffer to decode from
76358
+ * @param [length] Message length if known beforehand
76359
+ * @returns AddUserGroupMemberRequest
76360
+ * @throws {Error} If the payload is not a reader or valid buffer
76361
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76362
+ */
76363
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.cloudservice.v1.AddUserGroupMemberRequest;
76364
+
76365
+ /**
76366
+ * Decodes an AddUserGroupMemberRequest message from the specified reader or buffer, length delimited.
76367
+ * @param reader Reader or buffer to decode from
76368
+ * @returns AddUserGroupMemberRequest
76369
+ * @throws {Error} If the payload is not a reader or valid buffer
76370
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76371
+ */
76372
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.cloudservice.v1.AddUserGroupMemberRequest;
76373
+
76374
+ /**
76375
+ * Creates an AddUserGroupMemberRequest message from a plain object. Also converts values to their respective internal types.
76376
+ * @param object Plain object
76377
+ * @returns AddUserGroupMemberRequest
76378
+ */
76379
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.cloudservice.v1.AddUserGroupMemberRequest;
76380
+
76381
+ /**
76382
+ * Creates a plain object from an AddUserGroupMemberRequest message. Also converts values to other types if specified.
76383
+ * @param message AddUserGroupMemberRequest
76384
+ * @param [options] Conversion options
76385
+ * @returns Plain object
76386
+ */
76387
+ public static toObject(message: temporal.api.cloud.cloudservice.v1.AddUserGroupMemberRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
76388
+
76389
+ /**
76390
+ * Converts this AddUserGroupMemberRequest to JSON.
76391
+ * @returns JSON object
76392
+ */
76393
+ public toJSON(): { [k: string]: any };
76394
+
76395
+ /**
76396
+ * Gets the default type url for AddUserGroupMemberRequest
76397
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
76398
+ * @returns The default type url
76399
+ */
76400
+ public static getTypeUrl(typeUrlPrefix?: string): string;
76401
+ }
76402
+
76403
+ /** Properties of an AddUserGroupMemberResponse. */
76404
+ interface IAddUserGroupMemberResponse {
76405
+
76406
+ /** The async operation. */
76407
+ asyncOperation?: (temporal.api.cloud.operation.v1.IAsyncOperation|null);
76408
+ }
76409
+
76410
+ /** Represents an AddUserGroupMemberResponse. */
76411
+ class AddUserGroupMemberResponse implements IAddUserGroupMemberResponse {
76412
+
76413
+ /**
76414
+ * Constructs a new AddUserGroupMemberResponse.
76415
+ * @param [properties] Properties to set
76416
+ */
76417
+ constructor(properties?: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberResponse);
76418
+
76419
+ /** The async operation. */
76420
+ public asyncOperation?: (temporal.api.cloud.operation.v1.IAsyncOperation|null);
76421
+
76422
+ /**
76423
+ * Creates a new AddUserGroupMemberResponse instance using the specified properties.
76424
+ * @param [properties] Properties to set
76425
+ * @returns AddUserGroupMemberResponse instance
76426
+ */
76427
+ public static create(properties?: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberResponse): temporal.api.cloud.cloudservice.v1.AddUserGroupMemberResponse;
76428
+
76429
+ /**
76430
+ * Encodes the specified AddUserGroupMemberResponse message. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.AddUserGroupMemberResponse.verify|verify} messages.
76431
+ * @param message AddUserGroupMemberResponse message or plain object to encode
76432
+ * @param [writer] Writer to encode to
76433
+ * @returns Writer
76434
+ */
76435
+ public static encode(message: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberResponse, writer?: $protobuf.Writer): $protobuf.Writer;
76436
+
76437
+ /**
76438
+ * Encodes the specified AddUserGroupMemberResponse message, length delimited. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.AddUserGroupMemberResponse.verify|verify} messages.
76439
+ * @param message AddUserGroupMemberResponse message or plain object to encode
76440
+ * @param [writer] Writer to encode to
76441
+ * @returns Writer
76442
+ */
76443
+ public static encodeDelimited(message: temporal.api.cloud.cloudservice.v1.IAddUserGroupMemberResponse, writer?: $protobuf.Writer): $protobuf.Writer;
76444
+
76445
+ /**
76446
+ * Decodes an AddUserGroupMemberResponse message from the specified reader or buffer.
76447
+ * @param reader Reader or buffer to decode from
76448
+ * @param [length] Message length if known beforehand
76449
+ * @returns AddUserGroupMemberResponse
76450
+ * @throws {Error} If the payload is not a reader or valid buffer
76451
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76452
+ */
76453
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.cloudservice.v1.AddUserGroupMemberResponse;
76454
+
76455
+ /**
76456
+ * Decodes an AddUserGroupMemberResponse message from the specified reader or buffer, length delimited.
76457
+ * @param reader Reader or buffer to decode from
76458
+ * @returns AddUserGroupMemberResponse
76459
+ * @throws {Error} If the payload is not a reader or valid buffer
76460
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76461
+ */
76462
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.cloudservice.v1.AddUserGroupMemberResponse;
76463
+
76464
+ /**
76465
+ * Creates an AddUserGroupMemberResponse message from a plain object. Also converts values to their respective internal types.
76466
+ * @param object Plain object
76467
+ * @returns AddUserGroupMemberResponse
76468
+ */
76469
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.cloudservice.v1.AddUserGroupMemberResponse;
76470
+
76471
+ /**
76472
+ * Creates a plain object from an AddUserGroupMemberResponse message. Also converts values to other types if specified.
76473
+ * @param message AddUserGroupMemberResponse
76474
+ * @param [options] Conversion options
76475
+ * @returns Plain object
76476
+ */
76477
+ public static toObject(message: temporal.api.cloud.cloudservice.v1.AddUserGroupMemberResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
76478
+
76479
+ /**
76480
+ * Converts this AddUserGroupMemberResponse to JSON.
76481
+ * @returns JSON object
76482
+ */
76483
+ public toJSON(): { [k: string]: any };
76484
+
76485
+ /**
76486
+ * Gets the default type url for AddUserGroupMemberResponse
76487
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
76488
+ * @returns The default type url
76489
+ */
76490
+ public static getTypeUrl(typeUrlPrefix?: string): string;
76491
+ }
76492
+
76493
+ /** Properties of a RemoveUserGroupMemberRequest. */
76494
+ interface IRemoveUserGroupMemberRequest {
76495
+
76496
+ /** The id of the group to add the member for. */
76497
+ groupId?: (string|null);
76498
+
76499
+ /** The member id to add to the group. */
76500
+ memberId?: (temporal.api.cloud.identity.v1.IUserGroupMemberId|null);
76501
+
76502
+ /**
76503
+ * The id to use for this async operation.
76504
+ * Optional, if not provided a random id will be generated.
76505
+ */
76506
+ asyncOperationId?: (string|null);
76507
+ }
76508
+
76509
+ /** Represents a RemoveUserGroupMemberRequest. */
76510
+ class RemoveUserGroupMemberRequest implements IRemoveUserGroupMemberRequest {
76511
+
76512
+ /**
76513
+ * Constructs a new RemoveUserGroupMemberRequest.
76514
+ * @param [properties] Properties to set
76515
+ */
76516
+ constructor(properties?: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberRequest);
76517
+
76518
+ /** The id of the group to add the member for. */
76519
+ public groupId: string;
76520
+
76521
+ /** The member id to add to the group. */
76522
+ public memberId?: (temporal.api.cloud.identity.v1.IUserGroupMemberId|null);
76523
+
76524
+ /**
76525
+ * The id to use for this async operation.
76526
+ * Optional, if not provided a random id will be generated.
76527
+ */
76528
+ public asyncOperationId: string;
76529
+
76530
+ /**
76531
+ * Creates a new RemoveUserGroupMemberRequest instance using the specified properties.
76532
+ * @param [properties] Properties to set
76533
+ * @returns RemoveUserGroupMemberRequest instance
76534
+ */
76535
+ public static create(properties?: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberRequest): temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberRequest;
76536
+
76537
+ /**
76538
+ * Encodes the specified RemoveUserGroupMemberRequest message. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberRequest.verify|verify} messages.
76539
+ * @param message RemoveUserGroupMemberRequest message or plain object to encode
76540
+ * @param [writer] Writer to encode to
76541
+ * @returns Writer
76542
+ */
76543
+ public static encode(message: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberRequest, writer?: $protobuf.Writer): $protobuf.Writer;
76544
+
76545
+ /**
76546
+ * Encodes the specified RemoveUserGroupMemberRequest message, length delimited. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberRequest.verify|verify} messages.
76547
+ * @param message RemoveUserGroupMemberRequest message or plain object to encode
76548
+ * @param [writer] Writer to encode to
76549
+ * @returns Writer
76550
+ */
76551
+ public static encodeDelimited(message: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberRequest, writer?: $protobuf.Writer): $protobuf.Writer;
76552
+
76553
+ /**
76554
+ * Decodes a RemoveUserGroupMemberRequest message from the specified reader or buffer.
76555
+ * @param reader Reader or buffer to decode from
76556
+ * @param [length] Message length if known beforehand
76557
+ * @returns RemoveUserGroupMemberRequest
76558
+ * @throws {Error} If the payload is not a reader or valid buffer
76559
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76560
+ */
76561
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberRequest;
76562
+
76563
+ /**
76564
+ * Decodes a RemoveUserGroupMemberRequest message from the specified reader or buffer, length delimited.
76565
+ * @param reader Reader or buffer to decode from
76566
+ * @returns RemoveUserGroupMemberRequest
76567
+ * @throws {Error} If the payload is not a reader or valid buffer
76568
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76569
+ */
76570
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberRequest;
76571
+
76572
+ /**
76573
+ * Creates a RemoveUserGroupMemberRequest message from a plain object. Also converts values to their respective internal types.
76574
+ * @param object Plain object
76575
+ * @returns RemoveUserGroupMemberRequest
76576
+ */
76577
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberRequest;
76578
+
76579
+ /**
76580
+ * Creates a plain object from a RemoveUserGroupMemberRequest message. Also converts values to other types if specified.
76581
+ * @param message RemoveUserGroupMemberRequest
76582
+ * @param [options] Conversion options
76583
+ * @returns Plain object
76584
+ */
76585
+ public static toObject(message: temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
76586
+
76587
+ /**
76588
+ * Converts this RemoveUserGroupMemberRequest to JSON.
76589
+ * @returns JSON object
76590
+ */
76591
+ public toJSON(): { [k: string]: any };
76592
+
76593
+ /**
76594
+ * Gets the default type url for RemoveUserGroupMemberRequest
76595
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
76596
+ * @returns The default type url
76597
+ */
76598
+ public static getTypeUrl(typeUrlPrefix?: string): string;
76599
+ }
76600
+
76601
+ /** Properties of a RemoveUserGroupMemberResponse. */
76602
+ interface IRemoveUserGroupMemberResponse {
76603
+
76604
+ /** The async operation. */
76605
+ asyncOperation?: (temporal.api.cloud.operation.v1.IAsyncOperation|null);
76606
+ }
76607
+
76608
+ /** Represents a RemoveUserGroupMemberResponse. */
76609
+ class RemoveUserGroupMemberResponse implements IRemoveUserGroupMemberResponse {
76610
+
76611
+ /**
76612
+ * Constructs a new RemoveUserGroupMemberResponse.
76613
+ * @param [properties] Properties to set
76614
+ */
76615
+ constructor(properties?: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberResponse);
76616
+
76617
+ /** The async operation. */
76618
+ public asyncOperation?: (temporal.api.cloud.operation.v1.IAsyncOperation|null);
76619
+
76620
+ /**
76621
+ * Creates a new RemoveUserGroupMemberResponse instance using the specified properties.
76622
+ * @param [properties] Properties to set
76623
+ * @returns RemoveUserGroupMemberResponse instance
76624
+ */
76625
+ public static create(properties?: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberResponse): temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberResponse;
76626
+
76627
+ /**
76628
+ * Encodes the specified RemoveUserGroupMemberResponse message. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberResponse.verify|verify} messages.
76629
+ * @param message RemoveUserGroupMemberResponse message or plain object to encode
76630
+ * @param [writer] Writer to encode to
76631
+ * @returns Writer
76632
+ */
76633
+ public static encode(message: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberResponse, writer?: $protobuf.Writer): $protobuf.Writer;
76634
+
76635
+ /**
76636
+ * Encodes the specified RemoveUserGroupMemberResponse message, length delimited. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberResponse.verify|verify} messages.
76637
+ * @param message RemoveUserGroupMemberResponse message or plain object to encode
76638
+ * @param [writer] Writer to encode to
76639
+ * @returns Writer
76640
+ */
76641
+ public static encodeDelimited(message: temporal.api.cloud.cloudservice.v1.IRemoveUserGroupMemberResponse, writer?: $protobuf.Writer): $protobuf.Writer;
76642
+
76643
+ /**
76644
+ * Decodes a RemoveUserGroupMemberResponse message from the specified reader or buffer.
76645
+ * @param reader Reader or buffer to decode from
76646
+ * @param [length] Message length if known beforehand
76647
+ * @returns RemoveUserGroupMemberResponse
76648
+ * @throws {Error} If the payload is not a reader or valid buffer
76649
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76650
+ */
76651
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberResponse;
76652
+
76653
+ /**
76654
+ * Decodes a RemoveUserGroupMemberResponse message from the specified reader or buffer, length delimited.
76655
+ * @param reader Reader or buffer to decode from
76656
+ * @returns RemoveUserGroupMemberResponse
76657
+ * @throws {Error} If the payload is not a reader or valid buffer
76658
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76659
+ */
76660
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberResponse;
76661
+
76662
+ /**
76663
+ * Creates a RemoveUserGroupMemberResponse message from a plain object. Also converts values to their respective internal types.
76664
+ * @param object Plain object
76665
+ * @returns RemoveUserGroupMemberResponse
76666
+ */
76667
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberResponse;
76668
+
76669
+ /**
76670
+ * Creates a plain object from a RemoveUserGroupMemberResponse message. Also converts values to other types if specified.
76671
+ * @param message RemoveUserGroupMemberResponse
76672
+ * @param [options] Conversion options
76673
+ * @returns Plain object
76674
+ */
76675
+ public static toObject(message: temporal.api.cloud.cloudservice.v1.RemoveUserGroupMemberResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
76676
+
76677
+ /**
76678
+ * Converts this RemoveUserGroupMemberResponse to JSON.
76679
+ * @returns JSON object
76680
+ */
76681
+ public toJSON(): { [k: string]: any };
76682
+
76683
+ /**
76684
+ * Gets the default type url for RemoveUserGroupMemberResponse
76685
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
76686
+ * @returns The default type url
76687
+ */
76688
+ public static getTypeUrl(typeUrlPrefix?: string): string;
76689
+ }
76690
+
76691
+ /** Properties of a GetUserGroupMembersRequest. */
76692
+ interface IGetUserGroupMembersRequest {
76693
+
76694
+ /**
76695
+ * The requested size of the page to retrieve - optional.
76696
+ * Cannot exceed 1000. Defaults to 100.
76697
+ */
76698
+ pageSize?: (number|null);
76699
+
76700
+ /** The page token if this is continuing from another response - optional. */
76701
+ pageToken?: (string|null);
76702
+
76703
+ /** The group id to list members of. */
76704
+ groupId?: (string|null);
76705
+ }
76706
+
76707
+ /** Represents a GetUserGroupMembersRequest. */
76708
+ class GetUserGroupMembersRequest implements IGetUserGroupMembersRequest {
76709
+
76710
+ /**
76711
+ * Constructs a new GetUserGroupMembersRequest.
76712
+ * @param [properties] Properties to set
76713
+ */
76714
+ constructor(properties?: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersRequest);
76715
+
76716
+ /**
76717
+ * The requested size of the page to retrieve - optional.
76718
+ * Cannot exceed 1000. Defaults to 100.
76719
+ */
76720
+ public pageSize: number;
76721
+
76722
+ /** The page token if this is continuing from another response - optional. */
76723
+ public pageToken: string;
76724
+
76725
+ /** The group id to list members of. */
76726
+ public groupId: string;
76727
+
76728
+ /**
76729
+ * Creates a new GetUserGroupMembersRequest instance using the specified properties.
76730
+ * @param [properties] Properties to set
76731
+ * @returns GetUserGroupMembersRequest instance
76732
+ */
76733
+ public static create(properties?: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersRequest): temporal.api.cloud.cloudservice.v1.GetUserGroupMembersRequest;
76734
+
76735
+ /**
76736
+ * Encodes the specified GetUserGroupMembersRequest message. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.GetUserGroupMembersRequest.verify|verify} messages.
76737
+ * @param message GetUserGroupMembersRequest message or plain object to encode
76738
+ * @param [writer] Writer to encode to
76739
+ * @returns Writer
76740
+ */
76741
+ public static encode(message: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersRequest, writer?: $protobuf.Writer): $protobuf.Writer;
76742
+
76743
+ /**
76744
+ * Encodes the specified GetUserGroupMembersRequest message, length delimited. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.GetUserGroupMembersRequest.verify|verify} messages.
76745
+ * @param message GetUserGroupMembersRequest message or plain object to encode
76746
+ * @param [writer] Writer to encode to
76747
+ * @returns Writer
76748
+ */
76749
+ public static encodeDelimited(message: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersRequest, writer?: $protobuf.Writer): $protobuf.Writer;
76750
+
76751
+ /**
76752
+ * Decodes a GetUserGroupMembersRequest message from the specified reader or buffer.
76753
+ * @param reader Reader or buffer to decode from
76754
+ * @param [length] Message length if known beforehand
76755
+ * @returns GetUserGroupMembersRequest
76756
+ * @throws {Error} If the payload is not a reader or valid buffer
76757
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76758
+ */
76759
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.cloudservice.v1.GetUserGroupMembersRequest;
76760
+
76761
+ /**
76762
+ * Decodes a GetUserGroupMembersRequest message from the specified reader or buffer, length delimited.
76763
+ * @param reader Reader or buffer to decode from
76764
+ * @returns GetUserGroupMembersRequest
76765
+ * @throws {Error} If the payload is not a reader or valid buffer
76766
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76767
+ */
76768
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.cloudservice.v1.GetUserGroupMembersRequest;
76769
+
76770
+ /**
76771
+ * Creates a GetUserGroupMembersRequest message from a plain object. Also converts values to their respective internal types.
76772
+ * @param object Plain object
76773
+ * @returns GetUserGroupMembersRequest
76774
+ */
76775
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.cloudservice.v1.GetUserGroupMembersRequest;
76776
+
76777
+ /**
76778
+ * Creates a plain object from a GetUserGroupMembersRequest message. Also converts values to other types if specified.
76779
+ * @param message GetUserGroupMembersRequest
76780
+ * @param [options] Conversion options
76781
+ * @returns Plain object
76782
+ */
76783
+ public static toObject(message: temporal.api.cloud.cloudservice.v1.GetUserGroupMembersRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
76784
+
76785
+ /**
76786
+ * Converts this GetUserGroupMembersRequest to JSON.
76787
+ * @returns JSON object
76788
+ */
76789
+ public toJSON(): { [k: string]: any };
76790
+
76791
+ /**
76792
+ * Gets the default type url for GetUserGroupMembersRequest
76793
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
76794
+ * @returns The default type url
76795
+ */
76796
+ public static getTypeUrl(typeUrlPrefix?: string): string;
76797
+ }
76798
+
76799
+ /** Properties of a GetUserGroupMembersResponse. */
76800
+ interface IGetUserGroupMembersResponse {
76801
+
76802
+ /** The list of group members */
76803
+ members?: (temporal.api.cloud.identity.v1.IUserGroupMember[]|null);
76804
+
76805
+ /** The next page's token. */
76806
+ nextPageToken?: (string|null);
76807
+ }
76808
+
76809
+ /** Represents a GetUserGroupMembersResponse. */
76810
+ class GetUserGroupMembersResponse implements IGetUserGroupMembersResponse {
76811
+
76812
+ /**
76813
+ * Constructs a new GetUserGroupMembersResponse.
76814
+ * @param [properties] Properties to set
76815
+ */
76816
+ constructor(properties?: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersResponse);
76817
+
76818
+ /** The list of group members */
76819
+ public members: temporal.api.cloud.identity.v1.IUserGroupMember[];
76820
+
76821
+ /** The next page's token. */
76822
+ public nextPageToken: string;
76823
+
76824
+ /**
76825
+ * Creates a new GetUserGroupMembersResponse instance using the specified properties.
76826
+ * @param [properties] Properties to set
76827
+ * @returns GetUserGroupMembersResponse instance
76828
+ */
76829
+ public static create(properties?: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersResponse): temporal.api.cloud.cloudservice.v1.GetUserGroupMembersResponse;
76830
+
76831
+ /**
76832
+ * Encodes the specified GetUserGroupMembersResponse message. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.GetUserGroupMembersResponse.verify|verify} messages.
76833
+ * @param message GetUserGroupMembersResponse message or plain object to encode
76834
+ * @param [writer] Writer to encode to
76835
+ * @returns Writer
76836
+ */
76837
+ public static encode(message: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersResponse, writer?: $protobuf.Writer): $protobuf.Writer;
76838
+
76839
+ /**
76840
+ * Encodes the specified GetUserGroupMembersResponse message, length delimited. Does not implicitly {@link temporal.api.cloud.cloudservice.v1.GetUserGroupMembersResponse.verify|verify} messages.
76841
+ * @param message GetUserGroupMembersResponse message or plain object to encode
76842
+ * @param [writer] Writer to encode to
76843
+ * @returns Writer
76844
+ */
76845
+ public static encodeDelimited(message: temporal.api.cloud.cloudservice.v1.IGetUserGroupMembersResponse, writer?: $protobuf.Writer): $protobuf.Writer;
76846
+
76847
+ /**
76848
+ * Decodes a GetUserGroupMembersResponse message from the specified reader or buffer.
76849
+ * @param reader Reader or buffer to decode from
76850
+ * @param [length] Message length if known beforehand
76851
+ * @returns GetUserGroupMembersResponse
76852
+ * @throws {Error} If the payload is not a reader or valid buffer
76853
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76854
+ */
76855
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.cloudservice.v1.GetUserGroupMembersResponse;
76856
+
76857
+ /**
76858
+ * Decodes a GetUserGroupMembersResponse message from the specified reader or buffer, length delimited.
76859
+ * @param reader Reader or buffer to decode from
76860
+ * @returns GetUserGroupMembersResponse
76861
+ * @throws {Error} If the payload is not a reader or valid buffer
76862
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
76863
+ */
76864
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.cloudservice.v1.GetUserGroupMembersResponse;
76865
+
76866
+ /**
76867
+ * Creates a GetUserGroupMembersResponse message from a plain object. Also converts values to their respective internal types.
76868
+ * @param object Plain object
76869
+ * @returns GetUserGroupMembersResponse
76870
+ */
76871
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.cloudservice.v1.GetUserGroupMembersResponse;
76872
+
76873
+ /**
76874
+ * Creates a plain object from a GetUserGroupMembersResponse message. Also converts values to other types if specified.
76875
+ * @param message GetUserGroupMembersResponse
76876
+ * @param [options] Conversion options
76877
+ * @returns Plain object
76878
+ */
76879
+ public static toObject(message: temporal.api.cloud.cloudservice.v1.GetUserGroupMembersResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
76880
+
76881
+ /**
76882
+ * Converts this GetUserGroupMembersResponse to JSON.
76883
+ * @returns JSON object
76884
+ */
76885
+ public toJSON(): { [k: string]: any };
76886
+
76887
+ /**
76888
+ * Gets the default type url for GetUserGroupMembersResponse
76889
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
76890
+ * @returns The default type url
76891
+ */
76892
+ public static getTypeUrl(typeUrlPrefix?: string): string;
76893
+ }
76894
+
75889
76895
  /** Properties of a CreateServiceAccountRequest. */
75890
76896
  interface ICreateServiceAccountRequest {
75891
76897
 
@@ -78661,14 +79667,14 @@ export namespace temporal {
78661
79667
  /**
78662
79668
  * The current state of this operation.
78663
79669
  * Possible values are: pending, in_progress, failed, cancelled, fulfilled.
78664
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
78665
- * temporal:versioning:max_version=2024-10-01-00
79670
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
79671
+ * temporal:versioning:max_version=v0.3.0
78666
79672
  */
78667
79673
  stateDeprecated?: (string|null);
78668
79674
 
78669
79675
  /**
78670
79676
  * The current state of this operation.
78671
- * temporal:versioning:min_version=2024-10-01-00
79677
+ * temporal:versioning:min_version=v0.3.0
78672
79678
  * temporal:enums:replaces=state_deprecated
78673
79679
  */
78674
79680
  state?: (temporal.api.cloud.operation.v1.AsyncOperation.State|null);
@@ -78711,14 +79717,14 @@ export namespace temporal {
78711
79717
  /**
78712
79718
  * The current state of this operation.
78713
79719
  * Possible values are: pending, in_progress, failed, cancelled, fulfilled.
78714
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
78715
- * temporal:versioning:max_version=2024-10-01-00
79720
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
79721
+ * temporal:versioning:max_version=v0.3.0
78716
79722
  */
78717
79723
  public stateDeprecated: string;
78718
79724
 
78719
79725
  /**
78720
79726
  * The current state of this operation.
78721
- * temporal:versioning:min_version=2024-10-01-00
79727
+ * temporal:versioning:min_version=v0.3.0
78722
79728
  * temporal:enums:replaces=state_deprecated
78723
79729
  */
78724
79730
  public state: temporal.api.cloud.operation.v1.AsyncOperation.State;
@@ -78847,14 +79853,14 @@ export namespace temporal {
78847
79853
  * developer - gives access to create namespaces on the account
78848
79854
  * financeadmin - gives read only access and write access for billing
78849
79855
  * read - gives read only access to the account
78850
- * Deprecated: Not supported after 2024-10-01-00 api version. Use role instead.
78851
- * temporal:versioning:max_version=2024-10-01-00
79856
+ * Deprecated: Not supported after v0.3.0 api version. Use role instead.
79857
+ * temporal:versioning:max_version=v0.3.0
78852
79858
  */
78853
79859
  roleDeprecated?: (string|null);
78854
79860
 
78855
79861
  /**
78856
79862
  * The role on the account.
78857
- * temporal:versioning:min_version=2024-10-01-00
79863
+ * temporal:versioning:min_version=v0.3.0
78858
79864
  * temporal:enums:replaces=role_deprecated
78859
79865
  */
78860
79866
  role?: (temporal.api.cloud.identity.v1.AccountAccess.Role|null);
@@ -78876,14 +79882,14 @@ export namespace temporal {
78876
79882
  * developer - gives access to create namespaces on the account
78877
79883
  * financeadmin - gives read only access and write access for billing
78878
79884
  * read - gives read only access to the account
78879
- * Deprecated: Not supported after 2024-10-01-00 api version. Use role instead.
78880
- * temporal:versioning:max_version=2024-10-01-00
79885
+ * Deprecated: Not supported after v0.3.0 api version. Use role instead.
79886
+ * temporal:versioning:max_version=v0.3.0
78881
79887
  */
78882
79888
  public roleDeprecated: string;
78883
79889
 
78884
79890
  /**
78885
79891
  * The role on the account.
78886
- * temporal:versioning:min_version=2024-10-01-00
79892
+ * temporal:versioning:min_version=v0.3.0
78887
79893
  * temporal:enums:replaces=role_deprecated
78888
79894
  */
78889
79895
  public role: temporal.api.cloud.identity.v1.AccountAccess.Role;
@@ -78980,14 +79986,14 @@ export namespace temporal {
78980
79986
  * admin - gives full access to the namespace, including assigning namespace access to other users
78981
79987
  * write - gives write access to the namespace configuration and workflows within the namespace
78982
79988
  * read - gives read only access to the namespace configuration and workflows within the namespace
78983
- * Deprecated: Not supported after 2024-10-01-00 api version. Use permission instead.
78984
- * temporal:versioning:max_version=2024-10-01-00
79989
+ * Deprecated: Not supported after v0.3.0 api version. Use permission instead.
79990
+ * temporal:versioning:max_version=v0.3.0
78985
79991
  */
78986
79992
  permissionDeprecated?: (string|null);
78987
79993
 
78988
79994
  /**
78989
79995
  * The permission to the namespace.
78990
- * temporal:versioning:min_version=2024-10-01-00
79996
+ * temporal:versioning:min_version=v0.3.0
78991
79997
  * temporal:enums:replaces=permission_deprecated
78992
79998
  */
78993
79999
  permission?: (temporal.api.cloud.identity.v1.NamespaceAccess.Permission|null);
@@ -79007,14 +80013,14 @@ export namespace temporal {
79007
80013
  * admin - gives full access to the namespace, including assigning namespace access to other users
79008
80014
  * write - gives write access to the namespace configuration and workflows within the namespace
79009
80015
  * read - gives read only access to the namespace configuration and workflows within the namespace
79010
- * Deprecated: Not supported after 2024-10-01-00 api version. Use permission instead.
79011
- * temporal:versioning:max_version=2024-10-01-00
80016
+ * Deprecated: Not supported after v0.3.0 api version. Use permission instead.
80017
+ * temporal:versioning:max_version=v0.3.0
79012
80018
  */
79013
80019
  public permissionDeprecated: string;
79014
80020
 
79015
80021
  /**
79016
80022
  * The permission to the namespace.
79017
- * temporal:versioning:min_version=2024-10-01-00
80023
+ * temporal:versioning:min_version=v0.3.0
79018
80024
  * temporal:enums:replaces=permission_deprecated
79019
80025
  */
79020
80026
  public permission: temporal.api.cloud.identity.v1.NamespaceAccess.Permission;
@@ -79210,6 +80216,102 @@ export namespace temporal {
79210
80216
  public static getTypeUrl(typeUrlPrefix?: string): string;
79211
80217
  }
79212
80218
 
80219
+ /** Properties of a NamespaceScopedAccess. */
80220
+ interface INamespaceScopedAccess {
80221
+
80222
+ /** The namespace the service account is assigned to - immutable. */
80223
+ namespace?: (string|null);
80224
+
80225
+ /** The namespace access assigned to the service account - mutable. */
80226
+ access?: (temporal.api.cloud.identity.v1.INamespaceAccess|null);
80227
+ }
80228
+
80229
+ /** Represents a NamespaceScopedAccess. */
80230
+ class NamespaceScopedAccess implements INamespaceScopedAccess {
80231
+
80232
+ /**
80233
+ * Constructs a new NamespaceScopedAccess.
80234
+ * @param [properties] Properties to set
80235
+ */
80236
+ constructor(properties?: temporal.api.cloud.identity.v1.INamespaceScopedAccess);
80237
+
80238
+ /** The namespace the service account is assigned to - immutable. */
80239
+ public namespace: string;
80240
+
80241
+ /** The namespace access assigned to the service account - mutable. */
80242
+ public access?: (temporal.api.cloud.identity.v1.INamespaceAccess|null);
80243
+
80244
+ /**
80245
+ * Creates a new NamespaceScopedAccess instance using the specified properties.
80246
+ * @param [properties] Properties to set
80247
+ * @returns NamespaceScopedAccess instance
80248
+ */
80249
+ public static create(properties?: temporal.api.cloud.identity.v1.INamespaceScopedAccess): temporal.api.cloud.identity.v1.NamespaceScopedAccess;
80250
+
80251
+ /**
80252
+ * Encodes the specified NamespaceScopedAccess message. Does not implicitly {@link temporal.api.cloud.identity.v1.NamespaceScopedAccess.verify|verify} messages.
80253
+ * @param message NamespaceScopedAccess message or plain object to encode
80254
+ * @param [writer] Writer to encode to
80255
+ * @returns Writer
80256
+ */
80257
+ public static encode(message: temporal.api.cloud.identity.v1.INamespaceScopedAccess, writer?: $protobuf.Writer): $protobuf.Writer;
80258
+
80259
+ /**
80260
+ * Encodes the specified NamespaceScopedAccess message, length delimited. Does not implicitly {@link temporal.api.cloud.identity.v1.NamespaceScopedAccess.verify|verify} messages.
80261
+ * @param message NamespaceScopedAccess message or plain object to encode
80262
+ * @param [writer] Writer to encode to
80263
+ * @returns Writer
80264
+ */
80265
+ public static encodeDelimited(message: temporal.api.cloud.identity.v1.INamespaceScopedAccess, writer?: $protobuf.Writer): $protobuf.Writer;
80266
+
80267
+ /**
80268
+ * Decodes a NamespaceScopedAccess message from the specified reader or buffer.
80269
+ * @param reader Reader or buffer to decode from
80270
+ * @param [length] Message length if known beforehand
80271
+ * @returns NamespaceScopedAccess
80272
+ * @throws {Error} If the payload is not a reader or valid buffer
80273
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
80274
+ */
80275
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.identity.v1.NamespaceScopedAccess;
80276
+
80277
+ /**
80278
+ * Decodes a NamespaceScopedAccess message from the specified reader or buffer, length delimited.
80279
+ * @param reader Reader or buffer to decode from
80280
+ * @returns NamespaceScopedAccess
80281
+ * @throws {Error} If the payload is not a reader or valid buffer
80282
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
80283
+ */
80284
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.identity.v1.NamespaceScopedAccess;
80285
+
80286
+ /**
80287
+ * Creates a NamespaceScopedAccess message from a plain object. Also converts values to their respective internal types.
80288
+ * @param object Plain object
80289
+ * @returns NamespaceScopedAccess
80290
+ */
80291
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.identity.v1.NamespaceScopedAccess;
80292
+
80293
+ /**
80294
+ * Creates a plain object from a NamespaceScopedAccess message. Also converts values to other types if specified.
80295
+ * @param message NamespaceScopedAccess
80296
+ * @param [options] Conversion options
80297
+ * @returns Plain object
80298
+ */
80299
+ public static toObject(message: temporal.api.cloud.identity.v1.NamespaceScopedAccess, options?: $protobuf.IConversionOptions): { [k: string]: any };
80300
+
80301
+ /**
80302
+ * Converts this NamespaceScopedAccess to JSON.
80303
+ * @returns JSON object
80304
+ */
80305
+ public toJSON(): { [k: string]: any };
80306
+
80307
+ /**
80308
+ * Gets the default type url for NamespaceScopedAccess
80309
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
80310
+ * @returns The default type url
80311
+ */
80312
+ public static getTypeUrl(typeUrlPrefix?: string): string;
80313
+ }
80314
+
79213
80315
  /** Properties of a UserSpec. */
79214
80316
  interface IUserSpec {
79215
80317
 
@@ -79419,15 +80521,15 @@ export namespace temporal {
79419
80521
 
79420
80522
  /**
79421
80523
  * The current state of the user
79422
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
79423
- * temporal:versioning:max_version=2024-10-01-00
80524
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
80525
+ * temporal:versioning:max_version=v0.3.0
79424
80526
  */
79425
80527
  stateDeprecated?: (string|null);
79426
80528
 
79427
80529
  /**
79428
80530
  * The current state of the user.
79429
80531
  * For any failed state, reach out to Temporal Cloud support for remediation.
79430
- * temporal:versioning:min_version=2024-10-01-00
80532
+ * temporal:versioning:min_version=v0.3.0
79431
80533
  * temporal:enums:replaces=state_deprecated
79432
80534
  */
79433
80535
  state?: (temporal.api.cloud.resource.v1.ResourceState|null);
@@ -79471,15 +80573,15 @@ export namespace temporal {
79471
80573
 
79472
80574
  /**
79473
80575
  * The current state of the user
79474
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
79475
- * temporal:versioning:max_version=2024-10-01-00
80576
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
80577
+ * temporal:versioning:max_version=v0.3.0
79476
80578
  */
79477
80579
  public stateDeprecated: string;
79478
80580
 
79479
80581
  /**
79480
80582
  * The current state of the user.
79481
80583
  * For any failed state, reach out to Temporal Cloud support for remediation.
79482
- * temporal:versioning:min_version=2024-10-01-00
80584
+ * temporal:versioning:min_version=v0.3.0
79483
80585
  * temporal:enums:replaces=state_deprecated
79484
80586
  */
79485
80587
  public state: temporal.api.cloud.resource.v1.ResourceState;
@@ -79666,6 +80768,180 @@ export namespace temporal {
79666
80768
  public static getTypeUrl(typeUrlPrefix?: string): string;
79667
80769
  }
79668
80770
 
80771
+ /** Properties of a SCIMGroupSpec. */
80772
+ interface ISCIMGroupSpec {
80773
+
80774
+ /** The id used in the upstream identity provider. */
80775
+ idpId?: (string|null);
80776
+ }
80777
+
80778
+ /** Represents a SCIMGroupSpec. */
80779
+ class SCIMGroupSpec implements ISCIMGroupSpec {
80780
+
80781
+ /**
80782
+ * Constructs a new SCIMGroupSpec.
80783
+ * @param [properties] Properties to set
80784
+ */
80785
+ constructor(properties?: temporal.api.cloud.identity.v1.ISCIMGroupSpec);
80786
+
80787
+ /** The id used in the upstream identity provider. */
80788
+ public idpId: string;
80789
+
80790
+ /**
80791
+ * Creates a new SCIMGroupSpec instance using the specified properties.
80792
+ * @param [properties] Properties to set
80793
+ * @returns SCIMGroupSpec instance
80794
+ */
80795
+ public static create(properties?: temporal.api.cloud.identity.v1.ISCIMGroupSpec): temporal.api.cloud.identity.v1.SCIMGroupSpec;
80796
+
80797
+ /**
80798
+ * Encodes the specified SCIMGroupSpec message. Does not implicitly {@link temporal.api.cloud.identity.v1.SCIMGroupSpec.verify|verify} messages.
80799
+ * @param message SCIMGroupSpec message or plain object to encode
80800
+ * @param [writer] Writer to encode to
80801
+ * @returns Writer
80802
+ */
80803
+ public static encode(message: temporal.api.cloud.identity.v1.ISCIMGroupSpec, writer?: $protobuf.Writer): $protobuf.Writer;
80804
+
80805
+ /**
80806
+ * Encodes the specified SCIMGroupSpec message, length delimited. Does not implicitly {@link temporal.api.cloud.identity.v1.SCIMGroupSpec.verify|verify} messages.
80807
+ * @param message SCIMGroupSpec message or plain object to encode
80808
+ * @param [writer] Writer to encode to
80809
+ * @returns Writer
80810
+ */
80811
+ public static encodeDelimited(message: temporal.api.cloud.identity.v1.ISCIMGroupSpec, writer?: $protobuf.Writer): $protobuf.Writer;
80812
+
80813
+ /**
80814
+ * Decodes a SCIMGroupSpec message from the specified reader or buffer.
80815
+ * @param reader Reader or buffer to decode from
80816
+ * @param [length] Message length if known beforehand
80817
+ * @returns SCIMGroupSpec
80818
+ * @throws {Error} If the payload is not a reader or valid buffer
80819
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
80820
+ */
80821
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.identity.v1.SCIMGroupSpec;
80822
+
80823
+ /**
80824
+ * Decodes a SCIMGroupSpec message from the specified reader or buffer, length delimited.
80825
+ * @param reader Reader or buffer to decode from
80826
+ * @returns SCIMGroupSpec
80827
+ * @throws {Error} If the payload is not a reader or valid buffer
80828
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
80829
+ */
80830
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.identity.v1.SCIMGroupSpec;
80831
+
80832
+ /**
80833
+ * Creates a SCIMGroupSpec message from a plain object. Also converts values to their respective internal types.
80834
+ * @param object Plain object
80835
+ * @returns SCIMGroupSpec
80836
+ */
80837
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.identity.v1.SCIMGroupSpec;
80838
+
80839
+ /**
80840
+ * Creates a plain object from a SCIMGroupSpec message. Also converts values to other types if specified.
80841
+ * @param message SCIMGroupSpec
80842
+ * @param [options] Conversion options
80843
+ * @returns Plain object
80844
+ */
80845
+ public static toObject(message: temporal.api.cloud.identity.v1.SCIMGroupSpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
80846
+
80847
+ /**
80848
+ * Converts this SCIMGroupSpec to JSON.
80849
+ * @returns JSON object
80850
+ */
80851
+ public toJSON(): { [k: string]: any };
80852
+
80853
+ /**
80854
+ * Gets the default type url for SCIMGroupSpec
80855
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
80856
+ * @returns The default type url
80857
+ */
80858
+ public static getTypeUrl(typeUrlPrefix?: string): string;
80859
+ }
80860
+
80861
+ /** Properties of a CloudGroupSpec. */
80862
+ interface ICloudGroupSpec {
80863
+ }
80864
+
80865
+ /** Represents a CloudGroupSpec. */
80866
+ class CloudGroupSpec implements ICloudGroupSpec {
80867
+
80868
+ /**
80869
+ * Constructs a new CloudGroupSpec.
80870
+ * @param [properties] Properties to set
80871
+ */
80872
+ constructor(properties?: temporal.api.cloud.identity.v1.ICloudGroupSpec);
80873
+
80874
+ /**
80875
+ * Creates a new CloudGroupSpec instance using the specified properties.
80876
+ * @param [properties] Properties to set
80877
+ * @returns CloudGroupSpec instance
80878
+ */
80879
+ public static create(properties?: temporal.api.cloud.identity.v1.ICloudGroupSpec): temporal.api.cloud.identity.v1.CloudGroupSpec;
80880
+
80881
+ /**
80882
+ * Encodes the specified CloudGroupSpec message. Does not implicitly {@link temporal.api.cloud.identity.v1.CloudGroupSpec.verify|verify} messages.
80883
+ * @param message CloudGroupSpec message or plain object to encode
80884
+ * @param [writer] Writer to encode to
80885
+ * @returns Writer
80886
+ */
80887
+ public static encode(message: temporal.api.cloud.identity.v1.ICloudGroupSpec, writer?: $protobuf.Writer): $protobuf.Writer;
80888
+
80889
+ /**
80890
+ * Encodes the specified CloudGroupSpec message, length delimited. Does not implicitly {@link temporal.api.cloud.identity.v1.CloudGroupSpec.verify|verify} messages.
80891
+ * @param message CloudGroupSpec message or plain object to encode
80892
+ * @param [writer] Writer to encode to
80893
+ * @returns Writer
80894
+ */
80895
+ public static encodeDelimited(message: temporal.api.cloud.identity.v1.ICloudGroupSpec, writer?: $protobuf.Writer): $protobuf.Writer;
80896
+
80897
+ /**
80898
+ * Decodes a CloudGroupSpec message from the specified reader or buffer.
80899
+ * @param reader Reader or buffer to decode from
80900
+ * @param [length] Message length if known beforehand
80901
+ * @returns CloudGroupSpec
80902
+ * @throws {Error} If the payload is not a reader or valid buffer
80903
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
80904
+ */
80905
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.identity.v1.CloudGroupSpec;
80906
+
80907
+ /**
80908
+ * Decodes a CloudGroupSpec message from the specified reader or buffer, length delimited.
80909
+ * @param reader Reader or buffer to decode from
80910
+ * @returns CloudGroupSpec
80911
+ * @throws {Error} If the payload is not a reader or valid buffer
80912
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
80913
+ */
80914
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.identity.v1.CloudGroupSpec;
80915
+
80916
+ /**
80917
+ * Creates a CloudGroupSpec message from a plain object. Also converts values to their respective internal types.
80918
+ * @param object Plain object
80919
+ * @returns CloudGroupSpec
80920
+ */
80921
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.identity.v1.CloudGroupSpec;
80922
+
80923
+ /**
80924
+ * Creates a plain object from a CloudGroupSpec message. Also converts values to other types if specified.
80925
+ * @param message CloudGroupSpec
80926
+ * @param [options] Conversion options
80927
+ * @returns Plain object
80928
+ */
80929
+ public static toObject(message: temporal.api.cloud.identity.v1.CloudGroupSpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
80930
+
80931
+ /**
80932
+ * Converts this CloudGroupSpec to JSON.
80933
+ * @returns JSON object
80934
+ */
80935
+ public toJSON(): { [k: string]: any };
80936
+
80937
+ /**
80938
+ * Gets the default type url for CloudGroupSpec
80939
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
80940
+ * @returns The default type url
80941
+ */
80942
+ public static getTypeUrl(typeUrlPrefix?: string): string;
80943
+ }
80944
+
79669
80945
  /** Properties of a UserGroupSpec. */
79670
80946
  interface IUserGroupSpec {
79671
80947
 
@@ -79675,11 +80951,20 @@ export namespace temporal {
79675
80951
  /** The access assigned to the group. */
79676
80952
  access?: (temporal.api.cloud.identity.v1.IAccess|null);
79677
80953
 
80954
+ /** The specification of the google group that this group is associated with. */
80955
+ googleGroup?: (temporal.api.cloud.identity.v1.IGoogleGroupSpec|null);
80956
+
79678
80957
  /**
79679
- * The specification of the google group that this group is associated with.
79680
- * For now only google groups are supported, and this field is required.
80958
+ * The specification of the SCIM group that this group is associated with.
80959
+ * SCIM groups cannot be created or deleted directly, but their access can be managed.
79681
80960
  */
79682
- googleGroup?: (temporal.api.cloud.identity.v1.IGoogleGroupSpec|null);
80961
+ scimGroup?: (temporal.api.cloud.identity.v1.ISCIMGroupSpec|null);
80962
+
80963
+ /**
80964
+ * The specification for a Cloud group. Cloud groups can manage members using
80965
+ * the add and remove member APIs.
80966
+ */
80967
+ cloudGroup?: (temporal.api.cloud.identity.v1.ICloudGroupSpec|null);
79683
80968
  }
79684
80969
 
79685
80970
  /** Represents a UserGroupSpec. */
@@ -79697,11 +80982,23 @@ export namespace temporal {
79697
80982
  /** The access assigned to the group. */
79698
80983
  public access?: (temporal.api.cloud.identity.v1.IAccess|null);
79699
80984
 
80985
+ /** The specification of the google group that this group is associated with. */
80986
+ public googleGroup?: (temporal.api.cloud.identity.v1.IGoogleGroupSpec|null);
80987
+
79700
80988
  /**
79701
- * The specification of the google group that this group is associated with.
79702
- * For now only google groups are supported, and this field is required.
80989
+ * The specification of the SCIM group that this group is associated with.
80990
+ * SCIM groups cannot be created or deleted directly, but their access can be managed.
79703
80991
  */
79704
- public googleGroup?: (temporal.api.cloud.identity.v1.IGoogleGroupSpec|null);
80992
+ public scimGroup?: (temporal.api.cloud.identity.v1.ISCIMGroupSpec|null);
80993
+
80994
+ /**
80995
+ * The specification for a Cloud group. Cloud groups can manage members using
80996
+ * the add and remove member APIs.
80997
+ */
80998
+ public cloudGroup?: (temporal.api.cloud.identity.v1.ICloudGroupSpec|null);
80999
+
81000
+ /** UserGroupSpec groupType. */
81001
+ public groupType?: ("googleGroup"|"scimGroup"|"cloudGroup");
79705
81002
 
79706
81003
  /**
79707
81004
  * Creates a new UserGroupSpec instance using the specified properties.
@@ -79791,15 +81088,15 @@ export namespace temporal {
79791
81088
 
79792
81089
  /**
79793
81090
  * The current state of the group.
79794
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
79795
- * temporal:versioning:max_version=2024-10-01-00
81091
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
81092
+ * temporal:versioning:max_version=v0.3.0
79796
81093
  */
79797
81094
  stateDeprecated?: (string|null);
79798
81095
 
79799
81096
  /**
79800
81097
  * The current state of the group.
79801
81098
  * For any failed state, reach out to Temporal Cloud support for remediation.
79802
- * temporal:versioning:min_version=2024-10-01-00
81099
+ * temporal:versioning:min_version=v0.3.0
79803
81100
  * temporal:enums:replaces=state_deprecated
79804
81101
  */
79805
81102
  state?: (temporal.api.cloud.resource.v1.ResourceState|null);
@@ -79840,15 +81137,15 @@ export namespace temporal {
79840
81137
 
79841
81138
  /**
79842
81139
  * The current state of the group.
79843
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
79844
- * temporal:versioning:max_version=2024-10-01-00
81140
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
81141
+ * temporal:versioning:max_version=v0.3.0
79845
81142
  */
79846
81143
  public stateDeprecated: string;
79847
81144
 
79848
81145
  /**
79849
81146
  * The current state of the group.
79850
81147
  * For any failed state, reach out to Temporal Cloud support for remediation.
79851
- * temporal:versioning:min_version=2024-10-01-00
81148
+ * temporal:versioning:min_version=v0.3.0
79852
81149
  * temporal:enums:replaces=state_deprecated
79853
81150
  */
79854
81151
  public state: temporal.api.cloud.resource.v1.ResourceState;
@@ -79936,6 +81233,195 @@ export namespace temporal {
79936
81233
  public static getTypeUrl(typeUrlPrefix?: string): string;
79937
81234
  }
79938
81235
 
81236
+ /** Properties of a UserGroupMemberId. */
81237
+ interface IUserGroupMemberId {
81238
+
81239
+ /** UserGroupMemberId userId */
81240
+ userId?: (string|null);
81241
+ }
81242
+
81243
+ /** Represents a UserGroupMemberId. */
81244
+ class UserGroupMemberId implements IUserGroupMemberId {
81245
+
81246
+ /**
81247
+ * Constructs a new UserGroupMemberId.
81248
+ * @param [properties] Properties to set
81249
+ */
81250
+ constructor(properties?: temporal.api.cloud.identity.v1.IUserGroupMemberId);
81251
+
81252
+ /** UserGroupMemberId userId. */
81253
+ public userId?: (string|null);
81254
+
81255
+ /** UserGroupMemberId memberType. */
81256
+ public memberType?: "userId";
81257
+
81258
+ /**
81259
+ * Creates a new UserGroupMemberId instance using the specified properties.
81260
+ * @param [properties] Properties to set
81261
+ * @returns UserGroupMemberId instance
81262
+ */
81263
+ public static create(properties?: temporal.api.cloud.identity.v1.IUserGroupMemberId): temporal.api.cloud.identity.v1.UserGroupMemberId;
81264
+
81265
+ /**
81266
+ * Encodes the specified UserGroupMemberId message. Does not implicitly {@link temporal.api.cloud.identity.v1.UserGroupMemberId.verify|verify} messages.
81267
+ * @param message UserGroupMemberId message or plain object to encode
81268
+ * @param [writer] Writer to encode to
81269
+ * @returns Writer
81270
+ */
81271
+ public static encode(message: temporal.api.cloud.identity.v1.IUserGroupMemberId, writer?: $protobuf.Writer): $protobuf.Writer;
81272
+
81273
+ /**
81274
+ * Encodes the specified UserGroupMemberId message, length delimited. Does not implicitly {@link temporal.api.cloud.identity.v1.UserGroupMemberId.verify|verify} messages.
81275
+ * @param message UserGroupMemberId message or plain object to encode
81276
+ * @param [writer] Writer to encode to
81277
+ * @returns Writer
81278
+ */
81279
+ public static encodeDelimited(message: temporal.api.cloud.identity.v1.IUserGroupMemberId, writer?: $protobuf.Writer): $protobuf.Writer;
81280
+
81281
+ /**
81282
+ * Decodes a UserGroupMemberId message from the specified reader or buffer.
81283
+ * @param reader Reader or buffer to decode from
81284
+ * @param [length] Message length if known beforehand
81285
+ * @returns UserGroupMemberId
81286
+ * @throws {Error} If the payload is not a reader or valid buffer
81287
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
81288
+ */
81289
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.identity.v1.UserGroupMemberId;
81290
+
81291
+ /**
81292
+ * Decodes a UserGroupMemberId message from the specified reader or buffer, length delimited.
81293
+ * @param reader Reader or buffer to decode from
81294
+ * @returns UserGroupMemberId
81295
+ * @throws {Error} If the payload is not a reader or valid buffer
81296
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
81297
+ */
81298
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.identity.v1.UserGroupMemberId;
81299
+
81300
+ /**
81301
+ * Creates a UserGroupMemberId message from a plain object. Also converts values to their respective internal types.
81302
+ * @param object Plain object
81303
+ * @returns UserGroupMemberId
81304
+ */
81305
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.identity.v1.UserGroupMemberId;
81306
+
81307
+ /**
81308
+ * Creates a plain object from a UserGroupMemberId message. Also converts values to other types if specified.
81309
+ * @param message UserGroupMemberId
81310
+ * @param [options] Conversion options
81311
+ * @returns Plain object
81312
+ */
81313
+ public static toObject(message: temporal.api.cloud.identity.v1.UserGroupMemberId, options?: $protobuf.IConversionOptions): { [k: string]: any };
81314
+
81315
+ /**
81316
+ * Converts this UserGroupMemberId to JSON.
81317
+ * @returns JSON object
81318
+ */
81319
+ public toJSON(): { [k: string]: any };
81320
+
81321
+ /**
81322
+ * Gets the default type url for UserGroupMemberId
81323
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
81324
+ * @returns The default type url
81325
+ */
81326
+ public static getTypeUrl(typeUrlPrefix?: string): string;
81327
+ }
81328
+
81329
+ /** Properties of a UserGroupMember. */
81330
+ interface IUserGroupMember {
81331
+
81332
+ /** UserGroupMember memberId */
81333
+ memberId?: (temporal.api.cloud.identity.v1.IUserGroupMemberId|null);
81334
+
81335
+ /** UserGroupMember createdTime */
81336
+ createdTime?: (google.protobuf.ITimestamp|null);
81337
+ }
81338
+
81339
+ /** Represents a UserGroupMember. */
81340
+ class UserGroupMember implements IUserGroupMember {
81341
+
81342
+ /**
81343
+ * Constructs a new UserGroupMember.
81344
+ * @param [properties] Properties to set
81345
+ */
81346
+ constructor(properties?: temporal.api.cloud.identity.v1.IUserGroupMember);
81347
+
81348
+ /** UserGroupMember memberId. */
81349
+ public memberId?: (temporal.api.cloud.identity.v1.IUserGroupMemberId|null);
81350
+
81351
+ /** UserGroupMember createdTime. */
81352
+ public createdTime?: (google.protobuf.ITimestamp|null);
81353
+
81354
+ /**
81355
+ * Creates a new UserGroupMember instance using the specified properties.
81356
+ * @param [properties] Properties to set
81357
+ * @returns UserGroupMember instance
81358
+ */
81359
+ public static create(properties?: temporal.api.cloud.identity.v1.IUserGroupMember): temporal.api.cloud.identity.v1.UserGroupMember;
81360
+
81361
+ /**
81362
+ * Encodes the specified UserGroupMember message. Does not implicitly {@link temporal.api.cloud.identity.v1.UserGroupMember.verify|verify} messages.
81363
+ * @param message UserGroupMember message or plain object to encode
81364
+ * @param [writer] Writer to encode to
81365
+ * @returns Writer
81366
+ */
81367
+ public static encode(message: temporal.api.cloud.identity.v1.IUserGroupMember, writer?: $protobuf.Writer): $protobuf.Writer;
81368
+
81369
+ /**
81370
+ * Encodes the specified UserGroupMember message, length delimited. Does not implicitly {@link temporal.api.cloud.identity.v1.UserGroupMember.verify|verify} messages.
81371
+ * @param message UserGroupMember message or plain object to encode
81372
+ * @param [writer] Writer to encode to
81373
+ * @returns Writer
81374
+ */
81375
+ public static encodeDelimited(message: temporal.api.cloud.identity.v1.IUserGroupMember, writer?: $protobuf.Writer): $protobuf.Writer;
81376
+
81377
+ /**
81378
+ * Decodes a UserGroupMember message from the specified reader or buffer.
81379
+ * @param reader Reader or buffer to decode from
81380
+ * @param [length] Message length if known beforehand
81381
+ * @returns UserGroupMember
81382
+ * @throws {Error} If the payload is not a reader or valid buffer
81383
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
81384
+ */
81385
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.identity.v1.UserGroupMember;
81386
+
81387
+ /**
81388
+ * Decodes a UserGroupMember message from the specified reader or buffer, length delimited.
81389
+ * @param reader Reader or buffer to decode from
81390
+ * @returns UserGroupMember
81391
+ * @throws {Error} If the payload is not a reader or valid buffer
81392
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
81393
+ */
81394
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.identity.v1.UserGroupMember;
81395
+
81396
+ /**
81397
+ * Creates a UserGroupMember message from a plain object. Also converts values to their respective internal types.
81398
+ * @param object Plain object
81399
+ * @returns UserGroupMember
81400
+ */
81401
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.identity.v1.UserGroupMember;
81402
+
81403
+ /**
81404
+ * Creates a plain object from a UserGroupMember message. Also converts values to other types if specified.
81405
+ * @param message UserGroupMember
81406
+ * @param [options] Conversion options
81407
+ * @returns Plain object
81408
+ */
81409
+ public static toObject(message: temporal.api.cloud.identity.v1.UserGroupMember, options?: $protobuf.IConversionOptions): { [k: string]: any };
81410
+
81411
+ /**
81412
+ * Converts this UserGroupMember to JSON.
81413
+ * @returns JSON object
81414
+ */
81415
+ public toJSON(): { [k: string]: any };
81416
+
81417
+ /**
81418
+ * Gets the default type url for UserGroupMember
81419
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
81420
+ * @returns The default type url
81421
+ */
81422
+ public static getTypeUrl(typeUrlPrefix?: string): string;
81423
+ }
81424
+
79939
81425
  /** Properties of a ServiceAccount. */
79940
81426
  interface IServiceAccount {
79941
81427
 
@@ -79955,15 +81441,15 @@ export namespace temporal {
79955
81441
  * The current state of the service account.
79956
81442
  * Possible values: activating, activationfailed, active, updating, updatefailed, deleting, deletefailed, deleted, suspending, suspendfailed, suspended.
79957
81443
  * For any failed state, reach out to Temporal Cloud support for remediation.
79958
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
79959
- * temporal:versioning:max_version=2024-10-01-00
81444
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
81445
+ * temporal:versioning:max_version=v0.3.0
79960
81446
  */
79961
81447
  stateDeprecated?: (string|null);
79962
81448
 
79963
81449
  /**
79964
81450
  * The current state of the service account.
79965
81451
  * For any failed state, reach out to Temporal Cloud support for remediation.
79966
- * temporal:versioning:min_version=2024-10-01-00
81452
+ * temporal:versioning:min_version=v0.3.0
79967
81453
  * temporal:enums:replaces=state_deprecated
79968
81454
  */
79969
81455
  state?: (temporal.api.cloud.resource.v1.ResourceState|null);
@@ -80006,15 +81492,15 @@ export namespace temporal {
80006
81492
  * The current state of the service account.
80007
81493
  * Possible values: activating, activationfailed, active, updating, updatefailed, deleting, deletefailed, deleted, suspending, suspendfailed, suspended.
80008
81494
  * For any failed state, reach out to Temporal Cloud support for remediation.
80009
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
80010
- * temporal:versioning:max_version=2024-10-01-00
81495
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
81496
+ * temporal:versioning:max_version=v0.3.0
80011
81497
  */
80012
81498
  public stateDeprecated: string;
80013
81499
 
80014
81500
  /**
80015
81501
  * The current state of the service account.
80016
81502
  * For any failed state, reach out to Temporal Cloud support for remediation.
80017
- * temporal:versioning:min_version=2024-10-01-00
81503
+ * temporal:versioning:min_version=v0.3.0
80018
81504
  * temporal:enums:replaces=state_deprecated
80019
81505
  */
80020
81506
  public state: temporal.api.cloud.resource.v1.ResourceState;
@@ -80112,11 +81598,21 @@ export namespace temporal {
80112
81598
  name?: (string|null);
80113
81599
 
80114
81600
  /**
81601
+ * Note: one of `Access` or `NamespaceScopedAccess` must be provided, but not both.
80115
81602
  * The access assigned to the service account.
81603
+ * If set, creates an account scoped service account.
80116
81604
  * The access is mutable.
80117
81605
  */
80118
81606
  access?: (temporal.api.cloud.identity.v1.IAccess|null);
80119
81607
 
81608
+ /**
81609
+ * The namespace scoped access assigned to the service account.
81610
+ * If set, creates a namespace scoped service account (limited to a single namespace).
81611
+ * The namespace scoped access is partially mutable.
81612
+ * Refer to `NamespaceScopedAccess` for details.
81613
+ */
81614
+ namespaceScopedAccess?: (temporal.api.cloud.identity.v1.INamespaceScopedAccess|null);
81615
+
80120
81616
  /**
80121
81617
  * The description associated with the service account - optional.
80122
81618
  * The description is mutable.
@@ -80140,11 +81636,21 @@ export namespace temporal {
80140
81636
  public name: string;
80141
81637
 
80142
81638
  /**
81639
+ * Note: one of `Access` or `NamespaceScopedAccess` must be provided, but not both.
80143
81640
  * The access assigned to the service account.
81641
+ * If set, creates an account scoped service account.
80144
81642
  * The access is mutable.
80145
81643
  */
80146
81644
  public access?: (temporal.api.cloud.identity.v1.IAccess|null);
80147
81645
 
81646
+ /**
81647
+ * The namespace scoped access assigned to the service account.
81648
+ * If set, creates a namespace scoped service account (limited to a single namespace).
81649
+ * The namespace scoped access is partially mutable.
81650
+ * Refer to `NamespaceScopedAccess` for details.
81651
+ */
81652
+ public namespaceScopedAccess?: (temporal.api.cloud.identity.v1.INamespaceScopedAccess|null);
81653
+
80148
81654
  /**
80149
81655
  * The description associated with the service account - optional.
80150
81656
  * The description is mutable.
@@ -80241,14 +81747,14 @@ export namespace temporal {
80241
81747
  * The current state of the API key.
80242
81748
  * Possible values: activating, activationfailed, active, updating, updatefailed, deleting, deletefailed, deleted, suspending, suspendfailed, suspended.
80243
81749
  * For any failed state, reach out to Temporal Cloud support for remediation.
80244
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
80245
- * temporal:versioning:max_version=2024-10-01-00
81750
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
81751
+ * temporal:versioning:max_version=v0.3.0
80246
81752
  */
80247
81753
  stateDeprecated?: (string|null);
80248
81754
 
80249
81755
  /**
80250
81756
  * The current state of the API key.
80251
- * temporal:versioning:min_version=2024-10-01-00
81757
+ * temporal:versioning:min_version=v0.3.0
80252
81758
  * temporal:enums:replaces=state_deprecated
80253
81759
  */
80254
81760
  state?: (temporal.api.cloud.resource.v1.ResourceState|null);
@@ -80291,14 +81797,14 @@ export namespace temporal {
80291
81797
  * The current state of the API key.
80292
81798
  * Possible values: activating, activationfailed, active, updating, updatefailed, deleting, deletefailed, deleted, suspending, suspendfailed, suspended.
80293
81799
  * For any failed state, reach out to Temporal Cloud support for remediation.
80294
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
80295
- * temporal:versioning:max_version=2024-10-01-00
81800
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
81801
+ * temporal:versioning:max_version=v0.3.0
80296
81802
  */
80297
81803
  public stateDeprecated: string;
80298
81804
 
80299
81805
  /**
80300
81806
  * The current state of the API key.
80301
- * temporal:versioning:min_version=2024-10-01-00
81807
+ * temporal:versioning:min_version=v0.3.0
80302
81808
  * temporal:enums:replaces=state_deprecated
80303
81809
  */
80304
81810
  public state: temporal.api.cloud.resource.v1.ResourceState;
@@ -80401,14 +81907,14 @@ export namespace temporal {
80401
81907
  * The type of the owner to create the API key for.
80402
81908
  * The owner type is immutable. Once set during creation, it cannot be changed.
80403
81909
  * Possible values: user, service-account.
80404
- * Deprecated: Not supported after 2024-10-01-00 api version. Use owner_type instead.
80405
- * temporal:versioning:max_version=2024-10-01-00
81910
+ * Deprecated: Not supported after v0.3.0 api version. Use owner_type instead.
81911
+ * temporal:versioning:max_version=v0.3.0
80406
81912
  */
80407
81913
  ownerTypeDeprecated?: (string|null);
80408
81914
 
80409
81915
  /**
80410
81916
  * The type of the owner to create the API key for.
80411
- * temporal:versioning:min_version=2024-10-01-00
81917
+ * temporal:versioning:min_version=v0.3.0
80412
81918
  * temporal:enums:replaces=owner_type_deprecated
80413
81919
  */
80414
81920
  ownerType?: (temporal.api.cloud.identity.v1.OwnerType|null);
@@ -80447,14 +81953,14 @@ export namespace temporal {
80447
81953
  * The type of the owner to create the API key for.
80448
81954
  * The owner type is immutable. Once set during creation, it cannot be changed.
80449
81955
  * Possible values: user, service-account.
80450
- * Deprecated: Not supported after 2024-10-01-00 api version. Use owner_type instead.
80451
- * temporal:versioning:max_version=2024-10-01-00
81956
+ * Deprecated: Not supported after v0.3.0 api version. Use owner_type instead.
81957
+ * temporal:versioning:max_version=v0.3.0
80452
81958
  */
80453
81959
  public ownerTypeDeprecated: string;
80454
81960
 
80455
81961
  /**
80456
81962
  * The type of the owner to create the API key for.
80457
- * temporal:versioning:min_version=2024-10-01-00
81963
+ * temporal:versioning:min_version=v0.3.0
80458
81964
  * temporal:enums:replaces=owner_type_deprecated
80459
81965
  */
80460
81966
  public ownerType: temporal.api.cloud.identity.v1.OwnerType;
@@ -80713,15 +82219,15 @@ export namespace temporal {
80713
82219
  * This must only be one value, but the CA can have a chain.
80714
82220
  *
80715
82221
  * (-- api-linter: core::0140::base64=disabled --)
80716
- * Deprecated: Not supported after 2024-05-13-00 api version. Use accepted_client_ca instead.
80717
- * temporal:versioning:max_version=2024-05-13-00
82222
+ * Deprecated: Not supported after v0.2.0 api version. Use accepted_client_ca instead.
82223
+ * temporal:versioning:max_version=v0.2.0
80718
82224
  */
80719
82225
  acceptedClientCaDeprecated?: (string|null);
80720
82226
 
80721
82227
  /**
80722
82228
  * The ca cert(s) in PEM format that the clients can use for authentication and authorization.
80723
82229
  * This must only be one value, but the CA can have a chain.
80724
- * temporal:versioning:min_version=2024-05-13-00
82230
+ * temporal:versioning:min_version=v0.2.0
80725
82231
  */
80726
82232
  acceptedClientCa?: (Uint8Array|null);
80727
82233
 
@@ -80735,7 +82241,7 @@ export namespace temporal {
80735
82241
  /**
80736
82242
  * Flag to enable mTLS auth (default: disabled).
80737
82243
  * Note: disabling mTLS auth will cause existing mTLS connections to fail.
80738
- * temporal:versioning:min_version=2024-05-13-00
82244
+ * temporal:versioning:min_version=v0.2.0
80739
82245
  */
80740
82246
  enabled?: (boolean|null);
80741
82247
  }
@@ -80754,15 +82260,15 @@ export namespace temporal {
80754
82260
  * This must only be one value, but the CA can have a chain.
80755
82261
  *
80756
82262
  * (-- api-linter: core::0140::base64=disabled --)
80757
- * Deprecated: Not supported after 2024-05-13-00 api version. Use accepted_client_ca instead.
80758
- * temporal:versioning:max_version=2024-05-13-00
82263
+ * Deprecated: Not supported after v0.2.0 api version. Use accepted_client_ca instead.
82264
+ * temporal:versioning:max_version=v0.2.0
80759
82265
  */
80760
82266
  public acceptedClientCaDeprecated: string;
80761
82267
 
80762
82268
  /**
80763
82269
  * The ca cert(s) in PEM format that the clients can use for authentication and authorization.
80764
82270
  * This must only be one value, but the CA can have a chain.
80765
- * temporal:versioning:min_version=2024-05-13-00
82271
+ * temporal:versioning:min_version=v0.2.0
80766
82272
  */
80767
82273
  public acceptedClientCa: Uint8Array;
80768
82274
 
@@ -80776,7 +82282,7 @@ export namespace temporal {
80776
82282
  /**
80777
82283
  * Flag to enable mTLS auth (default: disabled).
80778
82284
  * Note: disabling mTLS auth will cause existing mTLS connections to fail.
80779
- * temporal:versioning:min_version=2024-05-13-00
82285
+ * temporal:versioning:min_version=v0.2.0
80780
82286
  */
80781
82287
  public enabled: boolean;
80782
82288
 
@@ -80958,6 +82464,12 @@ export namespace temporal {
80958
82464
 
80959
82465
  /** Whether to include cross-origin credentials. */
80960
82466
  includeCrossOriginCredentials?: (boolean|null);
82467
+
82468
+ /**
82469
+ * A custom error message to display for remote codec server errors.
82470
+ * temporal:versioning:min_version=v0.5.1
82471
+ */
82472
+ customErrorMessage?: (temporal.api.cloud.namespace.v1.CodecServerSpec.ICustomErrorMessage|null);
80961
82473
  }
80962
82474
 
80963
82475
  /** Represents a CodecServerSpec. */
@@ -80978,6 +82490,12 @@ export namespace temporal {
80978
82490
  /** Whether to include cross-origin credentials. */
80979
82491
  public includeCrossOriginCredentials: boolean;
80980
82492
 
82493
+ /**
82494
+ * A custom error message to display for remote codec server errors.
82495
+ * temporal:versioning:min_version=v0.5.1
82496
+ */
82497
+ public customErrorMessage?: (temporal.api.cloud.namespace.v1.CodecServerSpec.ICustomErrorMessage|null);
82498
+
80981
82499
  /**
80982
82500
  * Creates a new CodecServerSpec instance using the specified properties.
80983
82501
  * @param [properties] Properties to set
@@ -81049,6 +82567,378 @@ export namespace temporal {
81049
82567
  public static getTypeUrl(typeUrlPrefix?: string): string;
81050
82568
  }
81051
82569
 
82570
+ namespace CodecServerSpec {
82571
+
82572
+ /** Properties of a CustomErrorMessage. */
82573
+ interface ICustomErrorMessage {
82574
+
82575
+ /** The error message to display by default for any remote codec server errors. */
82576
+ "default"?: (temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.IErrorMessage|null);
82577
+ }
82578
+
82579
+ /** Represents a CustomErrorMessage. */
82580
+ class CustomErrorMessage implements ICustomErrorMessage {
82581
+
82582
+ /**
82583
+ * Constructs a new CustomErrorMessage.
82584
+ * @param [properties] Properties to set
82585
+ */
82586
+ constructor(properties?: temporal.api.cloud.namespace.v1.CodecServerSpec.ICustomErrorMessage);
82587
+
82588
+ /** The error message to display by default for any remote codec server errors. */
82589
+ public default?: (temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.IErrorMessage|null);
82590
+
82591
+ /**
82592
+ * Creates a new CustomErrorMessage instance using the specified properties.
82593
+ * @param [properties] Properties to set
82594
+ * @returns CustomErrorMessage instance
82595
+ */
82596
+ public static create(properties?: temporal.api.cloud.namespace.v1.CodecServerSpec.ICustomErrorMessage): temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage;
82597
+
82598
+ /**
82599
+ * Encodes the specified CustomErrorMessage message. Does not implicitly {@link temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.verify|verify} messages.
82600
+ * @param message CustomErrorMessage message or plain object to encode
82601
+ * @param [writer] Writer to encode to
82602
+ * @returns Writer
82603
+ */
82604
+ public static encode(message: temporal.api.cloud.namespace.v1.CodecServerSpec.ICustomErrorMessage, writer?: $protobuf.Writer): $protobuf.Writer;
82605
+
82606
+ /**
82607
+ * Encodes the specified CustomErrorMessage message, length delimited. Does not implicitly {@link temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.verify|verify} messages.
82608
+ * @param message CustomErrorMessage message or plain object to encode
82609
+ * @param [writer] Writer to encode to
82610
+ * @returns Writer
82611
+ */
82612
+ public static encodeDelimited(message: temporal.api.cloud.namespace.v1.CodecServerSpec.ICustomErrorMessage, writer?: $protobuf.Writer): $protobuf.Writer;
82613
+
82614
+ /**
82615
+ * Decodes a CustomErrorMessage message from the specified reader or buffer.
82616
+ * @param reader Reader or buffer to decode from
82617
+ * @param [length] Message length if known beforehand
82618
+ * @returns CustomErrorMessage
82619
+ * @throws {Error} If the payload is not a reader or valid buffer
82620
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
82621
+ */
82622
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage;
82623
+
82624
+ /**
82625
+ * Decodes a CustomErrorMessage message from the specified reader or buffer, length delimited.
82626
+ * @param reader Reader or buffer to decode from
82627
+ * @returns CustomErrorMessage
82628
+ * @throws {Error} If the payload is not a reader or valid buffer
82629
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
82630
+ */
82631
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage;
82632
+
82633
+ /**
82634
+ * Creates a CustomErrorMessage message from a plain object. Also converts values to their respective internal types.
82635
+ * @param object Plain object
82636
+ * @returns CustomErrorMessage
82637
+ */
82638
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage;
82639
+
82640
+ /**
82641
+ * Creates a plain object from a CustomErrorMessage message. Also converts values to other types if specified.
82642
+ * @param message CustomErrorMessage
82643
+ * @param [options] Conversion options
82644
+ * @returns Plain object
82645
+ */
82646
+ public static toObject(message: temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage, options?: $protobuf.IConversionOptions): { [k: string]: any };
82647
+
82648
+ /**
82649
+ * Converts this CustomErrorMessage to JSON.
82650
+ * @returns JSON object
82651
+ */
82652
+ public toJSON(): { [k: string]: any };
82653
+
82654
+ /**
82655
+ * Gets the default type url for CustomErrorMessage
82656
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
82657
+ * @returns The default type url
82658
+ */
82659
+ public static getTypeUrl(typeUrlPrefix?: string): string;
82660
+ }
82661
+
82662
+ namespace CustomErrorMessage {
82663
+
82664
+ /** Properties of an ErrorMessage. */
82665
+ interface IErrorMessage {
82666
+
82667
+ /** A message to display. */
82668
+ message?: (string|null);
82669
+
82670
+ /** A link that is displayed along side the configured message. */
82671
+ link?: (string|null);
82672
+ }
82673
+
82674
+ /** Represents an ErrorMessage. */
82675
+ class ErrorMessage implements IErrorMessage {
82676
+
82677
+ /**
82678
+ * Constructs a new ErrorMessage.
82679
+ * @param [properties] Properties to set
82680
+ */
82681
+ constructor(properties?: temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.IErrorMessage);
82682
+
82683
+ /** A message to display. */
82684
+ public message: string;
82685
+
82686
+ /** A link that is displayed along side the configured message. */
82687
+ public link: string;
82688
+
82689
+ /**
82690
+ * Creates a new ErrorMessage instance using the specified properties.
82691
+ * @param [properties] Properties to set
82692
+ * @returns ErrorMessage instance
82693
+ */
82694
+ public static create(properties?: temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.IErrorMessage): temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.ErrorMessage;
82695
+
82696
+ /**
82697
+ * Encodes the specified ErrorMessage message. Does not implicitly {@link temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.ErrorMessage.verify|verify} messages.
82698
+ * @param message ErrorMessage message or plain object to encode
82699
+ * @param [writer] Writer to encode to
82700
+ * @returns Writer
82701
+ */
82702
+ public static encode(message: temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.IErrorMessage, writer?: $protobuf.Writer): $protobuf.Writer;
82703
+
82704
+ /**
82705
+ * Encodes the specified ErrorMessage message, length delimited. Does not implicitly {@link temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.ErrorMessage.verify|verify} messages.
82706
+ * @param message ErrorMessage message or plain object to encode
82707
+ * @param [writer] Writer to encode to
82708
+ * @returns Writer
82709
+ */
82710
+ public static encodeDelimited(message: temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.IErrorMessage, writer?: $protobuf.Writer): $protobuf.Writer;
82711
+
82712
+ /**
82713
+ * Decodes an ErrorMessage message from the specified reader or buffer.
82714
+ * @param reader Reader or buffer to decode from
82715
+ * @param [length] Message length if known beforehand
82716
+ * @returns ErrorMessage
82717
+ * @throws {Error} If the payload is not a reader or valid buffer
82718
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
82719
+ */
82720
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.ErrorMessage;
82721
+
82722
+ /**
82723
+ * Decodes an ErrorMessage message from the specified reader or buffer, length delimited.
82724
+ * @param reader Reader or buffer to decode from
82725
+ * @returns ErrorMessage
82726
+ * @throws {Error} If the payload is not a reader or valid buffer
82727
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
82728
+ */
82729
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.ErrorMessage;
82730
+
82731
+ /**
82732
+ * Creates an ErrorMessage message from a plain object. Also converts values to their respective internal types.
82733
+ * @param object Plain object
82734
+ * @returns ErrorMessage
82735
+ */
82736
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.ErrorMessage;
82737
+
82738
+ /**
82739
+ * Creates a plain object from an ErrorMessage message. Also converts values to other types if specified.
82740
+ * @param message ErrorMessage
82741
+ * @param [options] Conversion options
82742
+ * @returns Plain object
82743
+ */
82744
+ public static toObject(message: temporal.api.cloud.namespace.v1.CodecServerSpec.CustomErrorMessage.ErrorMessage, options?: $protobuf.IConversionOptions): { [k: string]: any };
82745
+
82746
+ /**
82747
+ * Converts this ErrorMessage to JSON.
82748
+ * @returns JSON object
82749
+ */
82750
+ public toJSON(): { [k: string]: any };
82751
+
82752
+ /**
82753
+ * Gets the default type url for ErrorMessage
82754
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
82755
+ * @returns The default type url
82756
+ */
82757
+ public static getTypeUrl(typeUrlPrefix?: string): string;
82758
+ }
82759
+ }
82760
+ }
82761
+
82762
+ /** Properties of a LifecycleSpec. */
82763
+ interface ILifecycleSpec {
82764
+
82765
+ /** Flag to enable delete protection for the namespace. */
82766
+ enableDeleteProtection?: (boolean|null);
82767
+ }
82768
+
82769
+ /** Represents a LifecycleSpec. */
82770
+ class LifecycleSpec implements ILifecycleSpec {
82771
+
82772
+ /**
82773
+ * Constructs a new LifecycleSpec.
82774
+ * @param [properties] Properties to set
82775
+ */
82776
+ constructor(properties?: temporal.api.cloud.namespace.v1.ILifecycleSpec);
82777
+
82778
+ /** Flag to enable delete protection for the namespace. */
82779
+ public enableDeleteProtection: boolean;
82780
+
82781
+ /**
82782
+ * Creates a new LifecycleSpec instance using the specified properties.
82783
+ * @param [properties] Properties to set
82784
+ * @returns LifecycleSpec instance
82785
+ */
82786
+ public static create(properties?: temporal.api.cloud.namespace.v1.ILifecycleSpec): temporal.api.cloud.namespace.v1.LifecycleSpec;
82787
+
82788
+ /**
82789
+ * Encodes the specified LifecycleSpec message. Does not implicitly {@link temporal.api.cloud.namespace.v1.LifecycleSpec.verify|verify} messages.
82790
+ * @param message LifecycleSpec message or plain object to encode
82791
+ * @param [writer] Writer to encode to
82792
+ * @returns Writer
82793
+ */
82794
+ public static encode(message: temporal.api.cloud.namespace.v1.ILifecycleSpec, writer?: $protobuf.Writer): $protobuf.Writer;
82795
+
82796
+ /**
82797
+ * Encodes the specified LifecycleSpec message, length delimited. Does not implicitly {@link temporal.api.cloud.namespace.v1.LifecycleSpec.verify|verify} messages.
82798
+ * @param message LifecycleSpec message or plain object to encode
82799
+ * @param [writer] Writer to encode to
82800
+ * @returns Writer
82801
+ */
82802
+ public static encodeDelimited(message: temporal.api.cloud.namespace.v1.ILifecycleSpec, writer?: $protobuf.Writer): $protobuf.Writer;
82803
+
82804
+ /**
82805
+ * Decodes a LifecycleSpec message from the specified reader or buffer.
82806
+ * @param reader Reader or buffer to decode from
82807
+ * @param [length] Message length if known beforehand
82808
+ * @returns LifecycleSpec
82809
+ * @throws {Error} If the payload is not a reader or valid buffer
82810
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
82811
+ */
82812
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.namespace.v1.LifecycleSpec;
82813
+
82814
+ /**
82815
+ * Decodes a LifecycleSpec message from the specified reader or buffer, length delimited.
82816
+ * @param reader Reader or buffer to decode from
82817
+ * @returns LifecycleSpec
82818
+ * @throws {Error} If the payload is not a reader or valid buffer
82819
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
82820
+ */
82821
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.namespace.v1.LifecycleSpec;
82822
+
82823
+ /**
82824
+ * Creates a LifecycleSpec message from a plain object. Also converts values to their respective internal types.
82825
+ * @param object Plain object
82826
+ * @returns LifecycleSpec
82827
+ */
82828
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.namespace.v1.LifecycleSpec;
82829
+
82830
+ /**
82831
+ * Creates a plain object from a LifecycleSpec message. Also converts values to other types if specified.
82832
+ * @param message LifecycleSpec
82833
+ * @param [options] Conversion options
82834
+ * @returns Plain object
82835
+ */
82836
+ public static toObject(message: temporal.api.cloud.namespace.v1.LifecycleSpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
82837
+
82838
+ /**
82839
+ * Converts this LifecycleSpec to JSON.
82840
+ * @returns JSON object
82841
+ */
82842
+ public toJSON(): { [k: string]: any };
82843
+
82844
+ /**
82845
+ * Gets the default type url for LifecycleSpec
82846
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
82847
+ * @returns The default type url
82848
+ */
82849
+ public static getTypeUrl(typeUrlPrefix?: string): string;
82850
+ }
82851
+
82852
+ /** Properties of a HighAvailabilitySpec. */
82853
+ interface IHighAvailabilitySpec {
82854
+
82855
+ /** Flag to disable managed failover for the namespace. */
82856
+ disableManagedFailover?: (boolean|null);
82857
+ }
82858
+
82859
+ /** Represents a HighAvailabilitySpec. */
82860
+ class HighAvailabilitySpec implements IHighAvailabilitySpec {
82861
+
82862
+ /**
82863
+ * Constructs a new HighAvailabilitySpec.
82864
+ * @param [properties] Properties to set
82865
+ */
82866
+ constructor(properties?: temporal.api.cloud.namespace.v1.IHighAvailabilitySpec);
82867
+
82868
+ /** Flag to disable managed failover for the namespace. */
82869
+ public disableManagedFailover: boolean;
82870
+
82871
+ /**
82872
+ * Creates a new HighAvailabilitySpec instance using the specified properties.
82873
+ * @param [properties] Properties to set
82874
+ * @returns HighAvailabilitySpec instance
82875
+ */
82876
+ public static create(properties?: temporal.api.cloud.namespace.v1.IHighAvailabilitySpec): temporal.api.cloud.namespace.v1.HighAvailabilitySpec;
82877
+
82878
+ /**
82879
+ * Encodes the specified HighAvailabilitySpec message. Does not implicitly {@link temporal.api.cloud.namespace.v1.HighAvailabilitySpec.verify|verify} messages.
82880
+ * @param message HighAvailabilitySpec message or plain object to encode
82881
+ * @param [writer] Writer to encode to
82882
+ * @returns Writer
82883
+ */
82884
+ public static encode(message: temporal.api.cloud.namespace.v1.IHighAvailabilitySpec, writer?: $protobuf.Writer): $protobuf.Writer;
82885
+
82886
+ /**
82887
+ * Encodes the specified HighAvailabilitySpec message, length delimited. Does not implicitly {@link temporal.api.cloud.namespace.v1.HighAvailabilitySpec.verify|verify} messages.
82888
+ * @param message HighAvailabilitySpec message or plain object to encode
82889
+ * @param [writer] Writer to encode to
82890
+ * @returns Writer
82891
+ */
82892
+ public static encodeDelimited(message: temporal.api.cloud.namespace.v1.IHighAvailabilitySpec, writer?: $protobuf.Writer): $protobuf.Writer;
82893
+
82894
+ /**
82895
+ * Decodes a HighAvailabilitySpec message from the specified reader or buffer.
82896
+ * @param reader Reader or buffer to decode from
82897
+ * @param [length] Message length if known beforehand
82898
+ * @returns HighAvailabilitySpec
82899
+ * @throws {Error} If the payload is not a reader or valid buffer
82900
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
82901
+ */
82902
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): temporal.api.cloud.namespace.v1.HighAvailabilitySpec;
82903
+
82904
+ /**
82905
+ * Decodes a HighAvailabilitySpec message from the specified reader or buffer, length delimited.
82906
+ * @param reader Reader or buffer to decode from
82907
+ * @returns HighAvailabilitySpec
82908
+ * @throws {Error} If the payload is not a reader or valid buffer
82909
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
82910
+ */
82911
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): temporal.api.cloud.namespace.v1.HighAvailabilitySpec;
82912
+
82913
+ /**
82914
+ * Creates a HighAvailabilitySpec message from a plain object. Also converts values to their respective internal types.
82915
+ * @param object Plain object
82916
+ * @returns HighAvailabilitySpec
82917
+ */
82918
+ public static fromObject(object: { [k: string]: any }): temporal.api.cloud.namespace.v1.HighAvailabilitySpec;
82919
+
82920
+ /**
82921
+ * Creates a plain object from a HighAvailabilitySpec message. Also converts values to other types if specified.
82922
+ * @param message HighAvailabilitySpec
82923
+ * @param [options] Conversion options
82924
+ * @returns Plain object
82925
+ */
82926
+ public static toObject(message: temporal.api.cloud.namespace.v1.HighAvailabilitySpec, options?: $protobuf.IConversionOptions): { [k: string]: any };
82927
+
82928
+ /**
82929
+ * Converts this HighAvailabilitySpec to JSON.
82930
+ * @returns JSON object
82931
+ */
82932
+ public toJSON(): { [k: string]: any };
82933
+
82934
+ /**
82935
+ * Gets the default type url for HighAvailabilitySpec
82936
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
82937
+ * @returns The default type url
82938
+ */
82939
+ public static getTypeUrl(typeUrlPrefix?: string): string;
82940
+ }
82941
+
81052
82942
  /** Properties of a NamespaceSpec. */
81053
82943
  interface INamespaceSpec {
81054
82944
 
@@ -81087,7 +82977,7 @@ export namespace temporal {
81087
82977
  /**
81088
82978
  * The API key auth configuration for the namespace.
81089
82979
  * If unspecified, API keys will be disabled.
81090
- * temporal:versioning:min_version=2024-05-13-00
82980
+ * temporal:versioning:min_version=v0.2.0
81091
82981
  */
81092
82982
  apiKeyAuth?: (temporal.api.cloud.namespace.v1.IApiKeyAuthSpec|null);
81093
82983
 
@@ -81097,8 +82987,8 @@ export namespace temporal {
81097
82987
  * Supported attribute types: text, keyword, int, double, bool, datetime, keyword_list.
81098
82988
  * NOTE: currently deleting a search attribute is not supported.
81099
82989
  * Optional, default is empty.
81100
- * Deprecated: Not supported after 2024-10-01-00 api version. Use search_attributes instead.
81101
- * temporal:versioning:max_version=2024-10-01-00
82990
+ * Deprecated: Not supported after v0.3.0 api version. Use search_attributes instead.
82991
+ * temporal:versioning:max_version=v0.3.0
81102
82992
  */
81103
82993
  customSearchAttributes?: ({ [k: string]: string }|null);
81104
82994
 
@@ -81107,7 +82997,7 @@ export namespace temporal {
81107
82997
  * The name of the attribute is the key and the type is the value.
81108
82998
  * Note: currently deleting a search attribute is not supported.
81109
82999
  * Optional, default is empty.
81110
- * temporal:versioning:min_version=2024-10-01-00
83000
+ * temporal:versioning:min_version=v0.3.0
81111
83001
  * temporal:enums:replaces=custom_search_attributes
81112
83002
  */
81113
83003
  searchAttributes?: ({ [k: string]: temporal.api.cloud.namespace.v1.NamespaceSpec.SearchAttributeType }|null);
@@ -81117,6 +83007,18 @@ export namespace temporal {
81117
83007
  * Optional, default is unset.
81118
83008
  */
81119
83009
  codecServer?: (temporal.api.cloud.namespace.v1.ICodecServerSpec|null);
83010
+
83011
+ /**
83012
+ * The lifecycle configuration for the namespace.
83013
+ * temporal:versioning:min_version=v0.4.0
83014
+ */
83015
+ lifecycle?: (temporal.api.cloud.namespace.v1.ILifecycleSpec|null);
83016
+
83017
+ /**
83018
+ * The high availability configuration for the namespace.
83019
+ * temporal:versioning:min_version=v0.4.0
83020
+ */
83021
+ highAvailability?: (temporal.api.cloud.namespace.v1.IHighAvailabilitySpec|null);
81120
83022
  }
81121
83023
 
81122
83024
  /** Represents a NamespaceSpec. */
@@ -81163,7 +83065,7 @@ export namespace temporal {
81163
83065
  /**
81164
83066
  * The API key auth configuration for the namespace.
81165
83067
  * If unspecified, API keys will be disabled.
81166
- * temporal:versioning:min_version=2024-05-13-00
83068
+ * temporal:versioning:min_version=v0.2.0
81167
83069
  */
81168
83070
  public apiKeyAuth?: (temporal.api.cloud.namespace.v1.IApiKeyAuthSpec|null);
81169
83071
 
@@ -81173,8 +83075,8 @@ export namespace temporal {
81173
83075
  * Supported attribute types: text, keyword, int, double, bool, datetime, keyword_list.
81174
83076
  * NOTE: currently deleting a search attribute is not supported.
81175
83077
  * Optional, default is empty.
81176
- * Deprecated: Not supported after 2024-10-01-00 api version. Use search_attributes instead.
81177
- * temporal:versioning:max_version=2024-10-01-00
83078
+ * Deprecated: Not supported after v0.3.0 api version. Use search_attributes instead.
83079
+ * temporal:versioning:max_version=v0.3.0
81178
83080
  */
81179
83081
  public customSearchAttributes: { [k: string]: string };
81180
83082
 
@@ -81183,7 +83085,7 @@ export namespace temporal {
81183
83085
  * The name of the attribute is the key and the type is the value.
81184
83086
  * Note: currently deleting a search attribute is not supported.
81185
83087
  * Optional, default is empty.
81186
- * temporal:versioning:min_version=2024-10-01-00
83088
+ * temporal:versioning:min_version=v0.3.0
81187
83089
  * temporal:enums:replaces=custom_search_attributes
81188
83090
  */
81189
83091
  public searchAttributes: { [k: string]: temporal.api.cloud.namespace.v1.NamespaceSpec.SearchAttributeType };
@@ -81194,6 +83096,18 @@ export namespace temporal {
81194
83096
  */
81195
83097
  public codecServer?: (temporal.api.cloud.namespace.v1.ICodecServerSpec|null);
81196
83098
 
83099
+ /**
83100
+ * The lifecycle configuration for the namespace.
83101
+ * temporal:versioning:min_version=v0.4.0
83102
+ */
83103
+ public lifecycle?: (temporal.api.cloud.namespace.v1.ILifecycleSpec|null);
83104
+
83105
+ /**
83106
+ * The high availability configuration for the namespace.
83107
+ * temporal:versioning:min_version=v0.4.0
83108
+ */
83109
+ public highAvailability?: (temporal.api.cloud.namespace.v1.IHighAvailabilitySpec|null);
83110
+
81197
83111
  /**
81198
83112
  * Creates a new NamespaceSpec instance using the specified properties.
81199
83113
  * @param [properties] Properties to set
@@ -81693,15 +83607,15 @@ export namespace temporal {
81693
83607
 
81694
83608
  /**
81695
83609
  * The current state of the namespace.
81696
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
81697
- * temporal:versioning:max_version=2024-10-01-00
83610
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
83611
+ * temporal:versioning:max_version=v0.3.0
81698
83612
  */
81699
83613
  stateDeprecated?: (string|null);
81700
83614
 
81701
83615
  /**
81702
83616
  * The current state of the namespace.
81703
83617
  * For any failed state, reach out to Temporal Cloud support for remediation.
81704
- * temporal:versioning:min_version=2024-10-01-00
83618
+ * temporal:versioning:min_version=v0.3.0
81705
83619
  * temporal:enums:replaces=state_deprecated
81706
83620
  */
81707
83621
  state?: (temporal.api.cloud.resource.v1.ResourceState|null);
@@ -81760,15 +83674,15 @@ export namespace temporal {
81760
83674
 
81761
83675
  /**
81762
83676
  * The current state of the namespace.
81763
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
81764
- * temporal:versioning:max_version=2024-10-01-00
83677
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
83678
+ * temporal:versioning:max_version=v0.3.0
81765
83679
  */
81766
83680
  public stateDeprecated: string;
81767
83681
 
81768
83682
  /**
81769
83683
  * The current state of the namespace.
81770
83684
  * For any failed state, reach out to Temporal Cloud support for remediation.
81771
- * temporal:versioning:min_version=2024-10-01-00
83685
+ * temporal:versioning:min_version=v0.3.0
81772
83686
  * temporal:enums:replaces=state_deprecated
81773
83687
  */
81774
83688
  public state: temporal.api.cloud.resource.v1.ResourceState;
@@ -81881,14 +83795,14 @@ export namespace temporal {
81881
83795
  * The current state of the namespace region.
81882
83796
  * Possible values: adding, active, passive, removing, failed.
81883
83797
  * For any failed state, reach out to Temporal Cloud support for remediation.
81884
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
81885
- * temporal:versioning:max_version=2024-10-01-00
83798
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
83799
+ * temporal:versioning:max_version=v0.3.0
81886
83800
  */
81887
83801
  stateDeprecated?: (string|null);
81888
83802
 
81889
83803
  /**
81890
83804
  * The current state of the namespace region.
81891
- * temporal:versioning:min_version=2024-10-01-00
83805
+ * temporal:versioning:min_version=v0.3.0
81892
83806
  * temporal:enums:replaces=state_deprecated
81893
83807
  */
81894
83808
  state?: (temporal.api.cloud.namespace.v1.NamespaceRegionStatus.State|null);
@@ -81910,14 +83824,14 @@ export namespace temporal {
81910
83824
  * The current state of the namespace region.
81911
83825
  * Possible values: adding, active, passive, removing, failed.
81912
83826
  * For any failed state, reach out to Temporal Cloud support for remediation.
81913
- * Deprecated: Not supported after 2024-10-01-00 api version. Use state instead.
81914
- * temporal:versioning:max_version=2024-10-01-00
83827
+ * Deprecated: Not supported after v0.3.0 api version. Use state instead.
83828
+ * temporal:versioning:max_version=v0.3.0
81915
83829
  */
81916
83830
  public stateDeprecated: string;
81917
83831
 
81918
83832
  /**
81919
83833
  * The current state of the namespace region.
81920
- * temporal:versioning:min_version=2024-10-01-00
83834
+ * temporal:versioning:min_version=v0.3.0
81921
83835
  * temporal:enums:replaces=state_deprecated
81922
83836
  */
81923
83837
  public state: temporal.api.cloud.namespace.v1.NamespaceRegionStatus.State;
@@ -82021,10 +83935,7 @@ export namespace temporal {
82021
83935
  /** The S3 configuration details when destination_type is S3. */
82022
83936
  s3?: (temporal.api.cloud.sink.v1.IS3Spec|null);
82023
83937
 
82024
- /**
82025
- * This is a feature under development. We will allow GCS sink support for GCP Namespaces.
82026
- * The GCS configuration details when destination_type is GCS.
82027
- */
83938
+ /** The GCS configuration details when destination_type is GCS. */
82028
83939
  gcs?: (temporal.api.cloud.sink.v1.IGCSSpec|null);
82029
83940
  }
82030
83941
 
@@ -82046,10 +83957,7 @@ export namespace temporal {
82046
83957
  /** The S3 configuration details when destination_type is S3. */
82047
83958
  public s3?: (temporal.api.cloud.sink.v1.IS3Spec|null);
82048
83959
 
82049
- /**
82050
- * This is a feature under development. We will allow GCS sink support for GCP Namespaces.
82051
- * The GCS configuration details when destination_type is GCS.
82052
- */
83960
+ /** The GCS configuration details when destination_type is GCS. */
82053
83961
  public gcs?: (temporal.api.cloud.sink.v1.IGCSSpec|null);
82054
83962
 
82055
83963
  /**
@@ -82524,8 +84432,17 @@ export namespace temporal {
82524
84432
  */
82525
84433
  policySpecs?: (temporal.api.cloud.nexus.v1.IEndpointPolicySpec[]|null);
82526
84434
 
82527
- /** The markdown description of the endpoint - optional. */
82528
- description?: (string|null);
84435
+ /**
84436
+ * Deprecated: Not supported after v0.4.0 api version. Use description instead.
84437
+ * temporal:versioning:max_version=v0.4.0
84438
+ */
84439
+ descriptionDeprecated?: (string|null);
84440
+
84441
+ /**
84442
+ * The markdown description of the endpoint - optional.
84443
+ * temporal:versioning:min_version=v0.4.0
84444
+ */
84445
+ description?: (temporal.api.common.v1.IPayload|null);
82529
84446
  }
82530
84447
 
82531
84448
  /** Represents an EndpointSpec. */
@@ -82554,8 +84471,17 @@ export namespace temporal {
82554
84471
  */
82555
84472
  public policySpecs: temporal.api.cloud.nexus.v1.IEndpointPolicySpec[];
82556
84473
 
82557
- /** The markdown description of the endpoint - optional. */
82558
- public description: string;
84474
+ /**
84475
+ * Deprecated: Not supported after v0.4.0 api version. Use description instead.
84476
+ * temporal:versioning:max_version=v0.4.0
84477
+ */
84478
+ public descriptionDeprecated: string;
84479
+
84480
+ /**
84481
+ * The markdown description of the endpoint - optional.
84482
+ * temporal:versioning:min_version=v0.4.0
84483
+ */
84484
+ public description?: (temporal.api.common.v1.IPayload|null);
82559
84485
 
82560
84486
  /**
82561
84487
  * Creates a new EndpointSpec instance using the specified properties.
@@ -83155,14 +85081,14 @@ export namespace temporal {
83155
85081
  /**
83156
85082
  * The name of the cloud provider that's hosting the region.
83157
85083
  * Currently only "aws" is supported.
83158
- * Deprecated: Not supported after 2024-10-01-00 api version. Use cloud_provider instead.
83159
- * temporal:versioning:max_version=2024-10-01-00
85084
+ * Deprecated: Not supported after v0.3.0 api version. Use cloud_provider instead.
85085
+ * temporal:versioning:max_version=v0.3.0
83160
85086
  */
83161
85087
  cloudProviderDeprecated?: (string|null);
83162
85088
 
83163
85089
  /**
83164
85090
  * The cloud provider that's hosting the region.
83165
- * temporal:versioning:min_version=2024-10-01-00
85091
+ * temporal:versioning:min_version=v0.3.0
83166
85092
  * temporal:enums:replaces=cloud_provider_deprecated
83167
85093
  */
83168
85094
  cloudProvider?: (temporal.api.cloud.region.v1.Region.CloudProvider|null);
@@ -83189,14 +85115,14 @@ export namespace temporal {
83189
85115
  /**
83190
85116
  * The name of the cloud provider that's hosting the region.
83191
85117
  * Currently only "aws" is supported.
83192
- * Deprecated: Not supported after 2024-10-01-00 api version. Use cloud_provider instead.
83193
- * temporal:versioning:max_version=2024-10-01-00
85118
+ * Deprecated: Not supported after v0.3.0 api version. Use cloud_provider instead.
85119
+ * temporal:versioning:max_version=v0.3.0
83194
85120
  */
83195
85121
  public cloudProviderDeprecated: string;
83196
85122
 
83197
85123
  /**
83198
85124
  * The cloud provider that's hosting the region.
83199
- * temporal:versioning:min_version=2024-10-01-00
85125
+ * temporal:versioning:min_version=v0.3.0
83200
85126
  * temporal:enums:replaces=cloud_provider_deprecated
83201
85127
  */
83202
85128
  public cloudProvider: temporal.api.cloud.region.v1.Region.CloudProvider;