@scaleway/sdk 2.3.0 → 2.4.1

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/dist/index.d.ts CHANGED
@@ -1,9 +1,41 @@
1
+ /**
2
+ * Function to retry logic between each interval.
3
+ *
4
+ * @returns The result and if it's done
5
+ *
6
+ * @throws An exception might be thrown by the logic being run
7
+ *
8
+ * @internal
9
+ */
10
+ type Retry<T> = () => Promise<IteratorResult<T, T>>;
1
11
  /**
2
12
  * Generated interval strategy iterator.
3
13
  *
4
14
  * @internal
5
15
  */
6
16
  type IntervalStrategy = Generator<number, never | number, number>;
17
+ /**
18
+ * Creates an exponential backoff interval strategy.
19
+ *
20
+ * @param minDelay - The minimum delay before the next try in seconds
21
+ * @param maxDelay - The maximum delay before the next try in seconds
22
+ * @returns An exponential backoff generator
23
+ *
24
+ * @internal
25
+ */
26
+ declare function createExponentialBackoffStrategy(minDelay: number, maxDelay: number): IntervalStrategy;
27
+ /**
28
+ * Tries a specific logic several times until it succeeds, timeouts, or throws an exception.
29
+ *
30
+ * @param retry - The function to retry logic between each interval
31
+ * @param strategy - A generated interval strategy iterator
32
+ * @param timeout - The maximum time elapsed before timeout error
33
+ *
34
+ * @throws An timeout exception or error thrown by the logic being run
35
+ *
36
+ * @internal
37
+ */
38
+ declare const tryAtIntervals: <T>(retry: Retry<T>, strategy: IntervalStrategy, timeout?: number) => Promise<T>;
7
39
  /**
8
40
  * Represents the condition to stop waiting for a resource.
9
41
  *
@@ -871,7 +903,7 @@ declare const addAsyncHeaderInterceptor: (key: string, getter: () => Promise<str
871
903
  *
872
904
  * @internal
873
905
  */
874
- declare abstract class API$w {
906
+ declare abstract class API$v {
875
907
  protected client: Client;
876
908
  constructor(client: Client);
877
909
  }
@@ -1101,7 +1133,7 @@ type UpdateProjectRequest = {
1101
1133
  *
1102
1134
  * User related data. This API allows you to manage projects.
1103
1135
  */
1104
- declare class API$v extends API$w {
1136
+ declare class API$u extends API$v {
1105
1137
  /**
1106
1138
  * Create a new Project for an Organization. Deprecated in favor of Account
1107
1139
  * API v3. Generate a new Project for an Organization, specifying its
@@ -1162,13 +1194,13 @@ declare class API$v extends API$w {
1162
1194
  updateProject: (request?: Readonly<UpdateProjectRequest>) => Promise<Project$1>;
1163
1195
  }
1164
1196
 
1165
- type index_gen$u_CreateProjectRequest = CreateProjectRequest;
1166
- type index_gen$u_DeleteProjectRequest = DeleteProjectRequest;
1167
- type index_gen$u_GetProjectRequest = GetProjectRequest;
1168
- type index_gen$u_ListProjectsRequest = ListProjectsRequest;
1169
- type index_gen$u_UpdateProjectRequest = UpdateProjectRequest;
1170
- declare namespace index_gen$u {
1171
- export { API$v as API, type index_gen$u_CreateProjectRequest as CreateProjectRequest, type index_gen$u_DeleteProjectRequest as DeleteProjectRequest, type index_gen$u_GetProjectRequest as GetProjectRequest, type index_gen$u_ListProjectsRequest as ListProjectsRequest, type ListProjectsRequestOrderBy$1 as ListProjectsRequestOrderBy, type ListProjectsResponse$1 as ListProjectsResponse, type Project$1 as Project, type index_gen$u_UpdateProjectRequest as UpdateProjectRequest };
1197
+ type index_gen$t_CreateProjectRequest = CreateProjectRequest;
1198
+ type index_gen$t_DeleteProjectRequest = DeleteProjectRequest;
1199
+ type index_gen$t_GetProjectRequest = GetProjectRequest;
1200
+ type index_gen$t_ListProjectsRequest = ListProjectsRequest;
1201
+ type index_gen$t_UpdateProjectRequest = UpdateProjectRequest;
1202
+ declare namespace index_gen$t {
1203
+ export { API$u as API, type index_gen$t_CreateProjectRequest as CreateProjectRequest, type index_gen$t_DeleteProjectRequest as DeleteProjectRequest, type index_gen$t_GetProjectRequest as GetProjectRequest, type index_gen$t_ListProjectsRequest as ListProjectsRequest, type ListProjectsRequestOrderBy$1 as ListProjectsRequestOrderBy, type ListProjectsResponse$1 as ListProjectsResponse, type Project$1 as Project, type index_gen$t_UpdateProjectRequest as UpdateProjectRequest };
1172
1204
  }
1173
1205
 
1174
1206
  type ListProjectsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
@@ -1239,7 +1271,7 @@ type ProjectApiUpdateProjectRequest$1 = {
1239
1271
  *
1240
1272
  * This API allows you to manage projects.
1241
1273
  */
1242
- declare class ProjectAPI extends API$w {
1274
+ declare class ProjectAPI extends API$v {
1243
1275
  /**
1244
1276
  * Create a new Project for an Organization. Generate a new Project for an
1245
1277
  * Organization, specifying its configuration including name and description.
@@ -1332,19 +1364,19 @@ declare namespace validationRules_gen$d {
1332
1364
  export { validationRules_gen$d_ProjectApiCreateProjectRequest as ProjectApiCreateProjectRequest, validationRules_gen$d_ProjectApiListProjectsRequest as ProjectApiListProjectsRequest, validationRules_gen$d_ProjectApiUpdateProjectRequest as ProjectApiUpdateProjectRequest };
1333
1365
  }
1334
1366
 
1335
- type index_gen$t_ListProjectsRequestOrderBy = ListProjectsRequestOrderBy;
1336
- type index_gen$t_ListProjectsResponse = ListProjectsResponse;
1337
- type index_gen$t_Project = Project;
1338
- type index_gen$t_ProjectAPI = ProjectAPI;
1339
- declare const index_gen$t_ProjectAPI: typeof ProjectAPI;
1340
- type index_gen$t_ProjectApiDeleteProjectRequest = ProjectApiDeleteProjectRequest;
1341
- type index_gen$t_ProjectApiGetProjectRequest = ProjectApiGetProjectRequest;
1342
- declare namespace index_gen$t {
1343
- export { type index_gen$t_ListProjectsRequestOrderBy as ListProjectsRequestOrderBy, type index_gen$t_ListProjectsResponse as ListProjectsResponse, type index_gen$t_Project as Project, index_gen$t_ProjectAPI as ProjectAPI, type ProjectApiCreateProjectRequest$1 as ProjectApiCreateProjectRequest, type index_gen$t_ProjectApiDeleteProjectRequest as ProjectApiDeleteProjectRequest, type index_gen$t_ProjectApiGetProjectRequest as ProjectApiGetProjectRequest, type ProjectApiListProjectsRequest$1 as ProjectApiListProjectsRequest, type ProjectApiUpdateProjectRequest$1 as ProjectApiUpdateProjectRequest, validationRules_gen$d as ValidationRules };
1367
+ type index_gen$s_ListProjectsRequestOrderBy = ListProjectsRequestOrderBy;
1368
+ type index_gen$s_ListProjectsResponse = ListProjectsResponse;
1369
+ type index_gen$s_Project = Project;
1370
+ type index_gen$s_ProjectAPI = ProjectAPI;
1371
+ declare const index_gen$s_ProjectAPI: typeof ProjectAPI;
1372
+ type index_gen$s_ProjectApiDeleteProjectRequest = ProjectApiDeleteProjectRequest;
1373
+ type index_gen$s_ProjectApiGetProjectRequest = ProjectApiGetProjectRequest;
1374
+ declare namespace index_gen$s {
1375
+ export { type index_gen$s_ListProjectsRequestOrderBy as ListProjectsRequestOrderBy, type index_gen$s_ListProjectsResponse as ListProjectsResponse, type index_gen$s_Project as Project, index_gen$s_ProjectAPI as ProjectAPI, type ProjectApiCreateProjectRequest$1 as ProjectApiCreateProjectRequest, type index_gen$s_ProjectApiDeleteProjectRequest as ProjectApiDeleteProjectRequest, type index_gen$s_ProjectApiGetProjectRequest as ProjectApiGetProjectRequest, type ProjectApiListProjectsRequest$1 as ProjectApiListProjectsRequest, type ProjectApiUpdateProjectRequest$1 as ProjectApiUpdateProjectRequest, validationRules_gen$d as ValidationRules };
1344
1376
  }
1345
1377
 
1346
1378
  declare namespace index$x {
1347
- export { index_gen$u as v2, index_gen$t as v3 };
1379
+ export { index_gen$t as v2, index_gen$s as v3 };
1348
1380
  }
1349
1381
 
1350
1382
  type ListServersRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
@@ -1525,7 +1557,7 @@ type UpdateServerRequest$3 = {
1525
1557
  };
1526
1558
 
1527
1559
  /** Apple silicon API. */
1528
- declare class API$u extends API$w {
1560
+ declare class API$t extends API$v {
1529
1561
  /** Lists the available zones of the API. */
1530
1562
  static readonly LOCALITIES: Zone[];
1531
1563
  /**
@@ -1644,20 +1676,20 @@ declare class API$u extends API$w {
1644
1676
  /** Lists transient statutes of the enum {@link ServerStatus}. */
1645
1677
  declare const SERVER_TRANSIENT_STATUSES$2: ServerStatus$1[];
1646
1678
 
1647
- type index_gen$s_GetServerTypeRequest = GetServerTypeRequest;
1648
- type index_gen$s_ListServerTypesRequest = ListServerTypesRequest;
1649
- type index_gen$s_ListServerTypesResponse = ListServerTypesResponse;
1650
- type index_gen$s_ReinstallServerRequest = ReinstallServerRequest;
1651
- type index_gen$s_ServerTypeCPU = ServerTypeCPU;
1652
- type index_gen$s_ServerTypeDisk = ServerTypeDisk;
1653
- type index_gen$s_ServerTypeMemory = ServerTypeMemory;
1654
- type index_gen$s_ServerTypeStock = ServerTypeStock;
1655
- declare namespace index_gen$s {
1656
- export { API$u as API, type CreateServerRequest$3 as CreateServerRequest, type DeleteServerRequest$2 as DeleteServerRequest, type GetOSRequest$1 as GetOSRequest, type GetServerRequest$2 as GetServerRequest, type index_gen$s_GetServerTypeRequest as GetServerTypeRequest, type ListOSRequest$2 as ListOSRequest, type ListOSResponse$1 as ListOSResponse, type index_gen$s_ListServerTypesRequest as ListServerTypesRequest, type index_gen$s_ListServerTypesResponse as ListServerTypesResponse, type ListServersRequest$3 as ListServersRequest, type ListServersRequestOrderBy$1 as ListServersRequestOrderBy, type ListServersResponse$2 as ListServersResponse, type OS$1 as OS, type RebootServerRequest$1 as RebootServerRequest, type index_gen$s_ReinstallServerRequest as ReinstallServerRequest, SERVER_TRANSIENT_STATUSES$2 as SERVER_TRANSIENT_STATUSES, type Server$2 as Server, type ServerStatus$1 as ServerStatus, type ServerType$1 as ServerType, type index_gen$s_ServerTypeCPU as ServerTypeCPU, type index_gen$s_ServerTypeDisk as ServerTypeDisk, type index_gen$s_ServerTypeMemory as ServerTypeMemory, type index_gen$s_ServerTypeStock as ServerTypeStock, type UpdateServerRequest$3 as UpdateServerRequest };
1679
+ type index_gen$r_GetServerTypeRequest = GetServerTypeRequest;
1680
+ type index_gen$r_ListServerTypesRequest = ListServerTypesRequest;
1681
+ type index_gen$r_ListServerTypesResponse = ListServerTypesResponse;
1682
+ type index_gen$r_ReinstallServerRequest = ReinstallServerRequest;
1683
+ type index_gen$r_ServerTypeCPU = ServerTypeCPU;
1684
+ type index_gen$r_ServerTypeDisk = ServerTypeDisk;
1685
+ type index_gen$r_ServerTypeMemory = ServerTypeMemory;
1686
+ type index_gen$r_ServerTypeStock = ServerTypeStock;
1687
+ declare namespace index_gen$r {
1688
+ export { API$t as API, type CreateServerRequest$3 as CreateServerRequest, type DeleteServerRequest$2 as DeleteServerRequest, type GetOSRequest$1 as GetOSRequest, type GetServerRequest$2 as GetServerRequest, type index_gen$r_GetServerTypeRequest as GetServerTypeRequest, type ListOSRequest$2 as ListOSRequest, type ListOSResponse$1 as ListOSResponse, type index_gen$r_ListServerTypesRequest as ListServerTypesRequest, type index_gen$r_ListServerTypesResponse as ListServerTypesResponse, type ListServersRequest$3 as ListServersRequest, type ListServersRequestOrderBy$1 as ListServersRequestOrderBy, type ListServersResponse$2 as ListServersResponse, type OS$1 as OS, type RebootServerRequest$1 as RebootServerRequest, type index_gen$r_ReinstallServerRequest as ReinstallServerRequest, SERVER_TRANSIENT_STATUSES$2 as SERVER_TRANSIENT_STATUSES, type Server$2 as Server, type ServerStatus$1 as ServerStatus, type ServerType$1 as ServerType, type index_gen$r_ServerTypeCPU as ServerTypeCPU, type index_gen$r_ServerTypeDisk as ServerTypeDisk, type index_gen$r_ServerTypeMemory as ServerTypeMemory, type index_gen$r_ServerTypeStock as ServerTypeStock, type UpdateServerRequest$3 as UpdateServerRequest };
1657
1689
  }
1658
1690
 
1659
1691
  declare namespace index$w {
1660
- export { index_gen$s as v1alpha1 };
1692
+ export { index_gen$r as v1alpha1 };
1661
1693
  }
1662
1694
 
1663
1695
  type IPReverseStatus = 'unknown' | 'pending' | 'active' | 'error';
@@ -2347,7 +2379,7 @@ type UpdateSettingRequest = {
2347
2379
  *
2348
2380
  * This API allows to manage your Elastic Metal server.
2349
2381
  */
2350
- declare class API$t extends API$w {
2382
+ declare class API$s extends API$v {
2351
2383
  /** Lists the available zones of the API. */
2352
2384
  static readonly LOCALITIES: Zone[];
2353
2385
  protected pageOfListServers: (request?: Readonly<ListServersRequest$2>) => Promise<ListServersResponse$1>;
@@ -2587,7 +2619,7 @@ declare class API$t extends API$w {
2587
2619
  getOS: (request: Readonly<GetOSRequest>) => Promise<OS>;
2588
2620
  }
2589
2621
  /** Elastic Metal Private Network API. */
2590
- declare class PrivateNetworkAPI extends API$w {
2622
+ declare class PrivateNetworkAPI extends API$v {
2591
2623
  /** Lists the available zones of the API. */
2592
2624
  static readonly LOCALITIES: Zone[];
2593
2625
  /**
@@ -2627,7 +2659,7 @@ declare class PrivateNetworkAPI extends API$w {
2627
2659
  deleteServerPrivateNetwork: (request: Readonly<PrivateNetworkApiDeleteServerPrivateNetworkRequest>) => Promise<void>;
2628
2660
  }
2629
2661
 
2630
- declare class BaremetalV1UtilsAPI extends API$t {
2662
+ declare class BaremetalV1UtilsAPI extends API$s {
2631
2663
  /**
2632
2664
  * Waits for {@link ServerInstall} to be in a final state.
2633
2665
  *
@@ -2968,7 +3000,7 @@ interface ListInvoicesResponse {
2968
3000
  *
2969
3001
  * This API allows you to query your consumption.
2970
3002
  */
2971
- declare class API$s extends API$w {
3003
+ declare class API$r extends API$v {
2972
3004
  /**
2973
3005
  * Get current month's consumption. The consumption reflects the amount of
2974
3006
  * money you have spent for the products you have used. The consumption value
@@ -3012,30 +3044,30 @@ declare class API$s extends API$w {
3012
3044
  };
3013
3045
  }
3014
3046
 
3015
- type index_gen$r_Discount = Discount;
3016
- type index_gen$r_DiscountCoupon = DiscountCoupon;
3017
- type index_gen$r_DiscountDiscountMode = DiscountDiscountMode;
3018
- type index_gen$r_DiscountFilter = DiscountFilter;
3019
- type index_gen$r_DiscountFilterType = DiscountFilterType;
3020
- type index_gen$r_DownloadInvoiceRequest = DownloadInvoiceRequest;
3021
- type index_gen$r_DownloadInvoiceRequestFileType = DownloadInvoiceRequestFileType;
3022
- type index_gen$r_GetConsumptionRequest = GetConsumptionRequest;
3023
- type index_gen$r_GetConsumptionResponse = GetConsumptionResponse;
3024
- type index_gen$r_GetConsumptionResponseConsumption = GetConsumptionResponseConsumption;
3025
- type index_gen$r_Invoice = Invoice;
3026
- type index_gen$r_InvoiceType = InvoiceType;
3027
- type index_gen$r_ListDiscountsRequest = ListDiscountsRequest;
3028
- type index_gen$r_ListDiscountsRequestOrderBy = ListDiscountsRequestOrderBy;
3029
- type index_gen$r_ListDiscountsResponse = ListDiscountsResponse;
3030
- type index_gen$r_ListInvoicesRequest = ListInvoicesRequest;
3031
- type index_gen$r_ListInvoicesRequestOrderBy = ListInvoicesRequestOrderBy;
3032
- type index_gen$r_ListInvoicesResponse = ListInvoicesResponse;
3033
- declare namespace index_gen$r {
3034
- export { API$s as API, type index_gen$r_Discount as Discount, type index_gen$r_DiscountCoupon as DiscountCoupon, type index_gen$r_DiscountDiscountMode as DiscountDiscountMode, type index_gen$r_DiscountFilter as DiscountFilter, type index_gen$r_DiscountFilterType as DiscountFilterType, type index_gen$r_DownloadInvoiceRequest as DownloadInvoiceRequest, type index_gen$r_DownloadInvoiceRequestFileType as DownloadInvoiceRequestFileType, type index_gen$r_GetConsumptionRequest as GetConsumptionRequest, type index_gen$r_GetConsumptionResponse as GetConsumptionResponse, type index_gen$r_GetConsumptionResponseConsumption as GetConsumptionResponseConsumption, type index_gen$r_Invoice as Invoice, type index_gen$r_InvoiceType as InvoiceType, type index_gen$r_ListDiscountsRequest as ListDiscountsRequest, type index_gen$r_ListDiscountsRequestOrderBy as ListDiscountsRequestOrderBy, type index_gen$r_ListDiscountsResponse as ListDiscountsResponse, type index_gen$r_ListInvoicesRequest as ListInvoicesRequest, type index_gen$r_ListInvoicesRequestOrderBy as ListInvoicesRequestOrderBy, type index_gen$r_ListInvoicesResponse as ListInvoicesResponse };
3047
+ type index_gen$q_Discount = Discount;
3048
+ type index_gen$q_DiscountCoupon = DiscountCoupon;
3049
+ type index_gen$q_DiscountDiscountMode = DiscountDiscountMode;
3050
+ type index_gen$q_DiscountFilter = DiscountFilter;
3051
+ type index_gen$q_DiscountFilterType = DiscountFilterType;
3052
+ type index_gen$q_DownloadInvoiceRequest = DownloadInvoiceRequest;
3053
+ type index_gen$q_DownloadInvoiceRequestFileType = DownloadInvoiceRequestFileType;
3054
+ type index_gen$q_GetConsumptionRequest = GetConsumptionRequest;
3055
+ type index_gen$q_GetConsumptionResponse = GetConsumptionResponse;
3056
+ type index_gen$q_GetConsumptionResponseConsumption = GetConsumptionResponseConsumption;
3057
+ type index_gen$q_Invoice = Invoice;
3058
+ type index_gen$q_InvoiceType = InvoiceType;
3059
+ type index_gen$q_ListDiscountsRequest = ListDiscountsRequest;
3060
+ type index_gen$q_ListDiscountsRequestOrderBy = ListDiscountsRequestOrderBy;
3061
+ type index_gen$q_ListDiscountsResponse = ListDiscountsResponse;
3062
+ type index_gen$q_ListInvoicesRequest = ListInvoicesRequest;
3063
+ type index_gen$q_ListInvoicesRequestOrderBy = ListInvoicesRequestOrderBy;
3064
+ type index_gen$q_ListInvoicesResponse = ListInvoicesResponse;
3065
+ declare namespace index_gen$q {
3066
+ export { API$r as API, type index_gen$q_Discount as Discount, type index_gen$q_DiscountCoupon as DiscountCoupon, type index_gen$q_DiscountDiscountMode as DiscountDiscountMode, type index_gen$q_DiscountFilter as DiscountFilter, type index_gen$q_DiscountFilterType as DiscountFilterType, type index_gen$q_DownloadInvoiceRequest as DownloadInvoiceRequest, type index_gen$q_DownloadInvoiceRequestFileType as DownloadInvoiceRequestFileType, type index_gen$q_GetConsumptionRequest as GetConsumptionRequest, type index_gen$q_GetConsumptionResponse as GetConsumptionResponse, type index_gen$q_GetConsumptionResponseConsumption as GetConsumptionResponseConsumption, type index_gen$q_Invoice as Invoice, type index_gen$q_InvoiceType as InvoiceType, type index_gen$q_ListDiscountsRequest as ListDiscountsRequest, type index_gen$q_ListDiscountsRequestOrderBy as ListDiscountsRequestOrderBy, type index_gen$q_ListDiscountsResponse as ListDiscountsResponse, type index_gen$q_ListInvoicesRequest as ListInvoicesRequest, type index_gen$q_ListInvoicesRequestOrderBy as ListInvoicesRequestOrderBy, type index_gen$q_ListInvoicesResponse as ListInvoicesResponse };
3035
3067
  }
3036
3068
 
3037
3069
  declare namespace index$t {
3038
- export { index_gen$r as v2alpha1 };
3070
+ export { index_gen$q as v2alpha1 };
3039
3071
  }
3040
3072
 
3041
3073
  type ListSnapshotsRequestOrderBy$2 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
@@ -3243,6 +3275,8 @@ type ListSnapshotsRequest$4 = {
3243
3275
  orderBy?: ListSnapshotsRequestOrderBy$2;
3244
3276
  /** Filter by Project ID. */
3245
3277
  projectId?: string;
3278
+ /** Filter by Organization ID. */
3279
+ organizationId?: string;
3246
3280
  /** Page number. */
3247
3281
  page?: number;
3248
3282
  /**
@@ -3285,6 +3319,8 @@ type ListVolumesRequest$3 = {
3285
3319
  orderBy?: ListVolumesRequestOrderBy$1;
3286
3320
  /** Filter by Project ID. */
3287
3321
  projectId?: string;
3322
+ /** Filter by Organization ID. */
3323
+ organizationId?: string;
3288
3324
  /** Page number. */
3289
3325
  page?: number;
3290
3326
  /**
@@ -3368,7 +3404,7 @@ type UpdateVolumeRequest$2 = {
3368
3404
  *
3369
3405
  * This API allows you to use and manage your Block Storage volumes.
3370
3406
  */
3371
- declare class API$r extends API$w {
3407
+ declare class API$q extends API$v {
3372
3408
  /** Lists the available zones of the API. */
3373
3409
  static readonly LOCALITIES: Zone[];
3374
3410
  protected pageOfListVolumeTypes: (request?: Readonly<ListVolumeTypesRequest$1>) => Promise<ListVolumeTypesResponse>;
@@ -3559,22 +3595,22 @@ declare namespace validationRules_gen$b {
3559
3595
  export { CreateSnapshotRequest$3 as CreateSnapshotRequest, CreateVolumeRequest$2 as CreateVolumeRequest, validationRules_gen$b_ImportSnapshotFromS3Request as ImportSnapshotFromS3Request, ListSnapshotsRequest$3 as ListSnapshotsRequest, validationRules_gen$b_ListVolumeTypesRequest as ListVolumeTypesRequest, ListVolumesRequest$2 as ListVolumesRequest, validationRules_gen$b_Reference as Reference };
3560
3596
  }
3561
3597
 
3562
- type index_gen$q_CreateVolumeRequestFromEmpty = CreateVolumeRequestFromEmpty;
3563
- type index_gen$q_CreateVolumeRequestFromSnapshot = CreateVolumeRequestFromSnapshot;
3564
- type index_gen$q_ListVolumeTypesResponse = ListVolumeTypesResponse;
3565
- declare const index_gen$q_REFERENCE_TRANSIENT_STATUSES: typeof REFERENCE_TRANSIENT_STATUSES;
3566
- type index_gen$q_ReferenceStatus = ReferenceStatus;
3567
- type index_gen$q_ReferenceType = ReferenceType;
3568
- type index_gen$q_SnapshotParentVolume = SnapshotParentVolume;
3569
- type index_gen$q_SnapshotSummary = SnapshotSummary;
3570
- type index_gen$q_VolumeSpecifications = VolumeSpecifications;
3571
- type index_gen$q_VolumeStatus = VolumeStatus;
3572
- declare namespace index_gen$q {
3573
- export { API$r as API, type CreateSnapshotRequest$4 as CreateSnapshotRequest, type CreateVolumeRequest$3 as CreateVolumeRequest, type index_gen$q_CreateVolumeRequestFromEmpty as CreateVolumeRequestFromEmpty, type index_gen$q_CreateVolumeRequestFromSnapshot as CreateVolumeRequestFromSnapshot, type DeleteSnapshotRequest$3 as DeleteSnapshotRequest, type DeleteVolumeRequest$2 as DeleteVolumeRequest, type GetSnapshotRequest$3 as GetSnapshotRequest, type GetVolumeRequest$2 as GetVolumeRequest, type ImportSnapshotFromS3Request$1 as ImportSnapshotFromS3Request, type ListSnapshotsRequest$4 as ListSnapshotsRequest, type ListSnapshotsRequestOrderBy$2 as ListSnapshotsRequestOrderBy, type ListSnapshotsResponse$3 as ListSnapshotsResponse, type ListVolumeTypesRequest$1 as ListVolumeTypesRequest, type index_gen$q_ListVolumeTypesResponse as ListVolumeTypesResponse, type ListVolumesRequest$3 as ListVolumesRequest, type ListVolumesRequestOrderBy$1 as ListVolumesRequestOrderBy, type ListVolumesResponse$2 as ListVolumesResponse, index_gen$q_REFERENCE_TRANSIENT_STATUSES as REFERENCE_TRANSIENT_STATUSES, type Reference$1 as Reference, type index_gen$q_ReferenceStatus as ReferenceStatus, type index_gen$q_ReferenceType as ReferenceType, SNAPSHOT_TRANSIENT_STATUSES$3 as SNAPSHOT_TRANSIENT_STATUSES, type Snapshot$3 as Snapshot, type index_gen$q_SnapshotParentVolume as SnapshotParentVolume, type SnapshotStatus$2 as SnapshotStatus, type index_gen$q_SnapshotSummary as SnapshotSummary, type StorageClass$1 as StorageClass, type UpdateSnapshotRequest$3 as UpdateSnapshotRequest, type UpdateVolumeRequest$2 as UpdateVolumeRequest, VOLUME_TRANSIENT_STATUSES$1 as VOLUME_TRANSIENT_STATUSES, validationRules_gen$b as ValidationRules, type Volume$4 as Volume, type index_gen$q_VolumeSpecifications as VolumeSpecifications, type index_gen$q_VolumeStatus as VolumeStatus, type VolumeType$3 as VolumeType };
3598
+ type index_gen$p_CreateVolumeRequestFromEmpty = CreateVolumeRequestFromEmpty;
3599
+ type index_gen$p_CreateVolumeRequestFromSnapshot = CreateVolumeRequestFromSnapshot;
3600
+ type index_gen$p_ListVolumeTypesResponse = ListVolumeTypesResponse;
3601
+ declare const index_gen$p_REFERENCE_TRANSIENT_STATUSES: typeof REFERENCE_TRANSIENT_STATUSES;
3602
+ type index_gen$p_ReferenceStatus = ReferenceStatus;
3603
+ type index_gen$p_ReferenceType = ReferenceType;
3604
+ type index_gen$p_SnapshotParentVolume = SnapshotParentVolume;
3605
+ type index_gen$p_SnapshotSummary = SnapshotSummary;
3606
+ type index_gen$p_VolumeSpecifications = VolumeSpecifications;
3607
+ type index_gen$p_VolumeStatus = VolumeStatus;
3608
+ declare namespace index_gen$p {
3609
+ export { API$q as API, type CreateSnapshotRequest$4 as CreateSnapshotRequest, type CreateVolumeRequest$3 as CreateVolumeRequest, type index_gen$p_CreateVolumeRequestFromEmpty as CreateVolumeRequestFromEmpty, type index_gen$p_CreateVolumeRequestFromSnapshot as CreateVolumeRequestFromSnapshot, type DeleteSnapshotRequest$3 as DeleteSnapshotRequest, type DeleteVolumeRequest$2 as DeleteVolumeRequest, type GetSnapshotRequest$3 as GetSnapshotRequest, type GetVolumeRequest$2 as GetVolumeRequest, type ImportSnapshotFromS3Request$1 as ImportSnapshotFromS3Request, type ListSnapshotsRequest$4 as ListSnapshotsRequest, type ListSnapshotsRequestOrderBy$2 as ListSnapshotsRequestOrderBy, type ListSnapshotsResponse$3 as ListSnapshotsResponse, type ListVolumeTypesRequest$1 as ListVolumeTypesRequest, type index_gen$p_ListVolumeTypesResponse as ListVolumeTypesResponse, type ListVolumesRequest$3 as ListVolumesRequest, type ListVolumesRequestOrderBy$1 as ListVolumesRequestOrderBy, type ListVolumesResponse$2 as ListVolumesResponse, index_gen$p_REFERENCE_TRANSIENT_STATUSES as REFERENCE_TRANSIENT_STATUSES, type Reference$1 as Reference, type index_gen$p_ReferenceStatus as ReferenceStatus, type index_gen$p_ReferenceType as ReferenceType, SNAPSHOT_TRANSIENT_STATUSES$3 as SNAPSHOT_TRANSIENT_STATUSES, type Snapshot$3 as Snapshot, type index_gen$p_SnapshotParentVolume as SnapshotParentVolume, type SnapshotStatus$2 as SnapshotStatus, type index_gen$p_SnapshotSummary as SnapshotSummary, type StorageClass$1 as StorageClass, type UpdateSnapshotRequest$3 as UpdateSnapshotRequest, type UpdateVolumeRequest$2 as UpdateVolumeRequest, VOLUME_TRANSIENT_STATUSES$1 as VOLUME_TRANSIENT_STATUSES, validationRules_gen$b as ValidationRules, type Volume$4 as Volume, type index_gen$p_VolumeSpecifications as VolumeSpecifications, type index_gen$p_VolumeStatus as VolumeStatus, type VolumeType$3 as VolumeType };
3574
3610
  }
3575
3611
 
3576
3612
  declare namespace index$s {
3577
- export { index_gen$q as v1alpha1 };
3613
+ export { index_gen$p as v1alpha1 };
3578
3614
  }
3579
3615
 
3580
3616
  type CockpitStatus = 'unknown_status' | 'creating' | 'ready' | 'deleting' | 'updating' | 'error';
@@ -3964,7 +4000,7 @@ type TriggerTestAlertRequest = {
3964
4000
  * Scaleway's Cockpit stores metrics and logs and provides a dedicated Grafana
3965
4001
  * for dashboarding to visualize them.
3966
4002
  */
3967
- declare class API$q extends API$w {
4003
+ declare class API$p extends API$v {
3968
4004
  /**
3969
4005
  * Activate the Cockpit of the specified Project ID.
3970
4006
  *
@@ -4171,56 +4207,56 @@ declare class API$q extends API$w {
4171
4207
  /** Lists transient statutes of the enum {@link CockpitStatus}. */
4172
4208
  declare const COCKPIT_TRANSIENT_STATUSES: CockpitStatus[];
4173
4209
 
4174
- type index_gen$p_ActivateCockpitRequest = ActivateCockpitRequest;
4175
- declare const index_gen$p_COCKPIT_TRANSIENT_STATUSES: typeof COCKPIT_TRANSIENT_STATUSES;
4176
- type index_gen$p_Cockpit = Cockpit;
4177
- type index_gen$p_CockpitEndpoints = CockpitEndpoints;
4178
- type index_gen$p_CockpitMetrics = CockpitMetrics;
4179
- type index_gen$p_CockpitStatus = CockpitStatus;
4180
- type index_gen$p_ContactPoint = ContactPoint;
4181
- type index_gen$p_ContactPointEmail = ContactPointEmail;
4182
- type index_gen$p_CreateContactPointRequest = CreateContactPointRequest;
4183
- type index_gen$p_CreateDatasourceRequest = CreateDatasourceRequest;
4184
- type index_gen$p_CreateGrafanaUserRequest = CreateGrafanaUserRequest;
4185
- type index_gen$p_Datasource = Datasource;
4186
- type index_gen$p_DatasourceType = DatasourceType;
4187
- type index_gen$p_DeactivateCockpitRequest = DeactivateCockpitRequest;
4188
- type index_gen$p_DeleteContactPointRequest = DeleteContactPointRequest;
4189
- type index_gen$p_DeleteGrafanaUserRequest = DeleteGrafanaUserRequest;
4190
- type index_gen$p_DisableManagedAlertsRequest = DisableManagedAlertsRequest;
4191
- type index_gen$p_EnableManagedAlertsRequest = EnableManagedAlertsRequest;
4192
- type index_gen$p_GetCockpitMetricsRequest = GetCockpitMetricsRequest;
4193
- type index_gen$p_GetCockpitRequest = GetCockpitRequest;
4194
- type index_gen$p_GetGrafanaProductDashboardRequest = GetGrafanaProductDashboardRequest;
4195
- type index_gen$p_GrafanaProductDashboard = GrafanaProductDashboard;
4196
- type index_gen$p_GrafanaUser = GrafanaUser;
4197
- type index_gen$p_GrafanaUserRole = GrafanaUserRole;
4198
- type index_gen$p_ListContactPointsRequest = ListContactPointsRequest;
4199
- type index_gen$p_ListContactPointsResponse = ListContactPointsResponse;
4200
- type index_gen$p_ListDatasourcesRequest = ListDatasourcesRequest;
4201
- type index_gen$p_ListDatasourcesRequestOrderBy = ListDatasourcesRequestOrderBy;
4202
- type index_gen$p_ListDatasourcesResponse = ListDatasourcesResponse;
4203
- type index_gen$p_ListGrafanaProductDashboardsRequest = ListGrafanaProductDashboardsRequest;
4204
- type index_gen$p_ListGrafanaProductDashboardsResponse = ListGrafanaProductDashboardsResponse;
4205
- type index_gen$p_ListGrafanaUsersRequest = ListGrafanaUsersRequest;
4206
- type index_gen$p_ListGrafanaUsersRequestOrderBy = ListGrafanaUsersRequestOrderBy;
4207
- type index_gen$p_ListGrafanaUsersResponse = ListGrafanaUsersResponse;
4208
- type index_gen$p_ListPlansRequest = ListPlansRequest;
4209
- type index_gen$p_ListPlansRequestOrderBy = ListPlansRequestOrderBy;
4210
- type index_gen$p_ListPlansResponse = ListPlansResponse;
4211
- type index_gen$p_Plan = Plan;
4212
- type index_gen$p_PlanName = PlanName;
4213
- type index_gen$p_ResetGrafanaUserPasswordRequest = ResetGrafanaUserPasswordRequest;
4214
- type index_gen$p_SelectPlanRequest = SelectPlanRequest;
4215
- type index_gen$p_SelectPlanResponse = SelectPlanResponse;
4216
- type index_gen$p_TokenScopes = TokenScopes;
4217
- type index_gen$p_TriggerTestAlertRequest = TriggerTestAlertRequest;
4218
- declare namespace index_gen$p {
4219
- export { API$q as API, type index_gen$p_ActivateCockpitRequest as ActivateCockpitRequest, index_gen$p_COCKPIT_TRANSIENT_STATUSES as COCKPIT_TRANSIENT_STATUSES, type index_gen$p_Cockpit as Cockpit, type index_gen$p_CockpitEndpoints as CockpitEndpoints, type index_gen$p_CockpitMetrics as CockpitMetrics, type index_gen$p_CockpitStatus as CockpitStatus, type index_gen$p_ContactPoint as ContactPoint, type index_gen$p_ContactPointEmail as ContactPointEmail, type index_gen$p_CreateContactPointRequest as CreateContactPointRequest, type index_gen$p_CreateDatasourceRequest as CreateDatasourceRequest, type index_gen$p_CreateGrafanaUserRequest as CreateGrafanaUserRequest, type CreateTokenRequest$2 as CreateTokenRequest, type index_gen$p_Datasource as Datasource, type index_gen$p_DatasourceType as DatasourceType, type index_gen$p_DeactivateCockpitRequest as DeactivateCockpitRequest, type index_gen$p_DeleteContactPointRequest as DeleteContactPointRequest, type index_gen$p_DeleteGrafanaUserRequest as DeleteGrafanaUserRequest, type DeleteTokenRequest$2 as DeleteTokenRequest, type index_gen$p_DisableManagedAlertsRequest as DisableManagedAlertsRequest, type index_gen$p_EnableManagedAlertsRequest as EnableManagedAlertsRequest, type index_gen$p_GetCockpitMetricsRequest as GetCockpitMetricsRequest, type index_gen$p_GetCockpitRequest as GetCockpitRequest, type index_gen$p_GetGrafanaProductDashboardRequest as GetGrafanaProductDashboardRequest, type GetTokenRequest$2 as GetTokenRequest, type index_gen$p_GrafanaProductDashboard as GrafanaProductDashboard, type index_gen$p_GrafanaUser as GrafanaUser, type index_gen$p_GrafanaUserRole as GrafanaUserRole, type index_gen$p_ListContactPointsRequest as ListContactPointsRequest, type index_gen$p_ListContactPointsResponse as ListContactPointsResponse, type index_gen$p_ListDatasourcesRequest as ListDatasourcesRequest, type index_gen$p_ListDatasourcesRequestOrderBy as ListDatasourcesRequestOrderBy, type index_gen$p_ListDatasourcesResponse as ListDatasourcesResponse, type index_gen$p_ListGrafanaProductDashboardsRequest as ListGrafanaProductDashboardsRequest, type index_gen$p_ListGrafanaProductDashboardsResponse as ListGrafanaProductDashboardsResponse, type index_gen$p_ListGrafanaUsersRequest as ListGrafanaUsersRequest, type index_gen$p_ListGrafanaUsersRequestOrderBy as ListGrafanaUsersRequestOrderBy, type index_gen$p_ListGrafanaUsersResponse as ListGrafanaUsersResponse, type index_gen$p_ListPlansRequest as ListPlansRequest, type index_gen$p_ListPlansRequestOrderBy as ListPlansRequestOrderBy, type index_gen$p_ListPlansResponse as ListPlansResponse, type ListTokensRequest$2 as ListTokensRequest, type ListTokensRequestOrderBy$2 as ListTokensRequestOrderBy, type ListTokensResponse$2 as ListTokensResponse, type index_gen$p_Plan as Plan, type index_gen$p_PlanName as PlanName, type index_gen$p_ResetGrafanaUserPasswordRequest as ResetGrafanaUserPasswordRequest, type index_gen$p_SelectPlanRequest as SelectPlanRequest, type index_gen$p_SelectPlanResponse as SelectPlanResponse, type Token$2 as Token, type index_gen$p_TokenScopes as TokenScopes, type index_gen$p_TriggerTestAlertRequest as TriggerTestAlertRequest };
4210
+ type index_gen$o_ActivateCockpitRequest = ActivateCockpitRequest;
4211
+ declare const index_gen$o_COCKPIT_TRANSIENT_STATUSES: typeof COCKPIT_TRANSIENT_STATUSES;
4212
+ type index_gen$o_Cockpit = Cockpit;
4213
+ type index_gen$o_CockpitEndpoints = CockpitEndpoints;
4214
+ type index_gen$o_CockpitMetrics = CockpitMetrics;
4215
+ type index_gen$o_CockpitStatus = CockpitStatus;
4216
+ type index_gen$o_ContactPoint = ContactPoint;
4217
+ type index_gen$o_ContactPointEmail = ContactPointEmail;
4218
+ type index_gen$o_CreateContactPointRequest = CreateContactPointRequest;
4219
+ type index_gen$o_CreateDatasourceRequest = CreateDatasourceRequest;
4220
+ type index_gen$o_CreateGrafanaUserRequest = CreateGrafanaUserRequest;
4221
+ type index_gen$o_Datasource = Datasource;
4222
+ type index_gen$o_DatasourceType = DatasourceType;
4223
+ type index_gen$o_DeactivateCockpitRequest = DeactivateCockpitRequest;
4224
+ type index_gen$o_DeleteContactPointRequest = DeleteContactPointRequest;
4225
+ type index_gen$o_DeleteGrafanaUserRequest = DeleteGrafanaUserRequest;
4226
+ type index_gen$o_DisableManagedAlertsRequest = DisableManagedAlertsRequest;
4227
+ type index_gen$o_EnableManagedAlertsRequest = EnableManagedAlertsRequest;
4228
+ type index_gen$o_GetCockpitMetricsRequest = GetCockpitMetricsRequest;
4229
+ type index_gen$o_GetCockpitRequest = GetCockpitRequest;
4230
+ type index_gen$o_GetGrafanaProductDashboardRequest = GetGrafanaProductDashboardRequest;
4231
+ type index_gen$o_GrafanaProductDashboard = GrafanaProductDashboard;
4232
+ type index_gen$o_GrafanaUser = GrafanaUser;
4233
+ type index_gen$o_GrafanaUserRole = GrafanaUserRole;
4234
+ type index_gen$o_ListContactPointsRequest = ListContactPointsRequest;
4235
+ type index_gen$o_ListContactPointsResponse = ListContactPointsResponse;
4236
+ type index_gen$o_ListDatasourcesRequest = ListDatasourcesRequest;
4237
+ type index_gen$o_ListDatasourcesRequestOrderBy = ListDatasourcesRequestOrderBy;
4238
+ type index_gen$o_ListDatasourcesResponse = ListDatasourcesResponse;
4239
+ type index_gen$o_ListGrafanaProductDashboardsRequest = ListGrafanaProductDashboardsRequest;
4240
+ type index_gen$o_ListGrafanaProductDashboardsResponse = ListGrafanaProductDashboardsResponse;
4241
+ type index_gen$o_ListGrafanaUsersRequest = ListGrafanaUsersRequest;
4242
+ type index_gen$o_ListGrafanaUsersRequestOrderBy = ListGrafanaUsersRequestOrderBy;
4243
+ type index_gen$o_ListGrafanaUsersResponse = ListGrafanaUsersResponse;
4244
+ type index_gen$o_ListPlansRequest = ListPlansRequest;
4245
+ type index_gen$o_ListPlansRequestOrderBy = ListPlansRequestOrderBy;
4246
+ type index_gen$o_ListPlansResponse = ListPlansResponse;
4247
+ type index_gen$o_Plan = Plan;
4248
+ type index_gen$o_PlanName = PlanName;
4249
+ type index_gen$o_ResetGrafanaUserPasswordRequest = ResetGrafanaUserPasswordRequest;
4250
+ type index_gen$o_SelectPlanRequest = SelectPlanRequest;
4251
+ type index_gen$o_SelectPlanResponse = SelectPlanResponse;
4252
+ type index_gen$o_TokenScopes = TokenScopes;
4253
+ type index_gen$o_TriggerTestAlertRequest = TriggerTestAlertRequest;
4254
+ declare namespace index_gen$o {
4255
+ export { API$p as API, type index_gen$o_ActivateCockpitRequest as ActivateCockpitRequest, index_gen$o_COCKPIT_TRANSIENT_STATUSES as COCKPIT_TRANSIENT_STATUSES, type index_gen$o_Cockpit as Cockpit, type index_gen$o_CockpitEndpoints as CockpitEndpoints, type index_gen$o_CockpitMetrics as CockpitMetrics, type index_gen$o_CockpitStatus as CockpitStatus, type index_gen$o_ContactPoint as ContactPoint, type index_gen$o_ContactPointEmail as ContactPointEmail, type index_gen$o_CreateContactPointRequest as CreateContactPointRequest, type index_gen$o_CreateDatasourceRequest as CreateDatasourceRequest, type index_gen$o_CreateGrafanaUserRequest as CreateGrafanaUserRequest, type CreateTokenRequest$2 as CreateTokenRequest, type index_gen$o_Datasource as Datasource, type index_gen$o_DatasourceType as DatasourceType, type index_gen$o_DeactivateCockpitRequest as DeactivateCockpitRequest, type index_gen$o_DeleteContactPointRequest as DeleteContactPointRequest, type index_gen$o_DeleteGrafanaUserRequest as DeleteGrafanaUserRequest, type DeleteTokenRequest$2 as DeleteTokenRequest, type index_gen$o_DisableManagedAlertsRequest as DisableManagedAlertsRequest, type index_gen$o_EnableManagedAlertsRequest as EnableManagedAlertsRequest, type index_gen$o_GetCockpitMetricsRequest as GetCockpitMetricsRequest, type index_gen$o_GetCockpitRequest as GetCockpitRequest, type index_gen$o_GetGrafanaProductDashboardRequest as GetGrafanaProductDashboardRequest, type GetTokenRequest$2 as GetTokenRequest, type index_gen$o_GrafanaProductDashboard as GrafanaProductDashboard, type index_gen$o_GrafanaUser as GrafanaUser, type index_gen$o_GrafanaUserRole as GrafanaUserRole, type index_gen$o_ListContactPointsRequest as ListContactPointsRequest, type index_gen$o_ListContactPointsResponse as ListContactPointsResponse, type index_gen$o_ListDatasourcesRequest as ListDatasourcesRequest, type index_gen$o_ListDatasourcesRequestOrderBy as ListDatasourcesRequestOrderBy, type index_gen$o_ListDatasourcesResponse as ListDatasourcesResponse, type index_gen$o_ListGrafanaProductDashboardsRequest as ListGrafanaProductDashboardsRequest, type index_gen$o_ListGrafanaProductDashboardsResponse as ListGrafanaProductDashboardsResponse, type index_gen$o_ListGrafanaUsersRequest as ListGrafanaUsersRequest, type index_gen$o_ListGrafanaUsersRequestOrderBy as ListGrafanaUsersRequestOrderBy, type index_gen$o_ListGrafanaUsersResponse as ListGrafanaUsersResponse, type index_gen$o_ListPlansRequest as ListPlansRequest, type index_gen$o_ListPlansRequestOrderBy as ListPlansRequestOrderBy, type index_gen$o_ListPlansResponse as ListPlansResponse, type ListTokensRequest$2 as ListTokensRequest, type ListTokensRequestOrderBy$2 as ListTokensRequestOrderBy, type ListTokensResponse$2 as ListTokensResponse, type index_gen$o_Plan as Plan, type index_gen$o_PlanName as PlanName, type index_gen$o_ResetGrafanaUserPasswordRequest as ResetGrafanaUserPasswordRequest, type index_gen$o_SelectPlanRequest as SelectPlanRequest, type index_gen$o_SelectPlanResponse as SelectPlanResponse, type Token$2 as Token, type index_gen$o_TokenScopes as TokenScopes, type index_gen$o_TriggerTestAlertRequest as TriggerTestAlertRequest };
4220
4256
  }
4221
4257
 
4222
4258
  declare namespace index$r {
4223
- export { index_gen$p as v1beta1 };
4259
+ export { index_gen$o as v1beta1 };
4224
4260
  }
4225
4261
 
4226
4262
  type ContainerHttpOption = 'unknown_http_option' | 'enabled' | 'redirected';
@@ -4233,7 +4269,7 @@ type ListContainersRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name
4233
4269
  type ListCronsRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
4234
4270
  type ListDomainsRequestOrderBy$2 = 'created_at_asc' | 'created_at_desc' | 'hostname_asc' | 'hostname_desc';
4235
4271
  type ListLogsRequestOrderBy$2 = 'timestamp_desc' | 'timestamp_asc';
4236
- type ListNamespacesRequestOrderBy$3 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
4272
+ type ListNamespacesRequestOrderBy$2 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
4237
4273
  type ListTokensRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
4238
4274
  type ListTriggersRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
4239
4275
  type LogStream$1 = 'unknown' | 'stdout' | 'stderr';
@@ -4407,7 +4443,7 @@ interface Log$2 {
4407
4443
  /** Can be stdout or stderr. */
4408
4444
  stream: LogStream$1;
4409
4445
  }
4410
- interface Namespace$3 {
4446
+ interface Namespace$2 {
4411
4447
  /** UUID of the namespace. */
4412
4448
  id: string;
4413
4449
  /** Name of the namespace. */
@@ -4574,7 +4610,7 @@ type CreateDomainRequest$2 = {
4574
4610
  /** UUID of the container to assign the domain to. */
4575
4611
  containerId: string;
4576
4612
  };
4577
- type CreateNamespaceRequest$3 = {
4613
+ type CreateNamespaceRequest$2 = {
4578
4614
  /**
4579
4615
  * Region to target. If none is passed will use default region from the
4580
4616
  * config.
@@ -4675,7 +4711,7 @@ type DeleteDomainRequest$1 = {
4675
4711
  /** UUID of the domain to delete. */
4676
4712
  domainId: string;
4677
4713
  };
4678
- type DeleteNamespaceRequest$3 = {
4714
+ type DeleteNamespaceRequest$2 = {
4679
4715
  /**
4680
4716
  * Region to target. If none is passed will use default region from the
4681
4717
  * config.
@@ -4738,7 +4774,7 @@ type GetDomainRequest$2 = {
4738
4774
  /** UUID of the domain to get. */
4739
4775
  domainId: string;
4740
4776
  };
4741
- type GetNamespaceRequest$3 = {
4777
+ type GetNamespaceRequest$2 = {
4742
4778
  /**
4743
4779
  * Region to target. If none is passed will use default region from the
4744
4780
  * config.
@@ -4865,7 +4901,7 @@ interface ListLogsResponse$2 {
4865
4901
  logs: Log$2[];
4866
4902
  totalCount: number;
4867
4903
  }
4868
- type ListNamespacesRequest$3 = {
4904
+ type ListNamespacesRequest$2 = {
4869
4905
  /**
4870
4906
  * Region to target. If none is passed will use default region from the
4871
4907
  * config.
@@ -4876,7 +4912,7 @@ type ListNamespacesRequest$3 = {
4876
4912
  /** Number of namespaces per page. */
4877
4913
  pageSize?: number;
4878
4914
  /** Order of the namespaces. */
4879
- orderBy?: ListNamespacesRequestOrderBy$3;
4915
+ orderBy?: ListNamespacesRequestOrderBy$2;
4880
4916
  /** Name of the namespaces. */
4881
4917
  name?: string;
4882
4918
  /** UUID of the Organization the namespace belongs to. */
@@ -4884,9 +4920,9 @@ type ListNamespacesRequest$3 = {
4884
4920
  /** UUID of the Project the namespace belongs to. */
4885
4921
  projectId?: string;
4886
4922
  };
4887
- interface ListNamespacesResponse$3 {
4923
+ interface ListNamespacesResponse$2 {
4888
4924
  /** Array of the namespaces. */
4889
- namespaces: Namespace$3[];
4925
+ namespaces: Namespace$2[];
4890
4926
  /** Total number of namespaces. */
4891
4927
  totalCount: number;
4892
4928
  }
@@ -5013,7 +5049,7 @@ type UpdateCronRequest$1 = {
5013
5049
  /** Name of the cron. */
5014
5050
  name?: string;
5015
5051
  };
5016
- type UpdateNamespaceRequest$3 = {
5052
+ type UpdateNamespaceRequest$2 = {
5017
5053
  /**
5018
5054
  * Region to target. If none is passed will use default region from the
5019
5055
  * config.
@@ -5049,19 +5085,19 @@ type UpdateTriggerRequest$3 = {
5049
5085
  };
5050
5086
 
5051
5087
  /** Serverless Containers API. */
5052
- declare class API$p extends API$w {
5088
+ declare class API$o extends API$v {
5053
5089
  /** Lists the available regions of the API. */
5054
5090
  static readonly LOCALITIES: Region[];
5055
- protected pageOfListNamespaces: (request?: Readonly<ListNamespacesRequest$3>) => Promise<ListNamespacesResponse$3>;
5091
+ protected pageOfListNamespaces: (request?: Readonly<ListNamespacesRequest$2>) => Promise<ListNamespacesResponse$2>;
5056
5092
  /**
5057
5093
  * List all your namespaces. List all namespaces in a specified region.
5058
5094
  *
5059
5095
  * @param request - The request {@link ListNamespacesRequest}
5060
5096
  * @returns A Promise of ListNamespacesResponse
5061
5097
  */
5062
- listNamespaces: (request?: Readonly<ListNamespacesRequest$3>) => Promise<ListNamespacesResponse$3> & {
5063
- all: () => Promise<Namespace$3[]>;
5064
- [Symbol.asyncIterator]: () => AsyncGenerator<Namespace$3[], void, void>;
5098
+ listNamespaces: (request?: Readonly<ListNamespacesRequest$2>) => Promise<ListNamespacesResponse$2> & {
5099
+ all: () => Promise<Namespace$2[]>;
5100
+ [Symbol.asyncIterator]: () => AsyncGenerator<Namespace$2[], void, void>;
5065
5101
  };
5066
5102
  /**
5067
5103
  * Get a namespace. Get the namespace associated with the specified ID.
@@ -5069,7 +5105,7 @@ declare class API$p extends API$w {
5069
5105
  * @param request - The request {@link GetNamespaceRequest}
5070
5106
  * @returns A Promise of Namespace
5071
5107
  */
5072
- getNamespace: (request: Readonly<GetNamespaceRequest$3>) => Promise<Namespace$3>;
5108
+ getNamespace: (request: Readonly<GetNamespaceRequest$2>) => Promise<Namespace$2>;
5073
5109
  /**
5074
5110
  * Waits for {@link Namespace} to be in a final state.
5075
5111
  *
@@ -5077,14 +5113,14 @@ declare class API$p extends API$w {
5077
5113
  * @param options - The waiting options
5078
5114
  * @returns A Promise of Namespace
5079
5115
  */
5080
- waitForNamespace: (request: Readonly<GetNamespaceRequest$3>, options?: Readonly<WaitForOptions<Namespace$3>>) => Promise<Namespace$3>;
5116
+ waitForNamespace: (request: Readonly<GetNamespaceRequest$2>, options?: Readonly<WaitForOptions<Namespace$2>>) => Promise<Namespace$2>;
5081
5117
  /**
5082
5118
  * Create a new namespace. Create a new namespace in a specified region.
5083
5119
  *
5084
5120
  * @param request - The request {@link CreateNamespaceRequest}
5085
5121
  * @returns A Promise of Namespace
5086
5122
  */
5087
- createNamespace: (request?: Readonly<CreateNamespaceRequest$3>) => Promise<Namespace$3>;
5123
+ createNamespace: (request?: Readonly<CreateNamespaceRequest$2>) => Promise<Namespace$2>;
5088
5124
  /**
5089
5125
  * Update an existing namespace. Update the space associated with the
5090
5126
  * specified ID.
@@ -5092,7 +5128,7 @@ declare class API$p extends API$w {
5092
5128
  * @param request - The request {@link UpdateNamespaceRequest}
5093
5129
  * @returns A Promise of Namespace
5094
5130
  */
5095
- updateNamespace: (request: Readonly<UpdateNamespaceRequest$3>) => Promise<Namespace$3>;
5131
+ updateNamespace: (request: Readonly<UpdateNamespaceRequest$2>) => Promise<Namespace$2>;
5096
5132
  /**
5097
5133
  * Delete an existing namespace. Delete the namespace associated with the
5098
5134
  * specified ID.
@@ -5100,7 +5136,7 @@ declare class API$p extends API$w {
5100
5136
  * @param request - The request {@link DeleteNamespaceRequest}
5101
5137
  * @returns A Promise of Namespace
5102
5138
  */
5103
- deleteNamespace: (request: Readonly<DeleteNamespaceRequest$3>) => Promise<Namespace$3>;
5139
+ deleteNamespace: (request: Readonly<DeleteNamespaceRequest$2>) => Promise<Namespace$2>;
5104
5140
  protected pageOfListContainers: (request: Readonly<ListContainersRequest>) => Promise<ListContainersResponse>;
5105
5141
  /**
5106
5142
  * List all your containers. List all containers for a specified region.
@@ -5415,26 +5451,26 @@ declare namespace validationRules_gen$a {
5415
5451
  export { CreateTriggerRequest$2 as CreateTriggerRequest, CreateTriggerRequestMnqNatsClientConfig$2 as CreateTriggerRequestMnqNatsClientConfig, CreateTriggerRequestMnqSqsClientConfig$2 as CreateTriggerRequestMnqSqsClientConfig, UpdateTriggerRequest$2 as UpdateTriggerRequest };
5416
5452
  }
5417
5453
 
5418
- declare const index_gen$o_CONTAINER_TRANSIENT_STATUSES: typeof CONTAINER_TRANSIENT_STATUSES;
5419
- type index_gen$o_Container = Container;
5420
- type index_gen$o_ContainerHttpOption = ContainerHttpOption;
5421
- type index_gen$o_ContainerPrivacy = ContainerPrivacy;
5422
- type index_gen$o_ContainerProtocol = ContainerProtocol;
5423
- type index_gen$o_ContainerStatus = ContainerStatus;
5424
- type index_gen$o_CreateContainerRequest = CreateContainerRequest;
5425
- type index_gen$o_DeleteContainerRequest = DeleteContainerRequest;
5426
- type index_gen$o_DeployContainerRequest = DeployContainerRequest;
5427
- type index_gen$o_GetContainerRequest = GetContainerRequest;
5428
- type index_gen$o_ListContainersRequest = ListContainersRequest;
5429
- type index_gen$o_ListContainersRequestOrderBy = ListContainersRequestOrderBy;
5430
- type index_gen$o_ListContainersResponse = ListContainersResponse;
5431
- type index_gen$o_UpdateContainerRequest = UpdateContainerRequest;
5432
- declare namespace index_gen$o {
5433
- export { API$p as API, index_gen$o_CONTAINER_TRANSIENT_STATUSES as CONTAINER_TRANSIENT_STATUSES, CRON_TRANSIENT_STATUSES$1 as CRON_TRANSIENT_STATUSES, type index_gen$o_Container as Container, type index_gen$o_ContainerHttpOption as ContainerHttpOption, type index_gen$o_ContainerPrivacy as ContainerPrivacy, type index_gen$o_ContainerProtocol as ContainerProtocol, type index_gen$o_ContainerStatus as ContainerStatus, type index_gen$o_CreateContainerRequest as CreateContainerRequest, type CreateCronRequest$1 as CreateCronRequest, type CreateDomainRequest$2 as CreateDomainRequest, type CreateNamespaceRequest$3 as CreateNamespaceRequest, type CreateTokenRequest$1 as CreateTokenRequest, type CreateTriggerRequest$3 as CreateTriggerRequest, type CreateTriggerRequestMnqNatsClientConfig$3 as CreateTriggerRequestMnqNatsClientConfig, type CreateTriggerRequestMnqSqsClientConfig$3 as CreateTriggerRequestMnqSqsClientConfig, type CreateTriggerRequestSqsClientConfig$1 as CreateTriggerRequestSqsClientConfig, type Cron$1 as Cron, type CronStatus$1 as CronStatus, DOMAIN_TRANSIENT_STATUSES$3 as DOMAIN_TRANSIENT_STATUSES, type index_gen$o_DeleteContainerRequest as DeleteContainerRequest, type DeleteCronRequest$1 as DeleteCronRequest, type DeleteDomainRequest$1 as DeleteDomainRequest, type DeleteNamespaceRequest$3 as DeleteNamespaceRequest, type DeleteTokenRequest$1 as DeleteTokenRequest, type DeleteTriggerRequest$1 as DeleteTriggerRequest, type index_gen$o_DeployContainerRequest as DeployContainerRequest, type Domain$3 as Domain, type DomainStatus$3 as DomainStatus, type index_gen$o_GetContainerRequest as GetContainerRequest, type GetCronRequest$1 as GetCronRequest, type GetDomainRequest$2 as GetDomainRequest, type GetNamespaceRequest$3 as GetNamespaceRequest, type GetTokenRequest$1 as GetTokenRequest, type GetTriggerRequest$1 as GetTriggerRequest, type IssueJWTRequest$1 as IssueJWTRequest, type index_gen$o_ListContainersRequest as ListContainersRequest, type index_gen$o_ListContainersRequestOrderBy as ListContainersRequestOrderBy, type index_gen$o_ListContainersResponse as ListContainersResponse, type ListCronsRequest$1 as ListCronsRequest, type ListCronsRequestOrderBy$1 as ListCronsRequestOrderBy, type ListCronsResponse$1 as ListCronsResponse, type ListDomainsRequest$2 as ListDomainsRequest, type ListDomainsRequestOrderBy$2 as ListDomainsRequestOrderBy, type ListDomainsResponse$3 as ListDomainsResponse, type ListLogsRequest$3 as ListLogsRequest, type ListLogsRequestOrderBy$2 as ListLogsRequestOrderBy, type ListLogsResponse$2 as ListLogsResponse, type ListNamespacesRequest$3 as ListNamespacesRequest, type ListNamespacesRequestOrderBy$3 as ListNamespacesRequestOrderBy, type ListNamespacesResponse$3 as ListNamespacesResponse, type ListTokensRequest$1 as ListTokensRequest, type ListTokensRequestOrderBy$1 as ListTokensRequestOrderBy, type ListTokensResponse$1 as ListTokensResponse, type ListTriggersRequest$1 as ListTriggersRequest, type ListTriggersRequestOrderBy$1 as ListTriggersRequestOrderBy, type ListTriggersResponse$1 as ListTriggersResponse, type Log$2 as Log, type LogStream$1 as LogStream, NAMESPACE_TRANSIENT_STATUSES$2 as NAMESPACE_TRANSIENT_STATUSES, type Namespace$3 as Namespace, type NamespaceStatus$2 as NamespaceStatus, type Secret$2 as Secret, type SecretHashedValue$1 as SecretHashedValue, TOKEN_TRANSIENT_STATUSES$1 as TOKEN_TRANSIENT_STATUSES, TRIGGER_TRANSIENT_STATUSES$1 as TRIGGER_TRANSIENT_STATUSES, type Token$1 as Token, type TokenStatus$1 as TokenStatus, type Trigger$1 as Trigger, type TriggerInputType$1 as TriggerInputType, type TriggerMnqNatsClientConfig$1 as TriggerMnqNatsClientConfig, type TriggerMnqSqsClientConfig$1 as TriggerMnqSqsClientConfig, type TriggerSqsClientConfig$1 as TriggerSqsClientConfig, type TriggerStatus$1 as TriggerStatus, type index_gen$o_UpdateContainerRequest as UpdateContainerRequest, type UpdateCronRequest$1 as UpdateCronRequest, type UpdateNamespaceRequest$3 as UpdateNamespaceRequest, type UpdateTriggerRequest$3 as UpdateTriggerRequest, type UpdateTriggerRequestSqsClientConfig$1 as UpdateTriggerRequestSqsClientConfig, validationRules_gen$a as ValidationRules };
5454
+ declare const index_gen$n_CONTAINER_TRANSIENT_STATUSES: typeof CONTAINER_TRANSIENT_STATUSES;
5455
+ type index_gen$n_Container = Container;
5456
+ type index_gen$n_ContainerHttpOption = ContainerHttpOption;
5457
+ type index_gen$n_ContainerPrivacy = ContainerPrivacy;
5458
+ type index_gen$n_ContainerProtocol = ContainerProtocol;
5459
+ type index_gen$n_ContainerStatus = ContainerStatus;
5460
+ type index_gen$n_CreateContainerRequest = CreateContainerRequest;
5461
+ type index_gen$n_DeleteContainerRequest = DeleteContainerRequest;
5462
+ type index_gen$n_DeployContainerRequest = DeployContainerRequest;
5463
+ type index_gen$n_GetContainerRequest = GetContainerRequest;
5464
+ type index_gen$n_ListContainersRequest = ListContainersRequest;
5465
+ type index_gen$n_ListContainersRequestOrderBy = ListContainersRequestOrderBy;
5466
+ type index_gen$n_ListContainersResponse = ListContainersResponse;
5467
+ type index_gen$n_UpdateContainerRequest = UpdateContainerRequest;
5468
+ declare namespace index_gen$n {
5469
+ export { API$o as API, index_gen$n_CONTAINER_TRANSIENT_STATUSES as CONTAINER_TRANSIENT_STATUSES, CRON_TRANSIENT_STATUSES$1 as CRON_TRANSIENT_STATUSES, type index_gen$n_Container as Container, type index_gen$n_ContainerHttpOption as ContainerHttpOption, type index_gen$n_ContainerPrivacy as ContainerPrivacy, type index_gen$n_ContainerProtocol as ContainerProtocol, type index_gen$n_ContainerStatus as ContainerStatus, type index_gen$n_CreateContainerRequest as CreateContainerRequest, type CreateCronRequest$1 as CreateCronRequest, type CreateDomainRequest$2 as CreateDomainRequest, type CreateNamespaceRequest$2 as CreateNamespaceRequest, type CreateTokenRequest$1 as CreateTokenRequest, type CreateTriggerRequest$3 as CreateTriggerRequest, type CreateTriggerRequestMnqNatsClientConfig$3 as CreateTriggerRequestMnqNatsClientConfig, type CreateTriggerRequestMnqSqsClientConfig$3 as CreateTriggerRequestMnqSqsClientConfig, type CreateTriggerRequestSqsClientConfig$1 as CreateTriggerRequestSqsClientConfig, type Cron$1 as Cron, type CronStatus$1 as CronStatus, DOMAIN_TRANSIENT_STATUSES$3 as DOMAIN_TRANSIENT_STATUSES, type index_gen$n_DeleteContainerRequest as DeleteContainerRequest, type DeleteCronRequest$1 as DeleteCronRequest, type DeleteDomainRequest$1 as DeleteDomainRequest, type DeleteNamespaceRequest$2 as DeleteNamespaceRequest, type DeleteTokenRequest$1 as DeleteTokenRequest, type DeleteTriggerRequest$1 as DeleteTriggerRequest, type index_gen$n_DeployContainerRequest as DeployContainerRequest, type Domain$3 as Domain, type DomainStatus$3 as DomainStatus, type index_gen$n_GetContainerRequest as GetContainerRequest, type GetCronRequest$1 as GetCronRequest, type GetDomainRequest$2 as GetDomainRequest, type GetNamespaceRequest$2 as GetNamespaceRequest, type GetTokenRequest$1 as GetTokenRequest, type GetTriggerRequest$1 as GetTriggerRequest, type IssueJWTRequest$1 as IssueJWTRequest, type index_gen$n_ListContainersRequest as ListContainersRequest, type index_gen$n_ListContainersRequestOrderBy as ListContainersRequestOrderBy, type index_gen$n_ListContainersResponse as ListContainersResponse, type ListCronsRequest$1 as ListCronsRequest, type ListCronsRequestOrderBy$1 as ListCronsRequestOrderBy, type ListCronsResponse$1 as ListCronsResponse, type ListDomainsRequest$2 as ListDomainsRequest, type ListDomainsRequestOrderBy$2 as ListDomainsRequestOrderBy, type ListDomainsResponse$3 as ListDomainsResponse, type ListLogsRequest$3 as ListLogsRequest, type ListLogsRequestOrderBy$2 as ListLogsRequestOrderBy, type ListLogsResponse$2 as ListLogsResponse, type ListNamespacesRequest$2 as ListNamespacesRequest, type ListNamespacesRequestOrderBy$2 as ListNamespacesRequestOrderBy, type ListNamespacesResponse$2 as ListNamespacesResponse, type ListTokensRequest$1 as ListTokensRequest, type ListTokensRequestOrderBy$1 as ListTokensRequestOrderBy, type ListTokensResponse$1 as ListTokensResponse, type ListTriggersRequest$1 as ListTriggersRequest, type ListTriggersRequestOrderBy$1 as ListTriggersRequestOrderBy, type ListTriggersResponse$1 as ListTriggersResponse, type Log$2 as Log, type LogStream$1 as LogStream, NAMESPACE_TRANSIENT_STATUSES$2 as NAMESPACE_TRANSIENT_STATUSES, type Namespace$2 as Namespace, type NamespaceStatus$2 as NamespaceStatus, type Secret$2 as Secret, type SecretHashedValue$1 as SecretHashedValue, TOKEN_TRANSIENT_STATUSES$1 as TOKEN_TRANSIENT_STATUSES, TRIGGER_TRANSIENT_STATUSES$1 as TRIGGER_TRANSIENT_STATUSES, type Token$1 as Token, type TokenStatus$1 as TokenStatus, type Trigger$1 as Trigger, type TriggerInputType$1 as TriggerInputType, type TriggerMnqNatsClientConfig$1 as TriggerMnqNatsClientConfig, type TriggerMnqSqsClientConfig$1 as TriggerMnqSqsClientConfig, type TriggerSqsClientConfig$1 as TriggerSqsClientConfig, type TriggerStatus$1 as TriggerStatus, type index_gen$n_UpdateContainerRequest as UpdateContainerRequest, type UpdateCronRequest$1 as UpdateCronRequest, type UpdateNamespaceRequest$2 as UpdateNamespaceRequest, type UpdateTriggerRequest$3 as UpdateTriggerRequest, type UpdateTriggerRequestSqsClientConfig$1 as UpdateTriggerRequestSqsClientConfig, validationRules_gen$a as ValidationRules };
5434
5470
  }
5435
5471
 
5436
5472
  declare namespace index$q {
5437
- export { index_gen$o as v1beta1 };
5473
+ export { index_gen$n as v1beta1 };
5438
5474
  }
5439
5475
 
5440
5476
  type ACLRuleAction$1 = 'allow' | 'deny';
@@ -6645,7 +6681,7 @@ type UpgradeInstanceRequest$1 = {
6645
6681
  };
6646
6682
 
6647
6683
  /** Managed Document Databases API. */
6648
- declare class API$o extends API$w {
6684
+ declare class API$n extends API$v {
6649
6685
  /** Lists the available regions of the API. */
6650
6686
  static readonly LOCALITIES: Region[];
6651
6687
  protected pageOfListDatabaseEngines: (request?: Readonly<ListDatabaseEnginesRequest$1>) => Promise<ListDatabaseEnginesResponse$1>;
@@ -7193,12 +7229,12 @@ declare namespace validationRules_gen$9 {
7193
7229
  export { UpdateInstanceRequest$2 as UpdateInstanceRequest };
7194
7230
  }
7195
7231
 
7196
- declare namespace index_gen$n {
7197
- export { type ACLRule$2 as ACLRule, type ACLRuleAction$1 as ACLRuleAction, type ACLRuleDirection$1 as ACLRuleDirection, type ACLRuleProtocol$1 as ACLRuleProtocol, type ACLRuleRequest$1 as ACLRuleRequest, API$o as API, type AddInstanceACLRulesRequest$1 as AddInstanceACLRulesRequest, type AddInstanceACLRulesResponse$1 as AddInstanceACLRulesResponse, type AddInstanceSettingsRequest$1 as AddInstanceSettingsRequest, type AddInstanceSettingsResponse$1 as AddInstanceSettingsResponse, type BackupSchedule$1 as BackupSchedule, type CloneInstanceRequest$1 as CloneInstanceRequest, type CreateDatabaseRequest$1 as CreateDatabaseRequest, type CreateEndpointRequest$1 as CreateEndpointRequest, type CreateInstanceFromSnapshotRequest$1 as CreateInstanceFromSnapshotRequest, type CreateInstanceRequest$1 as CreateInstanceRequest, type CreateReadReplicaEndpointRequest$1 as CreateReadReplicaEndpointRequest, type CreateReadReplicaRequest$1 as CreateReadReplicaRequest, type CreateSnapshotRequest$2 as CreateSnapshotRequest, type CreateUserRequest$2 as CreateUserRequest, type Database$1 as Database, type DatabaseEngine$1 as DatabaseEngine, type DeleteDatabaseRequest$1 as DeleteDatabaseRequest, type DeleteEndpointRequest$2 as DeleteEndpointRequest, type DeleteInstanceACLRulesRequest$1 as DeleteInstanceACLRulesRequest, type DeleteInstanceACLRulesResponse$1 as DeleteInstanceACLRulesResponse, type DeleteInstanceRequest$1 as DeleteInstanceRequest, type DeleteInstanceSettingsRequest$1 as DeleteInstanceSettingsRequest, type DeleteInstanceSettingsResponse$1 as DeleteInstanceSettingsResponse, type DeleteReadReplicaRequest$1 as DeleteReadReplicaRequest, type DeleteSnapshotRequest$2 as DeleteSnapshotRequest, type DeleteUserRequest$2 as DeleteUserRequest, type Endpoint$2 as Endpoint, type EndpointDirectAccessDetails$1 as EndpointDirectAccessDetails, type EndpointLoadBalancerDetails$1 as EndpointLoadBalancerDetails, type EndpointPrivateNetworkDetails$1 as EndpointPrivateNetworkDetails, type EndpointSpec$2 as EndpointSpec, type EndpointSpecLoadBalancer$1 as EndpointSpecLoadBalancer, type EndpointSpecPrivateNetwork$1 as EndpointSpecPrivateNetwork, type EndpointSpecPrivateNetworkIpamConfig$1 as EndpointSpecPrivateNetworkIpamConfig, type EngineSetting$1 as EngineSetting, type EngineSettingPropertyType$1 as EngineSettingPropertyType, type EngineVersion$1 as EngineVersion, type GetEndpointRequest$2 as GetEndpointRequest, type GetInstanceCertificateRequest$1 as GetInstanceCertificateRequest, type GetInstanceLogRequest$1 as GetInstanceLogRequest, type GetInstanceMetricsRequest$1 as GetInstanceMetricsRequest, type GetInstanceRequest$1 as GetInstanceRequest, type GetReadReplicaRequest$1 as GetReadReplicaRequest, type GetSnapshotRequest$2 as GetSnapshotRequest, INSTANCE_LOG_TRANSIENT_STATUSES$1 as INSTANCE_LOG_TRANSIENT_STATUSES, INSTANCE_TRANSIENT_STATUSES$2 as INSTANCE_TRANSIENT_STATUSES, type Instance$2 as Instance, type InstanceLog$1 as InstanceLog, type InstanceLogStatus$1 as InstanceLogStatus, type InstanceMetrics$1 as InstanceMetrics, type InstanceSetting$1 as InstanceSetting, type InstanceStatus$2 as InstanceStatus, type ListDatabaseEnginesRequest$1 as ListDatabaseEnginesRequest, type ListDatabaseEnginesResponse$1 as ListDatabaseEnginesResponse, type ListDatabasesRequest$1 as ListDatabasesRequest, type ListDatabasesRequestOrderBy$1 as ListDatabasesRequestOrderBy, type ListDatabasesResponse$1 as ListDatabasesResponse, type ListInstanceACLRulesRequest$1 as ListInstanceACLRulesRequest, type ListInstanceACLRulesResponse$1 as ListInstanceACLRulesResponse, type ListInstanceLogsDetailsRequest$1 as ListInstanceLogsDetailsRequest, type ListInstanceLogsDetailsResponse$1 as ListInstanceLogsDetailsResponse, type ListInstanceLogsDetailsResponseInstanceLogDetail$1 as ListInstanceLogsDetailsResponseInstanceLogDetail, type ListInstanceLogsRequest$1 as ListInstanceLogsRequest, type ListInstanceLogsRequestOrderBy$1 as ListInstanceLogsRequestOrderBy, type ListInstanceLogsResponse$1 as ListInstanceLogsResponse, type ListInstancesRequest$1 as ListInstancesRequest, type ListInstancesRequestOrderBy$1 as ListInstancesRequestOrderBy, type ListInstancesResponse$1 as ListInstancesResponse, type ListNodeTypesRequest$2 as ListNodeTypesRequest, type ListNodeTypesResponse$2 as ListNodeTypesResponse, type ListPrivilegesRequest$1 as ListPrivilegesRequest, type ListPrivilegesRequestOrderBy$1 as ListPrivilegesRequestOrderBy, type ListPrivilegesResponse$1 as ListPrivilegesResponse, type ListSnapshotsRequest$2 as ListSnapshotsRequest, type ListSnapshotsRequestOrderBy$1 as ListSnapshotsRequestOrderBy, type ListSnapshotsResponse$2 as ListSnapshotsResponse, type ListUsersRequest$3 as ListUsersRequest, type ListUsersRequestOrderBy$2 as ListUsersRequestOrderBy, type ListUsersResponse$2 as ListUsersResponse, type LogsPolicy$1 as LogsPolicy, MAINTENANCE_TRANSIENT_STATUSES$1 as MAINTENANCE_TRANSIENT_STATUSES, type Maintenance$1 as Maintenance, type MaintenanceStatus$1 as MaintenanceStatus, type MigrateEndpointRequest$1 as MigrateEndpointRequest, type NodeType$2 as NodeType, type NodeTypeGeneration$1 as NodeTypeGeneration, type NodeTypeStock$2 as NodeTypeStock, type NodeTypeVolumeConstraintSizes$1 as NodeTypeVolumeConstraintSizes, type NodeTypeVolumeType$1 as NodeTypeVolumeType, type Permission$1 as Permission, type Privilege$1 as Privilege, type PromoteReadReplicaRequest$1 as PromoteReadReplicaRequest, type PurgeInstanceLogsRequest$1 as PurgeInstanceLogsRequest, READ_REPLICA_TRANSIENT_STATUSES$1 as READ_REPLICA_TRANSIENT_STATUSES, type ReadReplica$1 as ReadReplica, type ReadReplicaEndpointSpec$1 as ReadReplicaEndpointSpec, type ReadReplicaEndpointSpecDirectAccess$1 as ReadReplicaEndpointSpecDirectAccess, type ReadReplicaEndpointSpecPrivateNetwork$1 as ReadReplicaEndpointSpecPrivateNetwork, type ReadReplicaEndpointSpecPrivateNetworkIpamConfig$1 as ReadReplicaEndpointSpecPrivateNetworkIpamConfig, type ReadReplicaStatus$1 as ReadReplicaStatus, type RenewInstanceCertificateRequest$1 as RenewInstanceCertificateRequest, type ResetReadReplicaRequest$1 as ResetReadReplicaRequest, type RestartInstanceRequest$1 as RestartInstanceRequest, SNAPSHOT_TRANSIENT_STATUSES$2 as SNAPSHOT_TRANSIENT_STATUSES, type SetInstanceACLRulesRequest$1 as SetInstanceACLRulesRequest, type SetInstanceACLRulesResponse$1 as SetInstanceACLRulesResponse, type SetInstanceSettingsRequest$1 as SetInstanceSettingsRequest, type SetInstanceSettingsResponse$1 as SetInstanceSettingsResponse, type SetPrivilegeRequest$1 as SetPrivilegeRequest, type Snapshot$2 as Snapshot, type SnapshotStatus$1 as SnapshotStatus, type UpdateInstanceRequest$3 as UpdateInstanceRequest, type UpdateSnapshotRequest$2 as UpdateSnapshotRequest, type UpdateUserRequest$1 as UpdateUserRequest, type UpgradableVersion$1 as UpgradableVersion, type UpgradeInstanceRequest$1 as UpgradeInstanceRequest, type User$2 as User, validationRules_gen$9 as ValidationRules, type Volume$3 as Volume, type VolumeType$2 as VolumeType };
7232
+ declare namespace index_gen$m {
7233
+ export { type ACLRule$2 as ACLRule, type ACLRuleAction$1 as ACLRuleAction, type ACLRuleDirection$1 as ACLRuleDirection, type ACLRuleProtocol$1 as ACLRuleProtocol, type ACLRuleRequest$1 as ACLRuleRequest, API$n as API, type AddInstanceACLRulesRequest$1 as AddInstanceACLRulesRequest, type AddInstanceACLRulesResponse$1 as AddInstanceACLRulesResponse, type AddInstanceSettingsRequest$1 as AddInstanceSettingsRequest, type AddInstanceSettingsResponse$1 as AddInstanceSettingsResponse, type BackupSchedule$1 as BackupSchedule, type CloneInstanceRequest$1 as CloneInstanceRequest, type CreateDatabaseRequest$1 as CreateDatabaseRequest, type CreateEndpointRequest$1 as CreateEndpointRequest, type CreateInstanceFromSnapshotRequest$1 as CreateInstanceFromSnapshotRequest, type CreateInstanceRequest$1 as CreateInstanceRequest, type CreateReadReplicaEndpointRequest$1 as CreateReadReplicaEndpointRequest, type CreateReadReplicaRequest$1 as CreateReadReplicaRequest, type CreateSnapshotRequest$2 as CreateSnapshotRequest, type CreateUserRequest$2 as CreateUserRequest, type Database$1 as Database, type DatabaseEngine$1 as DatabaseEngine, type DeleteDatabaseRequest$1 as DeleteDatabaseRequest, type DeleteEndpointRequest$2 as DeleteEndpointRequest, type DeleteInstanceACLRulesRequest$1 as DeleteInstanceACLRulesRequest, type DeleteInstanceACLRulesResponse$1 as DeleteInstanceACLRulesResponse, type DeleteInstanceRequest$1 as DeleteInstanceRequest, type DeleteInstanceSettingsRequest$1 as DeleteInstanceSettingsRequest, type DeleteInstanceSettingsResponse$1 as DeleteInstanceSettingsResponse, type DeleteReadReplicaRequest$1 as DeleteReadReplicaRequest, type DeleteSnapshotRequest$2 as DeleteSnapshotRequest, type DeleteUserRequest$2 as DeleteUserRequest, type Endpoint$2 as Endpoint, type EndpointDirectAccessDetails$1 as EndpointDirectAccessDetails, type EndpointLoadBalancerDetails$1 as EndpointLoadBalancerDetails, type EndpointPrivateNetworkDetails$1 as EndpointPrivateNetworkDetails, type EndpointSpec$2 as EndpointSpec, type EndpointSpecLoadBalancer$1 as EndpointSpecLoadBalancer, type EndpointSpecPrivateNetwork$1 as EndpointSpecPrivateNetwork, type EndpointSpecPrivateNetworkIpamConfig$1 as EndpointSpecPrivateNetworkIpamConfig, type EngineSetting$1 as EngineSetting, type EngineSettingPropertyType$1 as EngineSettingPropertyType, type EngineVersion$1 as EngineVersion, type GetEndpointRequest$2 as GetEndpointRequest, type GetInstanceCertificateRequest$1 as GetInstanceCertificateRequest, type GetInstanceLogRequest$1 as GetInstanceLogRequest, type GetInstanceMetricsRequest$1 as GetInstanceMetricsRequest, type GetInstanceRequest$1 as GetInstanceRequest, type GetReadReplicaRequest$1 as GetReadReplicaRequest, type GetSnapshotRequest$2 as GetSnapshotRequest, INSTANCE_LOG_TRANSIENT_STATUSES$1 as INSTANCE_LOG_TRANSIENT_STATUSES, INSTANCE_TRANSIENT_STATUSES$2 as INSTANCE_TRANSIENT_STATUSES, type Instance$2 as Instance, type InstanceLog$1 as InstanceLog, type InstanceLogStatus$1 as InstanceLogStatus, type InstanceMetrics$1 as InstanceMetrics, type InstanceSetting$1 as InstanceSetting, type InstanceStatus$2 as InstanceStatus, type ListDatabaseEnginesRequest$1 as ListDatabaseEnginesRequest, type ListDatabaseEnginesResponse$1 as ListDatabaseEnginesResponse, type ListDatabasesRequest$1 as ListDatabasesRequest, type ListDatabasesRequestOrderBy$1 as ListDatabasesRequestOrderBy, type ListDatabasesResponse$1 as ListDatabasesResponse, type ListInstanceACLRulesRequest$1 as ListInstanceACLRulesRequest, type ListInstanceACLRulesResponse$1 as ListInstanceACLRulesResponse, type ListInstanceLogsDetailsRequest$1 as ListInstanceLogsDetailsRequest, type ListInstanceLogsDetailsResponse$1 as ListInstanceLogsDetailsResponse, type ListInstanceLogsDetailsResponseInstanceLogDetail$1 as ListInstanceLogsDetailsResponseInstanceLogDetail, type ListInstanceLogsRequest$1 as ListInstanceLogsRequest, type ListInstanceLogsRequestOrderBy$1 as ListInstanceLogsRequestOrderBy, type ListInstanceLogsResponse$1 as ListInstanceLogsResponse, type ListInstancesRequest$1 as ListInstancesRequest, type ListInstancesRequestOrderBy$1 as ListInstancesRequestOrderBy, type ListInstancesResponse$1 as ListInstancesResponse, type ListNodeTypesRequest$2 as ListNodeTypesRequest, type ListNodeTypesResponse$2 as ListNodeTypesResponse, type ListPrivilegesRequest$1 as ListPrivilegesRequest, type ListPrivilegesRequestOrderBy$1 as ListPrivilegesRequestOrderBy, type ListPrivilegesResponse$1 as ListPrivilegesResponse, type ListSnapshotsRequest$2 as ListSnapshotsRequest, type ListSnapshotsRequestOrderBy$1 as ListSnapshotsRequestOrderBy, type ListSnapshotsResponse$2 as ListSnapshotsResponse, type ListUsersRequest$3 as ListUsersRequest, type ListUsersRequestOrderBy$2 as ListUsersRequestOrderBy, type ListUsersResponse$2 as ListUsersResponse, type LogsPolicy$1 as LogsPolicy, MAINTENANCE_TRANSIENT_STATUSES$1 as MAINTENANCE_TRANSIENT_STATUSES, type Maintenance$1 as Maintenance, type MaintenanceStatus$1 as MaintenanceStatus, type MigrateEndpointRequest$1 as MigrateEndpointRequest, type NodeType$2 as NodeType, type NodeTypeGeneration$1 as NodeTypeGeneration, type NodeTypeStock$2 as NodeTypeStock, type NodeTypeVolumeConstraintSizes$1 as NodeTypeVolumeConstraintSizes, type NodeTypeVolumeType$1 as NodeTypeVolumeType, type Permission$1 as Permission, type Privilege$1 as Privilege, type PromoteReadReplicaRequest$1 as PromoteReadReplicaRequest, type PurgeInstanceLogsRequest$1 as PurgeInstanceLogsRequest, READ_REPLICA_TRANSIENT_STATUSES$1 as READ_REPLICA_TRANSIENT_STATUSES, type ReadReplica$1 as ReadReplica, type ReadReplicaEndpointSpec$1 as ReadReplicaEndpointSpec, type ReadReplicaEndpointSpecDirectAccess$1 as ReadReplicaEndpointSpecDirectAccess, type ReadReplicaEndpointSpecPrivateNetwork$1 as ReadReplicaEndpointSpecPrivateNetwork, type ReadReplicaEndpointSpecPrivateNetworkIpamConfig$1 as ReadReplicaEndpointSpecPrivateNetworkIpamConfig, type ReadReplicaStatus$1 as ReadReplicaStatus, type RenewInstanceCertificateRequest$1 as RenewInstanceCertificateRequest, type ResetReadReplicaRequest$1 as ResetReadReplicaRequest, type RestartInstanceRequest$1 as RestartInstanceRequest, SNAPSHOT_TRANSIENT_STATUSES$2 as SNAPSHOT_TRANSIENT_STATUSES, type SetInstanceACLRulesRequest$1 as SetInstanceACLRulesRequest, type SetInstanceACLRulesResponse$1 as SetInstanceACLRulesResponse, type SetInstanceSettingsRequest$1 as SetInstanceSettingsRequest, type SetInstanceSettingsResponse$1 as SetInstanceSettingsResponse, type SetPrivilegeRequest$1 as SetPrivilegeRequest, type Snapshot$2 as Snapshot, type SnapshotStatus$1 as SnapshotStatus, type UpdateInstanceRequest$3 as UpdateInstanceRequest, type UpdateSnapshotRequest$2 as UpdateSnapshotRequest, type UpdateUserRequest$1 as UpdateUserRequest, type UpgradableVersion$1 as UpgradableVersion, type UpgradeInstanceRequest$1 as UpgradeInstanceRequest, type User$2 as User, validationRules_gen$9 as ValidationRules, type Volume$3 as Volume, type VolumeType$2 as VolumeType };
7198
7234
  }
7199
7235
 
7200
7236
  declare namespace index$p {
7201
- export { index_gen$n as v1beta1 };
7237
+ export { index_gen$m as v1beta1 };
7202
7238
  }
7203
7239
 
7204
7240
  type LanguageCode = 'unknown_language_code' | 'en_US' | 'fr_FR' | 'de_DE';
@@ -7216,6 +7252,7 @@ type DomainRecordType = 'unknown' | 'A' | 'AAAA' | 'CNAME' | 'TXT' | 'SRV' | 'TL
7216
7252
  type DomainRegistrationStatusTransferStatus = 'status_unknown' | 'pending' | 'waiting_vote' | 'rejected' | 'processing' | 'done';
7217
7253
  type DomainStatus$2 = 'status_unknown' | 'active' | 'creating' | 'create_error' | 'renewing' | 'renew_error' | 'xfering' | 'xfer_error' | 'expired' | 'expiring' | 'updating' | 'checking' | 'locked' | 'deleting';
7218
7254
  type HostStatus = 'unknown_status' | 'active' | 'updating' | 'deleting';
7255
+ type LinkedProduct = 'unknown_product' | 'vpc';
7219
7256
  type ListContactsRequestRole = 'unknown_role' | 'owner' | 'administrative' | 'technical';
7220
7257
  type ListDNSZoneRecordsRequestOrderBy = 'name_asc' | 'name_desc';
7221
7258
  type ListDNSZonesRequestOrderBy = 'domain_asc' | 'domain_desc' | 'subdomain_asc' | 'subdomain_desc' | 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc';
@@ -7227,7 +7264,7 @@ type RawFormat = 'unknown_raw_format' | 'bind';
7227
7264
  type RenewableDomainStatus = 'unknown' | 'renewable' | 'late_reneweable' | 'not_renewable';
7228
7265
  type SSLCertificateStatus = 'unknown' | 'new' | 'pending' | 'success' | 'error';
7229
7266
  type TaskStatus$1 = 'unavailable' | 'new' | 'waiting_payment' | 'pending' | 'success' | 'error';
7230
- type TaskType = 'unknown' | 'create_domain' | 'create_external_domain' | 'renew_domain' | 'transfer_domain' | 'trade_domain' | 'lock_domain_transfer' | 'unlock_domain_transfer' | 'enable_dnssec' | 'disable_dnssec' | 'update_domain' | 'update_contact' | 'delete_domain' | 'cancel_task' | 'generate_ssl_certificate' | 'renew_ssl_certificate' | 'send_message' | 'delete_domain_expired' | 'delete_external_domain' | 'create_host' | 'update_host' | 'delete_host' | 'move_project';
7267
+ type TaskType = 'unknown' | 'create_domain' | 'create_external_domain' | 'renew_domain' | 'transfer_domain' | 'trade_domain' | 'lock_domain_transfer' | 'unlock_domain_transfer' | 'enable_dnssec' | 'disable_dnssec' | 'update_domain' | 'update_contact' | 'delete_domain' | 'cancel_task' | 'generate_ssl_certificate' | 'renew_ssl_certificate' | 'send_message' | 'delete_domain_expired' | 'delete_external_domain' | 'create_host' | 'update_host' | 'delete_host' | 'move_project' | 'transfer_online_domain';
7231
7268
  interface DomainRecordGeoIPConfigMatch {
7232
7269
  countries: string[];
7233
7270
  continents: string[];
@@ -7483,6 +7520,7 @@ interface DNSZone {
7483
7520
  message?: string;
7484
7521
  updatedAt?: Date;
7485
7522
  projectId: string;
7523
+ linkedProducts: LinkedProduct[];
7486
7524
  }
7487
7525
  interface DomainDNSSEC {
7488
7526
  status: DomainFeatureStatus;
@@ -7689,6 +7727,7 @@ interface Domain$2 {
7689
7727
  */
7690
7728
  transferRegistrationStatus?: DomainRegistrationStatusTransfer;
7691
7729
  tld?: Tld;
7730
+ linkedProducts: LinkedProduct[];
7692
7731
  }
7693
7732
  type ExportRawDNSZoneRequest = {
7694
7733
  /** DNS zone to export. */
@@ -8243,7 +8282,7 @@ type UpdateDNSZoneRequest = {
8243
8282
  *
8244
8283
  * Manage your domains, DNS zones and records with the Domains and DNS API.
8245
8284
  */
8246
- declare class API$n extends API$w {
8285
+ declare class API$m extends API$v {
8247
8286
  protected pageOfListDNSZones: (request: Readonly<ListDNSZonesRequest>) => Promise<ListDNSZonesResponse>;
8248
8287
  /**
8249
8288
  * List DNS zones. Retrieve the list of DNS zones you can manage and filter
@@ -8483,7 +8522,7 @@ declare class API$n extends API$w {
8483
8522
  *
8484
8523
  * Manage your domains and contacts.
8485
8524
  */
8486
- declare class RegistrarAPI extends API$w {
8525
+ declare class RegistrarAPI extends API$v {
8487
8526
  protected pageOfListTasks: (request?: Readonly<RegistrarApiListTasksRequest>) => Promise<ListTasksResponse>;
8488
8527
  /**
8489
8528
  * List tasks. List all operations performed on the account. You can filter
@@ -8775,170 +8814,171 @@ declare const SSL_CERTIFICATE_TRANSIENT_STATUSES: SSLCertificateStatus[];
8775
8814
  /** Lists transient statutes of the enum {@link TaskStatus}. */
8776
8815
  declare const TASK_TRANSIENT_STATUSES$1: TaskStatus$1[];
8777
8816
 
8778
- type index_gen$m_AvailableDomain = AvailableDomain;
8779
- type index_gen$m_CheckContactsCompatibilityResponse = CheckContactsCompatibilityResponse;
8780
- type index_gen$m_CheckContactsCompatibilityResponseContactCheckResult = CheckContactsCompatibilityResponseContactCheckResult;
8781
- type index_gen$m_ClearDNSZoneRecordsRequest = ClearDNSZoneRecordsRequest;
8782
- type index_gen$m_ClearDNSZoneRecordsResponse = ClearDNSZoneRecordsResponse;
8783
- type index_gen$m_CloneDNSZoneRequest = CloneDNSZoneRequest;
8784
- type index_gen$m_Contact = Contact;
8785
- type index_gen$m_ContactEmailStatus = ContactEmailStatus;
8786
- type index_gen$m_ContactExtensionEU = ContactExtensionEU;
8787
- type index_gen$m_ContactExtensionFR = ContactExtensionFR;
8788
- type index_gen$m_ContactExtensionFRAssociationInfo = ContactExtensionFRAssociationInfo;
8789
- type index_gen$m_ContactExtensionFRCodeAuthAfnicInfo = ContactExtensionFRCodeAuthAfnicInfo;
8790
- type index_gen$m_ContactExtensionFRDunsInfo = ContactExtensionFRDunsInfo;
8791
- type index_gen$m_ContactExtensionFRIndividualInfo = ContactExtensionFRIndividualInfo;
8792
- type index_gen$m_ContactExtensionFRMode = ContactExtensionFRMode;
8793
- type index_gen$m_ContactExtensionFRTrademarkInfo = ContactExtensionFRTrademarkInfo;
8794
- type index_gen$m_ContactExtensionNL = ContactExtensionNL;
8795
- type index_gen$m_ContactExtensionNLLegalForm = ContactExtensionNLLegalForm;
8796
- type index_gen$m_ContactLegalForm = ContactLegalForm;
8797
- type index_gen$m_ContactQuestion = ContactQuestion;
8798
- type index_gen$m_ContactRoles = ContactRoles;
8799
- type index_gen$m_ContactRolesRoles = ContactRolesRoles;
8800
- type index_gen$m_CreateDNSZoneRequest = CreateDNSZoneRequest;
8801
- type index_gen$m_CreateSSLCertificateRequest = CreateSSLCertificateRequest;
8802
- type index_gen$m_DNSZone = DNSZone;
8803
- type index_gen$m_DNSZoneStatus = DNSZoneStatus;
8804
- type index_gen$m_DNSZoneVersion = DNSZoneVersion;
8805
- declare const index_gen$m_DNS_ZONE_TRANSIENT_STATUSES: typeof DNS_ZONE_TRANSIENT_STATUSES;
8806
- declare const index_gen$m_DOMAIN_FEATURE_TRANSIENT_STATUSES: typeof DOMAIN_FEATURE_TRANSIENT_STATUSES;
8807
- declare const index_gen$m_DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES: typeof DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES;
8808
- type index_gen$m_DSRecord = DSRecord;
8809
- type index_gen$m_DSRecordAlgorithm = DSRecordAlgorithm;
8810
- type index_gen$m_DSRecordDigest = DSRecordDigest;
8811
- type index_gen$m_DSRecordDigestType = DSRecordDigestType;
8812
- type index_gen$m_DSRecordPublicKey = DSRecordPublicKey;
8813
- type index_gen$m_DeleteDNSZoneRequest = DeleteDNSZoneRequest;
8814
- type index_gen$m_DeleteDNSZoneResponse = DeleteDNSZoneResponse;
8815
- type index_gen$m_DeleteDNSZoneTsigKeyRequest = DeleteDNSZoneTsigKeyRequest;
8816
- type index_gen$m_DeleteExternalDomainResponse = DeleteExternalDomainResponse;
8817
- type index_gen$m_DeleteSSLCertificateRequest = DeleteSSLCertificateRequest;
8818
- type index_gen$m_DeleteSSLCertificateResponse = DeleteSSLCertificateResponse;
8819
- type index_gen$m_DomainDNSSEC = DomainDNSSEC;
8820
- type index_gen$m_DomainFeatureStatus = DomainFeatureStatus;
8821
- type index_gen$m_DomainRecord = DomainRecord;
8822
- type index_gen$m_DomainRecordGeoIPConfig = DomainRecordGeoIPConfig;
8823
- type index_gen$m_DomainRecordGeoIPConfigMatch = DomainRecordGeoIPConfigMatch;
8824
- type index_gen$m_DomainRecordHTTPServiceConfig = DomainRecordHTTPServiceConfig;
8825
- type index_gen$m_DomainRecordHTTPServiceConfigStrategy = DomainRecordHTTPServiceConfigStrategy;
8826
- type index_gen$m_DomainRecordType = DomainRecordType;
8827
- type index_gen$m_DomainRecordViewConfig = DomainRecordViewConfig;
8828
- type index_gen$m_DomainRecordViewConfigView = DomainRecordViewConfigView;
8829
- type index_gen$m_DomainRecordWeightedConfig = DomainRecordWeightedConfig;
8830
- type index_gen$m_DomainRecordWeightedConfigWeightedIP = DomainRecordWeightedConfigWeightedIP;
8831
- type index_gen$m_DomainRegistrationStatusExternalDomain = DomainRegistrationStatusExternalDomain;
8832
- type index_gen$m_DomainRegistrationStatusTransfer = DomainRegistrationStatusTransfer;
8833
- type index_gen$m_DomainRegistrationStatusTransferStatus = DomainRegistrationStatusTransferStatus;
8834
- type index_gen$m_DomainSummary = DomainSummary;
8835
- type index_gen$m_ExportRawDNSZoneRequest = ExportRawDNSZoneRequest;
8836
- type index_gen$m_GetDNSZoneTsigKeyRequest = GetDNSZoneTsigKeyRequest;
8837
- type index_gen$m_GetDNSZoneTsigKeyResponse = GetDNSZoneTsigKeyResponse;
8838
- type index_gen$m_GetDNSZoneVersionDiffRequest = GetDNSZoneVersionDiffRequest;
8839
- type index_gen$m_GetDNSZoneVersionDiffResponse = GetDNSZoneVersionDiffResponse;
8840
- type index_gen$m_GetDomainAuthCodeResponse = GetDomainAuthCodeResponse;
8841
- type index_gen$m_GetSSLCertificateRequest = GetSSLCertificateRequest;
8842
- declare const index_gen$m_HOST_TRANSIENT_STATUSES: typeof HOST_TRANSIENT_STATUSES;
8843
- type index_gen$m_Host = Host;
8844
- type index_gen$m_HostStatus = HostStatus;
8845
- type index_gen$m_ImportProviderDNSZoneRequest = ImportProviderDNSZoneRequest;
8846
- type index_gen$m_ImportProviderDNSZoneRequestOnlineV1 = ImportProviderDNSZoneRequestOnlineV1;
8847
- type index_gen$m_ImportProviderDNSZoneResponse = ImportProviderDNSZoneResponse;
8848
- type index_gen$m_ImportRawDNSZoneRequest = ImportRawDNSZoneRequest;
8849
- type index_gen$m_ImportRawDNSZoneRequestAXFRSource = ImportRawDNSZoneRequestAXFRSource;
8850
- type index_gen$m_ImportRawDNSZoneRequestBindSource = ImportRawDNSZoneRequestBindSource;
8851
- type index_gen$m_ImportRawDNSZoneRequestTsigKey = ImportRawDNSZoneRequestTsigKey;
8852
- type index_gen$m_ImportRawDNSZoneResponse = ImportRawDNSZoneResponse;
8853
- type index_gen$m_ListContactsRequestRole = ListContactsRequestRole;
8854
- type index_gen$m_ListContactsResponse = ListContactsResponse;
8855
- type index_gen$m_ListDNSZoneNameserversRequest = ListDNSZoneNameserversRequest;
8856
- type index_gen$m_ListDNSZoneNameserversResponse = ListDNSZoneNameserversResponse;
8857
- type index_gen$m_ListDNSZoneRecordsRequest = ListDNSZoneRecordsRequest;
8858
- type index_gen$m_ListDNSZoneRecordsRequestOrderBy = ListDNSZoneRecordsRequestOrderBy;
8859
- type index_gen$m_ListDNSZoneRecordsResponse = ListDNSZoneRecordsResponse;
8860
- type index_gen$m_ListDNSZoneVersionRecordsRequest = ListDNSZoneVersionRecordsRequest;
8861
- type index_gen$m_ListDNSZoneVersionRecordsResponse = ListDNSZoneVersionRecordsResponse;
8862
- type index_gen$m_ListDNSZoneVersionsRequest = ListDNSZoneVersionsRequest;
8863
- type index_gen$m_ListDNSZoneVersionsResponse = ListDNSZoneVersionsResponse;
8864
- type index_gen$m_ListDNSZonesRequest = ListDNSZonesRequest;
8865
- type index_gen$m_ListDNSZonesRequestOrderBy = ListDNSZonesRequestOrderBy;
8866
- type index_gen$m_ListDNSZonesResponse = ListDNSZonesResponse;
8867
- type index_gen$m_ListDomainHostsResponse = ListDomainHostsResponse;
8868
- type index_gen$m_ListRenewableDomainsRequestOrderBy = ListRenewableDomainsRequestOrderBy;
8869
- type index_gen$m_ListRenewableDomainsResponse = ListRenewableDomainsResponse;
8870
- type index_gen$m_ListSSLCertificatesRequest = ListSSLCertificatesRequest;
8871
- type index_gen$m_ListSSLCertificatesResponse = ListSSLCertificatesResponse;
8872
- type index_gen$m_ListTasksRequestOrderBy = ListTasksRequestOrderBy;
8873
- type index_gen$m_ListTasksResponse = ListTasksResponse;
8874
- type index_gen$m_ListTldsRequestOrderBy = ListTldsRequestOrderBy;
8875
- type index_gen$m_ListTldsResponse = ListTldsResponse;
8876
- type index_gen$m_NewContact = NewContact;
8877
- type index_gen$m_OrderResponse = OrderResponse;
8878
- type index_gen$m_RawFormat = RawFormat;
8879
- type index_gen$m_RecordChange = RecordChange;
8880
- type index_gen$m_RecordChangeAdd = RecordChangeAdd;
8881
- type index_gen$m_RecordChangeClear = RecordChangeClear;
8882
- type index_gen$m_RecordChangeDelete = RecordChangeDelete;
8883
- type index_gen$m_RecordChangeSet = RecordChangeSet;
8884
- type index_gen$m_RecordIdentifier = RecordIdentifier;
8885
- type index_gen$m_RefreshDNSZoneRequest = RefreshDNSZoneRequest;
8886
- type index_gen$m_RefreshDNSZoneResponse = RefreshDNSZoneResponse;
8887
- type index_gen$m_RegisterExternalDomainResponse = RegisterExternalDomainResponse;
8888
- type index_gen$m_RegistrarAPI = RegistrarAPI;
8889
- declare const index_gen$m_RegistrarAPI: typeof RegistrarAPI;
8890
- type index_gen$m_RegistrarApiBuyDomainsRequest = RegistrarApiBuyDomainsRequest;
8891
- type index_gen$m_RegistrarApiCheckContactsCompatibilityRequest = RegistrarApiCheckContactsCompatibilityRequest;
8892
- type index_gen$m_RegistrarApiCreateDomainHostRequest = RegistrarApiCreateDomainHostRequest;
8893
- type index_gen$m_RegistrarApiDeleteDomainHostRequest = RegistrarApiDeleteDomainHostRequest;
8894
- type index_gen$m_RegistrarApiDeleteExternalDomainRequest = RegistrarApiDeleteExternalDomainRequest;
8895
- type index_gen$m_RegistrarApiDisableDomainAutoRenewRequest = RegistrarApiDisableDomainAutoRenewRequest;
8896
- type index_gen$m_RegistrarApiDisableDomainDNSSECRequest = RegistrarApiDisableDomainDNSSECRequest;
8897
- type index_gen$m_RegistrarApiEnableDomainAutoRenewRequest = RegistrarApiEnableDomainAutoRenewRequest;
8898
- type index_gen$m_RegistrarApiEnableDomainDNSSECRequest = RegistrarApiEnableDomainDNSSECRequest;
8899
- type index_gen$m_RegistrarApiGetContactRequest = RegistrarApiGetContactRequest;
8900
- type index_gen$m_RegistrarApiGetDomainAuthCodeRequest = RegistrarApiGetDomainAuthCodeRequest;
8901
- type index_gen$m_RegistrarApiGetDomainRequest = RegistrarApiGetDomainRequest;
8902
- type index_gen$m_RegistrarApiListContactsRequest = RegistrarApiListContactsRequest;
8903
- type index_gen$m_RegistrarApiListDomainHostsRequest = RegistrarApiListDomainHostsRequest;
8904
- type index_gen$m_RegistrarApiListDomainsRequest = RegistrarApiListDomainsRequest;
8905
- type index_gen$m_RegistrarApiListRenewableDomainsRequest = RegistrarApiListRenewableDomainsRequest;
8906
- type index_gen$m_RegistrarApiListTasksRequest = RegistrarApiListTasksRequest;
8907
- type index_gen$m_RegistrarApiListTldsRequest = RegistrarApiListTldsRequest;
8908
- type index_gen$m_RegistrarApiLockDomainTransferRequest = RegistrarApiLockDomainTransferRequest;
8909
- type index_gen$m_RegistrarApiRegisterExternalDomainRequest = RegistrarApiRegisterExternalDomainRequest;
8910
- type index_gen$m_RegistrarApiRenewDomainsRequest = RegistrarApiRenewDomainsRequest;
8911
- type index_gen$m_RegistrarApiSearchAvailableDomainsRequest = RegistrarApiSearchAvailableDomainsRequest;
8912
- type index_gen$m_RegistrarApiTradeDomainRequest = RegistrarApiTradeDomainRequest;
8913
- type index_gen$m_RegistrarApiTransferInDomainRequest = RegistrarApiTransferInDomainRequest;
8914
- type index_gen$m_RegistrarApiUnlockDomainTransferRequest = RegistrarApiUnlockDomainTransferRequest;
8915
- type index_gen$m_RegistrarApiUpdateContactRequest = RegistrarApiUpdateContactRequest;
8916
- type index_gen$m_RegistrarApiUpdateDomainHostRequest = RegistrarApiUpdateDomainHostRequest;
8917
- type index_gen$m_RegistrarApiUpdateDomainRequest = RegistrarApiUpdateDomainRequest;
8918
- type index_gen$m_RenewableDomain = RenewableDomain;
8919
- type index_gen$m_RenewableDomainStatus = RenewableDomainStatus;
8920
- type index_gen$m_RestoreDNSZoneVersionRequest = RestoreDNSZoneVersionRequest;
8921
- type index_gen$m_RestoreDNSZoneVersionResponse = RestoreDNSZoneVersionResponse;
8922
- type index_gen$m_SSLCertificate = SSLCertificate;
8923
- type index_gen$m_SSLCertificateStatus = SSLCertificateStatus;
8924
- declare const index_gen$m_SSL_CERTIFICATE_TRANSIENT_STATUSES: typeof SSL_CERTIFICATE_TRANSIENT_STATUSES;
8925
- type index_gen$m_SearchAvailableDomainsResponse = SearchAvailableDomainsResponse;
8926
- type index_gen$m_TaskType = TaskType;
8927
- type index_gen$m_Tld = Tld;
8928
- type index_gen$m_TldOffer = TldOffer;
8929
- type index_gen$m_TransferInDomainRequestTransferRequest = TransferInDomainRequestTransferRequest;
8930
- type index_gen$m_UpdateContactRequestQuestion = UpdateContactRequestQuestion;
8931
- type index_gen$m_UpdateDNSZoneNameserversRequest = UpdateDNSZoneNameserversRequest;
8932
- type index_gen$m_UpdateDNSZoneNameserversResponse = UpdateDNSZoneNameserversResponse;
8933
- type index_gen$m_UpdateDNSZoneRecordsRequest = UpdateDNSZoneRecordsRequest;
8934
- type index_gen$m_UpdateDNSZoneRecordsResponse = UpdateDNSZoneRecordsResponse;
8935
- type index_gen$m_UpdateDNSZoneRequest = UpdateDNSZoneRequest;
8936
- declare namespace index_gen$m {
8937
- export { API$n as API, type index_gen$m_AvailableDomain as AvailableDomain, type index_gen$m_CheckContactsCompatibilityResponse as CheckContactsCompatibilityResponse, type index_gen$m_CheckContactsCompatibilityResponseContactCheckResult as CheckContactsCompatibilityResponseContactCheckResult, type index_gen$m_ClearDNSZoneRecordsRequest as ClearDNSZoneRecordsRequest, type index_gen$m_ClearDNSZoneRecordsResponse as ClearDNSZoneRecordsResponse, type index_gen$m_CloneDNSZoneRequest as CloneDNSZoneRequest, type index_gen$m_Contact as Contact, type index_gen$m_ContactEmailStatus as ContactEmailStatus, type index_gen$m_ContactExtensionEU as ContactExtensionEU, type index_gen$m_ContactExtensionFR as ContactExtensionFR, type index_gen$m_ContactExtensionFRAssociationInfo as ContactExtensionFRAssociationInfo, type index_gen$m_ContactExtensionFRCodeAuthAfnicInfo as ContactExtensionFRCodeAuthAfnicInfo, type index_gen$m_ContactExtensionFRDunsInfo as ContactExtensionFRDunsInfo, type index_gen$m_ContactExtensionFRIndividualInfo as ContactExtensionFRIndividualInfo, type index_gen$m_ContactExtensionFRMode as ContactExtensionFRMode, type index_gen$m_ContactExtensionFRTrademarkInfo as ContactExtensionFRTrademarkInfo, type index_gen$m_ContactExtensionNL as ContactExtensionNL, type index_gen$m_ContactExtensionNLLegalForm as ContactExtensionNLLegalForm, type index_gen$m_ContactLegalForm as ContactLegalForm, type index_gen$m_ContactQuestion as ContactQuestion, type index_gen$m_ContactRoles as ContactRoles, type index_gen$m_ContactRolesRoles as ContactRolesRoles, type index_gen$m_CreateDNSZoneRequest as CreateDNSZoneRequest, type index_gen$m_CreateSSLCertificateRequest as CreateSSLCertificateRequest, type index_gen$m_DNSZone as DNSZone, type index_gen$m_DNSZoneStatus as DNSZoneStatus, type index_gen$m_DNSZoneVersion as DNSZoneVersion, index_gen$m_DNS_ZONE_TRANSIENT_STATUSES as DNS_ZONE_TRANSIENT_STATUSES, index_gen$m_DOMAIN_FEATURE_TRANSIENT_STATUSES as DOMAIN_FEATURE_TRANSIENT_STATUSES, index_gen$m_DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES as DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES, DOMAIN_TRANSIENT_STATUSES$2 as DOMAIN_TRANSIENT_STATUSES, type index_gen$m_DSRecord as DSRecord, type index_gen$m_DSRecordAlgorithm as DSRecordAlgorithm, type index_gen$m_DSRecordDigest as DSRecordDigest, type index_gen$m_DSRecordDigestType as DSRecordDigestType, type index_gen$m_DSRecordPublicKey as DSRecordPublicKey, type index_gen$m_DeleteDNSZoneRequest as DeleteDNSZoneRequest, type index_gen$m_DeleteDNSZoneResponse as DeleteDNSZoneResponse, type index_gen$m_DeleteDNSZoneTsigKeyRequest as DeleteDNSZoneTsigKeyRequest, type index_gen$m_DeleteExternalDomainResponse as DeleteExternalDomainResponse, type index_gen$m_DeleteSSLCertificateRequest as DeleteSSLCertificateRequest, type index_gen$m_DeleteSSLCertificateResponse as DeleteSSLCertificateResponse, type Domain$2 as Domain, type index_gen$m_DomainDNSSEC as DomainDNSSEC, type index_gen$m_DomainFeatureStatus as DomainFeatureStatus, type index_gen$m_DomainRecord as DomainRecord, type index_gen$m_DomainRecordGeoIPConfig as DomainRecordGeoIPConfig, type index_gen$m_DomainRecordGeoIPConfigMatch as DomainRecordGeoIPConfigMatch, type index_gen$m_DomainRecordHTTPServiceConfig as DomainRecordHTTPServiceConfig, type index_gen$m_DomainRecordHTTPServiceConfigStrategy as DomainRecordHTTPServiceConfigStrategy, type index_gen$m_DomainRecordType as DomainRecordType, type index_gen$m_DomainRecordViewConfig as DomainRecordViewConfig, type index_gen$m_DomainRecordViewConfigView as DomainRecordViewConfigView, type index_gen$m_DomainRecordWeightedConfig as DomainRecordWeightedConfig, type index_gen$m_DomainRecordWeightedConfigWeightedIP as DomainRecordWeightedConfigWeightedIP, type index_gen$m_DomainRegistrationStatusExternalDomain as DomainRegistrationStatusExternalDomain, type index_gen$m_DomainRegistrationStatusTransfer as DomainRegistrationStatusTransfer, type index_gen$m_DomainRegistrationStatusTransferStatus as DomainRegistrationStatusTransferStatus, type DomainStatus$2 as DomainStatus, type index_gen$m_DomainSummary as DomainSummary, type index_gen$m_ExportRawDNSZoneRequest as ExportRawDNSZoneRequest, type index_gen$m_GetDNSZoneTsigKeyRequest as GetDNSZoneTsigKeyRequest, type index_gen$m_GetDNSZoneTsigKeyResponse as GetDNSZoneTsigKeyResponse, type index_gen$m_GetDNSZoneVersionDiffRequest as GetDNSZoneVersionDiffRequest, type index_gen$m_GetDNSZoneVersionDiffResponse as GetDNSZoneVersionDiffResponse, type index_gen$m_GetDomainAuthCodeResponse as GetDomainAuthCodeResponse, type index_gen$m_GetSSLCertificateRequest as GetSSLCertificateRequest, index_gen$m_HOST_TRANSIENT_STATUSES as HOST_TRANSIENT_STATUSES, type index_gen$m_Host as Host, type index_gen$m_HostStatus as HostStatus, type index_gen$m_ImportProviderDNSZoneRequest as ImportProviderDNSZoneRequest, type index_gen$m_ImportProviderDNSZoneRequestOnlineV1 as ImportProviderDNSZoneRequestOnlineV1, type index_gen$m_ImportProviderDNSZoneResponse as ImportProviderDNSZoneResponse, type index_gen$m_ImportRawDNSZoneRequest as ImportRawDNSZoneRequest, type index_gen$m_ImportRawDNSZoneRequestAXFRSource as ImportRawDNSZoneRequestAXFRSource, type index_gen$m_ImportRawDNSZoneRequestBindSource as ImportRawDNSZoneRequestBindSource, type index_gen$m_ImportRawDNSZoneRequestTsigKey as ImportRawDNSZoneRequestTsigKey, type index_gen$m_ImportRawDNSZoneResponse as ImportRawDNSZoneResponse, type index_gen$m_ListContactsRequestRole as ListContactsRequestRole, type index_gen$m_ListContactsResponse as ListContactsResponse, type index_gen$m_ListDNSZoneNameserversRequest as ListDNSZoneNameserversRequest, type index_gen$m_ListDNSZoneNameserversResponse as ListDNSZoneNameserversResponse, type index_gen$m_ListDNSZoneRecordsRequest as ListDNSZoneRecordsRequest, type index_gen$m_ListDNSZoneRecordsRequestOrderBy as ListDNSZoneRecordsRequestOrderBy, type index_gen$m_ListDNSZoneRecordsResponse as ListDNSZoneRecordsResponse, type index_gen$m_ListDNSZoneVersionRecordsRequest as ListDNSZoneVersionRecordsRequest, type index_gen$m_ListDNSZoneVersionRecordsResponse as ListDNSZoneVersionRecordsResponse, type index_gen$m_ListDNSZoneVersionsRequest as ListDNSZoneVersionsRequest, type index_gen$m_ListDNSZoneVersionsResponse as ListDNSZoneVersionsResponse, type index_gen$m_ListDNSZonesRequest as ListDNSZonesRequest, type index_gen$m_ListDNSZonesRequestOrderBy as ListDNSZonesRequestOrderBy, type index_gen$m_ListDNSZonesResponse as ListDNSZonesResponse, type index_gen$m_ListDomainHostsResponse as ListDomainHostsResponse, type ListDomainsRequestOrderBy$1 as ListDomainsRequestOrderBy, type ListDomainsResponse$2 as ListDomainsResponse, type index_gen$m_ListRenewableDomainsRequestOrderBy as ListRenewableDomainsRequestOrderBy, type index_gen$m_ListRenewableDomainsResponse as ListRenewableDomainsResponse, type index_gen$m_ListSSLCertificatesRequest as ListSSLCertificatesRequest, type index_gen$m_ListSSLCertificatesResponse as ListSSLCertificatesResponse, type index_gen$m_ListTasksRequestOrderBy as ListTasksRequestOrderBy, type index_gen$m_ListTasksResponse as ListTasksResponse, type index_gen$m_ListTldsRequestOrderBy as ListTldsRequestOrderBy, type index_gen$m_ListTldsResponse as ListTldsResponse, type Nameserver$1 as Nameserver, type index_gen$m_NewContact as NewContact, type index_gen$m_OrderResponse as OrderResponse, type index_gen$m_RawFormat as RawFormat, type index_gen$m_RecordChange as RecordChange, type index_gen$m_RecordChangeAdd as RecordChangeAdd, type index_gen$m_RecordChangeClear as RecordChangeClear, type index_gen$m_RecordChangeDelete as RecordChangeDelete, type index_gen$m_RecordChangeSet as RecordChangeSet, type index_gen$m_RecordIdentifier as RecordIdentifier, type index_gen$m_RefreshDNSZoneRequest as RefreshDNSZoneRequest, type index_gen$m_RefreshDNSZoneResponse as RefreshDNSZoneResponse, type index_gen$m_RegisterExternalDomainResponse as RegisterExternalDomainResponse, index_gen$m_RegistrarAPI as RegistrarAPI, type index_gen$m_RegistrarApiBuyDomainsRequest as RegistrarApiBuyDomainsRequest, type index_gen$m_RegistrarApiCheckContactsCompatibilityRequest as RegistrarApiCheckContactsCompatibilityRequest, type index_gen$m_RegistrarApiCreateDomainHostRequest as RegistrarApiCreateDomainHostRequest, type index_gen$m_RegistrarApiDeleteDomainHostRequest as RegistrarApiDeleteDomainHostRequest, type index_gen$m_RegistrarApiDeleteExternalDomainRequest as RegistrarApiDeleteExternalDomainRequest, type index_gen$m_RegistrarApiDisableDomainAutoRenewRequest as RegistrarApiDisableDomainAutoRenewRequest, type index_gen$m_RegistrarApiDisableDomainDNSSECRequest as RegistrarApiDisableDomainDNSSECRequest, type index_gen$m_RegistrarApiEnableDomainAutoRenewRequest as RegistrarApiEnableDomainAutoRenewRequest, type index_gen$m_RegistrarApiEnableDomainDNSSECRequest as RegistrarApiEnableDomainDNSSECRequest, type index_gen$m_RegistrarApiGetContactRequest as RegistrarApiGetContactRequest, type index_gen$m_RegistrarApiGetDomainAuthCodeRequest as RegistrarApiGetDomainAuthCodeRequest, type index_gen$m_RegistrarApiGetDomainRequest as RegistrarApiGetDomainRequest, type index_gen$m_RegistrarApiListContactsRequest as RegistrarApiListContactsRequest, type index_gen$m_RegistrarApiListDomainHostsRequest as RegistrarApiListDomainHostsRequest, type index_gen$m_RegistrarApiListDomainsRequest as RegistrarApiListDomainsRequest, type index_gen$m_RegistrarApiListRenewableDomainsRequest as RegistrarApiListRenewableDomainsRequest, type index_gen$m_RegistrarApiListTasksRequest as RegistrarApiListTasksRequest, type index_gen$m_RegistrarApiListTldsRequest as RegistrarApiListTldsRequest, type index_gen$m_RegistrarApiLockDomainTransferRequest as RegistrarApiLockDomainTransferRequest, type index_gen$m_RegistrarApiRegisterExternalDomainRequest as RegistrarApiRegisterExternalDomainRequest, type index_gen$m_RegistrarApiRenewDomainsRequest as RegistrarApiRenewDomainsRequest, type index_gen$m_RegistrarApiSearchAvailableDomainsRequest as RegistrarApiSearchAvailableDomainsRequest, type index_gen$m_RegistrarApiTradeDomainRequest as RegistrarApiTradeDomainRequest, type index_gen$m_RegistrarApiTransferInDomainRequest as RegistrarApiTransferInDomainRequest, type index_gen$m_RegistrarApiUnlockDomainTransferRequest as RegistrarApiUnlockDomainTransferRequest, type index_gen$m_RegistrarApiUpdateContactRequest as RegistrarApiUpdateContactRequest, type index_gen$m_RegistrarApiUpdateDomainHostRequest as RegistrarApiUpdateDomainHostRequest, type index_gen$m_RegistrarApiUpdateDomainRequest as RegistrarApiUpdateDomainRequest, type index_gen$m_RenewableDomain as RenewableDomain, type index_gen$m_RenewableDomainStatus as RenewableDomainStatus, type index_gen$m_RestoreDNSZoneVersionRequest as RestoreDNSZoneVersionRequest, type index_gen$m_RestoreDNSZoneVersionResponse as RestoreDNSZoneVersionResponse, type index_gen$m_SSLCertificate as SSLCertificate, type index_gen$m_SSLCertificateStatus as SSLCertificateStatus, index_gen$m_SSL_CERTIFICATE_TRANSIENT_STATUSES as SSL_CERTIFICATE_TRANSIENT_STATUSES, type index_gen$m_SearchAvailableDomainsResponse as SearchAvailableDomainsResponse, TASK_TRANSIENT_STATUSES$1 as TASK_TRANSIENT_STATUSES, type Task$1 as Task, type TaskStatus$1 as TaskStatus, type index_gen$m_TaskType as TaskType, type index_gen$m_Tld as Tld, type index_gen$m_TldOffer as TldOffer, type index_gen$m_TransferInDomainRequestTransferRequest as TransferInDomainRequestTransferRequest, type index_gen$m_UpdateContactRequestQuestion as UpdateContactRequestQuestion, type index_gen$m_UpdateDNSZoneNameserversRequest as UpdateDNSZoneNameserversRequest, type index_gen$m_UpdateDNSZoneNameserversResponse as UpdateDNSZoneNameserversResponse, type index_gen$m_UpdateDNSZoneRecordsRequest as UpdateDNSZoneRecordsRequest, type index_gen$m_UpdateDNSZoneRecordsResponse as UpdateDNSZoneRecordsResponse, type index_gen$m_UpdateDNSZoneRequest as UpdateDNSZoneRequest };
8817
+ type index_gen$l_AvailableDomain = AvailableDomain;
8818
+ type index_gen$l_CheckContactsCompatibilityResponse = CheckContactsCompatibilityResponse;
8819
+ type index_gen$l_CheckContactsCompatibilityResponseContactCheckResult = CheckContactsCompatibilityResponseContactCheckResult;
8820
+ type index_gen$l_ClearDNSZoneRecordsRequest = ClearDNSZoneRecordsRequest;
8821
+ type index_gen$l_ClearDNSZoneRecordsResponse = ClearDNSZoneRecordsResponse;
8822
+ type index_gen$l_CloneDNSZoneRequest = CloneDNSZoneRequest;
8823
+ type index_gen$l_Contact = Contact;
8824
+ type index_gen$l_ContactEmailStatus = ContactEmailStatus;
8825
+ type index_gen$l_ContactExtensionEU = ContactExtensionEU;
8826
+ type index_gen$l_ContactExtensionFR = ContactExtensionFR;
8827
+ type index_gen$l_ContactExtensionFRAssociationInfo = ContactExtensionFRAssociationInfo;
8828
+ type index_gen$l_ContactExtensionFRCodeAuthAfnicInfo = ContactExtensionFRCodeAuthAfnicInfo;
8829
+ type index_gen$l_ContactExtensionFRDunsInfo = ContactExtensionFRDunsInfo;
8830
+ type index_gen$l_ContactExtensionFRIndividualInfo = ContactExtensionFRIndividualInfo;
8831
+ type index_gen$l_ContactExtensionFRMode = ContactExtensionFRMode;
8832
+ type index_gen$l_ContactExtensionFRTrademarkInfo = ContactExtensionFRTrademarkInfo;
8833
+ type index_gen$l_ContactExtensionNL = ContactExtensionNL;
8834
+ type index_gen$l_ContactExtensionNLLegalForm = ContactExtensionNLLegalForm;
8835
+ type index_gen$l_ContactLegalForm = ContactLegalForm;
8836
+ type index_gen$l_ContactQuestion = ContactQuestion;
8837
+ type index_gen$l_ContactRoles = ContactRoles;
8838
+ type index_gen$l_ContactRolesRoles = ContactRolesRoles;
8839
+ type index_gen$l_CreateDNSZoneRequest = CreateDNSZoneRequest;
8840
+ type index_gen$l_CreateSSLCertificateRequest = CreateSSLCertificateRequest;
8841
+ type index_gen$l_DNSZone = DNSZone;
8842
+ type index_gen$l_DNSZoneStatus = DNSZoneStatus;
8843
+ type index_gen$l_DNSZoneVersion = DNSZoneVersion;
8844
+ declare const index_gen$l_DNS_ZONE_TRANSIENT_STATUSES: typeof DNS_ZONE_TRANSIENT_STATUSES;
8845
+ declare const index_gen$l_DOMAIN_FEATURE_TRANSIENT_STATUSES: typeof DOMAIN_FEATURE_TRANSIENT_STATUSES;
8846
+ declare const index_gen$l_DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES: typeof DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES;
8847
+ type index_gen$l_DSRecord = DSRecord;
8848
+ type index_gen$l_DSRecordAlgorithm = DSRecordAlgorithm;
8849
+ type index_gen$l_DSRecordDigest = DSRecordDigest;
8850
+ type index_gen$l_DSRecordDigestType = DSRecordDigestType;
8851
+ type index_gen$l_DSRecordPublicKey = DSRecordPublicKey;
8852
+ type index_gen$l_DeleteDNSZoneRequest = DeleteDNSZoneRequest;
8853
+ type index_gen$l_DeleteDNSZoneResponse = DeleteDNSZoneResponse;
8854
+ type index_gen$l_DeleteDNSZoneTsigKeyRequest = DeleteDNSZoneTsigKeyRequest;
8855
+ type index_gen$l_DeleteExternalDomainResponse = DeleteExternalDomainResponse;
8856
+ type index_gen$l_DeleteSSLCertificateRequest = DeleteSSLCertificateRequest;
8857
+ type index_gen$l_DeleteSSLCertificateResponse = DeleteSSLCertificateResponse;
8858
+ type index_gen$l_DomainDNSSEC = DomainDNSSEC;
8859
+ type index_gen$l_DomainFeatureStatus = DomainFeatureStatus;
8860
+ type index_gen$l_DomainRecord = DomainRecord;
8861
+ type index_gen$l_DomainRecordGeoIPConfig = DomainRecordGeoIPConfig;
8862
+ type index_gen$l_DomainRecordGeoIPConfigMatch = DomainRecordGeoIPConfigMatch;
8863
+ type index_gen$l_DomainRecordHTTPServiceConfig = DomainRecordHTTPServiceConfig;
8864
+ type index_gen$l_DomainRecordHTTPServiceConfigStrategy = DomainRecordHTTPServiceConfigStrategy;
8865
+ type index_gen$l_DomainRecordType = DomainRecordType;
8866
+ type index_gen$l_DomainRecordViewConfig = DomainRecordViewConfig;
8867
+ type index_gen$l_DomainRecordViewConfigView = DomainRecordViewConfigView;
8868
+ type index_gen$l_DomainRecordWeightedConfig = DomainRecordWeightedConfig;
8869
+ type index_gen$l_DomainRecordWeightedConfigWeightedIP = DomainRecordWeightedConfigWeightedIP;
8870
+ type index_gen$l_DomainRegistrationStatusExternalDomain = DomainRegistrationStatusExternalDomain;
8871
+ type index_gen$l_DomainRegistrationStatusTransfer = DomainRegistrationStatusTransfer;
8872
+ type index_gen$l_DomainRegistrationStatusTransferStatus = DomainRegistrationStatusTransferStatus;
8873
+ type index_gen$l_DomainSummary = DomainSummary;
8874
+ type index_gen$l_ExportRawDNSZoneRequest = ExportRawDNSZoneRequest;
8875
+ type index_gen$l_GetDNSZoneTsigKeyRequest = GetDNSZoneTsigKeyRequest;
8876
+ type index_gen$l_GetDNSZoneTsigKeyResponse = GetDNSZoneTsigKeyResponse;
8877
+ type index_gen$l_GetDNSZoneVersionDiffRequest = GetDNSZoneVersionDiffRequest;
8878
+ type index_gen$l_GetDNSZoneVersionDiffResponse = GetDNSZoneVersionDiffResponse;
8879
+ type index_gen$l_GetDomainAuthCodeResponse = GetDomainAuthCodeResponse;
8880
+ type index_gen$l_GetSSLCertificateRequest = GetSSLCertificateRequest;
8881
+ declare const index_gen$l_HOST_TRANSIENT_STATUSES: typeof HOST_TRANSIENT_STATUSES;
8882
+ type index_gen$l_Host = Host;
8883
+ type index_gen$l_HostStatus = HostStatus;
8884
+ type index_gen$l_ImportProviderDNSZoneRequest = ImportProviderDNSZoneRequest;
8885
+ type index_gen$l_ImportProviderDNSZoneRequestOnlineV1 = ImportProviderDNSZoneRequestOnlineV1;
8886
+ type index_gen$l_ImportProviderDNSZoneResponse = ImportProviderDNSZoneResponse;
8887
+ type index_gen$l_ImportRawDNSZoneRequest = ImportRawDNSZoneRequest;
8888
+ type index_gen$l_ImportRawDNSZoneRequestAXFRSource = ImportRawDNSZoneRequestAXFRSource;
8889
+ type index_gen$l_ImportRawDNSZoneRequestBindSource = ImportRawDNSZoneRequestBindSource;
8890
+ type index_gen$l_ImportRawDNSZoneRequestTsigKey = ImportRawDNSZoneRequestTsigKey;
8891
+ type index_gen$l_ImportRawDNSZoneResponse = ImportRawDNSZoneResponse;
8892
+ type index_gen$l_LinkedProduct = LinkedProduct;
8893
+ type index_gen$l_ListContactsRequestRole = ListContactsRequestRole;
8894
+ type index_gen$l_ListContactsResponse = ListContactsResponse;
8895
+ type index_gen$l_ListDNSZoneNameserversRequest = ListDNSZoneNameserversRequest;
8896
+ type index_gen$l_ListDNSZoneNameserversResponse = ListDNSZoneNameserversResponse;
8897
+ type index_gen$l_ListDNSZoneRecordsRequest = ListDNSZoneRecordsRequest;
8898
+ type index_gen$l_ListDNSZoneRecordsRequestOrderBy = ListDNSZoneRecordsRequestOrderBy;
8899
+ type index_gen$l_ListDNSZoneRecordsResponse = ListDNSZoneRecordsResponse;
8900
+ type index_gen$l_ListDNSZoneVersionRecordsRequest = ListDNSZoneVersionRecordsRequest;
8901
+ type index_gen$l_ListDNSZoneVersionRecordsResponse = ListDNSZoneVersionRecordsResponse;
8902
+ type index_gen$l_ListDNSZoneVersionsRequest = ListDNSZoneVersionsRequest;
8903
+ type index_gen$l_ListDNSZoneVersionsResponse = ListDNSZoneVersionsResponse;
8904
+ type index_gen$l_ListDNSZonesRequest = ListDNSZonesRequest;
8905
+ type index_gen$l_ListDNSZonesRequestOrderBy = ListDNSZonesRequestOrderBy;
8906
+ type index_gen$l_ListDNSZonesResponse = ListDNSZonesResponse;
8907
+ type index_gen$l_ListDomainHostsResponse = ListDomainHostsResponse;
8908
+ type index_gen$l_ListRenewableDomainsRequestOrderBy = ListRenewableDomainsRequestOrderBy;
8909
+ type index_gen$l_ListRenewableDomainsResponse = ListRenewableDomainsResponse;
8910
+ type index_gen$l_ListSSLCertificatesRequest = ListSSLCertificatesRequest;
8911
+ type index_gen$l_ListSSLCertificatesResponse = ListSSLCertificatesResponse;
8912
+ type index_gen$l_ListTasksRequestOrderBy = ListTasksRequestOrderBy;
8913
+ type index_gen$l_ListTasksResponse = ListTasksResponse;
8914
+ type index_gen$l_ListTldsRequestOrderBy = ListTldsRequestOrderBy;
8915
+ type index_gen$l_ListTldsResponse = ListTldsResponse;
8916
+ type index_gen$l_NewContact = NewContact;
8917
+ type index_gen$l_OrderResponse = OrderResponse;
8918
+ type index_gen$l_RawFormat = RawFormat;
8919
+ type index_gen$l_RecordChange = RecordChange;
8920
+ type index_gen$l_RecordChangeAdd = RecordChangeAdd;
8921
+ type index_gen$l_RecordChangeClear = RecordChangeClear;
8922
+ type index_gen$l_RecordChangeDelete = RecordChangeDelete;
8923
+ type index_gen$l_RecordChangeSet = RecordChangeSet;
8924
+ type index_gen$l_RecordIdentifier = RecordIdentifier;
8925
+ type index_gen$l_RefreshDNSZoneRequest = RefreshDNSZoneRequest;
8926
+ type index_gen$l_RefreshDNSZoneResponse = RefreshDNSZoneResponse;
8927
+ type index_gen$l_RegisterExternalDomainResponse = RegisterExternalDomainResponse;
8928
+ type index_gen$l_RegistrarAPI = RegistrarAPI;
8929
+ declare const index_gen$l_RegistrarAPI: typeof RegistrarAPI;
8930
+ type index_gen$l_RegistrarApiBuyDomainsRequest = RegistrarApiBuyDomainsRequest;
8931
+ type index_gen$l_RegistrarApiCheckContactsCompatibilityRequest = RegistrarApiCheckContactsCompatibilityRequest;
8932
+ type index_gen$l_RegistrarApiCreateDomainHostRequest = RegistrarApiCreateDomainHostRequest;
8933
+ type index_gen$l_RegistrarApiDeleteDomainHostRequest = RegistrarApiDeleteDomainHostRequest;
8934
+ type index_gen$l_RegistrarApiDeleteExternalDomainRequest = RegistrarApiDeleteExternalDomainRequest;
8935
+ type index_gen$l_RegistrarApiDisableDomainAutoRenewRequest = RegistrarApiDisableDomainAutoRenewRequest;
8936
+ type index_gen$l_RegistrarApiDisableDomainDNSSECRequest = RegistrarApiDisableDomainDNSSECRequest;
8937
+ type index_gen$l_RegistrarApiEnableDomainAutoRenewRequest = RegistrarApiEnableDomainAutoRenewRequest;
8938
+ type index_gen$l_RegistrarApiEnableDomainDNSSECRequest = RegistrarApiEnableDomainDNSSECRequest;
8939
+ type index_gen$l_RegistrarApiGetContactRequest = RegistrarApiGetContactRequest;
8940
+ type index_gen$l_RegistrarApiGetDomainAuthCodeRequest = RegistrarApiGetDomainAuthCodeRequest;
8941
+ type index_gen$l_RegistrarApiGetDomainRequest = RegistrarApiGetDomainRequest;
8942
+ type index_gen$l_RegistrarApiListContactsRequest = RegistrarApiListContactsRequest;
8943
+ type index_gen$l_RegistrarApiListDomainHostsRequest = RegistrarApiListDomainHostsRequest;
8944
+ type index_gen$l_RegistrarApiListDomainsRequest = RegistrarApiListDomainsRequest;
8945
+ type index_gen$l_RegistrarApiListRenewableDomainsRequest = RegistrarApiListRenewableDomainsRequest;
8946
+ type index_gen$l_RegistrarApiListTasksRequest = RegistrarApiListTasksRequest;
8947
+ type index_gen$l_RegistrarApiListTldsRequest = RegistrarApiListTldsRequest;
8948
+ type index_gen$l_RegistrarApiLockDomainTransferRequest = RegistrarApiLockDomainTransferRequest;
8949
+ type index_gen$l_RegistrarApiRegisterExternalDomainRequest = RegistrarApiRegisterExternalDomainRequest;
8950
+ type index_gen$l_RegistrarApiRenewDomainsRequest = RegistrarApiRenewDomainsRequest;
8951
+ type index_gen$l_RegistrarApiSearchAvailableDomainsRequest = RegistrarApiSearchAvailableDomainsRequest;
8952
+ type index_gen$l_RegistrarApiTradeDomainRequest = RegistrarApiTradeDomainRequest;
8953
+ type index_gen$l_RegistrarApiTransferInDomainRequest = RegistrarApiTransferInDomainRequest;
8954
+ type index_gen$l_RegistrarApiUnlockDomainTransferRequest = RegistrarApiUnlockDomainTransferRequest;
8955
+ type index_gen$l_RegistrarApiUpdateContactRequest = RegistrarApiUpdateContactRequest;
8956
+ type index_gen$l_RegistrarApiUpdateDomainHostRequest = RegistrarApiUpdateDomainHostRequest;
8957
+ type index_gen$l_RegistrarApiUpdateDomainRequest = RegistrarApiUpdateDomainRequest;
8958
+ type index_gen$l_RenewableDomain = RenewableDomain;
8959
+ type index_gen$l_RenewableDomainStatus = RenewableDomainStatus;
8960
+ type index_gen$l_RestoreDNSZoneVersionRequest = RestoreDNSZoneVersionRequest;
8961
+ type index_gen$l_RestoreDNSZoneVersionResponse = RestoreDNSZoneVersionResponse;
8962
+ type index_gen$l_SSLCertificate = SSLCertificate;
8963
+ type index_gen$l_SSLCertificateStatus = SSLCertificateStatus;
8964
+ declare const index_gen$l_SSL_CERTIFICATE_TRANSIENT_STATUSES: typeof SSL_CERTIFICATE_TRANSIENT_STATUSES;
8965
+ type index_gen$l_SearchAvailableDomainsResponse = SearchAvailableDomainsResponse;
8966
+ type index_gen$l_TaskType = TaskType;
8967
+ type index_gen$l_Tld = Tld;
8968
+ type index_gen$l_TldOffer = TldOffer;
8969
+ type index_gen$l_TransferInDomainRequestTransferRequest = TransferInDomainRequestTransferRequest;
8970
+ type index_gen$l_UpdateContactRequestQuestion = UpdateContactRequestQuestion;
8971
+ type index_gen$l_UpdateDNSZoneNameserversRequest = UpdateDNSZoneNameserversRequest;
8972
+ type index_gen$l_UpdateDNSZoneNameserversResponse = UpdateDNSZoneNameserversResponse;
8973
+ type index_gen$l_UpdateDNSZoneRecordsRequest = UpdateDNSZoneRecordsRequest;
8974
+ type index_gen$l_UpdateDNSZoneRecordsResponse = UpdateDNSZoneRecordsResponse;
8975
+ type index_gen$l_UpdateDNSZoneRequest = UpdateDNSZoneRequest;
8976
+ declare namespace index_gen$l {
8977
+ export { API$m as API, type index_gen$l_AvailableDomain as AvailableDomain, type index_gen$l_CheckContactsCompatibilityResponse as CheckContactsCompatibilityResponse, type index_gen$l_CheckContactsCompatibilityResponseContactCheckResult as CheckContactsCompatibilityResponseContactCheckResult, type index_gen$l_ClearDNSZoneRecordsRequest as ClearDNSZoneRecordsRequest, type index_gen$l_ClearDNSZoneRecordsResponse as ClearDNSZoneRecordsResponse, type index_gen$l_CloneDNSZoneRequest as CloneDNSZoneRequest, type index_gen$l_Contact as Contact, type index_gen$l_ContactEmailStatus as ContactEmailStatus, type index_gen$l_ContactExtensionEU as ContactExtensionEU, type index_gen$l_ContactExtensionFR as ContactExtensionFR, type index_gen$l_ContactExtensionFRAssociationInfo as ContactExtensionFRAssociationInfo, type index_gen$l_ContactExtensionFRCodeAuthAfnicInfo as ContactExtensionFRCodeAuthAfnicInfo, type index_gen$l_ContactExtensionFRDunsInfo as ContactExtensionFRDunsInfo, type index_gen$l_ContactExtensionFRIndividualInfo as ContactExtensionFRIndividualInfo, type index_gen$l_ContactExtensionFRMode as ContactExtensionFRMode, type index_gen$l_ContactExtensionFRTrademarkInfo as ContactExtensionFRTrademarkInfo, type index_gen$l_ContactExtensionNL as ContactExtensionNL, type index_gen$l_ContactExtensionNLLegalForm as ContactExtensionNLLegalForm, type index_gen$l_ContactLegalForm as ContactLegalForm, type index_gen$l_ContactQuestion as ContactQuestion, type index_gen$l_ContactRoles as ContactRoles, type index_gen$l_ContactRolesRoles as ContactRolesRoles, type index_gen$l_CreateDNSZoneRequest as CreateDNSZoneRequest, type index_gen$l_CreateSSLCertificateRequest as CreateSSLCertificateRequest, type index_gen$l_DNSZone as DNSZone, type index_gen$l_DNSZoneStatus as DNSZoneStatus, type index_gen$l_DNSZoneVersion as DNSZoneVersion, index_gen$l_DNS_ZONE_TRANSIENT_STATUSES as DNS_ZONE_TRANSIENT_STATUSES, index_gen$l_DOMAIN_FEATURE_TRANSIENT_STATUSES as DOMAIN_FEATURE_TRANSIENT_STATUSES, index_gen$l_DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES as DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES, DOMAIN_TRANSIENT_STATUSES$2 as DOMAIN_TRANSIENT_STATUSES, type index_gen$l_DSRecord as DSRecord, type index_gen$l_DSRecordAlgorithm as DSRecordAlgorithm, type index_gen$l_DSRecordDigest as DSRecordDigest, type index_gen$l_DSRecordDigestType as DSRecordDigestType, type index_gen$l_DSRecordPublicKey as DSRecordPublicKey, type index_gen$l_DeleteDNSZoneRequest as DeleteDNSZoneRequest, type index_gen$l_DeleteDNSZoneResponse as DeleteDNSZoneResponse, type index_gen$l_DeleteDNSZoneTsigKeyRequest as DeleteDNSZoneTsigKeyRequest, type index_gen$l_DeleteExternalDomainResponse as DeleteExternalDomainResponse, type index_gen$l_DeleteSSLCertificateRequest as DeleteSSLCertificateRequest, type index_gen$l_DeleteSSLCertificateResponse as DeleteSSLCertificateResponse, type Domain$2 as Domain, type index_gen$l_DomainDNSSEC as DomainDNSSEC, type index_gen$l_DomainFeatureStatus as DomainFeatureStatus, type index_gen$l_DomainRecord as DomainRecord, type index_gen$l_DomainRecordGeoIPConfig as DomainRecordGeoIPConfig, type index_gen$l_DomainRecordGeoIPConfigMatch as DomainRecordGeoIPConfigMatch, type index_gen$l_DomainRecordHTTPServiceConfig as DomainRecordHTTPServiceConfig, type index_gen$l_DomainRecordHTTPServiceConfigStrategy as DomainRecordHTTPServiceConfigStrategy, type index_gen$l_DomainRecordType as DomainRecordType, type index_gen$l_DomainRecordViewConfig as DomainRecordViewConfig, type index_gen$l_DomainRecordViewConfigView as DomainRecordViewConfigView, type index_gen$l_DomainRecordWeightedConfig as DomainRecordWeightedConfig, type index_gen$l_DomainRecordWeightedConfigWeightedIP as DomainRecordWeightedConfigWeightedIP, type index_gen$l_DomainRegistrationStatusExternalDomain as DomainRegistrationStatusExternalDomain, type index_gen$l_DomainRegistrationStatusTransfer as DomainRegistrationStatusTransfer, type index_gen$l_DomainRegistrationStatusTransferStatus as DomainRegistrationStatusTransferStatus, type DomainStatus$2 as DomainStatus, type index_gen$l_DomainSummary as DomainSummary, type index_gen$l_ExportRawDNSZoneRequest as ExportRawDNSZoneRequest, type index_gen$l_GetDNSZoneTsigKeyRequest as GetDNSZoneTsigKeyRequest, type index_gen$l_GetDNSZoneTsigKeyResponse as GetDNSZoneTsigKeyResponse, type index_gen$l_GetDNSZoneVersionDiffRequest as GetDNSZoneVersionDiffRequest, type index_gen$l_GetDNSZoneVersionDiffResponse as GetDNSZoneVersionDiffResponse, type index_gen$l_GetDomainAuthCodeResponse as GetDomainAuthCodeResponse, type index_gen$l_GetSSLCertificateRequest as GetSSLCertificateRequest, index_gen$l_HOST_TRANSIENT_STATUSES as HOST_TRANSIENT_STATUSES, type index_gen$l_Host as Host, type index_gen$l_HostStatus as HostStatus, type index_gen$l_ImportProviderDNSZoneRequest as ImportProviderDNSZoneRequest, type index_gen$l_ImportProviderDNSZoneRequestOnlineV1 as ImportProviderDNSZoneRequestOnlineV1, type index_gen$l_ImportProviderDNSZoneResponse as ImportProviderDNSZoneResponse, type index_gen$l_ImportRawDNSZoneRequest as ImportRawDNSZoneRequest, type index_gen$l_ImportRawDNSZoneRequestAXFRSource as ImportRawDNSZoneRequestAXFRSource, type index_gen$l_ImportRawDNSZoneRequestBindSource as ImportRawDNSZoneRequestBindSource, type index_gen$l_ImportRawDNSZoneRequestTsigKey as ImportRawDNSZoneRequestTsigKey, type index_gen$l_ImportRawDNSZoneResponse as ImportRawDNSZoneResponse, type index_gen$l_LinkedProduct as LinkedProduct, type index_gen$l_ListContactsRequestRole as ListContactsRequestRole, type index_gen$l_ListContactsResponse as ListContactsResponse, type index_gen$l_ListDNSZoneNameserversRequest as ListDNSZoneNameserversRequest, type index_gen$l_ListDNSZoneNameserversResponse as ListDNSZoneNameserversResponse, type index_gen$l_ListDNSZoneRecordsRequest as ListDNSZoneRecordsRequest, type index_gen$l_ListDNSZoneRecordsRequestOrderBy as ListDNSZoneRecordsRequestOrderBy, type index_gen$l_ListDNSZoneRecordsResponse as ListDNSZoneRecordsResponse, type index_gen$l_ListDNSZoneVersionRecordsRequest as ListDNSZoneVersionRecordsRequest, type index_gen$l_ListDNSZoneVersionRecordsResponse as ListDNSZoneVersionRecordsResponse, type index_gen$l_ListDNSZoneVersionsRequest as ListDNSZoneVersionsRequest, type index_gen$l_ListDNSZoneVersionsResponse as ListDNSZoneVersionsResponse, type index_gen$l_ListDNSZonesRequest as ListDNSZonesRequest, type index_gen$l_ListDNSZonesRequestOrderBy as ListDNSZonesRequestOrderBy, type index_gen$l_ListDNSZonesResponse as ListDNSZonesResponse, type index_gen$l_ListDomainHostsResponse as ListDomainHostsResponse, type ListDomainsRequestOrderBy$1 as ListDomainsRequestOrderBy, type ListDomainsResponse$2 as ListDomainsResponse, type index_gen$l_ListRenewableDomainsRequestOrderBy as ListRenewableDomainsRequestOrderBy, type index_gen$l_ListRenewableDomainsResponse as ListRenewableDomainsResponse, type index_gen$l_ListSSLCertificatesRequest as ListSSLCertificatesRequest, type index_gen$l_ListSSLCertificatesResponse as ListSSLCertificatesResponse, type index_gen$l_ListTasksRequestOrderBy as ListTasksRequestOrderBy, type index_gen$l_ListTasksResponse as ListTasksResponse, type index_gen$l_ListTldsRequestOrderBy as ListTldsRequestOrderBy, type index_gen$l_ListTldsResponse as ListTldsResponse, type Nameserver$1 as Nameserver, type index_gen$l_NewContact as NewContact, type index_gen$l_OrderResponse as OrderResponse, type index_gen$l_RawFormat as RawFormat, type index_gen$l_RecordChange as RecordChange, type index_gen$l_RecordChangeAdd as RecordChangeAdd, type index_gen$l_RecordChangeClear as RecordChangeClear, type index_gen$l_RecordChangeDelete as RecordChangeDelete, type index_gen$l_RecordChangeSet as RecordChangeSet, type index_gen$l_RecordIdentifier as RecordIdentifier, type index_gen$l_RefreshDNSZoneRequest as RefreshDNSZoneRequest, type index_gen$l_RefreshDNSZoneResponse as RefreshDNSZoneResponse, type index_gen$l_RegisterExternalDomainResponse as RegisterExternalDomainResponse, index_gen$l_RegistrarAPI as RegistrarAPI, type index_gen$l_RegistrarApiBuyDomainsRequest as RegistrarApiBuyDomainsRequest, type index_gen$l_RegistrarApiCheckContactsCompatibilityRequest as RegistrarApiCheckContactsCompatibilityRequest, type index_gen$l_RegistrarApiCreateDomainHostRequest as RegistrarApiCreateDomainHostRequest, type index_gen$l_RegistrarApiDeleteDomainHostRequest as RegistrarApiDeleteDomainHostRequest, type index_gen$l_RegistrarApiDeleteExternalDomainRequest as RegistrarApiDeleteExternalDomainRequest, type index_gen$l_RegistrarApiDisableDomainAutoRenewRequest as RegistrarApiDisableDomainAutoRenewRequest, type index_gen$l_RegistrarApiDisableDomainDNSSECRequest as RegistrarApiDisableDomainDNSSECRequest, type index_gen$l_RegistrarApiEnableDomainAutoRenewRequest as RegistrarApiEnableDomainAutoRenewRequest, type index_gen$l_RegistrarApiEnableDomainDNSSECRequest as RegistrarApiEnableDomainDNSSECRequest, type index_gen$l_RegistrarApiGetContactRequest as RegistrarApiGetContactRequest, type index_gen$l_RegistrarApiGetDomainAuthCodeRequest as RegistrarApiGetDomainAuthCodeRequest, type index_gen$l_RegistrarApiGetDomainRequest as RegistrarApiGetDomainRequest, type index_gen$l_RegistrarApiListContactsRequest as RegistrarApiListContactsRequest, type index_gen$l_RegistrarApiListDomainHostsRequest as RegistrarApiListDomainHostsRequest, type index_gen$l_RegistrarApiListDomainsRequest as RegistrarApiListDomainsRequest, type index_gen$l_RegistrarApiListRenewableDomainsRequest as RegistrarApiListRenewableDomainsRequest, type index_gen$l_RegistrarApiListTasksRequest as RegistrarApiListTasksRequest, type index_gen$l_RegistrarApiListTldsRequest as RegistrarApiListTldsRequest, type index_gen$l_RegistrarApiLockDomainTransferRequest as RegistrarApiLockDomainTransferRequest, type index_gen$l_RegistrarApiRegisterExternalDomainRequest as RegistrarApiRegisterExternalDomainRequest, type index_gen$l_RegistrarApiRenewDomainsRequest as RegistrarApiRenewDomainsRequest, type index_gen$l_RegistrarApiSearchAvailableDomainsRequest as RegistrarApiSearchAvailableDomainsRequest, type index_gen$l_RegistrarApiTradeDomainRequest as RegistrarApiTradeDomainRequest, type index_gen$l_RegistrarApiTransferInDomainRequest as RegistrarApiTransferInDomainRequest, type index_gen$l_RegistrarApiUnlockDomainTransferRequest as RegistrarApiUnlockDomainTransferRequest, type index_gen$l_RegistrarApiUpdateContactRequest as RegistrarApiUpdateContactRequest, type index_gen$l_RegistrarApiUpdateDomainHostRequest as RegistrarApiUpdateDomainHostRequest, type index_gen$l_RegistrarApiUpdateDomainRequest as RegistrarApiUpdateDomainRequest, type index_gen$l_RenewableDomain as RenewableDomain, type index_gen$l_RenewableDomainStatus as RenewableDomainStatus, type index_gen$l_RestoreDNSZoneVersionRequest as RestoreDNSZoneVersionRequest, type index_gen$l_RestoreDNSZoneVersionResponse as RestoreDNSZoneVersionResponse, type index_gen$l_SSLCertificate as SSLCertificate, type index_gen$l_SSLCertificateStatus as SSLCertificateStatus, index_gen$l_SSL_CERTIFICATE_TRANSIENT_STATUSES as SSL_CERTIFICATE_TRANSIENT_STATUSES, type index_gen$l_SearchAvailableDomainsResponse as SearchAvailableDomainsResponse, TASK_TRANSIENT_STATUSES$1 as TASK_TRANSIENT_STATUSES, type Task$1 as Task, type TaskStatus$1 as TaskStatus, type index_gen$l_TaskType as TaskType, type index_gen$l_Tld as Tld, type index_gen$l_TldOffer as TldOffer, type index_gen$l_TransferInDomainRequestTransferRequest as TransferInDomainRequestTransferRequest, type index_gen$l_UpdateContactRequestQuestion as UpdateContactRequestQuestion, type index_gen$l_UpdateDNSZoneNameserversRequest as UpdateDNSZoneNameserversRequest, type index_gen$l_UpdateDNSZoneNameserversResponse as UpdateDNSZoneNameserversResponse, type index_gen$l_UpdateDNSZoneRecordsRequest as UpdateDNSZoneRecordsRequest, type index_gen$l_UpdateDNSZoneRecordsResponse as UpdateDNSZoneRecordsResponse, type index_gen$l_UpdateDNSZoneRequest as UpdateDNSZoneRequest };
8938
8978
  }
8939
8979
 
8940
8980
  declare namespace index$o {
8941
- export { index_gen$m as v2beta1 };
8981
+ export { index_gen$l as v2beta1 };
8942
8982
  }
8943
8983
 
8944
8984
  type FlexibleIPStatus = 'unknown' | 'ready' | 'updating' | 'attached' | 'error' | 'detaching' | 'locked';
@@ -9138,7 +9178,7 @@ type UpdateFlexibleIPRequest = {
9138
9178
  };
9139
9179
 
9140
9180
  /** Elastic Metal - Flexible IP API. */
9141
- declare class API$m extends API$w {
9181
+ declare class API$l extends API$v {
9142
9182
  /** Lists the available zones of the API. */
9143
9183
  static readonly LOCALITIES: Zone[];
9144
9184
  /**
@@ -9265,33 +9305,33 @@ declare namespace validationRules_gen$8 {
9265
9305
  export { validationRules_gen$8_ListFlexibleIPsRequest as ListFlexibleIPsRequest };
9266
9306
  }
9267
9307
 
9268
- type index_gen$l_AttachFlexibleIPRequest = AttachFlexibleIPRequest;
9269
- type index_gen$l_AttachFlexibleIPsResponse = AttachFlexibleIPsResponse;
9270
- type index_gen$l_CreateFlexibleIPRequest = CreateFlexibleIPRequest;
9271
- type index_gen$l_DeleteFlexibleIPRequest = DeleteFlexibleIPRequest;
9272
- type index_gen$l_DeleteMACAddrRequest = DeleteMACAddrRequest;
9273
- type index_gen$l_DetachFlexibleIPRequest = DetachFlexibleIPRequest;
9274
- type index_gen$l_DetachFlexibleIPsResponse = DetachFlexibleIPsResponse;
9275
- type index_gen$l_DuplicateMACAddrRequest = DuplicateMACAddrRequest;
9276
- declare const index_gen$l_FLEXIBLE_IP_TRANSIENT_STATUSES: typeof FLEXIBLE_IP_TRANSIENT_STATUSES;
9277
- type index_gen$l_FlexibleIP = FlexibleIP;
9278
- type index_gen$l_FlexibleIPStatus = FlexibleIPStatus;
9279
- type index_gen$l_GenerateMACAddrRequest = GenerateMACAddrRequest;
9280
- type index_gen$l_GetFlexibleIPRequest = GetFlexibleIPRequest;
9281
- type index_gen$l_ListFlexibleIPsRequestOrderBy = ListFlexibleIPsRequestOrderBy;
9282
- type index_gen$l_ListFlexibleIPsResponse = ListFlexibleIPsResponse;
9283
- type index_gen$l_MACAddress = MACAddress;
9284
- type index_gen$l_MACAddressStatus = MACAddressStatus;
9285
- type index_gen$l_MACAddressType = MACAddressType;
9286
- declare const index_gen$l_MAC_ADDRESS_TRANSIENT_STATUSES: typeof MAC_ADDRESS_TRANSIENT_STATUSES;
9287
- type index_gen$l_MoveMACAddrRequest = MoveMACAddrRequest;
9288
- type index_gen$l_UpdateFlexibleIPRequest = UpdateFlexibleIPRequest;
9289
- declare namespace index_gen$l {
9290
- export { API$m as API, type index_gen$l_AttachFlexibleIPRequest as AttachFlexibleIPRequest, type index_gen$l_AttachFlexibleIPsResponse as AttachFlexibleIPsResponse, type index_gen$l_CreateFlexibleIPRequest as CreateFlexibleIPRequest, type index_gen$l_DeleteFlexibleIPRequest as DeleteFlexibleIPRequest, type index_gen$l_DeleteMACAddrRequest as DeleteMACAddrRequest, type index_gen$l_DetachFlexibleIPRequest as DetachFlexibleIPRequest, type index_gen$l_DetachFlexibleIPsResponse as DetachFlexibleIPsResponse, type index_gen$l_DuplicateMACAddrRequest as DuplicateMACAddrRequest, index_gen$l_FLEXIBLE_IP_TRANSIENT_STATUSES as FLEXIBLE_IP_TRANSIENT_STATUSES, type index_gen$l_FlexibleIP as FlexibleIP, type index_gen$l_FlexibleIPStatus as FlexibleIPStatus, type index_gen$l_GenerateMACAddrRequest as GenerateMACAddrRequest, type index_gen$l_GetFlexibleIPRequest as GetFlexibleIPRequest, type ListFlexibleIPsRequest$1 as ListFlexibleIPsRequest, type index_gen$l_ListFlexibleIPsRequestOrderBy as ListFlexibleIPsRequestOrderBy, type index_gen$l_ListFlexibleIPsResponse as ListFlexibleIPsResponse, type index_gen$l_MACAddress as MACAddress, type index_gen$l_MACAddressStatus as MACAddressStatus, type index_gen$l_MACAddressType as MACAddressType, index_gen$l_MAC_ADDRESS_TRANSIENT_STATUSES as MAC_ADDRESS_TRANSIENT_STATUSES, type index_gen$l_MoveMACAddrRequest as MoveMACAddrRequest, type index_gen$l_UpdateFlexibleIPRequest as UpdateFlexibleIPRequest, validationRules_gen$8 as ValidationRules };
9308
+ type index_gen$k_AttachFlexibleIPRequest = AttachFlexibleIPRequest;
9309
+ type index_gen$k_AttachFlexibleIPsResponse = AttachFlexibleIPsResponse;
9310
+ type index_gen$k_CreateFlexibleIPRequest = CreateFlexibleIPRequest;
9311
+ type index_gen$k_DeleteFlexibleIPRequest = DeleteFlexibleIPRequest;
9312
+ type index_gen$k_DeleteMACAddrRequest = DeleteMACAddrRequest;
9313
+ type index_gen$k_DetachFlexibleIPRequest = DetachFlexibleIPRequest;
9314
+ type index_gen$k_DetachFlexibleIPsResponse = DetachFlexibleIPsResponse;
9315
+ type index_gen$k_DuplicateMACAddrRequest = DuplicateMACAddrRequest;
9316
+ declare const index_gen$k_FLEXIBLE_IP_TRANSIENT_STATUSES: typeof FLEXIBLE_IP_TRANSIENT_STATUSES;
9317
+ type index_gen$k_FlexibleIP = FlexibleIP;
9318
+ type index_gen$k_FlexibleIPStatus = FlexibleIPStatus;
9319
+ type index_gen$k_GenerateMACAddrRequest = GenerateMACAddrRequest;
9320
+ type index_gen$k_GetFlexibleIPRequest = GetFlexibleIPRequest;
9321
+ type index_gen$k_ListFlexibleIPsRequestOrderBy = ListFlexibleIPsRequestOrderBy;
9322
+ type index_gen$k_ListFlexibleIPsResponse = ListFlexibleIPsResponse;
9323
+ type index_gen$k_MACAddress = MACAddress;
9324
+ type index_gen$k_MACAddressStatus = MACAddressStatus;
9325
+ type index_gen$k_MACAddressType = MACAddressType;
9326
+ declare const index_gen$k_MAC_ADDRESS_TRANSIENT_STATUSES: typeof MAC_ADDRESS_TRANSIENT_STATUSES;
9327
+ type index_gen$k_MoveMACAddrRequest = MoveMACAddrRequest;
9328
+ type index_gen$k_UpdateFlexibleIPRequest = UpdateFlexibleIPRequest;
9329
+ declare namespace index_gen$k {
9330
+ export { API$l as API, type index_gen$k_AttachFlexibleIPRequest as AttachFlexibleIPRequest, type index_gen$k_AttachFlexibleIPsResponse as AttachFlexibleIPsResponse, type index_gen$k_CreateFlexibleIPRequest as CreateFlexibleIPRequest, type index_gen$k_DeleteFlexibleIPRequest as DeleteFlexibleIPRequest, type index_gen$k_DeleteMACAddrRequest as DeleteMACAddrRequest, type index_gen$k_DetachFlexibleIPRequest as DetachFlexibleIPRequest, type index_gen$k_DetachFlexibleIPsResponse as DetachFlexibleIPsResponse, type index_gen$k_DuplicateMACAddrRequest as DuplicateMACAddrRequest, index_gen$k_FLEXIBLE_IP_TRANSIENT_STATUSES as FLEXIBLE_IP_TRANSIENT_STATUSES, type index_gen$k_FlexibleIP as FlexibleIP, type index_gen$k_FlexibleIPStatus as FlexibleIPStatus, type index_gen$k_GenerateMACAddrRequest as GenerateMACAddrRequest, type index_gen$k_GetFlexibleIPRequest as GetFlexibleIPRequest, type ListFlexibleIPsRequest$1 as ListFlexibleIPsRequest, type index_gen$k_ListFlexibleIPsRequestOrderBy as ListFlexibleIPsRequestOrderBy, type index_gen$k_ListFlexibleIPsResponse as ListFlexibleIPsResponse, type index_gen$k_MACAddress as MACAddress, type index_gen$k_MACAddressStatus as MACAddressStatus, type index_gen$k_MACAddressType as MACAddressType, index_gen$k_MAC_ADDRESS_TRANSIENT_STATUSES as MAC_ADDRESS_TRANSIENT_STATUSES, type index_gen$k_MoveMACAddrRequest as MoveMACAddrRequest, type index_gen$k_UpdateFlexibleIPRequest as UpdateFlexibleIPRequest, validationRules_gen$8 as ValidationRules };
9291
9331
  }
9292
9332
 
9293
9333
  declare namespace index$n {
9294
- export { index_gen$l as v1alpha1 };
9334
+ export { index_gen$k as v1alpha1 };
9295
9335
  }
9296
9336
 
9297
9337
  type CronStatus = 'unknown' | 'ready' | 'deleting' | 'error' | 'locked' | 'creating' | 'pending';
@@ -9304,7 +9344,7 @@ type ListCronsRequestOrderBy = 'created_at_asc' | 'created_at_desc';
9304
9344
  type ListDomainsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'hostname_asc' | 'hostname_desc';
9305
9345
  type ListFunctionsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
9306
9346
  type ListLogsRequestOrderBy$1 = 'timestamp_desc' | 'timestamp_asc';
9307
- type ListNamespacesRequestOrderBy$2 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
9347
+ type ListNamespacesRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
9308
9348
  type ListTokensRequestOrderBy = 'created_at_asc' | 'created_at_desc';
9309
9349
  type ListTriggersRequestOrderBy = 'created_at_asc' | 'created_at_desc';
9310
9350
  type LogStream = 'unknown' | 'stdout' | 'stderr';
@@ -9490,7 +9530,7 @@ interface Log$1 {
9490
9530
  /** Can be stdout or stderr. */
9491
9531
  stream: LogStream;
9492
9532
  }
9493
- interface Namespace$2 {
9533
+ interface Namespace$1 {
9494
9534
  /** UUID of the namespace. */
9495
9535
  id: string;
9496
9536
  /** Name of the namespace. */
@@ -9647,7 +9687,7 @@ type CreateFunctionRequest = {
9647
9687
  */
9648
9688
  httpOption?: FunctionHttpOption;
9649
9689
  };
9650
- type CreateNamespaceRequest$2 = {
9690
+ type CreateNamespaceRequest$1 = {
9651
9691
  /**
9652
9692
  * Region to target. If none is passed will use default region from the
9653
9693
  * config.
@@ -9747,7 +9787,7 @@ type DeleteFunctionRequest = {
9747
9787
  /** UUID of the function to delete. */
9748
9788
  functionId: string;
9749
9789
  };
9750
- type DeleteNamespaceRequest$2 = {
9790
+ type DeleteNamespaceRequest$1 = {
9751
9791
  /**
9752
9792
  * Region to target. If none is passed will use default region from the
9753
9793
  * config.
@@ -9834,7 +9874,7 @@ type GetFunctionUploadURLRequest = {
9834
9874
  /** Size of the archive to upload in bytes. */
9835
9875
  contentLength: number;
9836
9876
  };
9837
- type GetNamespaceRequest$2 = {
9877
+ type GetNamespaceRequest$1 = {
9838
9878
  /**
9839
9879
  * Region to target. If none is passed will use default region from the
9840
9880
  * config.
@@ -9976,7 +10016,7 @@ interface ListLogsResponse$1 {
9976
10016
  /** Total number of logs. */
9977
10017
  totalCount: number;
9978
10018
  }
9979
- type ListNamespacesRequest$2 = {
10019
+ type ListNamespacesRequest$1 = {
9980
10020
  /**
9981
10021
  * Region to target. If none is passed will use default region from the
9982
10022
  * config.
@@ -9987,7 +10027,7 @@ type ListNamespacesRequest$2 = {
9987
10027
  /** Number of namespaces per page. */
9988
10028
  pageSize?: number;
9989
10029
  /** Order of the namespaces. */
9990
- orderBy?: ListNamespacesRequestOrderBy$2;
10030
+ orderBy?: ListNamespacesRequestOrderBy$1;
9991
10031
  /** Name of the namespace. */
9992
10032
  name?: string;
9993
10033
  /** UUID of the Organization the namespace belongs to. */
@@ -9995,8 +10035,8 @@ type ListNamespacesRequest$2 = {
9995
10035
  /** UUID of the Project the namespace belongs to. */
9996
10036
  projectId?: string;
9997
10037
  };
9998
- interface ListNamespacesResponse$2 {
9999
- namespaces: Namespace$2[];
10038
+ interface ListNamespacesResponse$1 {
10039
+ namespaces: Namespace$1[];
10000
10040
  /** Total number of namespaces. */
10001
10041
  totalCount: number;
10002
10042
  }
@@ -10117,7 +10157,7 @@ type UpdateFunctionRequest = {
10117
10157
  */
10118
10158
  httpOption?: FunctionHttpOption;
10119
10159
  };
10120
- type UpdateNamespaceRequest$2 = {
10160
+ type UpdateNamespaceRequest$1 = {
10121
10161
  /**
10122
10162
  * Region to target. If none is passed will use default region from the
10123
10163
  * config.
@@ -10159,10 +10199,10 @@ interface UploadURL {
10159
10199
  }
10160
10200
 
10161
10201
  /** Serverless Functions API. */
10162
- declare class API$l extends API$w {
10202
+ declare class API$k extends API$v {
10163
10203
  /** Lists the available regions of the API. */
10164
10204
  static readonly LOCALITIES: Region[];
10165
- protected pageOfListNamespaces: (request?: Readonly<ListNamespacesRequest$2>) => Promise<ListNamespacesResponse$2>;
10205
+ protected pageOfListNamespaces: (request?: Readonly<ListNamespacesRequest$1>) => Promise<ListNamespacesResponse$1>;
10166
10206
  /**
10167
10207
  * List all your namespaces. List all existing namespaces in the specified
10168
10208
  * region.
@@ -10170,9 +10210,9 @@ declare class API$l extends API$w {
10170
10210
  * @param request - The request {@link ListNamespacesRequest}
10171
10211
  * @returns A Promise of ListNamespacesResponse
10172
10212
  */
10173
- listNamespaces: (request?: Readonly<ListNamespacesRequest$2>) => Promise<ListNamespacesResponse$2> & {
10174
- all: () => Promise<Namespace$2[]>;
10175
- [Symbol.asyncIterator]: () => AsyncGenerator<Namespace$2[], void, void>;
10213
+ listNamespaces: (request?: Readonly<ListNamespacesRequest$1>) => Promise<ListNamespacesResponse$1> & {
10214
+ all: () => Promise<Namespace$1[]>;
10215
+ [Symbol.asyncIterator]: () => AsyncGenerator<Namespace$1[], void, void>;
10176
10216
  };
10177
10217
  /**
10178
10218
  * Get a namespace. Get the namespace associated with the specified ID.
@@ -10180,7 +10220,7 @@ declare class API$l extends API$w {
10180
10220
  * @param request - The request {@link GetNamespaceRequest}
10181
10221
  * @returns A Promise of Namespace
10182
10222
  */
10183
- getNamespace: (request: Readonly<GetNamespaceRequest$2>) => Promise<Namespace$2>;
10223
+ getNamespace: (request: Readonly<GetNamespaceRequest$1>) => Promise<Namespace$1>;
10184
10224
  /**
10185
10225
  * Waits for {@link Namespace} to be in a final state.
10186
10226
  *
@@ -10188,7 +10228,7 @@ declare class API$l extends API$w {
10188
10228
  * @param options - The waiting options
10189
10229
  * @returns A Promise of Namespace
10190
10230
  */
10191
- waitForNamespace: (request: Readonly<GetNamespaceRequest$2>, options?: Readonly<WaitForOptions<Namespace$2>>) => Promise<Namespace$2>;
10231
+ waitForNamespace: (request: Readonly<GetNamespaceRequest$1>, options?: Readonly<WaitForOptions<Namespace$1>>) => Promise<Namespace$1>;
10192
10232
  /**
10193
10233
  * Create a new namespace. Create a new namespace in a specified Organization
10194
10234
  * or Project.
@@ -10196,7 +10236,7 @@ declare class API$l extends API$w {
10196
10236
  * @param request - The request {@link CreateNamespaceRequest}
10197
10237
  * @returns A Promise of Namespace
10198
10238
  */
10199
- createNamespace: (request?: Readonly<CreateNamespaceRequest$2>) => Promise<Namespace$2>;
10239
+ createNamespace: (request?: Readonly<CreateNamespaceRequest$1>) => Promise<Namespace$1>;
10200
10240
  /**
10201
10241
  * Update an existing namespace. Update the namespace associated with the
10202
10242
  * specified ID.
@@ -10204,7 +10244,7 @@ declare class API$l extends API$w {
10204
10244
  * @param request - The request {@link UpdateNamespaceRequest}
10205
10245
  * @returns A Promise of Namespace
10206
10246
  */
10207
- updateNamespace: (request: Readonly<UpdateNamespaceRequest$2>) => Promise<Namespace$2>;
10247
+ updateNamespace: (request: Readonly<UpdateNamespaceRequest$1>) => Promise<Namespace$1>;
10208
10248
  /**
10209
10249
  * Delete an existing namespace. Delete the namespace associated with the
10210
10250
  * specified ID.
@@ -10212,7 +10252,7 @@ declare class API$l extends API$w {
10212
10252
  * @param request - The request {@link DeleteNamespaceRequest}
10213
10253
  * @returns A Promise of Namespace
10214
10254
  */
10215
- deleteNamespace: (request: Readonly<DeleteNamespaceRequest$2>) => Promise<Namespace$2>;
10255
+ deleteNamespace: (request: Readonly<DeleteNamespaceRequest$1>) => Promise<Namespace$1>;
10216
10256
  protected pageOfListFunctions: (request: Readonly<ListFunctionsRequest>) => Promise<ListFunctionsResponse>;
10217
10257
  /**
10218
10258
  * List all your functions.
@@ -10555,71 +10595,71 @@ declare namespace validationRules_gen$7 {
10555
10595
  export { validationRules_gen$7_CreateTriggerRequest as CreateTriggerRequest, validationRules_gen$7_CreateTriggerRequestMnqNatsClientConfig as CreateTriggerRequestMnqNatsClientConfig, validationRules_gen$7_CreateTriggerRequestMnqSqsClientConfig as CreateTriggerRequestMnqSqsClientConfig, validationRules_gen$7_UpdateTriggerRequest as UpdateTriggerRequest };
10556
10596
  }
10557
10597
 
10558
- declare const index_gen$k_CRON_TRANSIENT_STATUSES: typeof CRON_TRANSIENT_STATUSES;
10559
- type index_gen$k_CreateCronRequest = CreateCronRequest;
10560
- type index_gen$k_CreateFunctionRequest = CreateFunctionRequest;
10561
- type index_gen$k_CreateTokenRequest = CreateTokenRequest;
10562
- type index_gen$k_CreateTriggerRequestSqsClientConfig = CreateTriggerRequestSqsClientConfig;
10563
- type index_gen$k_Cron = Cron;
10564
- type index_gen$k_CronStatus = CronStatus;
10565
- type index_gen$k_DeleteCronRequest = DeleteCronRequest;
10566
- type index_gen$k_DeleteDomainRequest = DeleteDomainRequest;
10567
- type index_gen$k_DeleteFunctionRequest = DeleteFunctionRequest;
10568
- type index_gen$k_DeleteTokenRequest = DeleteTokenRequest;
10569
- type index_gen$k_DeleteTriggerRequest = DeleteTriggerRequest;
10570
- type index_gen$k_DeployFunctionRequest = DeployFunctionRequest;
10571
- type index_gen$k_DownloadURL = DownloadURL;
10572
- declare const index_gen$k_FUNCTION_TRANSIENT_STATUSES: typeof FUNCTION_TRANSIENT_STATUSES;
10573
- type index_gen$k_Function = Function;
10574
- type index_gen$k_FunctionHttpOption = FunctionHttpOption;
10575
- type index_gen$k_FunctionPrivacy = FunctionPrivacy;
10576
- type index_gen$k_FunctionRuntime = FunctionRuntime;
10577
- type index_gen$k_FunctionStatus = FunctionStatus;
10578
- type index_gen$k_GetCronRequest = GetCronRequest;
10579
- type index_gen$k_GetFunctionDownloadURLRequest = GetFunctionDownloadURLRequest;
10580
- type index_gen$k_GetFunctionRequest = GetFunctionRequest;
10581
- type index_gen$k_GetFunctionUploadURLRequest = GetFunctionUploadURLRequest;
10582
- type index_gen$k_GetTokenRequest = GetTokenRequest;
10583
- type index_gen$k_GetTriggerRequest = GetTriggerRequest;
10584
- type index_gen$k_IssueJWTRequest = IssueJWTRequest;
10585
- type index_gen$k_ListCronsRequest = ListCronsRequest;
10586
- type index_gen$k_ListCronsRequestOrderBy = ListCronsRequestOrderBy;
10587
- type index_gen$k_ListCronsResponse = ListCronsResponse;
10588
- type index_gen$k_ListDomainsRequestOrderBy = ListDomainsRequestOrderBy;
10589
- type index_gen$k_ListFunctionRuntimesRequest = ListFunctionRuntimesRequest;
10590
- type index_gen$k_ListFunctionRuntimesResponse = ListFunctionRuntimesResponse;
10591
- type index_gen$k_ListFunctionsRequest = ListFunctionsRequest;
10592
- type index_gen$k_ListFunctionsRequestOrderBy = ListFunctionsRequestOrderBy;
10593
- type index_gen$k_ListFunctionsResponse = ListFunctionsResponse;
10594
- type index_gen$k_ListTokensRequest = ListTokensRequest;
10595
- type index_gen$k_ListTokensRequestOrderBy = ListTokensRequestOrderBy;
10596
- type index_gen$k_ListTokensResponse = ListTokensResponse;
10597
- type index_gen$k_ListTriggersRequest = ListTriggersRequest;
10598
- type index_gen$k_ListTriggersRequestOrderBy = ListTriggersRequestOrderBy;
10599
- type index_gen$k_ListTriggersResponse = ListTriggersResponse;
10600
- type index_gen$k_LogStream = LogStream;
10601
- type index_gen$k_RuntimeStatus = RuntimeStatus;
10602
- type index_gen$k_SecretHashedValue = SecretHashedValue;
10603
- declare const index_gen$k_TOKEN_TRANSIENT_STATUSES: typeof TOKEN_TRANSIENT_STATUSES;
10604
- declare const index_gen$k_TRIGGER_TRANSIENT_STATUSES: typeof TRIGGER_TRANSIENT_STATUSES;
10605
- type index_gen$k_Token = Token;
10606
- type index_gen$k_TokenStatus = TokenStatus;
10607
- type index_gen$k_Trigger = Trigger;
10608
- type index_gen$k_TriggerInputType = TriggerInputType;
10609
- type index_gen$k_TriggerMnqNatsClientConfig = TriggerMnqNatsClientConfig;
10610
- type index_gen$k_TriggerMnqSqsClientConfig = TriggerMnqSqsClientConfig;
10611
- type index_gen$k_TriggerSqsClientConfig = TriggerSqsClientConfig;
10612
- type index_gen$k_TriggerStatus = TriggerStatus;
10613
- type index_gen$k_UpdateCronRequest = UpdateCronRequest;
10614
- type index_gen$k_UpdateFunctionRequest = UpdateFunctionRequest;
10615
- type index_gen$k_UpdateTriggerRequestSqsClientConfig = UpdateTriggerRequestSqsClientConfig;
10616
- type index_gen$k_UploadURL = UploadURL;
10617
- declare namespace index_gen$k {
10618
- export { API$l as API, index_gen$k_CRON_TRANSIENT_STATUSES as CRON_TRANSIENT_STATUSES, type index_gen$k_CreateCronRequest as CreateCronRequest, type CreateDomainRequest$1 as CreateDomainRequest, type index_gen$k_CreateFunctionRequest as CreateFunctionRequest, type CreateNamespaceRequest$2 as CreateNamespaceRequest, type index_gen$k_CreateTokenRequest as CreateTokenRequest, type CreateTriggerRequest$1 as CreateTriggerRequest, type CreateTriggerRequestMnqNatsClientConfig$1 as CreateTriggerRequestMnqNatsClientConfig, type CreateTriggerRequestMnqSqsClientConfig$1 as CreateTriggerRequestMnqSqsClientConfig, type index_gen$k_CreateTriggerRequestSqsClientConfig as CreateTriggerRequestSqsClientConfig, type index_gen$k_Cron as Cron, type index_gen$k_CronStatus as CronStatus, DOMAIN_TRANSIENT_STATUSES$1 as DOMAIN_TRANSIENT_STATUSES, type index_gen$k_DeleteCronRequest as DeleteCronRequest, type index_gen$k_DeleteDomainRequest as DeleteDomainRequest, type index_gen$k_DeleteFunctionRequest as DeleteFunctionRequest, type DeleteNamespaceRequest$2 as DeleteNamespaceRequest, type index_gen$k_DeleteTokenRequest as DeleteTokenRequest, type index_gen$k_DeleteTriggerRequest as DeleteTriggerRequest, type index_gen$k_DeployFunctionRequest as DeployFunctionRequest, type Domain$1 as Domain, type DomainStatus$1 as DomainStatus, type index_gen$k_DownloadURL as DownloadURL, index_gen$k_FUNCTION_TRANSIENT_STATUSES as FUNCTION_TRANSIENT_STATUSES, type index_gen$k_Function as Function, type index_gen$k_FunctionHttpOption as FunctionHttpOption, type index_gen$k_FunctionPrivacy as FunctionPrivacy, type index_gen$k_FunctionRuntime as FunctionRuntime, type index_gen$k_FunctionStatus as FunctionStatus, type index_gen$k_GetCronRequest as GetCronRequest, type GetDomainRequest$1 as GetDomainRequest, type index_gen$k_GetFunctionDownloadURLRequest as GetFunctionDownloadURLRequest, type index_gen$k_GetFunctionRequest as GetFunctionRequest, type index_gen$k_GetFunctionUploadURLRequest as GetFunctionUploadURLRequest, type GetNamespaceRequest$2 as GetNamespaceRequest, type index_gen$k_GetTokenRequest as GetTokenRequest, type index_gen$k_GetTriggerRequest as GetTriggerRequest, type index_gen$k_IssueJWTRequest as IssueJWTRequest, type index_gen$k_ListCronsRequest as ListCronsRequest, type index_gen$k_ListCronsRequestOrderBy as ListCronsRequestOrderBy, type index_gen$k_ListCronsResponse as ListCronsResponse, type ListDomainsRequest$1 as ListDomainsRequest, type index_gen$k_ListDomainsRequestOrderBy as ListDomainsRequestOrderBy, type ListDomainsResponse$1 as ListDomainsResponse, type index_gen$k_ListFunctionRuntimesRequest as ListFunctionRuntimesRequest, type index_gen$k_ListFunctionRuntimesResponse as ListFunctionRuntimesResponse, type index_gen$k_ListFunctionsRequest as ListFunctionsRequest, type index_gen$k_ListFunctionsRequestOrderBy as ListFunctionsRequestOrderBy, type index_gen$k_ListFunctionsResponse as ListFunctionsResponse, type ListLogsRequest$2 as ListLogsRequest, type ListLogsRequestOrderBy$1 as ListLogsRequestOrderBy, type ListLogsResponse$1 as ListLogsResponse, type ListNamespacesRequest$2 as ListNamespacesRequest, type ListNamespacesRequestOrderBy$2 as ListNamespacesRequestOrderBy, type ListNamespacesResponse$2 as ListNamespacesResponse, type index_gen$k_ListTokensRequest as ListTokensRequest, type index_gen$k_ListTokensRequestOrderBy as ListTokensRequestOrderBy, type index_gen$k_ListTokensResponse as ListTokensResponse, type index_gen$k_ListTriggersRequest as ListTriggersRequest, type index_gen$k_ListTriggersRequestOrderBy as ListTriggersRequestOrderBy, type index_gen$k_ListTriggersResponse as ListTriggersResponse, type Log$1 as Log, type index_gen$k_LogStream as LogStream, NAMESPACE_TRANSIENT_STATUSES$1 as NAMESPACE_TRANSIENT_STATUSES, type Namespace$2 as Namespace, type NamespaceStatus$1 as NamespaceStatus, type Runtime$1 as Runtime, type index_gen$k_RuntimeStatus as RuntimeStatus, type Secret$1 as Secret, type index_gen$k_SecretHashedValue as SecretHashedValue, index_gen$k_TOKEN_TRANSIENT_STATUSES as TOKEN_TRANSIENT_STATUSES, index_gen$k_TRIGGER_TRANSIENT_STATUSES as TRIGGER_TRANSIENT_STATUSES, type index_gen$k_Token as Token, type index_gen$k_TokenStatus as TokenStatus, type index_gen$k_Trigger as Trigger, type index_gen$k_TriggerInputType as TriggerInputType, type index_gen$k_TriggerMnqNatsClientConfig as TriggerMnqNatsClientConfig, type index_gen$k_TriggerMnqSqsClientConfig as TriggerMnqSqsClientConfig, type index_gen$k_TriggerSqsClientConfig as TriggerSqsClientConfig, type index_gen$k_TriggerStatus as TriggerStatus, type index_gen$k_UpdateCronRequest as UpdateCronRequest, type index_gen$k_UpdateFunctionRequest as UpdateFunctionRequest, type UpdateNamespaceRequest$2 as UpdateNamespaceRequest, type UpdateTriggerRequest$1 as UpdateTriggerRequest, type index_gen$k_UpdateTriggerRequestSqsClientConfig as UpdateTriggerRequestSqsClientConfig, type index_gen$k_UploadURL as UploadURL, validationRules_gen$7 as ValidationRules };
10598
+ declare const index_gen$j_CRON_TRANSIENT_STATUSES: typeof CRON_TRANSIENT_STATUSES;
10599
+ type index_gen$j_CreateCronRequest = CreateCronRequest;
10600
+ type index_gen$j_CreateFunctionRequest = CreateFunctionRequest;
10601
+ type index_gen$j_CreateTokenRequest = CreateTokenRequest;
10602
+ type index_gen$j_CreateTriggerRequestSqsClientConfig = CreateTriggerRequestSqsClientConfig;
10603
+ type index_gen$j_Cron = Cron;
10604
+ type index_gen$j_CronStatus = CronStatus;
10605
+ type index_gen$j_DeleteCronRequest = DeleteCronRequest;
10606
+ type index_gen$j_DeleteDomainRequest = DeleteDomainRequest;
10607
+ type index_gen$j_DeleteFunctionRequest = DeleteFunctionRequest;
10608
+ type index_gen$j_DeleteTokenRequest = DeleteTokenRequest;
10609
+ type index_gen$j_DeleteTriggerRequest = DeleteTriggerRequest;
10610
+ type index_gen$j_DeployFunctionRequest = DeployFunctionRequest;
10611
+ type index_gen$j_DownloadURL = DownloadURL;
10612
+ declare const index_gen$j_FUNCTION_TRANSIENT_STATUSES: typeof FUNCTION_TRANSIENT_STATUSES;
10613
+ type index_gen$j_Function = Function;
10614
+ type index_gen$j_FunctionHttpOption = FunctionHttpOption;
10615
+ type index_gen$j_FunctionPrivacy = FunctionPrivacy;
10616
+ type index_gen$j_FunctionRuntime = FunctionRuntime;
10617
+ type index_gen$j_FunctionStatus = FunctionStatus;
10618
+ type index_gen$j_GetCronRequest = GetCronRequest;
10619
+ type index_gen$j_GetFunctionDownloadURLRequest = GetFunctionDownloadURLRequest;
10620
+ type index_gen$j_GetFunctionRequest = GetFunctionRequest;
10621
+ type index_gen$j_GetFunctionUploadURLRequest = GetFunctionUploadURLRequest;
10622
+ type index_gen$j_GetTokenRequest = GetTokenRequest;
10623
+ type index_gen$j_GetTriggerRequest = GetTriggerRequest;
10624
+ type index_gen$j_IssueJWTRequest = IssueJWTRequest;
10625
+ type index_gen$j_ListCronsRequest = ListCronsRequest;
10626
+ type index_gen$j_ListCronsRequestOrderBy = ListCronsRequestOrderBy;
10627
+ type index_gen$j_ListCronsResponse = ListCronsResponse;
10628
+ type index_gen$j_ListDomainsRequestOrderBy = ListDomainsRequestOrderBy;
10629
+ type index_gen$j_ListFunctionRuntimesRequest = ListFunctionRuntimesRequest;
10630
+ type index_gen$j_ListFunctionRuntimesResponse = ListFunctionRuntimesResponse;
10631
+ type index_gen$j_ListFunctionsRequest = ListFunctionsRequest;
10632
+ type index_gen$j_ListFunctionsRequestOrderBy = ListFunctionsRequestOrderBy;
10633
+ type index_gen$j_ListFunctionsResponse = ListFunctionsResponse;
10634
+ type index_gen$j_ListTokensRequest = ListTokensRequest;
10635
+ type index_gen$j_ListTokensRequestOrderBy = ListTokensRequestOrderBy;
10636
+ type index_gen$j_ListTokensResponse = ListTokensResponse;
10637
+ type index_gen$j_ListTriggersRequest = ListTriggersRequest;
10638
+ type index_gen$j_ListTriggersRequestOrderBy = ListTriggersRequestOrderBy;
10639
+ type index_gen$j_ListTriggersResponse = ListTriggersResponse;
10640
+ type index_gen$j_LogStream = LogStream;
10641
+ type index_gen$j_RuntimeStatus = RuntimeStatus;
10642
+ type index_gen$j_SecretHashedValue = SecretHashedValue;
10643
+ declare const index_gen$j_TOKEN_TRANSIENT_STATUSES: typeof TOKEN_TRANSIENT_STATUSES;
10644
+ declare const index_gen$j_TRIGGER_TRANSIENT_STATUSES: typeof TRIGGER_TRANSIENT_STATUSES;
10645
+ type index_gen$j_Token = Token;
10646
+ type index_gen$j_TokenStatus = TokenStatus;
10647
+ type index_gen$j_Trigger = Trigger;
10648
+ type index_gen$j_TriggerInputType = TriggerInputType;
10649
+ type index_gen$j_TriggerMnqNatsClientConfig = TriggerMnqNatsClientConfig;
10650
+ type index_gen$j_TriggerMnqSqsClientConfig = TriggerMnqSqsClientConfig;
10651
+ type index_gen$j_TriggerSqsClientConfig = TriggerSqsClientConfig;
10652
+ type index_gen$j_TriggerStatus = TriggerStatus;
10653
+ type index_gen$j_UpdateCronRequest = UpdateCronRequest;
10654
+ type index_gen$j_UpdateFunctionRequest = UpdateFunctionRequest;
10655
+ type index_gen$j_UpdateTriggerRequestSqsClientConfig = UpdateTriggerRequestSqsClientConfig;
10656
+ type index_gen$j_UploadURL = UploadURL;
10657
+ declare namespace index_gen$j {
10658
+ export { API$k as API, index_gen$j_CRON_TRANSIENT_STATUSES as CRON_TRANSIENT_STATUSES, type index_gen$j_CreateCronRequest as CreateCronRequest, type CreateDomainRequest$1 as CreateDomainRequest, type index_gen$j_CreateFunctionRequest as CreateFunctionRequest, type CreateNamespaceRequest$1 as CreateNamespaceRequest, type index_gen$j_CreateTokenRequest as CreateTokenRequest, type CreateTriggerRequest$1 as CreateTriggerRequest, type CreateTriggerRequestMnqNatsClientConfig$1 as CreateTriggerRequestMnqNatsClientConfig, type CreateTriggerRequestMnqSqsClientConfig$1 as CreateTriggerRequestMnqSqsClientConfig, type index_gen$j_CreateTriggerRequestSqsClientConfig as CreateTriggerRequestSqsClientConfig, type index_gen$j_Cron as Cron, type index_gen$j_CronStatus as CronStatus, DOMAIN_TRANSIENT_STATUSES$1 as DOMAIN_TRANSIENT_STATUSES, type index_gen$j_DeleteCronRequest as DeleteCronRequest, type index_gen$j_DeleteDomainRequest as DeleteDomainRequest, type index_gen$j_DeleteFunctionRequest as DeleteFunctionRequest, type DeleteNamespaceRequest$1 as DeleteNamespaceRequest, type index_gen$j_DeleteTokenRequest as DeleteTokenRequest, type index_gen$j_DeleteTriggerRequest as DeleteTriggerRequest, type index_gen$j_DeployFunctionRequest as DeployFunctionRequest, type Domain$1 as Domain, type DomainStatus$1 as DomainStatus, type index_gen$j_DownloadURL as DownloadURL, index_gen$j_FUNCTION_TRANSIENT_STATUSES as FUNCTION_TRANSIENT_STATUSES, type index_gen$j_Function as Function, type index_gen$j_FunctionHttpOption as FunctionHttpOption, type index_gen$j_FunctionPrivacy as FunctionPrivacy, type index_gen$j_FunctionRuntime as FunctionRuntime, type index_gen$j_FunctionStatus as FunctionStatus, type index_gen$j_GetCronRequest as GetCronRequest, type GetDomainRequest$1 as GetDomainRequest, type index_gen$j_GetFunctionDownloadURLRequest as GetFunctionDownloadURLRequest, type index_gen$j_GetFunctionRequest as GetFunctionRequest, type index_gen$j_GetFunctionUploadURLRequest as GetFunctionUploadURLRequest, type GetNamespaceRequest$1 as GetNamespaceRequest, type index_gen$j_GetTokenRequest as GetTokenRequest, type index_gen$j_GetTriggerRequest as GetTriggerRequest, type index_gen$j_IssueJWTRequest as IssueJWTRequest, type index_gen$j_ListCronsRequest as ListCronsRequest, type index_gen$j_ListCronsRequestOrderBy as ListCronsRequestOrderBy, type index_gen$j_ListCronsResponse as ListCronsResponse, type ListDomainsRequest$1 as ListDomainsRequest, type index_gen$j_ListDomainsRequestOrderBy as ListDomainsRequestOrderBy, type ListDomainsResponse$1 as ListDomainsResponse, type index_gen$j_ListFunctionRuntimesRequest as ListFunctionRuntimesRequest, type index_gen$j_ListFunctionRuntimesResponse as ListFunctionRuntimesResponse, type index_gen$j_ListFunctionsRequest as ListFunctionsRequest, type index_gen$j_ListFunctionsRequestOrderBy as ListFunctionsRequestOrderBy, type index_gen$j_ListFunctionsResponse as ListFunctionsResponse, type ListLogsRequest$2 as ListLogsRequest, type ListLogsRequestOrderBy$1 as ListLogsRequestOrderBy, type ListLogsResponse$1 as ListLogsResponse, type ListNamespacesRequest$1 as ListNamespacesRequest, type ListNamespacesRequestOrderBy$1 as ListNamespacesRequestOrderBy, type ListNamespacesResponse$1 as ListNamespacesResponse, type index_gen$j_ListTokensRequest as ListTokensRequest, type index_gen$j_ListTokensRequestOrderBy as ListTokensRequestOrderBy, type index_gen$j_ListTokensResponse as ListTokensResponse, type index_gen$j_ListTriggersRequest as ListTriggersRequest, type index_gen$j_ListTriggersRequestOrderBy as ListTriggersRequestOrderBy, type index_gen$j_ListTriggersResponse as ListTriggersResponse, type Log$1 as Log, type index_gen$j_LogStream as LogStream, NAMESPACE_TRANSIENT_STATUSES$1 as NAMESPACE_TRANSIENT_STATUSES, type Namespace$1 as Namespace, type NamespaceStatus$1 as NamespaceStatus, type Runtime$1 as Runtime, type index_gen$j_RuntimeStatus as RuntimeStatus, type Secret$1 as Secret, type index_gen$j_SecretHashedValue as SecretHashedValue, index_gen$j_TOKEN_TRANSIENT_STATUSES as TOKEN_TRANSIENT_STATUSES, index_gen$j_TRIGGER_TRANSIENT_STATUSES as TRIGGER_TRANSIENT_STATUSES, type index_gen$j_Token as Token, type index_gen$j_TokenStatus as TokenStatus, type index_gen$j_Trigger as Trigger, type index_gen$j_TriggerInputType as TriggerInputType, type index_gen$j_TriggerMnqNatsClientConfig as TriggerMnqNatsClientConfig, type index_gen$j_TriggerMnqSqsClientConfig as TriggerMnqSqsClientConfig, type index_gen$j_TriggerSqsClientConfig as TriggerSqsClientConfig, type index_gen$j_TriggerStatus as TriggerStatus, type index_gen$j_UpdateCronRequest as UpdateCronRequest, type index_gen$j_UpdateFunctionRequest as UpdateFunctionRequest, type UpdateNamespaceRequest$1 as UpdateNamespaceRequest, type UpdateTriggerRequest$1 as UpdateTriggerRequest, type index_gen$j_UpdateTriggerRequestSqsClientConfig as UpdateTriggerRequestSqsClientConfig, type index_gen$j_UploadURL as UploadURL, validationRules_gen$7 as ValidationRules };
10619
10659
  }
10620
10660
 
10621
10661
  declare namespace index$m {
10622
- export { index_gen$k as v1beta1 };
10662
+ export { index_gen$j as v1beta1 };
10623
10663
  }
10624
10664
 
10625
10665
  type BearerType = 'unknown_bearer_type' | 'user' | 'application';
@@ -10723,6 +10763,8 @@ interface Application {
10723
10763
  editable: boolean;
10724
10764
  /** Number of API keys attributed to the application. */
10725
10765
  nbApiKeys: number;
10766
+ /** Tags associated with the user. */
10767
+ tags: string[];
10726
10768
  }
10727
10769
  interface Group {
10728
10770
  /** ID of the group. */
@@ -10741,6 +10783,8 @@ interface Group {
10741
10783
  userIds: string[];
10742
10784
  /** IDs of applications attached to this group. */
10743
10785
  applicationIds: string[];
10786
+ /** Tags associated to the group. */
10787
+ tags: string[];
10744
10788
  }
10745
10789
  interface Log {
10746
10790
  /** Log ID. */
@@ -10795,6 +10839,8 @@ interface Policy {
10795
10839
  nbScopes: number;
10796
10840
  /** Number of permission sets of the policy. */
10797
10841
  nbPermissionSets: number;
10842
+ /** Tags associated with the policy. */
10843
+ tags: string[];
10798
10844
  /**
10799
10845
  * ID of the user attributed to the policy.
10800
10846
  *
@@ -10914,6 +10960,8 @@ interface User$1 {
10914
10960
  mfa: boolean;
10915
10961
  /** ID of the account root user associated with the user. */
10916
10962
  accountRootUserId: string;
10963
+ /** Tags associated with the user. */
10964
+ tags: string[];
10917
10965
  }
10918
10966
  type AddGroupMemberRequest = {
10919
10967
  /** ID of the group. */
@@ -10969,6 +11017,8 @@ type CreateApplicationRequest$1 = {
10969
11017
  organizationId?: string;
10970
11018
  /** Description of the application (max length is 200 characters). */
10971
11019
  description: string;
11020
+ /** Tags associated with the application (maximum of 10 tags). */
11021
+ tags?: string[];
10972
11022
  };
10973
11023
  type CreateGroupRequest$1 = {
10974
11024
  /** ID of Organization linked to the group. */
@@ -10980,6 +11030,8 @@ type CreateGroupRequest$1 = {
10980
11030
  name?: string;
10981
11031
  /** Description of the group to create (max length is 200 chars). */
10982
11032
  description: string;
11033
+ /** Tags associated with the group (maximum of 10 tags). */
11034
+ tags?: string[];
10983
11035
  };
10984
11036
  type CreatePolicyRequest$1 = {
10985
11037
  /** Name of the policy to create (max length is 64 characters). */
@@ -10990,6 +11042,8 @@ type CreatePolicyRequest$1 = {
10990
11042
  organizationId?: string;
10991
11043
  /** Rules of the policy to create. */
10992
11044
  rules?: RuleSpecs[];
11045
+ /** Tags associated with the policy (maximum of 10 tags). */
11046
+ tags?: string[];
10993
11047
  /**
10994
11048
  * ID of user attributed to the policy.
10995
11049
  *
@@ -11035,6 +11089,8 @@ type CreateUserRequest$1 = {
11035
11089
  organizationId?: string;
11036
11090
  /** Email of the user. */
11037
11091
  email: string;
11092
+ /** Tags associated with the user. */
11093
+ tags?: string[];
11038
11094
  };
11039
11095
  type DeleteAPIKeyRequest = {
11040
11096
  /** Access key to delete. */
@@ -11156,6 +11212,8 @@ type ListApplicationsRequest$1 = {
11156
11212
  editable?: boolean;
11157
11213
  /** Filter by list of IDs. */
11158
11214
  applicationIds?: string[];
11215
+ /** Filter by tags containing a given string. */
11216
+ tag?: string;
11159
11217
  };
11160
11218
  interface ListApplicationsResponse {
11161
11219
  /** List of applications. */
@@ -11180,6 +11238,8 @@ type ListGroupsRequest$1 = {
11180
11238
  userIds?: string[];
11181
11239
  /** Filter by a list of group IDs. */
11182
11240
  groupIds?: string[];
11241
+ /** Filter by tags containing a given string. */
11242
+ tag?: string;
11183
11243
  };
11184
11244
  interface ListGroupsResponse {
11185
11245
  /** List of groups. */
@@ -11266,6 +11326,8 @@ type ListPoliciesRequest$1 = {
11266
11326
  noPrincipal?: boolean;
11267
11327
  /** Name of the policy to fetch. */
11268
11328
  policyName?: string;
11329
+ /** Filter by tags containing a given string. */
11330
+ tag?: string;
11269
11331
  };
11270
11332
  interface ListPoliciesResponse {
11271
11333
  /** List of policies. */
@@ -11338,6 +11400,8 @@ type ListUsersRequest$2 = {
11338
11400
  userIds?: string[];
11339
11401
  /** Filter by MFA status. */
11340
11402
  mfa?: boolean;
11403
+ /** Filter by tags containing a given string. */
11404
+ tag?: string;
11341
11405
  };
11342
11406
  interface ListUsersResponse$1 {
11343
11407
  /** List of users. */
@@ -11391,6 +11455,8 @@ type UpdateApplicationRequest$1 = {
11391
11455
  name?: string;
11392
11456
  /** New description for the application (max length is 200 chars). */
11393
11457
  description?: string;
11458
+ /** New tags for the application (maximum of 10 tags). */
11459
+ tags?: string[];
11394
11460
  };
11395
11461
  type UpdateGroupRequest$1 = {
11396
11462
  /** ID of the group to update. */
@@ -11402,6 +11468,8 @@ type UpdateGroupRequest$1 = {
11402
11468
  name?: string;
11403
11469
  /** New description for the group (max length is 200 chars). */
11404
11470
  description?: string;
11471
+ /** New tags for the group (maximum of 10 tags). */
11472
+ tags?: string[];
11405
11473
  };
11406
11474
  type UpdatePolicyRequest$1 = {
11407
11475
  /** Id of policy to update. */
@@ -11410,6 +11478,8 @@ type UpdatePolicyRequest$1 = {
11410
11478
  name?: string;
11411
11479
  /** New description of policy (max length is 200 characters). */
11412
11480
  description?: string;
11481
+ /** New tags for the policy (maximum of 10 tags). */
11482
+ tags?: string[];
11413
11483
  /**
11414
11484
  * New ID of user attributed to the policy.
11415
11485
  *
@@ -11448,7 +11518,7 @@ type UpdateSSHKeyRequest$1 = {
11448
11518
  };
11449
11519
 
11450
11520
  /** IAM API. */
11451
- declare class API$k extends API$w {
11521
+ declare class API$j extends API$v {
11452
11522
  protected pageOfListSSHKeys: (request?: Readonly<ListSSHKeysRequest$1>) => Promise<ListSSHKeysResponse>;
11453
11523
  /**
11454
11524
  * List SSH keys. List SSH keys. By default, the SSH keys listed are ordered
@@ -12128,69 +12198,69 @@ declare namespace validationRules_gen$6 {
12128
12198
  export { validationRules_gen$6_CreateAPIKeyRequest as CreateAPIKeyRequest, validationRules_gen$6_CreateApplicationRequest as CreateApplicationRequest, validationRules_gen$6_CreateGroupRequest as CreateGroupRequest, validationRules_gen$6_CreatePolicyRequest as CreatePolicyRequest, validationRules_gen$6_CreateSSHKeyRequest as CreateSSHKeyRequest, validationRules_gen$6_GetQuotumRequest as GetQuotumRequest, validationRules_gen$6_ListAPIKeysRequest as ListAPIKeysRequest, validationRules_gen$6_ListApplicationsRequest as ListApplicationsRequest, validationRules_gen$6_ListGroupsRequest as ListGroupsRequest, validationRules_gen$6_ListJWTsRequest as ListJWTsRequest, validationRules_gen$6_ListLogsRequest as ListLogsRequest, validationRules_gen$6_ListPermissionSetsRequest as ListPermissionSetsRequest, validationRules_gen$6_ListPoliciesRequest as ListPoliciesRequest, validationRules_gen$6_ListQuotaRequest as ListQuotaRequest, validationRules_gen$6_ListRulesRequest as ListRulesRequest, validationRules_gen$6_ListSSHKeysRequest as ListSSHKeysRequest, ListUsersRequest$1 as ListUsersRequest, validationRules_gen$6_UpdateAPIKeyRequest as UpdateAPIKeyRequest, validationRules_gen$6_UpdateApplicationRequest as UpdateApplicationRequest, validationRules_gen$6_UpdateGroupRequest as UpdateGroupRequest, validationRules_gen$6_UpdatePolicyRequest as UpdatePolicyRequest, validationRules_gen$6_UpdateSSHKeyRequest as UpdateSSHKeyRequest };
12129
12199
  }
12130
12200
 
12131
- type index_gen$j_APIKey = APIKey;
12132
- type index_gen$j_AddGroupMemberRequest = AddGroupMemberRequest;
12133
- type index_gen$j_AddGroupMembersRequest = AddGroupMembersRequest;
12134
- type index_gen$j_Application = Application;
12135
- type index_gen$j_BearerType = BearerType;
12136
- type index_gen$j_ClonePolicyRequest = ClonePolicyRequest;
12137
- type index_gen$j_DeleteAPIKeyRequest = DeleteAPIKeyRequest;
12138
- type index_gen$j_DeleteApplicationRequest = DeleteApplicationRequest;
12139
- type index_gen$j_DeleteGroupRequest = DeleteGroupRequest;
12140
- type index_gen$j_DeleteJWTRequest = DeleteJWTRequest;
12141
- type index_gen$j_DeletePolicyRequest = DeletePolicyRequest;
12142
- type index_gen$j_DeleteSSHKeyRequest = DeleteSSHKeyRequest;
12143
- type index_gen$j_GetAPIKeyRequest = GetAPIKeyRequest;
12144
- type index_gen$j_GetApplicationRequest = GetApplicationRequest;
12145
- type index_gen$j_GetGroupRequest = GetGroupRequest;
12146
- type index_gen$j_GetJWTRequest = GetJWTRequest;
12147
- type index_gen$j_GetLogRequest = GetLogRequest;
12148
- type index_gen$j_GetPolicyRequest = GetPolicyRequest;
12149
- type index_gen$j_GetSSHKeyRequest = GetSSHKeyRequest;
12150
- type index_gen$j_GetUserRequest = GetUserRequest;
12151
- type index_gen$j_Group = Group;
12152
- type index_gen$j_JWT = JWT;
12153
- type index_gen$j_ListAPIKeysRequestOrderBy = ListAPIKeysRequestOrderBy;
12154
- type index_gen$j_ListAPIKeysResponse = ListAPIKeysResponse;
12155
- type index_gen$j_ListApplicationsRequestOrderBy = ListApplicationsRequestOrderBy;
12156
- type index_gen$j_ListApplicationsResponse = ListApplicationsResponse;
12157
- type index_gen$j_ListGroupsRequestOrderBy = ListGroupsRequestOrderBy;
12158
- type index_gen$j_ListGroupsResponse = ListGroupsResponse;
12159
- type index_gen$j_ListJWTsRequestOrderBy = ListJWTsRequestOrderBy;
12160
- type index_gen$j_ListJWTsResponse = ListJWTsResponse;
12161
- type index_gen$j_ListLogsRequestOrderBy = ListLogsRequestOrderBy;
12162
- type index_gen$j_ListLogsResponse = ListLogsResponse;
12163
- type index_gen$j_ListPermissionSetsRequestOrderBy = ListPermissionSetsRequestOrderBy;
12164
- type index_gen$j_ListPermissionSetsResponse = ListPermissionSetsResponse;
12165
- type index_gen$j_ListPoliciesRequestOrderBy = ListPoliciesRequestOrderBy;
12166
- type index_gen$j_ListPoliciesResponse = ListPoliciesResponse;
12167
- type index_gen$j_ListQuotaRequestOrderBy = ListQuotaRequestOrderBy;
12168
- type index_gen$j_ListQuotaResponse = ListQuotaResponse;
12169
- type index_gen$j_ListRulesResponse = ListRulesResponse;
12170
- type index_gen$j_ListSSHKeysRequestOrderBy = ListSSHKeysRequestOrderBy;
12171
- type index_gen$j_ListSSHKeysResponse = ListSSHKeysResponse;
12172
- type index_gen$j_Log = Log;
12173
- type index_gen$j_LogAction = LogAction;
12174
- type index_gen$j_LogResourceType = LogResourceType;
12175
- type index_gen$j_PermissionSet = PermissionSet;
12176
- type index_gen$j_PermissionSetScopeType = PermissionSetScopeType;
12177
- type index_gen$j_Policy = Policy;
12178
- type index_gen$j_Quotum = Quotum;
12179
- type index_gen$j_RemoveGroupMemberRequest = RemoveGroupMemberRequest;
12180
- type index_gen$j_Rule = Rule;
12181
- type index_gen$j_RuleSpecs = RuleSpecs;
12182
- type index_gen$j_SSHKey = SSHKey;
12183
- type index_gen$j_SetGroupMembersRequest = SetGroupMembersRequest;
12184
- type index_gen$j_SetRulesRequest = SetRulesRequest;
12185
- type index_gen$j_SetRulesResponse = SetRulesResponse;
12186
- type index_gen$j_UserStatus = UserStatus;
12187
- type index_gen$j_UserType = UserType;
12188
- declare namespace index_gen$j {
12189
- export { API$k as API, type index_gen$j_APIKey as APIKey, type index_gen$j_AddGroupMemberRequest as AddGroupMemberRequest, type index_gen$j_AddGroupMembersRequest as AddGroupMembersRequest, type index_gen$j_Application as Application, type index_gen$j_BearerType as BearerType, type index_gen$j_ClonePolicyRequest as ClonePolicyRequest, type CreateAPIKeyRequest$1 as CreateAPIKeyRequest, type CreateApplicationRequest$1 as CreateApplicationRequest, type CreateGroupRequest$1 as CreateGroupRequest, type CreatePolicyRequest$1 as CreatePolicyRequest, type CreateSSHKeyRequest$1 as CreateSSHKeyRequest, type CreateUserRequest$1 as CreateUserRequest, type index_gen$j_DeleteAPIKeyRequest as DeleteAPIKeyRequest, type index_gen$j_DeleteApplicationRequest as DeleteApplicationRequest, type index_gen$j_DeleteGroupRequest as DeleteGroupRequest, type index_gen$j_DeleteJWTRequest as DeleteJWTRequest, type index_gen$j_DeletePolicyRequest as DeletePolicyRequest, type index_gen$j_DeleteSSHKeyRequest as DeleteSSHKeyRequest, type DeleteUserRequest$1 as DeleteUserRequest, type index_gen$j_GetAPIKeyRequest as GetAPIKeyRequest, type index_gen$j_GetApplicationRequest as GetApplicationRequest, type index_gen$j_GetGroupRequest as GetGroupRequest, type index_gen$j_GetJWTRequest as GetJWTRequest, type index_gen$j_GetLogRequest as GetLogRequest, type index_gen$j_GetPolicyRequest as GetPolicyRequest, type GetQuotumRequest$1 as GetQuotumRequest, type index_gen$j_GetSSHKeyRequest as GetSSHKeyRequest, type index_gen$j_GetUserRequest as GetUserRequest, type index_gen$j_Group as Group, type index_gen$j_JWT as JWT, type ListAPIKeysRequest$1 as ListAPIKeysRequest, type index_gen$j_ListAPIKeysRequestOrderBy as ListAPIKeysRequestOrderBy, type index_gen$j_ListAPIKeysResponse as ListAPIKeysResponse, type ListApplicationsRequest$1 as ListApplicationsRequest, type index_gen$j_ListApplicationsRequestOrderBy as ListApplicationsRequestOrderBy, type index_gen$j_ListApplicationsResponse as ListApplicationsResponse, type ListGroupsRequest$1 as ListGroupsRequest, type index_gen$j_ListGroupsRequestOrderBy as ListGroupsRequestOrderBy, type index_gen$j_ListGroupsResponse as ListGroupsResponse, type ListJWTsRequest$1 as ListJWTsRequest, type index_gen$j_ListJWTsRequestOrderBy as ListJWTsRequestOrderBy, type index_gen$j_ListJWTsResponse as ListJWTsResponse, type ListLogsRequest$1 as ListLogsRequest, type index_gen$j_ListLogsRequestOrderBy as ListLogsRequestOrderBy, type index_gen$j_ListLogsResponse as ListLogsResponse, type ListPermissionSetsRequest$1 as ListPermissionSetsRequest, type index_gen$j_ListPermissionSetsRequestOrderBy as ListPermissionSetsRequestOrderBy, type index_gen$j_ListPermissionSetsResponse as ListPermissionSetsResponse, type ListPoliciesRequest$1 as ListPoliciesRequest, type index_gen$j_ListPoliciesRequestOrderBy as ListPoliciesRequestOrderBy, type index_gen$j_ListPoliciesResponse as ListPoliciesResponse, type ListQuotaRequest$1 as ListQuotaRequest, type index_gen$j_ListQuotaRequestOrderBy as ListQuotaRequestOrderBy, type index_gen$j_ListQuotaResponse as ListQuotaResponse, type ListRulesRequest$1 as ListRulesRequest, type index_gen$j_ListRulesResponse as ListRulesResponse, type ListSSHKeysRequest$1 as ListSSHKeysRequest, type index_gen$j_ListSSHKeysRequestOrderBy as ListSSHKeysRequestOrderBy, type index_gen$j_ListSSHKeysResponse as ListSSHKeysResponse, type ListUsersRequest$2 as ListUsersRequest, type ListUsersRequestOrderBy$1 as ListUsersRequestOrderBy, type ListUsersResponse$1 as ListUsersResponse, type index_gen$j_Log as Log, type index_gen$j_LogAction as LogAction, type index_gen$j_LogResourceType as LogResourceType, type index_gen$j_PermissionSet as PermissionSet, type index_gen$j_PermissionSetScopeType as PermissionSetScopeType, type index_gen$j_Policy as Policy, type index_gen$j_Quotum as Quotum, type index_gen$j_RemoveGroupMemberRequest as RemoveGroupMemberRequest, type index_gen$j_Rule as Rule, type index_gen$j_RuleSpecs as RuleSpecs, type index_gen$j_SSHKey as SSHKey, type index_gen$j_SetGroupMembersRequest as SetGroupMembersRequest, type index_gen$j_SetRulesRequest as SetRulesRequest, type index_gen$j_SetRulesResponse as SetRulesResponse, type UpdateAPIKeyRequest$1 as UpdateAPIKeyRequest, type UpdateApplicationRequest$1 as UpdateApplicationRequest, type UpdateGroupRequest$1 as UpdateGroupRequest, type UpdatePolicyRequest$1 as UpdatePolicyRequest, type UpdateSSHKeyRequest$1 as UpdateSSHKeyRequest, type User$1 as User, type index_gen$j_UserStatus as UserStatus, type index_gen$j_UserType as UserType, validationRules_gen$6 as ValidationRules };
12201
+ type index_gen$i_APIKey = APIKey;
12202
+ type index_gen$i_AddGroupMemberRequest = AddGroupMemberRequest;
12203
+ type index_gen$i_AddGroupMembersRequest = AddGroupMembersRequest;
12204
+ type index_gen$i_Application = Application;
12205
+ type index_gen$i_BearerType = BearerType;
12206
+ type index_gen$i_ClonePolicyRequest = ClonePolicyRequest;
12207
+ type index_gen$i_DeleteAPIKeyRequest = DeleteAPIKeyRequest;
12208
+ type index_gen$i_DeleteApplicationRequest = DeleteApplicationRequest;
12209
+ type index_gen$i_DeleteGroupRequest = DeleteGroupRequest;
12210
+ type index_gen$i_DeleteJWTRequest = DeleteJWTRequest;
12211
+ type index_gen$i_DeletePolicyRequest = DeletePolicyRequest;
12212
+ type index_gen$i_DeleteSSHKeyRequest = DeleteSSHKeyRequest;
12213
+ type index_gen$i_GetAPIKeyRequest = GetAPIKeyRequest;
12214
+ type index_gen$i_GetApplicationRequest = GetApplicationRequest;
12215
+ type index_gen$i_GetGroupRequest = GetGroupRequest;
12216
+ type index_gen$i_GetJWTRequest = GetJWTRequest;
12217
+ type index_gen$i_GetLogRequest = GetLogRequest;
12218
+ type index_gen$i_GetPolicyRequest = GetPolicyRequest;
12219
+ type index_gen$i_GetSSHKeyRequest = GetSSHKeyRequest;
12220
+ type index_gen$i_GetUserRequest = GetUserRequest;
12221
+ type index_gen$i_Group = Group;
12222
+ type index_gen$i_JWT = JWT;
12223
+ type index_gen$i_ListAPIKeysRequestOrderBy = ListAPIKeysRequestOrderBy;
12224
+ type index_gen$i_ListAPIKeysResponse = ListAPIKeysResponse;
12225
+ type index_gen$i_ListApplicationsRequestOrderBy = ListApplicationsRequestOrderBy;
12226
+ type index_gen$i_ListApplicationsResponse = ListApplicationsResponse;
12227
+ type index_gen$i_ListGroupsRequestOrderBy = ListGroupsRequestOrderBy;
12228
+ type index_gen$i_ListGroupsResponse = ListGroupsResponse;
12229
+ type index_gen$i_ListJWTsRequestOrderBy = ListJWTsRequestOrderBy;
12230
+ type index_gen$i_ListJWTsResponse = ListJWTsResponse;
12231
+ type index_gen$i_ListLogsRequestOrderBy = ListLogsRequestOrderBy;
12232
+ type index_gen$i_ListLogsResponse = ListLogsResponse;
12233
+ type index_gen$i_ListPermissionSetsRequestOrderBy = ListPermissionSetsRequestOrderBy;
12234
+ type index_gen$i_ListPermissionSetsResponse = ListPermissionSetsResponse;
12235
+ type index_gen$i_ListPoliciesRequestOrderBy = ListPoliciesRequestOrderBy;
12236
+ type index_gen$i_ListPoliciesResponse = ListPoliciesResponse;
12237
+ type index_gen$i_ListQuotaRequestOrderBy = ListQuotaRequestOrderBy;
12238
+ type index_gen$i_ListQuotaResponse = ListQuotaResponse;
12239
+ type index_gen$i_ListRulesResponse = ListRulesResponse;
12240
+ type index_gen$i_ListSSHKeysRequestOrderBy = ListSSHKeysRequestOrderBy;
12241
+ type index_gen$i_ListSSHKeysResponse = ListSSHKeysResponse;
12242
+ type index_gen$i_Log = Log;
12243
+ type index_gen$i_LogAction = LogAction;
12244
+ type index_gen$i_LogResourceType = LogResourceType;
12245
+ type index_gen$i_PermissionSet = PermissionSet;
12246
+ type index_gen$i_PermissionSetScopeType = PermissionSetScopeType;
12247
+ type index_gen$i_Policy = Policy;
12248
+ type index_gen$i_Quotum = Quotum;
12249
+ type index_gen$i_RemoveGroupMemberRequest = RemoveGroupMemberRequest;
12250
+ type index_gen$i_Rule = Rule;
12251
+ type index_gen$i_RuleSpecs = RuleSpecs;
12252
+ type index_gen$i_SSHKey = SSHKey;
12253
+ type index_gen$i_SetGroupMembersRequest = SetGroupMembersRequest;
12254
+ type index_gen$i_SetRulesRequest = SetRulesRequest;
12255
+ type index_gen$i_SetRulesResponse = SetRulesResponse;
12256
+ type index_gen$i_UserStatus = UserStatus;
12257
+ type index_gen$i_UserType = UserType;
12258
+ declare namespace index_gen$i {
12259
+ export { API$j as API, type index_gen$i_APIKey as APIKey, type index_gen$i_AddGroupMemberRequest as AddGroupMemberRequest, type index_gen$i_AddGroupMembersRequest as AddGroupMembersRequest, type index_gen$i_Application as Application, type index_gen$i_BearerType as BearerType, type index_gen$i_ClonePolicyRequest as ClonePolicyRequest, type CreateAPIKeyRequest$1 as CreateAPIKeyRequest, type CreateApplicationRequest$1 as CreateApplicationRequest, type CreateGroupRequest$1 as CreateGroupRequest, type CreatePolicyRequest$1 as CreatePolicyRequest, type CreateSSHKeyRequest$1 as CreateSSHKeyRequest, type CreateUserRequest$1 as CreateUserRequest, type index_gen$i_DeleteAPIKeyRequest as DeleteAPIKeyRequest, type index_gen$i_DeleteApplicationRequest as DeleteApplicationRequest, type index_gen$i_DeleteGroupRequest as DeleteGroupRequest, type index_gen$i_DeleteJWTRequest as DeleteJWTRequest, type index_gen$i_DeletePolicyRequest as DeletePolicyRequest, type index_gen$i_DeleteSSHKeyRequest as DeleteSSHKeyRequest, type DeleteUserRequest$1 as DeleteUserRequest, type index_gen$i_GetAPIKeyRequest as GetAPIKeyRequest, type index_gen$i_GetApplicationRequest as GetApplicationRequest, type index_gen$i_GetGroupRequest as GetGroupRequest, type index_gen$i_GetJWTRequest as GetJWTRequest, type index_gen$i_GetLogRequest as GetLogRequest, type index_gen$i_GetPolicyRequest as GetPolicyRequest, type GetQuotumRequest$1 as GetQuotumRequest, type index_gen$i_GetSSHKeyRequest as GetSSHKeyRequest, type index_gen$i_GetUserRequest as GetUserRequest, type index_gen$i_Group as Group, type index_gen$i_JWT as JWT, type ListAPIKeysRequest$1 as ListAPIKeysRequest, type index_gen$i_ListAPIKeysRequestOrderBy as ListAPIKeysRequestOrderBy, type index_gen$i_ListAPIKeysResponse as ListAPIKeysResponse, type ListApplicationsRequest$1 as ListApplicationsRequest, type index_gen$i_ListApplicationsRequestOrderBy as ListApplicationsRequestOrderBy, type index_gen$i_ListApplicationsResponse as ListApplicationsResponse, type ListGroupsRequest$1 as ListGroupsRequest, type index_gen$i_ListGroupsRequestOrderBy as ListGroupsRequestOrderBy, type index_gen$i_ListGroupsResponse as ListGroupsResponse, type ListJWTsRequest$1 as ListJWTsRequest, type index_gen$i_ListJWTsRequestOrderBy as ListJWTsRequestOrderBy, type index_gen$i_ListJWTsResponse as ListJWTsResponse, type ListLogsRequest$1 as ListLogsRequest, type index_gen$i_ListLogsRequestOrderBy as ListLogsRequestOrderBy, type index_gen$i_ListLogsResponse as ListLogsResponse, type ListPermissionSetsRequest$1 as ListPermissionSetsRequest, type index_gen$i_ListPermissionSetsRequestOrderBy as ListPermissionSetsRequestOrderBy, type index_gen$i_ListPermissionSetsResponse as ListPermissionSetsResponse, type ListPoliciesRequest$1 as ListPoliciesRequest, type index_gen$i_ListPoliciesRequestOrderBy as ListPoliciesRequestOrderBy, type index_gen$i_ListPoliciesResponse as ListPoliciesResponse, type ListQuotaRequest$1 as ListQuotaRequest, type index_gen$i_ListQuotaRequestOrderBy as ListQuotaRequestOrderBy, type index_gen$i_ListQuotaResponse as ListQuotaResponse, type ListRulesRequest$1 as ListRulesRequest, type index_gen$i_ListRulesResponse as ListRulesResponse, type ListSSHKeysRequest$1 as ListSSHKeysRequest, type index_gen$i_ListSSHKeysRequestOrderBy as ListSSHKeysRequestOrderBy, type index_gen$i_ListSSHKeysResponse as ListSSHKeysResponse, type ListUsersRequest$2 as ListUsersRequest, type ListUsersRequestOrderBy$1 as ListUsersRequestOrderBy, type ListUsersResponse$1 as ListUsersResponse, type index_gen$i_Log as Log, type index_gen$i_LogAction as LogAction, type index_gen$i_LogResourceType as LogResourceType, type index_gen$i_PermissionSet as PermissionSet, type index_gen$i_PermissionSetScopeType as PermissionSetScopeType, type index_gen$i_Policy as Policy, type index_gen$i_Quotum as Quotum, type index_gen$i_RemoveGroupMemberRequest as RemoveGroupMemberRequest, type index_gen$i_Rule as Rule, type index_gen$i_RuleSpecs as RuleSpecs, type index_gen$i_SSHKey as SSHKey, type index_gen$i_SetGroupMembersRequest as SetGroupMembersRequest, type index_gen$i_SetRulesRequest as SetRulesRequest, type index_gen$i_SetRulesResponse as SetRulesResponse, type UpdateAPIKeyRequest$1 as UpdateAPIKeyRequest, type UpdateApplicationRequest$1 as UpdateApplicationRequest, type UpdateGroupRequest$1 as UpdateGroupRequest, type UpdatePolicyRequest$1 as UpdatePolicyRequest, type UpdateSSHKeyRequest$1 as UpdateSSHKeyRequest, type User$1 as User, type index_gen$i_UserStatus as UserStatus, type index_gen$i_UserType as UserType, validationRules_gen$6 as ValidationRules };
12190
12260
  }
12191
12261
 
12192
12262
  declare namespace index$l {
12193
- export { index_gen$j as v1alpha1 };
12263
+ export { index_gen$i as v1alpha1 };
12194
12264
  }
12195
12265
 
12196
12266
  type Arch = 'x86_64' | 'arm' | 'arm64';
@@ -13118,22 +13188,13 @@ type CreateVolumeRequest$1 = {
13118
13188
  /**
13119
13189
  * Volume disk size, must be a multiple of 512.
13120
13190
  *
13121
- * One-of ('from'): at most one of 'size', 'baseVolume', 'baseSnapshot' could
13122
- * be set.
13191
+ * One-of ('from'): at most one of 'size', 'baseSnapshot' could be set.
13123
13192
  */
13124
13193
  size?: number;
13125
- /**
13126
- * @deprecated ID of the volume on which this volume will be based.
13127
- *
13128
- * One-of ('from'): at most one of 'size', 'baseVolume', 'baseSnapshot' could
13129
- * be set.
13130
- */
13131
- baseVolume?: string;
13132
13194
  /**
13133
13195
  * ID of the snapshot on which this volume will be based.
13134
13196
  *
13135
- * One-of ('from'): at most one of 'size', 'baseVolume', 'baseSnapshot' could
13136
- * be set.
13197
+ * One-of ('from'): at most one of 'size', 'baseSnapshot' could be set.
13137
13198
  */
13138
13199
  baseSnapshot?: string;
13139
13200
  };
@@ -14055,7 +14116,7 @@ interface SetSnapshotResponse {
14055
14116
  }
14056
14117
 
14057
14118
  /** Instance API. */
14058
- declare class API$j extends API$w {
14119
+ declare class API$i extends API$v {
14059
14120
  /** Lists the available zones of the API. */
14060
14121
  static readonly LOCALITIES: Zone[];
14061
14122
  /**
@@ -14661,7 +14722,7 @@ type SetServerUserDataRequest = {
14661
14722
  content: string;
14662
14723
  };
14663
14724
 
14664
- declare class InstanceV1UtilsAPI extends API$j {
14725
+ declare class InstanceV1UtilsAPI extends API$i {
14665
14726
  /**
14666
14727
  * Waits for {@link Image} to be in a final state.
14667
14728
  *
@@ -15903,7 +15964,7 @@ type UpdateRouteRequest$1 = {
15903
15964
  *
15904
15965
  * This API allows you to manage IoT hubs and devices.
15905
15966
  */
15906
- declare class API$i extends API$w {
15967
+ declare class API$h extends API$v {
15907
15968
  /** Lists the available regions of the API. */
15908
15969
  static readonly LOCALITIES: Region[];
15909
15970
  protected pageOfListHubs: (request?: Readonly<ListHubsRequest>) => Promise<ListHubsResponse>;
@@ -16224,90 +16285,90 @@ declare class API$i extends API$w {
16224
16285
  /** Lists transient statutes of the enum {@link HubStatus}. */
16225
16286
  declare const HUB_TRANSIENT_STATUSES: HubStatus[];
16226
16287
 
16227
- type index_gen$i_CreateDeviceRequest = CreateDeviceRequest;
16228
- type index_gen$i_CreateDeviceResponse = CreateDeviceResponse;
16229
- type index_gen$i_CreateHubRequest = CreateHubRequest;
16230
- type index_gen$i_CreateNetworkRequest = CreateNetworkRequest;
16231
- type index_gen$i_CreateNetworkResponse = CreateNetworkResponse;
16232
- type index_gen$i_CreateRouteRequestDatabaseConfig = CreateRouteRequestDatabaseConfig;
16233
- type index_gen$i_CreateRouteRequestRestConfig = CreateRouteRequestRestConfig;
16234
- type index_gen$i_CreateRouteRequestS3Config = CreateRouteRequestS3Config;
16235
- type index_gen$i_DeleteDeviceRequest = DeleteDeviceRequest;
16236
- type index_gen$i_DeleteHubRequest = DeleteHubRequest;
16237
- type index_gen$i_DeleteNetworkRequest = DeleteNetworkRequest;
16238
- type index_gen$i_DeleteTwinDocumentRequest = DeleteTwinDocumentRequest;
16239
- type index_gen$i_DeleteTwinDocumentsRequest = DeleteTwinDocumentsRequest;
16240
- type index_gen$i_Device = Device;
16241
- type index_gen$i_DeviceMessageFilters = DeviceMessageFilters;
16242
- type index_gen$i_DeviceMessageFiltersRule = DeviceMessageFiltersRule;
16243
- type index_gen$i_DeviceMessageFiltersRulePolicy = DeviceMessageFiltersRulePolicy;
16244
- type index_gen$i_DeviceStatus = DeviceStatus;
16245
- type index_gen$i_DisableDeviceRequest = DisableDeviceRequest;
16246
- type index_gen$i_DisableHubRequest = DisableHubRequest;
16247
- type index_gen$i_EnableDeviceRequest = EnableDeviceRequest;
16248
- type index_gen$i_EnableHubRequest = EnableHubRequest;
16249
- type index_gen$i_GetDeviceCertificateRequest = GetDeviceCertificateRequest;
16250
- type index_gen$i_GetDeviceCertificateResponse = GetDeviceCertificateResponse;
16251
- type index_gen$i_GetDeviceMetricsRequest = GetDeviceMetricsRequest;
16252
- type index_gen$i_GetDeviceMetricsResponse = GetDeviceMetricsResponse;
16253
- type index_gen$i_GetDeviceRequest = GetDeviceRequest;
16254
- type index_gen$i_GetHubCARequest = GetHubCARequest;
16255
- type index_gen$i_GetHubCAResponse = GetHubCAResponse;
16256
- type index_gen$i_GetHubMetricsRequest = GetHubMetricsRequest;
16257
- type index_gen$i_GetHubMetricsResponse = GetHubMetricsResponse;
16258
- type index_gen$i_GetHubRequest = GetHubRequest;
16259
- type index_gen$i_GetNetworkRequest = GetNetworkRequest;
16260
- type index_gen$i_GetTwinDocumentRequest = GetTwinDocumentRequest;
16261
- declare const index_gen$i_HUB_TRANSIENT_STATUSES: typeof HUB_TRANSIENT_STATUSES;
16262
- type index_gen$i_Hub = Hub;
16263
- type index_gen$i_HubProductPlan = HubProductPlan;
16264
- type index_gen$i_HubStatus = HubStatus;
16265
- type index_gen$i_HubTwinsGraphiteConfig = HubTwinsGraphiteConfig;
16266
- type index_gen$i_ListDevicesRequest = ListDevicesRequest;
16267
- type index_gen$i_ListDevicesRequestOrderBy = ListDevicesRequestOrderBy;
16268
- type index_gen$i_ListDevicesResponse = ListDevicesResponse;
16269
- type index_gen$i_ListHubsRequest = ListHubsRequest;
16270
- type index_gen$i_ListHubsRequestOrderBy = ListHubsRequestOrderBy;
16271
- type index_gen$i_ListHubsResponse = ListHubsResponse;
16272
- type index_gen$i_ListNetworksRequest = ListNetworksRequest;
16273
- type index_gen$i_ListNetworksRequestOrderBy = ListNetworksRequestOrderBy;
16274
- type index_gen$i_ListNetworksResponse = ListNetworksResponse;
16275
- type index_gen$i_ListTwinDocumentsRequest = ListTwinDocumentsRequest;
16276
- type index_gen$i_ListTwinDocumentsResponse = ListTwinDocumentsResponse;
16277
- type index_gen$i_ListTwinDocumentsResponseDocumentSummary = ListTwinDocumentsResponseDocumentSummary;
16278
- type index_gen$i_Network = Network;
16279
- type index_gen$i_NetworkNetworkType = NetworkNetworkType;
16280
- type index_gen$i_PatchTwinDocumentRequest = PatchTwinDocumentRequest;
16281
- type index_gen$i_PutTwinDocumentRequest = PutTwinDocumentRequest;
16282
- type index_gen$i_RenewDeviceCertificateRequest = RenewDeviceCertificateRequest;
16283
- type index_gen$i_RenewDeviceCertificateResponse = RenewDeviceCertificateResponse;
16284
- type index_gen$i_RouteDatabaseConfig = RouteDatabaseConfig;
16285
- type index_gen$i_RouteDatabaseConfigEngine = RouteDatabaseConfigEngine;
16286
- type index_gen$i_RouteRestConfig = RouteRestConfig;
16287
- type index_gen$i_RouteRestConfigHttpVerb = RouteRestConfigHttpVerb;
16288
- type index_gen$i_RouteRouteType = RouteRouteType;
16289
- type index_gen$i_RouteS3Config = RouteS3Config;
16290
- type index_gen$i_RouteS3ConfigS3Strategy = RouteS3ConfigS3Strategy;
16291
- type index_gen$i_RouteSummary = RouteSummary;
16292
- type index_gen$i_SetDeviceCertificateRequest = SetDeviceCertificateRequest;
16293
- type index_gen$i_SetDeviceCertificateResponse = SetDeviceCertificateResponse;
16294
- type index_gen$i_SetHubCARequest = SetHubCARequest;
16295
- type index_gen$i_TwinDocument = TwinDocument;
16296
- type index_gen$i_UpdateDeviceRequest = UpdateDeviceRequest;
16297
- type index_gen$i_UpdateHubRequest = UpdateHubRequest;
16298
- type index_gen$i_UpdateRouteRequestDatabaseConfig = UpdateRouteRequestDatabaseConfig;
16299
- type index_gen$i_UpdateRouteRequestRestConfig = UpdateRouteRequestRestConfig;
16300
- type index_gen$i_UpdateRouteRequestS3Config = UpdateRouteRequestS3Config;
16301
- declare namespace index_gen$i {
16302
- export { API$i as API, type Certificate$1 as Certificate, type index_gen$i_CreateDeviceRequest as CreateDeviceRequest, type index_gen$i_CreateDeviceResponse as CreateDeviceResponse, type index_gen$i_CreateHubRequest as CreateHubRequest, type index_gen$i_CreateNetworkRequest as CreateNetworkRequest, type index_gen$i_CreateNetworkResponse as CreateNetworkResponse, type CreateRouteRequest$1 as CreateRouteRequest, type index_gen$i_CreateRouteRequestDatabaseConfig as CreateRouteRequestDatabaseConfig, type index_gen$i_CreateRouteRequestRestConfig as CreateRouteRequestRestConfig, type index_gen$i_CreateRouteRequestS3Config as CreateRouteRequestS3Config, type index_gen$i_DeleteDeviceRequest as DeleteDeviceRequest, type index_gen$i_DeleteHubRequest as DeleteHubRequest, type index_gen$i_DeleteNetworkRequest as DeleteNetworkRequest, type DeleteRouteRequest$1 as DeleteRouteRequest, type index_gen$i_DeleteTwinDocumentRequest as DeleteTwinDocumentRequest, type index_gen$i_DeleteTwinDocumentsRequest as DeleteTwinDocumentsRequest, type index_gen$i_Device as Device, type index_gen$i_DeviceMessageFilters as DeviceMessageFilters, type index_gen$i_DeviceMessageFiltersRule as DeviceMessageFiltersRule, type index_gen$i_DeviceMessageFiltersRulePolicy as DeviceMessageFiltersRulePolicy, type index_gen$i_DeviceStatus as DeviceStatus, type index_gen$i_DisableDeviceRequest as DisableDeviceRequest, type index_gen$i_DisableHubRequest as DisableHubRequest, type index_gen$i_EnableDeviceRequest as EnableDeviceRequest, type index_gen$i_EnableHubRequest as EnableHubRequest, type index_gen$i_GetDeviceCertificateRequest as GetDeviceCertificateRequest, type index_gen$i_GetDeviceCertificateResponse as GetDeviceCertificateResponse, type index_gen$i_GetDeviceMetricsRequest as GetDeviceMetricsRequest, type index_gen$i_GetDeviceMetricsResponse as GetDeviceMetricsResponse, type index_gen$i_GetDeviceRequest as GetDeviceRequest, type index_gen$i_GetHubCARequest as GetHubCARequest, type index_gen$i_GetHubCAResponse as GetHubCAResponse, type index_gen$i_GetHubMetricsRequest as GetHubMetricsRequest, type index_gen$i_GetHubMetricsResponse as GetHubMetricsResponse, type index_gen$i_GetHubRequest as GetHubRequest, type index_gen$i_GetNetworkRequest as GetNetworkRequest, type GetRouteRequest$1 as GetRouteRequest, type index_gen$i_GetTwinDocumentRequest as GetTwinDocumentRequest, index_gen$i_HUB_TRANSIENT_STATUSES as HUB_TRANSIENT_STATUSES, type index_gen$i_Hub as Hub, type index_gen$i_HubProductPlan as HubProductPlan, type index_gen$i_HubStatus as HubStatus, type index_gen$i_HubTwinsGraphiteConfig as HubTwinsGraphiteConfig, type index_gen$i_ListDevicesRequest as ListDevicesRequest, type index_gen$i_ListDevicesRequestOrderBy as ListDevicesRequestOrderBy, type index_gen$i_ListDevicesResponse as ListDevicesResponse, type index_gen$i_ListHubsRequest as ListHubsRequest, type index_gen$i_ListHubsRequestOrderBy as ListHubsRequestOrderBy, type index_gen$i_ListHubsResponse as ListHubsResponse, type index_gen$i_ListNetworksRequest as ListNetworksRequest, type index_gen$i_ListNetworksRequestOrderBy as ListNetworksRequestOrderBy, type index_gen$i_ListNetworksResponse as ListNetworksResponse, type ListRoutesRequest$1 as ListRoutesRequest, type ListRoutesRequestOrderBy$1 as ListRoutesRequestOrderBy, type ListRoutesResponse$1 as ListRoutesResponse, type index_gen$i_ListTwinDocumentsRequest as ListTwinDocumentsRequest, type index_gen$i_ListTwinDocumentsResponse as ListTwinDocumentsResponse, type index_gen$i_ListTwinDocumentsResponseDocumentSummary as ListTwinDocumentsResponseDocumentSummary, type index_gen$i_Network as Network, type index_gen$i_NetworkNetworkType as NetworkNetworkType, type index_gen$i_PatchTwinDocumentRequest as PatchTwinDocumentRequest, type index_gen$i_PutTwinDocumentRequest as PutTwinDocumentRequest, type index_gen$i_RenewDeviceCertificateRequest as RenewDeviceCertificateRequest, type index_gen$i_RenewDeviceCertificateResponse as RenewDeviceCertificateResponse, type Route$1 as Route, type index_gen$i_RouteDatabaseConfig as RouteDatabaseConfig, type index_gen$i_RouteDatabaseConfigEngine as RouteDatabaseConfigEngine, type index_gen$i_RouteRestConfig as RouteRestConfig, type index_gen$i_RouteRestConfigHttpVerb as RouteRestConfigHttpVerb, type index_gen$i_RouteRouteType as RouteRouteType, type index_gen$i_RouteS3Config as RouteS3Config, type index_gen$i_RouteS3ConfigS3Strategy as RouteS3ConfigS3Strategy, type index_gen$i_RouteSummary as RouteSummary, type index_gen$i_SetDeviceCertificateRequest as SetDeviceCertificateRequest, type index_gen$i_SetDeviceCertificateResponse as SetDeviceCertificateResponse, type index_gen$i_SetHubCARequest as SetHubCARequest, type index_gen$i_TwinDocument as TwinDocument, type index_gen$i_UpdateDeviceRequest as UpdateDeviceRequest, type index_gen$i_UpdateHubRequest as UpdateHubRequest, type UpdateRouteRequest$1 as UpdateRouteRequest, type index_gen$i_UpdateRouteRequestDatabaseConfig as UpdateRouteRequestDatabaseConfig, type index_gen$i_UpdateRouteRequestRestConfig as UpdateRouteRequestRestConfig, type index_gen$i_UpdateRouteRequestS3Config as UpdateRouteRequestS3Config };
16288
+ type index_gen$h_CreateDeviceRequest = CreateDeviceRequest;
16289
+ type index_gen$h_CreateDeviceResponse = CreateDeviceResponse;
16290
+ type index_gen$h_CreateHubRequest = CreateHubRequest;
16291
+ type index_gen$h_CreateNetworkRequest = CreateNetworkRequest;
16292
+ type index_gen$h_CreateNetworkResponse = CreateNetworkResponse;
16293
+ type index_gen$h_CreateRouteRequestDatabaseConfig = CreateRouteRequestDatabaseConfig;
16294
+ type index_gen$h_CreateRouteRequestRestConfig = CreateRouteRequestRestConfig;
16295
+ type index_gen$h_CreateRouteRequestS3Config = CreateRouteRequestS3Config;
16296
+ type index_gen$h_DeleteDeviceRequest = DeleteDeviceRequest;
16297
+ type index_gen$h_DeleteHubRequest = DeleteHubRequest;
16298
+ type index_gen$h_DeleteNetworkRequest = DeleteNetworkRequest;
16299
+ type index_gen$h_DeleteTwinDocumentRequest = DeleteTwinDocumentRequest;
16300
+ type index_gen$h_DeleteTwinDocumentsRequest = DeleteTwinDocumentsRequest;
16301
+ type index_gen$h_Device = Device;
16302
+ type index_gen$h_DeviceMessageFilters = DeviceMessageFilters;
16303
+ type index_gen$h_DeviceMessageFiltersRule = DeviceMessageFiltersRule;
16304
+ type index_gen$h_DeviceMessageFiltersRulePolicy = DeviceMessageFiltersRulePolicy;
16305
+ type index_gen$h_DeviceStatus = DeviceStatus;
16306
+ type index_gen$h_DisableDeviceRequest = DisableDeviceRequest;
16307
+ type index_gen$h_DisableHubRequest = DisableHubRequest;
16308
+ type index_gen$h_EnableDeviceRequest = EnableDeviceRequest;
16309
+ type index_gen$h_EnableHubRequest = EnableHubRequest;
16310
+ type index_gen$h_GetDeviceCertificateRequest = GetDeviceCertificateRequest;
16311
+ type index_gen$h_GetDeviceCertificateResponse = GetDeviceCertificateResponse;
16312
+ type index_gen$h_GetDeviceMetricsRequest = GetDeviceMetricsRequest;
16313
+ type index_gen$h_GetDeviceMetricsResponse = GetDeviceMetricsResponse;
16314
+ type index_gen$h_GetDeviceRequest = GetDeviceRequest;
16315
+ type index_gen$h_GetHubCARequest = GetHubCARequest;
16316
+ type index_gen$h_GetHubCAResponse = GetHubCAResponse;
16317
+ type index_gen$h_GetHubMetricsRequest = GetHubMetricsRequest;
16318
+ type index_gen$h_GetHubMetricsResponse = GetHubMetricsResponse;
16319
+ type index_gen$h_GetHubRequest = GetHubRequest;
16320
+ type index_gen$h_GetNetworkRequest = GetNetworkRequest;
16321
+ type index_gen$h_GetTwinDocumentRequest = GetTwinDocumentRequest;
16322
+ declare const index_gen$h_HUB_TRANSIENT_STATUSES: typeof HUB_TRANSIENT_STATUSES;
16323
+ type index_gen$h_Hub = Hub;
16324
+ type index_gen$h_HubProductPlan = HubProductPlan;
16325
+ type index_gen$h_HubStatus = HubStatus;
16326
+ type index_gen$h_HubTwinsGraphiteConfig = HubTwinsGraphiteConfig;
16327
+ type index_gen$h_ListDevicesRequest = ListDevicesRequest;
16328
+ type index_gen$h_ListDevicesRequestOrderBy = ListDevicesRequestOrderBy;
16329
+ type index_gen$h_ListDevicesResponse = ListDevicesResponse;
16330
+ type index_gen$h_ListHubsRequest = ListHubsRequest;
16331
+ type index_gen$h_ListHubsRequestOrderBy = ListHubsRequestOrderBy;
16332
+ type index_gen$h_ListHubsResponse = ListHubsResponse;
16333
+ type index_gen$h_ListNetworksRequest = ListNetworksRequest;
16334
+ type index_gen$h_ListNetworksRequestOrderBy = ListNetworksRequestOrderBy;
16335
+ type index_gen$h_ListNetworksResponse = ListNetworksResponse;
16336
+ type index_gen$h_ListTwinDocumentsRequest = ListTwinDocumentsRequest;
16337
+ type index_gen$h_ListTwinDocumentsResponse = ListTwinDocumentsResponse;
16338
+ type index_gen$h_ListTwinDocumentsResponseDocumentSummary = ListTwinDocumentsResponseDocumentSummary;
16339
+ type index_gen$h_Network = Network;
16340
+ type index_gen$h_NetworkNetworkType = NetworkNetworkType;
16341
+ type index_gen$h_PatchTwinDocumentRequest = PatchTwinDocumentRequest;
16342
+ type index_gen$h_PutTwinDocumentRequest = PutTwinDocumentRequest;
16343
+ type index_gen$h_RenewDeviceCertificateRequest = RenewDeviceCertificateRequest;
16344
+ type index_gen$h_RenewDeviceCertificateResponse = RenewDeviceCertificateResponse;
16345
+ type index_gen$h_RouteDatabaseConfig = RouteDatabaseConfig;
16346
+ type index_gen$h_RouteDatabaseConfigEngine = RouteDatabaseConfigEngine;
16347
+ type index_gen$h_RouteRestConfig = RouteRestConfig;
16348
+ type index_gen$h_RouteRestConfigHttpVerb = RouteRestConfigHttpVerb;
16349
+ type index_gen$h_RouteRouteType = RouteRouteType;
16350
+ type index_gen$h_RouteS3Config = RouteS3Config;
16351
+ type index_gen$h_RouteS3ConfigS3Strategy = RouteS3ConfigS3Strategy;
16352
+ type index_gen$h_RouteSummary = RouteSummary;
16353
+ type index_gen$h_SetDeviceCertificateRequest = SetDeviceCertificateRequest;
16354
+ type index_gen$h_SetDeviceCertificateResponse = SetDeviceCertificateResponse;
16355
+ type index_gen$h_SetHubCARequest = SetHubCARequest;
16356
+ type index_gen$h_TwinDocument = TwinDocument;
16357
+ type index_gen$h_UpdateDeviceRequest = UpdateDeviceRequest;
16358
+ type index_gen$h_UpdateHubRequest = UpdateHubRequest;
16359
+ type index_gen$h_UpdateRouteRequestDatabaseConfig = UpdateRouteRequestDatabaseConfig;
16360
+ type index_gen$h_UpdateRouteRequestRestConfig = UpdateRouteRequestRestConfig;
16361
+ type index_gen$h_UpdateRouteRequestS3Config = UpdateRouteRequestS3Config;
16362
+ declare namespace index_gen$h {
16363
+ export { API$h as API, type Certificate$1 as Certificate, type index_gen$h_CreateDeviceRequest as CreateDeviceRequest, type index_gen$h_CreateDeviceResponse as CreateDeviceResponse, type index_gen$h_CreateHubRequest as CreateHubRequest, type index_gen$h_CreateNetworkRequest as CreateNetworkRequest, type index_gen$h_CreateNetworkResponse as CreateNetworkResponse, type CreateRouteRequest$1 as CreateRouteRequest, type index_gen$h_CreateRouteRequestDatabaseConfig as CreateRouteRequestDatabaseConfig, type index_gen$h_CreateRouteRequestRestConfig as CreateRouteRequestRestConfig, type index_gen$h_CreateRouteRequestS3Config as CreateRouteRequestS3Config, type index_gen$h_DeleteDeviceRequest as DeleteDeviceRequest, type index_gen$h_DeleteHubRequest as DeleteHubRequest, type index_gen$h_DeleteNetworkRequest as DeleteNetworkRequest, type DeleteRouteRequest$1 as DeleteRouteRequest, type index_gen$h_DeleteTwinDocumentRequest as DeleteTwinDocumentRequest, type index_gen$h_DeleteTwinDocumentsRequest as DeleteTwinDocumentsRequest, type index_gen$h_Device as Device, type index_gen$h_DeviceMessageFilters as DeviceMessageFilters, type index_gen$h_DeviceMessageFiltersRule as DeviceMessageFiltersRule, type index_gen$h_DeviceMessageFiltersRulePolicy as DeviceMessageFiltersRulePolicy, type index_gen$h_DeviceStatus as DeviceStatus, type index_gen$h_DisableDeviceRequest as DisableDeviceRequest, type index_gen$h_DisableHubRequest as DisableHubRequest, type index_gen$h_EnableDeviceRequest as EnableDeviceRequest, type index_gen$h_EnableHubRequest as EnableHubRequest, type index_gen$h_GetDeviceCertificateRequest as GetDeviceCertificateRequest, type index_gen$h_GetDeviceCertificateResponse as GetDeviceCertificateResponse, type index_gen$h_GetDeviceMetricsRequest as GetDeviceMetricsRequest, type index_gen$h_GetDeviceMetricsResponse as GetDeviceMetricsResponse, type index_gen$h_GetDeviceRequest as GetDeviceRequest, type index_gen$h_GetHubCARequest as GetHubCARequest, type index_gen$h_GetHubCAResponse as GetHubCAResponse, type index_gen$h_GetHubMetricsRequest as GetHubMetricsRequest, type index_gen$h_GetHubMetricsResponse as GetHubMetricsResponse, type index_gen$h_GetHubRequest as GetHubRequest, type index_gen$h_GetNetworkRequest as GetNetworkRequest, type GetRouteRequest$1 as GetRouteRequest, type index_gen$h_GetTwinDocumentRequest as GetTwinDocumentRequest, index_gen$h_HUB_TRANSIENT_STATUSES as HUB_TRANSIENT_STATUSES, type index_gen$h_Hub as Hub, type index_gen$h_HubProductPlan as HubProductPlan, type index_gen$h_HubStatus as HubStatus, type index_gen$h_HubTwinsGraphiteConfig as HubTwinsGraphiteConfig, type index_gen$h_ListDevicesRequest as ListDevicesRequest, type index_gen$h_ListDevicesRequestOrderBy as ListDevicesRequestOrderBy, type index_gen$h_ListDevicesResponse as ListDevicesResponse, type index_gen$h_ListHubsRequest as ListHubsRequest, type index_gen$h_ListHubsRequestOrderBy as ListHubsRequestOrderBy, type index_gen$h_ListHubsResponse as ListHubsResponse, type index_gen$h_ListNetworksRequest as ListNetworksRequest, type index_gen$h_ListNetworksRequestOrderBy as ListNetworksRequestOrderBy, type index_gen$h_ListNetworksResponse as ListNetworksResponse, type ListRoutesRequest$1 as ListRoutesRequest, type ListRoutesRequestOrderBy$1 as ListRoutesRequestOrderBy, type ListRoutesResponse$1 as ListRoutesResponse, type index_gen$h_ListTwinDocumentsRequest as ListTwinDocumentsRequest, type index_gen$h_ListTwinDocumentsResponse as ListTwinDocumentsResponse, type index_gen$h_ListTwinDocumentsResponseDocumentSummary as ListTwinDocumentsResponseDocumentSummary, type index_gen$h_Network as Network, type index_gen$h_NetworkNetworkType as NetworkNetworkType, type index_gen$h_PatchTwinDocumentRequest as PatchTwinDocumentRequest, type index_gen$h_PutTwinDocumentRequest as PutTwinDocumentRequest, type index_gen$h_RenewDeviceCertificateRequest as RenewDeviceCertificateRequest, type index_gen$h_RenewDeviceCertificateResponse as RenewDeviceCertificateResponse, type Route$1 as Route, type index_gen$h_RouteDatabaseConfig as RouteDatabaseConfig, type index_gen$h_RouteDatabaseConfigEngine as RouteDatabaseConfigEngine, type index_gen$h_RouteRestConfig as RouteRestConfig, type index_gen$h_RouteRestConfigHttpVerb as RouteRestConfigHttpVerb, type index_gen$h_RouteRouteType as RouteRouteType, type index_gen$h_RouteS3Config as RouteS3Config, type index_gen$h_RouteS3ConfigS3Strategy as RouteS3ConfigS3Strategy, type index_gen$h_RouteSummary as RouteSummary, type index_gen$h_SetDeviceCertificateRequest as SetDeviceCertificateRequest, type index_gen$h_SetDeviceCertificateResponse as SetDeviceCertificateResponse, type index_gen$h_SetHubCARequest as SetHubCARequest, type index_gen$h_TwinDocument as TwinDocument, type index_gen$h_UpdateDeviceRequest as UpdateDeviceRequest, type index_gen$h_UpdateHubRequest as UpdateHubRequest, type UpdateRouteRequest$1 as UpdateRouteRequest, type index_gen$h_UpdateRouteRequestDatabaseConfig as UpdateRouteRequestDatabaseConfig, type index_gen$h_UpdateRouteRequestRestConfig as UpdateRouteRequestRestConfig, type index_gen$h_UpdateRouteRequestS3Config as UpdateRouteRequestS3Config };
16303
16364
  }
16304
16365
 
16305
16366
  declare namespace index$i {
16306
- export { index_gen$i as v1 };
16367
+ export { index_gen$h as v1 };
16307
16368
  }
16308
16369
 
16309
16370
  type ListIPsRequestOrderBy$1 = 'created_at_desc' | 'created_at_asc' | 'updated_at_desc' | 'updated_at_asc' | 'attached_at_desc' | 'attached_at_asc';
16310
- type ResourceType = 'unknown_type' | 'instance_server' | 'instance_ip' | 'instance_private_nic' | 'lb_server' | 'fip_ip' | 'vpc_gateway' | 'vpc_gateway_network' | 'k8s_node' | 'rdb_instance' | 'redis_cluster' | 'baremetal_server' | 'baremetal_private_nic';
16371
+ type ResourceType = 'unknown_type' | 'instance_server' | 'instance_ip' | 'instance_private_nic' | 'lb_server' | 'fip_ip' | 'vpc_gateway' | 'vpc_gateway_network' | 'k8s_node' | 'k8s_cluster' | 'rdb_instance' | 'redis_cluster' | 'baremetal_server' | 'baremetal_private_nic';
16311
16372
  interface Resource {
16312
16373
  /** Type of resource the IP is attached to. */
16313
16374
  type: ResourceType;
@@ -16496,7 +16557,7 @@ type UpdateIPRequest$1 = {
16496
16557
  * This API allows you to manage IP addresses with Scaleway's IP Address
16497
16558
  * Management tool.
16498
16559
  */
16499
- declare class API$h extends API$w {
16560
+ declare class API$g extends API$v {
16500
16561
  /** Lists the available regions of the API. */
16501
16562
  static readonly LOCALITIES: Region[];
16502
16563
  /**
@@ -16556,17 +16617,17 @@ declare namespace validationRules_gen$5 {
16556
16617
  export { ListIPsRequest$2 as ListIPsRequest };
16557
16618
  }
16558
16619
 
16559
- type index_gen$h_BookIPRequest = BookIPRequest;
16560
- type index_gen$h_ReleaseIPRequest = ReleaseIPRequest;
16561
- type index_gen$h_Resource = Resource;
16562
- type index_gen$h_ResourceType = ResourceType;
16563
- type index_gen$h_Source = Source;
16564
- declare namespace index_gen$h {
16565
- export { API$h as API, type index_gen$h_BookIPRequest as BookIPRequest, type GetIPRequest$1 as GetIPRequest, type IP$1 as IP, type ListIPsRequest$3 as ListIPsRequest, type ListIPsRequestOrderBy$1 as ListIPsRequestOrderBy, type ListIPsResponse$1 as ListIPsResponse, type index_gen$h_ReleaseIPRequest as ReleaseIPRequest, type index_gen$h_Resource as Resource, type index_gen$h_ResourceType as ResourceType, type index_gen$h_Source as Source, type UpdateIPRequest$1 as UpdateIPRequest, validationRules_gen$5 as ValidationRules };
16620
+ type index_gen$g_BookIPRequest = BookIPRequest;
16621
+ type index_gen$g_ReleaseIPRequest = ReleaseIPRequest;
16622
+ type index_gen$g_Resource = Resource;
16623
+ type index_gen$g_ResourceType = ResourceType;
16624
+ type index_gen$g_Source = Source;
16625
+ declare namespace index_gen$g {
16626
+ export { API$g as API, type index_gen$g_BookIPRequest as BookIPRequest, type GetIPRequest$1 as GetIPRequest, type IP$1 as IP, type ListIPsRequest$3 as ListIPsRequest, type ListIPsRequestOrderBy$1 as ListIPsRequestOrderBy, type ListIPsResponse$1 as ListIPsResponse, type index_gen$g_ReleaseIPRequest as ReleaseIPRequest, type index_gen$g_Resource as Resource, type index_gen$g_ResourceType as ResourceType, type index_gen$g_Source as Source, type UpdateIPRequest$1 as UpdateIPRequest, validationRules_gen$5 as ValidationRules };
16566
16627
  }
16567
16628
 
16568
16629
  declare namespace index$h {
16569
- export { index_gen$h as v1 };
16630
+ export { index_gen$g as v1 };
16570
16631
  }
16571
16632
 
16572
16633
  type ListNamesRequestOrderBy = 'created_at_asc' | 'created_at_desc';
@@ -16887,7 +16948,7 @@ type UpdateVolumeRequest = {
16887
16948
  };
16888
16949
 
16889
16950
  /** IPFS Pinning service API. */
16890
- declare class API$g extends API$w {
16951
+ declare class API$f extends API$v {
16891
16952
  /** Lists the available regions of the API. */
16892
16953
  static readonly LOCALITIES: Region[];
16893
16954
  /**
@@ -17015,7 +17076,7 @@ declare class API$g extends API$w {
17015
17076
  deletePin: (request: Readonly<DeletePinRequest>) => Promise<void>;
17016
17077
  }
17017
17078
  /** IPFS Naming service API. */
17018
- declare class IpnsAPI extends API$w {
17079
+ declare class IpnsAPI extends API$v {
17019
17080
  /** Lists the available regions of the API. */
17020
17081
  static readonly LOCALITIES: Region[];
17021
17082
  /**
@@ -17087,50 +17148,50 @@ declare const NAME_TRANSIENT_STATUSES: NameStatus[];
17087
17148
  /** Lists transient statutes of the enum {@link PinStatus}. */
17088
17149
  declare const PIN_TRANSIENT_STATUSES: PinStatus[];
17089
17150
 
17090
- type index_gen$g_CreatePinByCIDRequest = CreatePinByCIDRequest;
17091
- type index_gen$g_CreatePinByURLRequest = CreatePinByURLRequest;
17092
- type index_gen$g_CreateVolumeRequest = CreateVolumeRequest;
17093
- type index_gen$g_DeletePinRequest = DeletePinRequest;
17094
- type index_gen$g_DeleteVolumeRequest = DeleteVolumeRequest;
17095
- type index_gen$g_ExportKeyNameResponse = ExportKeyNameResponse;
17096
- type index_gen$g_GetPinRequest = GetPinRequest;
17097
- type index_gen$g_GetVolumeRequest = GetVolumeRequest;
17098
- type index_gen$g_IpnsAPI = IpnsAPI;
17099
- declare const index_gen$g_IpnsAPI: typeof IpnsAPI;
17100
- type index_gen$g_IpnsApiCreateNameRequest = IpnsApiCreateNameRequest;
17101
- type index_gen$g_IpnsApiDeleteNameRequest = IpnsApiDeleteNameRequest;
17102
- type index_gen$g_IpnsApiExportKeyNameRequest = IpnsApiExportKeyNameRequest;
17103
- type index_gen$g_IpnsApiGetNameRequest = IpnsApiGetNameRequest;
17104
- type index_gen$g_IpnsApiImportKeyNameRequest = IpnsApiImportKeyNameRequest;
17105
- type index_gen$g_IpnsApiListNamesRequest = IpnsApiListNamesRequest;
17106
- type index_gen$g_IpnsApiUpdateNameRequest = IpnsApiUpdateNameRequest;
17107
- type index_gen$g_ListNamesRequestOrderBy = ListNamesRequestOrderBy;
17108
- type index_gen$g_ListNamesResponse = ListNamesResponse;
17109
- type index_gen$g_ListPinsRequest = ListPinsRequest;
17110
- type index_gen$g_ListPinsRequestOrderBy = ListPinsRequestOrderBy;
17111
- type index_gen$g_ListPinsResponse = ListPinsResponse;
17112
- type index_gen$g_ListVolumesRequest = ListVolumesRequest;
17113
- type index_gen$g_ListVolumesRequestOrderBy = ListVolumesRequestOrderBy;
17114
- type index_gen$g_ListVolumesResponse = ListVolumesResponse;
17115
- declare const index_gen$g_NAME_TRANSIENT_STATUSES: typeof NAME_TRANSIENT_STATUSES;
17116
- type index_gen$g_Name = Name;
17117
- type index_gen$g_NameStatus = NameStatus;
17118
- declare const index_gen$g_PIN_TRANSIENT_STATUSES: typeof PIN_TRANSIENT_STATUSES;
17119
- type index_gen$g_Pin = Pin;
17120
- type index_gen$g_PinCID = PinCID;
17121
- type index_gen$g_PinCIDMeta = PinCIDMeta;
17122
- type index_gen$g_PinDetails = PinDetails;
17123
- type index_gen$g_PinInfo = PinInfo;
17124
- type index_gen$g_PinStatus = PinStatus;
17125
- type index_gen$g_ReplacePinRequest = ReplacePinRequest;
17126
- type index_gen$g_ReplacePinResponse = ReplacePinResponse;
17127
- type index_gen$g_UpdateVolumeRequest = UpdateVolumeRequest;
17128
- declare namespace index_gen$g {
17129
- export { API$g as API, type index_gen$g_CreatePinByCIDRequest as CreatePinByCIDRequest, type index_gen$g_CreatePinByURLRequest as CreatePinByURLRequest, type index_gen$g_CreateVolumeRequest as CreateVolumeRequest, type index_gen$g_DeletePinRequest as DeletePinRequest, type index_gen$g_DeleteVolumeRequest as DeleteVolumeRequest, type index_gen$g_ExportKeyNameResponse as ExportKeyNameResponse, type index_gen$g_GetPinRequest as GetPinRequest, type index_gen$g_GetVolumeRequest as GetVolumeRequest, index_gen$g_IpnsAPI as IpnsAPI, type index_gen$g_IpnsApiCreateNameRequest as IpnsApiCreateNameRequest, type index_gen$g_IpnsApiDeleteNameRequest as IpnsApiDeleteNameRequest, type index_gen$g_IpnsApiExportKeyNameRequest as IpnsApiExportKeyNameRequest, type index_gen$g_IpnsApiGetNameRequest as IpnsApiGetNameRequest, type index_gen$g_IpnsApiImportKeyNameRequest as IpnsApiImportKeyNameRequest, type index_gen$g_IpnsApiListNamesRequest as IpnsApiListNamesRequest, type index_gen$g_IpnsApiUpdateNameRequest as IpnsApiUpdateNameRequest, type index_gen$g_ListNamesRequestOrderBy as ListNamesRequestOrderBy, type index_gen$g_ListNamesResponse as ListNamesResponse, type index_gen$g_ListPinsRequest as ListPinsRequest, type index_gen$g_ListPinsRequestOrderBy as ListPinsRequestOrderBy, type index_gen$g_ListPinsResponse as ListPinsResponse, type index_gen$g_ListVolumesRequest as ListVolumesRequest, type index_gen$g_ListVolumesRequestOrderBy as ListVolumesRequestOrderBy, type index_gen$g_ListVolumesResponse as ListVolumesResponse, index_gen$g_NAME_TRANSIENT_STATUSES as NAME_TRANSIENT_STATUSES, type index_gen$g_Name as Name, type index_gen$g_NameStatus as NameStatus, index_gen$g_PIN_TRANSIENT_STATUSES as PIN_TRANSIENT_STATUSES, type index_gen$g_Pin as Pin, type index_gen$g_PinCID as PinCID, type index_gen$g_PinCIDMeta as PinCIDMeta, type index_gen$g_PinDetails as PinDetails, type index_gen$g_PinInfo as PinInfo, type index_gen$g_PinStatus as PinStatus, type index_gen$g_ReplacePinRequest as ReplacePinRequest, type index_gen$g_ReplacePinResponse as ReplacePinResponse, type index_gen$g_UpdateVolumeRequest as UpdateVolumeRequest, type Volume$1 as Volume };
17151
+ type index_gen$f_CreatePinByCIDRequest = CreatePinByCIDRequest;
17152
+ type index_gen$f_CreatePinByURLRequest = CreatePinByURLRequest;
17153
+ type index_gen$f_CreateVolumeRequest = CreateVolumeRequest;
17154
+ type index_gen$f_DeletePinRequest = DeletePinRequest;
17155
+ type index_gen$f_DeleteVolumeRequest = DeleteVolumeRequest;
17156
+ type index_gen$f_ExportKeyNameResponse = ExportKeyNameResponse;
17157
+ type index_gen$f_GetPinRequest = GetPinRequest;
17158
+ type index_gen$f_GetVolumeRequest = GetVolumeRequest;
17159
+ type index_gen$f_IpnsAPI = IpnsAPI;
17160
+ declare const index_gen$f_IpnsAPI: typeof IpnsAPI;
17161
+ type index_gen$f_IpnsApiCreateNameRequest = IpnsApiCreateNameRequest;
17162
+ type index_gen$f_IpnsApiDeleteNameRequest = IpnsApiDeleteNameRequest;
17163
+ type index_gen$f_IpnsApiExportKeyNameRequest = IpnsApiExportKeyNameRequest;
17164
+ type index_gen$f_IpnsApiGetNameRequest = IpnsApiGetNameRequest;
17165
+ type index_gen$f_IpnsApiImportKeyNameRequest = IpnsApiImportKeyNameRequest;
17166
+ type index_gen$f_IpnsApiListNamesRequest = IpnsApiListNamesRequest;
17167
+ type index_gen$f_IpnsApiUpdateNameRequest = IpnsApiUpdateNameRequest;
17168
+ type index_gen$f_ListNamesRequestOrderBy = ListNamesRequestOrderBy;
17169
+ type index_gen$f_ListNamesResponse = ListNamesResponse;
17170
+ type index_gen$f_ListPinsRequest = ListPinsRequest;
17171
+ type index_gen$f_ListPinsRequestOrderBy = ListPinsRequestOrderBy;
17172
+ type index_gen$f_ListPinsResponse = ListPinsResponse;
17173
+ type index_gen$f_ListVolumesRequest = ListVolumesRequest;
17174
+ type index_gen$f_ListVolumesRequestOrderBy = ListVolumesRequestOrderBy;
17175
+ type index_gen$f_ListVolumesResponse = ListVolumesResponse;
17176
+ declare const index_gen$f_NAME_TRANSIENT_STATUSES: typeof NAME_TRANSIENT_STATUSES;
17177
+ type index_gen$f_Name = Name;
17178
+ type index_gen$f_NameStatus = NameStatus;
17179
+ declare const index_gen$f_PIN_TRANSIENT_STATUSES: typeof PIN_TRANSIENT_STATUSES;
17180
+ type index_gen$f_Pin = Pin;
17181
+ type index_gen$f_PinCID = PinCID;
17182
+ type index_gen$f_PinCIDMeta = PinCIDMeta;
17183
+ type index_gen$f_PinDetails = PinDetails;
17184
+ type index_gen$f_PinInfo = PinInfo;
17185
+ type index_gen$f_PinStatus = PinStatus;
17186
+ type index_gen$f_ReplacePinRequest = ReplacePinRequest;
17187
+ type index_gen$f_ReplacePinResponse = ReplacePinResponse;
17188
+ type index_gen$f_UpdateVolumeRequest = UpdateVolumeRequest;
17189
+ declare namespace index_gen$f {
17190
+ export { API$f as API, type index_gen$f_CreatePinByCIDRequest as CreatePinByCIDRequest, type index_gen$f_CreatePinByURLRequest as CreatePinByURLRequest, type index_gen$f_CreateVolumeRequest as CreateVolumeRequest, type index_gen$f_DeletePinRequest as DeletePinRequest, type index_gen$f_DeleteVolumeRequest as DeleteVolumeRequest, type index_gen$f_ExportKeyNameResponse as ExportKeyNameResponse, type index_gen$f_GetPinRequest as GetPinRequest, type index_gen$f_GetVolumeRequest as GetVolumeRequest, index_gen$f_IpnsAPI as IpnsAPI, type index_gen$f_IpnsApiCreateNameRequest as IpnsApiCreateNameRequest, type index_gen$f_IpnsApiDeleteNameRequest as IpnsApiDeleteNameRequest, type index_gen$f_IpnsApiExportKeyNameRequest as IpnsApiExportKeyNameRequest, type index_gen$f_IpnsApiGetNameRequest as IpnsApiGetNameRequest, type index_gen$f_IpnsApiImportKeyNameRequest as IpnsApiImportKeyNameRequest, type index_gen$f_IpnsApiListNamesRequest as IpnsApiListNamesRequest, type index_gen$f_IpnsApiUpdateNameRequest as IpnsApiUpdateNameRequest, type index_gen$f_ListNamesRequestOrderBy as ListNamesRequestOrderBy, type index_gen$f_ListNamesResponse as ListNamesResponse, type index_gen$f_ListPinsRequest as ListPinsRequest, type index_gen$f_ListPinsRequestOrderBy as ListPinsRequestOrderBy, type index_gen$f_ListPinsResponse as ListPinsResponse, type index_gen$f_ListVolumesRequest as ListVolumesRequest, type index_gen$f_ListVolumesRequestOrderBy as ListVolumesRequestOrderBy, type index_gen$f_ListVolumesResponse as ListVolumesResponse, index_gen$f_NAME_TRANSIENT_STATUSES as NAME_TRANSIENT_STATUSES, type index_gen$f_Name as Name, type index_gen$f_NameStatus as NameStatus, index_gen$f_PIN_TRANSIENT_STATUSES as PIN_TRANSIENT_STATUSES, type index_gen$f_Pin as Pin, type index_gen$f_PinCID as PinCID, type index_gen$f_PinCIDMeta as PinCIDMeta, type index_gen$f_PinDetails as PinDetails, type index_gen$f_PinInfo as PinInfo, type index_gen$f_PinStatus as PinStatus, type index_gen$f_ReplacePinRequest as ReplacePinRequest, type index_gen$f_ReplacePinResponse as ReplacePinResponse, type index_gen$f_UpdateVolumeRequest as UpdateVolumeRequest, type Volume$1 as Volume };
17130
17191
  }
17131
17192
 
17132
17193
  declare namespace index$g {
17133
- export { index_gen$g as v1alpha1 };
17194
+ export { index_gen$f as v1alpha1 };
17134
17195
  }
17135
17196
 
17136
17197
  type JobRunState = 'unknown_state' | 'queued' | 'scheduled' | 'running' | 'succeeded' | 'failed' | 'canceled';
@@ -17283,7 +17344,7 @@ type UpdateJobDefinitionRequest$1 = {
17283
17344
  };
17284
17345
 
17285
17346
  /** Serverless Jobs API. */
17286
- declare class API$f extends API$w {
17347
+ declare class API$e extends API$v {
17287
17348
  /** Lists the available regions of the API. */
17288
17349
  static readonly LOCALITIES: Region[];
17289
17350
  getServiceInfo: (request?: Readonly<GetServiceInfoRequest>) => Promise<ServiceInfo>;
@@ -17313,11 +17374,14 @@ declare const CreateJobDefinitionRequest: {
17313
17374
  cpuLimit: {
17314
17375
  greaterThan: number;
17315
17376
  };
17377
+ imageUri: {
17378
+ pattern: RegExp;
17379
+ };
17316
17380
  memoryLimit: {
17317
17381
  greaterThan: number;
17318
17382
  };
17319
17383
  name: {
17320
- minLength: number;
17384
+ pattern: RegExp;
17321
17385
  };
17322
17386
  };
17323
17387
  declare const ListJobDefinitionsRequest: {
@@ -17342,11 +17406,14 @@ declare const UpdateJobDefinitionRequest: {
17342
17406
  cpuLimit: {
17343
17407
  greaterThan: number;
17344
17408
  };
17409
+ imageUri: {
17410
+ pattern: RegExp;
17411
+ };
17345
17412
  memoryLimit: {
17346
17413
  greaterThan: number;
17347
17414
  };
17348
17415
  name: {
17349
- minLength: number;
17416
+ pattern: RegExp;
17350
17417
  };
17351
17418
  };
17352
17419
 
@@ -17358,26 +17425,26 @@ declare namespace validationRules_gen$4 {
17358
17425
  export { validationRules_gen$4_CreateJobDefinitionRequest as CreateJobDefinitionRequest, validationRules_gen$4_ListJobDefinitionsRequest as ListJobDefinitionsRequest, validationRules_gen$4_ListJobRunsRequest as ListJobRunsRequest, validationRules_gen$4_UpdateJobDefinitionRequest as UpdateJobDefinitionRequest };
17359
17426
  }
17360
17427
 
17361
- type index_gen$f_DeleteJobDefinitionRequest = DeleteJobDefinitionRequest;
17362
- type index_gen$f_GetJobDefinitionRequest = GetJobDefinitionRequest;
17363
- type index_gen$f_GetJobRunRequest = GetJobRunRequest;
17364
- type index_gen$f_GetServiceInfoRequest = GetServiceInfoRequest;
17365
- declare const index_gen$f_JOB_RUN_TRANSIENT_STATUSES: typeof JOB_RUN_TRANSIENT_STATUSES;
17366
- type index_gen$f_JobDefinition = JobDefinition;
17367
- type index_gen$f_JobRun = JobRun;
17368
- type index_gen$f_JobRunState = JobRunState;
17369
- type index_gen$f_ListJobDefinitionsRequestOrderBy = ListJobDefinitionsRequestOrderBy;
17370
- type index_gen$f_ListJobDefinitionsResponse = ListJobDefinitionsResponse;
17371
- type index_gen$f_ListJobRunsRequestOrderBy = ListJobRunsRequestOrderBy;
17372
- type index_gen$f_ListJobRunsResponse = ListJobRunsResponse;
17373
- type index_gen$f_StartJobDefinitionRequest = StartJobDefinitionRequest;
17374
- type index_gen$f_StopJobRunRequest = StopJobRunRequest;
17375
- declare namespace index_gen$f {
17376
- export { API$f as API, type CreateJobDefinitionRequest$1 as CreateJobDefinitionRequest, type index_gen$f_DeleteJobDefinitionRequest as DeleteJobDefinitionRequest, type index_gen$f_GetJobDefinitionRequest as GetJobDefinitionRequest, type index_gen$f_GetJobRunRequest as GetJobRunRequest, type index_gen$f_GetServiceInfoRequest as GetServiceInfoRequest, index_gen$f_JOB_RUN_TRANSIENT_STATUSES as JOB_RUN_TRANSIENT_STATUSES, type index_gen$f_JobDefinition as JobDefinition, type index_gen$f_JobRun as JobRun, type index_gen$f_JobRunState as JobRunState, type ListJobDefinitionsRequest$1 as ListJobDefinitionsRequest, type index_gen$f_ListJobDefinitionsRequestOrderBy as ListJobDefinitionsRequestOrderBy, type index_gen$f_ListJobDefinitionsResponse as ListJobDefinitionsResponse, type ListJobRunsRequest$1 as ListJobRunsRequest, type index_gen$f_ListJobRunsRequestOrderBy as ListJobRunsRequestOrderBy, type index_gen$f_ListJobRunsResponse as ListJobRunsResponse, type index_gen$f_StartJobDefinitionRequest as StartJobDefinitionRequest, type index_gen$f_StopJobRunRequest as StopJobRunRequest, type UpdateJobDefinitionRequest$1 as UpdateJobDefinitionRequest, validationRules_gen$4 as ValidationRules };
17428
+ type index_gen$e_DeleteJobDefinitionRequest = DeleteJobDefinitionRequest;
17429
+ type index_gen$e_GetJobDefinitionRequest = GetJobDefinitionRequest;
17430
+ type index_gen$e_GetJobRunRequest = GetJobRunRequest;
17431
+ type index_gen$e_GetServiceInfoRequest = GetServiceInfoRequest;
17432
+ declare const index_gen$e_JOB_RUN_TRANSIENT_STATUSES: typeof JOB_RUN_TRANSIENT_STATUSES;
17433
+ type index_gen$e_JobDefinition = JobDefinition;
17434
+ type index_gen$e_JobRun = JobRun;
17435
+ type index_gen$e_JobRunState = JobRunState;
17436
+ type index_gen$e_ListJobDefinitionsRequestOrderBy = ListJobDefinitionsRequestOrderBy;
17437
+ type index_gen$e_ListJobDefinitionsResponse = ListJobDefinitionsResponse;
17438
+ type index_gen$e_ListJobRunsRequestOrderBy = ListJobRunsRequestOrderBy;
17439
+ type index_gen$e_ListJobRunsResponse = ListJobRunsResponse;
17440
+ type index_gen$e_StartJobDefinitionRequest = StartJobDefinitionRequest;
17441
+ type index_gen$e_StopJobRunRequest = StopJobRunRequest;
17442
+ declare namespace index_gen$e {
17443
+ export { API$e as API, type CreateJobDefinitionRequest$1 as CreateJobDefinitionRequest, type index_gen$e_DeleteJobDefinitionRequest as DeleteJobDefinitionRequest, type index_gen$e_GetJobDefinitionRequest as GetJobDefinitionRequest, type index_gen$e_GetJobRunRequest as GetJobRunRequest, type index_gen$e_GetServiceInfoRequest as GetServiceInfoRequest, index_gen$e_JOB_RUN_TRANSIENT_STATUSES as JOB_RUN_TRANSIENT_STATUSES, type index_gen$e_JobDefinition as JobDefinition, type index_gen$e_JobRun as JobRun, type index_gen$e_JobRunState as JobRunState, type ListJobDefinitionsRequest$1 as ListJobDefinitionsRequest, type index_gen$e_ListJobDefinitionsRequestOrderBy as ListJobDefinitionsRequestOrderBy, type index_gen$e_ListJobDefinitionsResponse as ListJobDefinitionsResponse, type ListJobRunsRequest$1 as ListJobRunsRequest, type index_gen$e_ListJobRunsRequestOrderBy as ListJobRunsRequestOrderBy, type index_gen$e_ListJobRunsResponse as ListJobRunsResponse, type index_gen$e_StartJobDefinitionRequest as StartJobDefinitionRequest, type index_gen$e_StopJobRunRequest as StopJobRunRequest, type UpdateJobDefinitionRequest$1 as UpdateJobDefinitionRequest, validationRules_gen$4 as ValidationRules };
17377
17444
  }
17378
17445
 
17379
17446
  declare namespace index$f {
17380
- export { index_gen$f as v1alpha1 };
17447
+ export { index_gen$e as v1alpha1 };
17381
17448
  }
17382
17449
 
17383
17450
  type AutoscalerEstimator = 'unknown_estimator' | 'binpacking';
@@ -18495,7 +18562,7 @@ type UpgradePoolRequest = {
18495
18562
  };
18496
18563
 
18497
18564
  /** Kubernetes API. */
18498
- declare class API$e extends API$w {
18565
+ declare class API$d extends API$v {
18499
18566
  /** Lists the available regions of the API. */
18500
18567
  static readonly LOCALITIES: Region[];
18501
18568
  protected pageOfListClusters: (request?: Readonly<ListClustersRequest$2>) => Promise<ListClustersResponse$1>;
@@ -18774,7 +18841,7 @@ type GetClusterKubeConfigRequest = {
18774
18841
  clusterId: string;
18775
18842
  };
18776
18843
 
18777
- declare class K8SUtilsAPI extends API$e {
18844
+ declare class K8SUtilsAPI extends API$d {
18778
18845
  /**
18779
18846
  * Get configuration of a kube cluster.
18780
18847
  *
@@ -21635,7 +21702,7 @@ type ZonedApiUpdateSubscriberRequest = {
21635
21702
  *
21636
21703
  * This API allows you to manage your Scaleway Load Balancer services.
21637
21704
  */
21638
- declare class ZonedAPI extends API$w {
21705
+ declare class ZonedAPI extends API$v {
21639
21706
  /** Lists the available zones of the API. */
21640
21707
  static readonly LOCALITIES: Zone[];
21641
21708
  protected pageOfListLbs: (request?: Readonly<ZonedApiListLbsRequest>) => Promise<ListLbsResponse>;
@@ -22189,7 +22256,7 @@ declare class ZonedAPI extends API$w {
22189
22256
  *
22190
22257
  * This API allows you to manage your load balancer service.
22191
22258
  */
22192
- declare class API$d extends API$w {
22259
+ declare class API$c extends API$v {
22193
22260
  /** Lists the available regions of the API. */
22194
22261
  static readonly LOCALITIES: Region[];
22195
22262
  protected pageOfListLbs: (request?: Readonly<ListLbsRequest>) => Promise<ListLbsResponse>;
@@ -22631,7 +22698,7 @@ type ZonedWaitForLbPrivateNetworksRequest = {
22631
22698
  lbId: string;
22632
22699
  };
22633
22700
 
22634
- declare class LbV1UtilsAPI extends API$d {
22701
+ declare class LbV1UtilsAPI extends API$c {
22635
22702
  /**
22636
22703
  * Waits for all private networks of a load balancer to be in a final state.
22637
22704
  *
@@ -22950,7 +23017,7 @@ interface ListVersionsResponse$1 {
22950
23017
  }
22951
23018
 
22952
23019
  /** Marketplace API. */
22953
- declare class API$c extends API$w {
23020
+ declare class API$b extends API$v {
22954
23021
  protected pageOfListImages: (request?: Readonly<ListImagesRequest$2>) => Promise<ListImagesResponse$2>;
22955
23022
  /**
22956
23023
  * List marketplace images.
@@ -22973,11 +23040,11 @@ declare class API$c extends API$w {
22973
23040
  getVersion: (request: Readonly<GetVersionRequest$1>) => Promise<GetVersionResponse>;
22974
23041
  }
22975
23042
 
22976
- type index_gen$e_GetImageResponse = GetImageResponse;
22977
- type index_gen$e_GetVersionResponse = GetVersionResponse;
22978
- type index_gen$e_Organization = Organization;
22979
- declare namespace index_gen$e {
22980
- export { API$c as API, type GetImageRequest$2 as GetImageRequest, type index_gen$e_GetImageResponse as GetImageResponse, type GetVersionRequest$1 as GetVersionRequest, type index_gen$e_GetVersionResponse as GetVersionResponse, type Image$2 as Image, type ListImagesRequest$2 as ListImagesRequest, type ListImagesResponse$2 as ListImagesResponse, type ListVersionsRequest$1 as ListVersionsRequest, type ListVersionsResponse$1 as ListVersionsResponse, type LocalImage$1 as LocalImage, type index_gen$e_Organization as Organization, type Version$1 as Version };
23043
+ type index_gen$d_GetImageResponse = GetImageResponse;
23044
+ type index_gen$d_GetVersionResponse = GetVersionResponse;
23045
+ type index_gen$d_Organization = Organization;
23046
+ declare namespace index_gen$d {
23047
+ export { API$b as API, type GetImageRequest$2 as GetImageRequest, type index_gen$d_GetImageResponse as GetImageResponse, type GetVersionRequest$1 as GetVersionRequest, type index_gen$d_GetVersionResponse as GetVersionResponse, type Image$2 as Image, type ListImagesRequest$2 as ListImagesRequest, type ListImagesResponse$2 as ListImagesResponse, type ListVersionsRequest$1 as ListVersionsRequest, type ListVersionsResponse$1 as ListVersionsResponse, type LocalImage$1 as LocalImage, type index_gen$d_Organization as Organization, type Version$1 as Version };
22981
23048
  }
22982
23049
 
22983
23050
  type ListImagesRequestOrderBy$1 = 'name_asc' | 'name_desc' | 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc';
@@ -23116,7 +23183,7 @@ interface ListVersionsResponse {
23116
23183
  }
23117
23184
 
23118
23185
  /** Marketplace API. */
23119
- declare class API$b extends API$w {
23186
+ declare class API$a extends API$v {
23120
23187
  protected pageOfListImages: (request: Readonly<ListImagesRequest$1>) => Promise<ListImagesResponse$1>;
23121
23188
  /**
23122
23189
  * List marketplace images. List all available images on the marketplace,
@@ -23204,387 +23271,27 @@ declare class API$b extends API$w {
23204
23271
  getCategory: (request: Readonly<GetCategoryRequest>) => Promise<Category>;
23205
23272
  }
23206
23273
 
23207
- type index_gen$d_Category = Category;
23208
- type index_gen$d_GetCategoryRequest = GetCategoryRequest;
23209
- type index_gen$d_GetLocalImageRequest = GetLocalImageRequest;
23210
- type index_gen$d_GetVersionRequest = GetVersionRequest;
23211
- type index_gen$d_ListCategoriesRequest = ListCategoriesRequest;
23212
- type index_gen$d_ListCategoriesResponse = ListCategoriesResponse;
23213
- type index_gen$d_ListLocalImagesRequest = ListLocalImagesRequest;
23214
- type index_gen$d_ListLocalImagesRequestOrderBy = ListLocalImagesRequestOrderBy;
23215
- type index_gen$d_ListLocalImagesResponse = ListLocalImagesResponse;
23216
- type index_gen$d_ListVersionsRequest = ListVersionsRequest;
23217
- type index_gen$d_ListVersionsRequestOrderBy = ListVersionsRequestOrderBy;
23218
- type index_gen$d_ListVersionsResponse = ListVersionsResponse;
23219
- type index_gen$d_LocalImage = LocalImage;
23220
- type index_gen$d_LocalImageType = LocalImageType;
23221
- type index_gen$d_Version = Version;
23222
- declare namespace index_gen$d {
23223
- export { API$b as API, type index_gen$d_Category as Category, type index_gen$d_GetCategoryRequest as GetCategoryRequest, type GetImageRequest$1 as GetImageRequest, type index_gen$d_GetLocalImageRequest as GetLocalImageRequest, type index_gen$d_GetVersionRequest as GetVersionRequest, type Image$1 as Image, type index_gen$d_ListCategoriesRequest as ListCategoriesRequest, type index_gen$d_ListCategoriesResponse as ListCategoriesResponse, type ListImagesRequest$1 as ListImagesRequest, type ListImagesRequestOrderBy$1 as ListImagesRequestOrderBy, type ListImagesResponse$1 as ListImagesResponse, type index_gen$d_ListLocalImagesRequest as ListLocalImagesRequest, type index_gen$d_ListLocalImagesRequestOrderBy as ListLocalImagesRequestOrderBy, type index_gen$d_ListLocalImagesResponse as ListLocalImagesResponse, type index_gen$d_ListVersionsRequest as ListVersionsRequest, type index_gen$d_ListVersionsRequestOrderBy as ListVersionsRequestOrderBy, type index_gen$d_ListVersionsResponse as ListVersionsResponse, type index_gen$d_LocalImage as LocalImage, type index_gen$d_LocalImageType as LocalImageType, type index_gen$d_Version as Version };
23274
+ type index_gen$c_Category = Category;
23275
+ type index_gen$c_GetCategoryRequest = GetCategoryRequest;
23276
+ type index_gen$c_GetLocalImageRequest = GetLocalImageRequest;
23277
+ type index_gen$c_GetVersionRequest = GetVersionRequest;
23278
+ type index_gen$c_ListCategoriesRequest = ListCategoriesRequest;
23279
+ type index_gen$c_ListCategoriesResponse = ListCategoriesResponse;
23280
+ type index_gen$c_ListLocalImagesRequest = ListLocalImagesRequest;
23281
+ type index_gen$c_ListLocalImagesRequestOrderBy = ListLocalImagesRequestOrderBy;
23282
+ type index_gen$c_ListLocalImagesResponse = ListLocalImagesResponse;
23283
+ type index_gen$c_ListVersionsRequest = ListVersionsRequest;
23284
+ type index_gen$c_ListVersionsRequestOrderBy = ListVersionsRequestOrderBy;
23285
+ type index_gen$c_ListVersionsResponse = ListVersionsResponse;
23286
+ type index_gen$c_LocalImage = LocalImage;
23287
+ type index_gen$c_LocalImageType = LocalImageType;
23288
+ type index_gen$c_Version = Version;
23289
+ declare namespace index_gen$c {
23290
+ export { API$a as API, type index_gen$c_Category as Category, type index_gen$c_GetCategoryRequest as GetCategoryRequest, type GetImageRequest$1 as GetImageRequest, type index_gen$c_GetLocalImageRequest as GetLocalImageRequest, type index_gen$c_GetVersionRequest as GetVersionRequest, type Image$1 as Image, type index_gen$c_ListCategoriesRequest as ListCategoriesRequest, type index_gen$c_ListCategoriesResponse as ListCategoriesResponse, type ListImagesRequest$1 as ListImagesRequest, type ListImagesRequestOrderBy$1 as ListImagesRequestOrderBy, type ListImagesResponse$1 as ListImagesResponse, type index_gen$c_ListLocalImagesRequest as ListLocalImagesRequest, type index_gen$c_ListLocalImagesRequestOrderBy as ListLocalImagesRequestOrderBy, type index_gen$c_ListLocalImagesResponse as ListLocalImagesResponse, type index_gen$c_ListVersionsRequest as ListVersionsRequest, type index_gen$c_ListVersionsRequestOrderBy as ListVersionsRequestOrderBy, type index_gen$c_ListVersionsResponse as ListVersionsResponse, type index_gen$c_LocalImage as LocalImage, type index_gen$c_LocalImageType as LocalImageType, type index_gen$c_Version as Version };
23224
23291
  }
23225
23292
 
23226
23293
  declare namespace index$a {
23227
- export { index_gen$e as v1, index_gen$d as v2 };
23228
- }
23229
-
23230
- type ListCredentialsRequestOrderBy = 'id_asc' | 'id_desc' | 'name_asc' | 'name_desc';
23231
- type ListNamespacesRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'id_asc' | 'id_desc' | 'name_asc' | 'name_desc' | 'project_id_asc' | 'project_id_desc';
23232
- type NamespaceProtocol = 'unknown' | 'nats' | 'sqs_sns';
23233
- interface Permissions {
23234
- /**
23235
- * Defines whether the credentials bearer can publish messages to the service
23236
- * (send messages to SQS queues or publish to SNS topics).
23237
- */
23238
- canPublish?: boolean;
23239
- /**
23240
- * Defines whether the credentials bearer can receive messages from the
23241
- * service.
23242
- */
23243
- canReceive?: boolean;
23244
- /**
23245
- * Defines whether the credentials bearer can manage the associated resources
23246
- * (SQS queues or SNS topics or subscriptions).
23247
- */
23248
- canManage?: boolean;
23249
- }
23250
- interface CredentialSummarySQSSNSCreds {
23251
- /** Access key ID. */
23252
- accessKey: string;
23253
- /** Permissions associated with these credentials. */
23254
- permissions?: Permissions;
23255
- }
23256
- interface CredentialNATSCredsFile {
23257
- /** Raw content of the NATS credentials file. */
23258
- content: string;
23259
- }
23260
- interface CredentialSQSSNSCreds {
23261
- /** Access key ID. */
23262
- accessKey: string;
23263
- /** Secret key ID. */
23264
- secretKey?: string;
23265
- /** Permissions associated with these credentials. */
23266
- permissions?: Permissions;
23267
- }
23268
- interface CredentialSummary {
23269
- /** ID of the credentials. */
23270
- id: string;
23271
- /** Name of the credentials. */
23272
- name: string;
23273
- /** Namespace containing the credentials. */
23274
- namespaceId: string;
23275
- /** Protocol associated with the credentials. */
23276
- protocol: NamespaceProtocol;
23277
- /**
23278
- * Object containing the credentials and their metadata, if the credentials
23279
- * are for an SQS/SNS namespace.
23280
- *
23281
- * One-of ('credentialType'): at most one of 'sqsSnsCredentials' could be set.
23282
- */
23283
- sqsSnsCredentials?: CredentialSummarySQSSNSCreds;
23284
- }
23285
- interface Namespace$1 {
23286
- /** Namespace ID. */
23287
- id: string;
23288
- /** Namespace name. */
23289
- name: string;
23290
- /** Endpoint of the service matching the namespace's protocol. */
23291
- endpoint: string;
23292
- /** Namespace protocol. */
23293
- protocol: NamespaceProtocol;
23294
- /** Project ID of the Project containing the namespace. */
23295
- projectId: string;
23296
- /** Region where the namespace is deployed. */
23297
- region: Region;
23298
- /** Namespace creation date. */
23299
- createdAt?: Date;
23300
- /** Namespace last modification date. */
23301
- updatedAt?: Date;
23302
- }
23303
- type CreateCredentialRequest = {
23304
- /**
23305
- * Region to target. If none is passed will use default region from the
23306
- * config.
23307
- */
23308
- region?: Region;
23309
- /** Namespace containing the credentials. */
23310
- namespaceId: string;
23311
- /** Name of the credentials. */
23312
- name?: string;
23313
- /** Permissions associated with these credentials. */
23314
- permissions?: Permissions;
23315
- };
23316
- type CreateNamespaceRequest$1 = {
23317
- /**
23318
- * Region to target. If none is passed will use default region from the
23319
- * config.
23320
- */
23321
- region?: Region;
23322
- /** Namespace name. */
23323
- name?: string;
23324
- /**
23325
- * Namespace protocol. You must specify a valid protocol (and not `unknown`)
23326
- * to avoid an error.
23327
- */
23328
- protocol: NamespaceProtocol;
23329
- /** Project containing the Namespace. */
23330
- projectId?: string;
23331
- };
23332
- interface Credential {
23333
- /** ID of the credentials. */
23334
- id: string;
23335
- /** Name of the credentials. */
23336
- name: string;
23337
- /** Namespace containing the credentials. */
23338
- namespaceId: string;
23339
- /** Protocol associated with the credentials. */
23340
- protocol: NamespaceProtocol;
23341
- /**
23342
- * Object containing the credentials, if the credentials are for a NATS
23343
- * namespace.
23344
- *
23345
- * One-of ('credentialType'): at most one of 'natsCredentials',
23346
- * 'sqsSnsCredentials' could be set.
23347
- */
23348
- natsCredentials?: CredentialNATSCredsFile;
23349
- /**
23350
- * Object containing the credentials and their metadata, if the credentials
23351
- * are for an SQS/SNS namespace.
23352
- *
23353
- * One-of ('credentialType'): at most one of 'natsCredentials',
23354
- * 'sqsSnsCredentials' could be set.
23355
- */
23356
- sqsSnsCredentials?: CredentialSQSSNSCreds;
23357
- }
23358
- type DeleteCredentialRequest = {
23359
- /**
23360
- * Region to target. If none is passed will use default region from the
23361
- * config.
23362
- */
23363
- region?: Region;
23364
- /** ID of the credentials to delete. */
23365
- credentialId: string;
23366
- };
23367
- type DeleteNamespaceRequest$1 = {
23368
- /**
23369
- * Region to target. If none is passed will use default region from the
23370
- * config.
23371
- */
23372
- region?: Region;
23373
- /** ID of the namespace to delete. */
23374
- namespaceId: string;
23375
- };
23376
- type GetCredentialRequest = {
23377
- /**
23378
- * Region to target. If none is passed will use default region from the
23379
- * config.
23380
- */
23381
- region?: Region;
23382
- /** ID of the credentials to get. */
23383
- credentialId: string;
23384
- };
23385
- type GetNamespaceRequest$1 = {
23386
- /**
23387
- * Region to target. If none is passed will use default region from the
23388
- * config.
23389
- */
23390
- region?: Region;
23391
- /** ID of the Namespace to get. */
23392
- namespaceId: string;
23393
- };
23394
- type ListCredentialsRequest = {
23395
- /**
23396
- * Region to target. If none is passed will use default region from the
23397
- * config.
23398
- */
23399
- region?: Region;
23400
- /** Namespace containing the credentials. */
23401
- namespaceId?: string;
23402
- /** Page number to return. */
23403
- page?: number;
23404
- /** Maximum number of credentials to return per page. */
23405
- pageSize?: number;
23406
- /** Order in which to return results. */
23407
- orderBy?: ListCredentialsRequestOrderBy;
23408
- };
23409
- interface ListCredentialsResponse {
23410
- /** Total count of existing credentials (matching any filters specified). */
23411
- totalCount: number;
23412
- /** Credentials on this page. */
23413
- credentials: CredentialSummary[];
23414
- }
23415
- type ListNamespacesRequest$1 = {
23416
- /**
23417
- * Region to target. If none is passed will use default region from the
23418
- * config.
23419
- */
23420
- region?: Region;
23421
- /** Include only namespaces in this Organization. */
23422
- organizationId?: string;
23423
- /** Include only namespaces in this Project. */
23424
- projectId?: string;
23425
- /** Page number to return. */
23426
- page?: number;
23427
- /** Maximum number of namespaces to return per page. */
23428
- pageSize?: number;
23429
- /** Order in which to return results. */
23430
- orderBy?: ListNamespacesRequestOrderBy$1;
23431
- };
23432
- interface ListNamespacesResponse$1 {
23433
- /** Total count of existing namespaces (matching any filters specified). */
23434
- totalCount: number;
23435
- /** Namespaces on this page. */
23436
- namespaces: Namespace$1[];
23437
- }
23438
- type UpdateCredentialRequest = {
23439
- /**
23440
- * Region to target. If none is passed will use default region from the
23441
- * config.
23442
- */
23443
- region?: Region;
23444
- /** ID of the credentials to update. */
23445
- credentialId: string;
23446
- /** Name of the credentials. */
23447
- name?: string;
23448
- /** Permissions associated with these credentials. */
23449
- permissions?: Permissions;
23450
- };
23451
- type UpdateNamespaceRequest$1 = {
23452
- /**
23453
- * Region to target. If none is passed will use default region from the
23454
- * config.
23455
- */
23456
- region?: Region;
23457
- /** ID of the Namespace to update. */
23458
- namespaceId: string;
23459
- /** Namespace name. */
23460
- name?: string;
23461
- };
23462
-
23463
- /**
23464
- * Messaging and Queuing API.
23465
- *
23466
- * This API allows you to manage Scaleway Messaging and Queueing brokers.
23467
- */
23468
- declare class API$a extends API$w {
23469
- /** Lists the available regions of the API. */
23470
- static readonly LOCALITIES: Region[];
23471
- protected pageOfListNamespaces: (request?: Readonly<ListNamespacesRequest$1>) => Promise<ListNamespacesResponse$1>;
23472
- /**
23473
- * List namespaces. List all Messaging and Queuing namespaces in the specified
23474
- * region, for a Scaleway Organization or Project. By default, the namespaces
23475
- * returned in the list are ordered by creation date in ascending order,
23476
- * though this can be modified via the `order_by` field.
23477
- *
23478
- * @param request - The request {@link ListNamespacesRequest}
23479
- * @returns A Promise of ListNamespacesResponse
23480
- */
23481
- listNamespaces: (request?: Readonly<ListNamespacesRequest$1>) => Promise<ListNamespacesResponse$1> & {
23482
- all: () => Promise<Namespace$1[]>;
23483
- [Symbol.asyncIterator]: () => AsyncGenerator<Namespace$1[], void, void>;
23484
- };
23485
- /**
23486
- * Create a namespace. Create a Messaging and Queuing namespace, set to the
23487
- * desired protocol.
23488
- *
23489
- * @param request - The request {@link CreateNamespaceRequest}
23490
- * @returns A Promise of Namespace
23491
- */
23492
- createNamespace: (request: Readonly<CreateNamespaceRequest$1>) => Promise<Namespace$1>;
23493
- /**
23494
- * Update the name of a namespace. Update the name of a Messaging and Queuing
23495
- * namespace, specified by its namespace ID.
23496
- *
23497
- * @param request - The request {@link UpdateNamespaceRequest}
23498
- * @returns A Promise of Namespace
23499
- */
23500
- updateNamespace: (request: Readonly<UpdateNamespaceRequest$1>) => Promise<Namespace$1>;
23501
- /**
23502
- * Get a namespace. Retrieve information about an existing Messaging and
23503
- * Queuing namespace, identified by its namespace ID. Its full details,
23504
- * including name, endpoint and protocol, are returned in the response.
23505
- *
23506
- * @param request - The request {@link GetNamespaceRequest}
23507
- * @returns A Promise of Namespace
23508
- */
23509
- getNamespace: (request: Readonly<GetNamespaceRequest$1>) => Promise<Namespace$1>;
23510
- /**
23511
- * Delete a namespace. Delete a Messaging and Queuing namespace, specified by
23512
- * its namespace ID. Note that deleting a namespace is irreversible, and any
23513
- * URLs, credentials and queued messages belonging to this namespace will also
23514
- * be deleted.
23515
- *
23516
- * @param request - The request {@link DeleteNamespaceRequest}
23517
- */
23518
- deleteNamespace: (request: Readonly<DeleteNamespaceRequest$1>) => Promise<void>;
23519
- /**
23520
- * Create credentials. Create a set of credentials for a Messaging and Queuing
23521
- * namespace, specified by its namespace ID. If creating credentials for a
23522
- * NATS namespace, the `permissions` object must not be included in the
23523
- * request. If creating credentials for an SQS/SNS namespace, the
23524
- * `permissions` object is required, with all three of its child attributes.
23525
- *
23526
- * @param request - The request {@link CreateCredentialRequest}
23527
- * @returns A Promise of Credential
23528
- */
23529
- createCredential: (request: Readonly<CreateCredentialRequest>) => Promise<Credential>;
23530
- /**
23531
- * Delete credentials. Delete a set of credentials, specified by their
23532
- * credential ID. Deleting credentials is irreversible and cannot be undone.
23533
- * The credentials can no longer be used to access the namespace.
23534
- *
23535
- * @param request - The request {@link DeleteCredentialRequest}
23536
- */
23537
- deleteCredential: (request: Readonly<DeleteCredentialRequest>) => Promise<void>;
23538
- protected pageOfListCredentials: (request?: Readonly<ListCredentialsRequest>) => Promise<ListCredentialsResponse>;
23539
- /**
23540
- * List credentials. List existing credentials in the specified region. The
23541
- * response contains only the metadata for the credentials, not the
23542
- * credentials themselves (for this, use **Get Credentials**).
23543
- *
23544
- * @param request - The request {@link ListCredentialsRequest}
23545
- * @returns A Promise of ListCredentialsResponse
23546
- */
23547
- listCredentials: (request?: Readonly<ListCredentialsRequest>) => Promise<ListCredentialsResponse> & {
23548
- all: () => Promise<CredentialSummary[]>;
23549
- [Symbol.asyncIterator]: () => AsyncGenerator<CredentialSummary[], void, void>;
23550
- };
23551
- /**
23552
- * Update credentials. Update a set of credentials. You can update the
23553
- * credentials' name, or (in the case of SQS/SNS credentials only) their
23554
- * permissions. To update the name of NATS credentials, do not include the
23555
- * `permissions` object in your request.
23556
- *
23557
- * @param request - The request {@link UpdateCredentialRequest}
23558
- * @returns A Promise of Credential
23559
- */
23560
- updateCredential: (request: Readonly<UpdateCredentialRequest>) => Promise<Credential>;
23561
- /**
23562
- * Get credentials. Retrieve an existing set of credentials, identified by the
23563
- * `credential_id`. The credentials themselves, as well as their metadata
23564
- * (protocol, namespace ID etc), are returned in the response.
23565
- *
23566
- * @param request - The request {@link GetCredentialRequest}
23567
- * @returns A Promise of Credential
23568
- */
23569
- getCredential: (request: Readonly<GetCredentialRequest>) => Promise<Credential>;
23570
- }
23571
-
23572
- type index_gen$c_CreateCredentialRequest = CreateCredentialRequest;
23573
- type index_gen$c_Credential = Credential;
23574
- type index_gen$c_CredentialNATSCredsFile = CredentialNATSCredsFile;
23575
- type index_gen$c_CredentialSQSSNSCreds = CredentialSQSSNSCreds;
23576
- type index_gen$c_CredentialSummary = CredentialSummary;
23577
- type index_gen$c_CredentialSummarySQSSNSCreds = CredentialSummarySQSSNSCreds;
23578
- type index_gen$c_DeleteCredentialRequest = DeleteCredentialRequest;
23579
- type index_gen$c_GetCredentialRequest = GetCredentialRequest;
23580
- type index_gen$c_ListCredentialsRequest = ListCredentialsRequest;
23581
- type index_gen$c_ListCredentialsRequestOrderBy = ListCredentialsRequestOrderBy;
23582
- type index_gen$c_ListCredentialsResponse = ListCredentialsResponse;
23583
- type index_gen$c_NamespaceProtocol = NamespaceProtocol;
23584
- type index_gen$c_Permissions = Permissions;
23585
- type index_gen$c_UpdateCredentialRequest = UpdateCredentialRequest;
23586
- declare namespace index_gen$c {
23587
- export { API$a as API, type index_gen$c_CreateCredentialRequest as CreateCredentialRequest, type CreateNamespaceRequest$1 as CreateNamespaceRequest, type index_gen$c_Credential as Credential, type index_gen$c_CredentialNATSCredsFile as CredentialNATSCredsFile, type index_gen$c_CredentialSQSSNSCreds as CredentialSQSSNSCreds, type index_gen$c_CredentialSummary as CredentialSummary, type index_gen$c_CredentialSummarySQSSNSCreds as CredentialSummarySQSSNSCreds, type index_gen$c_DeleteCredentialRequest as DeleteCredentialRequest, type DeleteNamespaceRequest$1 as DeleteNamespaceRequest, type index_gen$c_GetCredentialRequest as GetCredentialRequest, type GetNamespaceRequest$1 as GetNamespaceRequest, type index_gen$c_ListCredentialsRequest as ListCredentialsRequest, type index_gen$c_ListCredentialsRequestOrderBy as ListCredentialsRequestOrderBy, type index_gen$c_ListCredentialsResponse as ListCredentialsResponse, type ListNamespacesRequest$1 as ListNamespacesRequest, type ListNamespacesRequestOrderBy$1 as ListNamespacesRequestOrderBy, type ListNamespacesResponse$1 as ListNamespacesResponse, type Namespace$1 as Namespace, type index_gen$c_NamespaceProtocol as NamespaceProtocol, type index_gen$c_Permissions as Permissions, type index_gen$c_UpdateCredentialRequest as UpdateCredentialRequest, type UpdateNamespaceRequest$1 as UpdateNamespaceRequest };
23294
+ export { index_gen$d as v1, index_gen$c as v2 };
23588
23295
  }
23589
23296
 
23590
23297
  type ListNatsAccountsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc';
@@ -24041,7 +23748,7 @@ interface SqsInfo {
24041
23748
  *
24042
23749
  * This API allows you to manage Scaleway Messaging and Queueing NATS accounts.
24043
23750
  */
24044
- declare class NatsAPI extends API$w {
23751
+ declare class NatsAPI extends API$v {
24045
23752
  /** Lists the available regions of the API. */
24046
23753
  static readonly LOCALITIES: Region[];
24047
23754
  /**
@@ -24138,7 +23845,7 @@ declare class NatsAPI extends API$w {
24138
23845
  *
24139
23846
  * This API allows you to manage Scaleway Messaging and Queueing SNS brokers.
24140
23847
  */
24141
- declare class SnsAPI extends API$w {
23848
+ declare class SnsAPI extends API$v {
24142
23849
  /** Lists the available regions of the API. */
24143
23850
  static readonly LOCALITIES: Region[];
24144
23851
  /**
@@ -24220,7 +23927,7 @@ declare class SnsAPI extends API$w {
24220
23927
  *
24221
23928
  * This API allows you to manage Scaleway Messaging and Queueing SQS brokers.
24222
23929
  */
24223
- declare class SqsAPI extends API$w {
23930
+ declare class SqsAPI extends API$v {
24224
23931
  /** Lists the available regions of the API. */
24225
23932
  static readonly LOCALITIES: Region[];
24226
23933
  /**
@@ -24431,7 +24138,7 @@ declare namespace index_gen$b {
24431
24138
  }
24432
24139
 
24433
24140
  declare namespace index$9 {
24434
- export { index_gen$c as v1alpha1, index_gen$b as v1beta1 };
24141
+ export { index_gen$b as v1beta1 };
24435
24142
  }
24436
24143
 
24437
24144
  type ACLRuleAction = 'allow' | 'deny';
@@ -25817,7 +25524,7 @@ type UpgradeInstanceRequest = {
25817
25524
  };
25818
25525
 
25819
25526
  /** Managed Database for PostgreSQL and MySQL API. */
25820
- declare class API$9 extends API$w {
25527
+ declare class API$9 extends API$v {
25821
25528
  /** Lists the available regions of the API. */
25822
25529
  static readonly LOCALITIES: Region[];
25823
25530
  protected pageOfListDatabaseEngines: (request?: Readonly<ListDatabaseEnginesRequest>) => Promise<ListDatabaseEnginesResponse>;
@@ -27065,7 +26772,7 @@ type UpdateEndpointRequest = {
27065
26772
  };
27066
26773
 
27067
26774
  /** Managed Database for Redis™ API. */
27068
- declare class API$8 extends API$w {
26775
+ declare class API$8 extends API$v {
27069
26776
  /** Lists the available zones of the API. */
27070
26777
  static readonly LOCALITIES: Zone[];
27071
26778
  /**
@@ -27674,7 +27381,7 @@ type UpdateNamespaceRequest = {
27674
27381
  };
27675
27382
 
27676
27383
  /** Container Registry API. */
27677
- declare class API$7 extends API$w {
27384
+ declare class API$7 extends API$v {
27678
27385
  /** Lists the available regions of the API. */
27679
27386
  static readonly LOCALITIES: Region[];
27680
27387
  protected pageOfListNamespaces: (request?: Readonly<ListNamespacesRequest>) => Promise<ListNamespacesResponse>;
@@ -28453,7 +28160,7 @@ type UpdateSecretVersionRequest = {
28453
28160
  * Secret Manager API. This API allows you to conveniently store, access and
28454
28161
  * share sensitive data.
28455
28162
  */
28456
- declare class API$6 extends API$w {
28163
+ declare class API$6 extends API$v {
28457
28164
  /** Lists the available regions of the API. */
28458
28165
  static readonly LOCALITIES: Region[];
28459
28166
  /**
@@ -28857,7 +28564,7 @@ type UpdateHumanRequest = {
28857
28564
  *
28858
28565
  * No Auth Service for end-to-end testing.
28859
28566
  */
28860
- declare class API$5 extends API$w {
28567
+ declare class API$5 extends API$v {
28861
28568
  /**
28862
28569
  * Register a user. Register a human and return a access-key and a secret-key
28863
28570
  * that must be used in all other commands.
@@ -29328,7 +29035,7 @@ interface Statistics {
29328
29035
  }
29329
29036
 
29330
29037
  /** Transactional Email API. */
29331
- declare class API$4 extends API$w {
29038
+ declare class API$4 extends API$v {
29332
29039
  /** Lists the available regions of the API. */
29333
29040
  static readonly LOCALITIES: Region[];
29334
29041
  /**
@@ -29602,7 +29309,7 @@ type UpdatePrivateNetworkRequest$1 = {
29602
29309
  };
29603
29310
 
29604
29311
  /** VPC API. */
29605
- declare class API$3 extends API$w {
29312
+ declare class API$3 extends API$v {
29606
29313
  /** Lists the available zones of the API. */
29607
29314
  static readonly LOCALITIES: Zone[];
29608
29315
  protected pageOfListPrivateNetworks: (request?: Readonly<ListPrivateNetworksRequest$1>) => Promise<ListPrivateNetworksResponse$1>;
@@ -29979,7 +29686,7 @@ type UpdateVPCRequest = {
29979
29686
  };
29980
29687
 
29981
29688
  /** VPC API. */
29982
- declare class API$2 extends API$w {
29689
+ declare class API$2 extends API$v {
29983
29690
  /** Lists the available regions of the API. */
29984
29691
  static readonly LOCALITIES: Region[];
29985
29692
  protected pageOfListVPCs: (request?: Readonly<ListVPCsRequest>) => Promise<ListVPCsResponse>;
@@ -31036,7 +30743,7 @@ type UpgradeGatewayRequest = {
31036
30743
  };
31037
30744
 
31038
30745
  /** Public Gateways API. */
31039
- declare class API$1 extends API$w {
30746
+ declare class API$1 extends API$v {
31040
30747
  /** Lists the available zones of the API. */
31041
30748
  static readonly LOCALITIES: Zone[];
31042
30749
  protected pageOfListGateways: (request?: Readonly<ListGatewaysRequest>) => Promise<ListGatewaysResponse>;
@@ -31818,7 +31525,7 @@ type UpdateHostingRequest = {
31818
31525
  };
31819
31526
 
31820
31527
  /** Web Hosting API. */
31821
- declare class API extends API$w {
31528
+ declare class API extends API$v {
31822
31529
  /** Lists the available regions of the API. */
31823
31530
  static readonly LOCALITIES: Region[];
31824
31531
  /**
@@ -31986,4 +31693,4 @@ declare namespace index {
31986
31693
  export { index_gen as v1alpha1 };
31987
31694
  }
31988
31695
 
31989
- export { API$w as API, index$x as Account, index$w as AppleSilicon, index$u as BareMetal, index$t as Billing, index$s as Block, type Client, type ClientConfig, index$r as Cockpit, index$q as Container, type DefaultValues, index$p as DocumentDB, index$o as Domain, index$y as Errors, index$n as FlexibleIP, index$m as Function, index$l as IAM, index$i as IOT, index$h as IPAM, index$g as IPFS, index$j as Instance, index$f as Jobs, index$d as K8S, index$b as LB, type Logger, index$9 as MNQ, index$a as Marketplace, type Money, type NetworkInterceptors, type Profile, index$8 as RDB, index$7 as Redis, type Region, index$6 as Registry, type RequestInterceptor, type ResponseErrorInterceptor, type ResponseInterceptor, type ScwFile, index$5 as Secret, type ServiceInfo, type Settings, index_gen$6 as Std, index$4 as Test, type TimeSeries, index$3 as TransactionalEmail, index$2 as VPC, index$1 as VPCGW, type WaitForOptions, type WaitForStopCondition, index as Webhosting, type Zone, addAsyncHeaderInterceptor, authenticateWithSessionToken, createAdvancedClient, createClient, enableConsoleLogger, enrichForPagination, isJSONObject, marshalMoney, marshalScwFile, marshalTimeSeries, resolveOneOf, setLogger, unmarshalArrayOfObject, unmarshalDate, unmarshalMapOfObject, unmarshalMoney, unmarshalScwFile, unmarshalServiceInfo, unmarshalTimeSeries, unmarshalTimeSeriesPoint, urlParams, validatePathParam, waitForResource, withAdditionalInterceptors, withDefaultPageSize, withHTTPClient, withProfile, withUserAgent, withUserAgentSuffix };
31696
+ export { API$v as API, index$x as Account, index$w as AppleSilicon, index$u as BareMetal, index$t as Billing, index$s as Block, type Client, type ClientConfig, index$r as Cockpit, index$q as Container, type DefaultValues, index$p as DocumentDB, index$o as Domain, index$y as Errors, index$n as FlexibleIP, index$m as Function, index$l as IAM, index$i as IOT, index$h as IPAM, index$g as IPFS, index$j as Instance, index$f as Jobs, index$d as K8S, index$b as LB, type Logger, index$9 as MNQ, index$a as Marketplace, type Money, type NetworkInterceptors, type Profile, index$8 as RDB, index$7 as Redis, type Region, index$6 as Registry, type RequestInterceptor, type ResponseErrorInterceptor, type ResponseInterceptor, type ScwFile, index$5 as Secret, type ServiceInfo, type Settings, index_gen$6 as Std, index$4 as Test, type TimeSeries, index$3 as TransactionalEmail, index$2 as VPC, index$1 as VPCGW, type WaitForOptions, type WaitForStopCondition, index as Webhosting, type Zone, addAsyncHeaderInterceptor, authenticateWithSessionToken, createAdvancedClient, createClient, createExponentialBackoffStrategy, enableConsoleLogger, enrichForPagination, isJSONObject, marshalMoney, marshalScwFile, marshalTimeSeries, resolveOneOf, setLogger, tryAtIntervals, unmarshalArrayOfObject, unmarshalDate, unmarshalMapOfObject, unmarshalMoney, unmarshalScwFile, unmarshalServiceInfo, unmarshalTimeSeries, unmarshalTimeSeriesPoint, urlParams, validatePathParam, waitForResource, withAdditionalInterceptors, withDefaultPageSize, withHTTPClient, withProfile, withUserAgent, withUserAgentSuffix };