@scaleway/sdk 2.0.0-alpha.14 → 2.0.0-alpha.16
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/api/billing/v2alpha1/api.gen.js +32 -1
- package/dist/api/billing/v2alpha1/marshalling.gen.js +46 -1
- package/dist/api/cockpit/v1beta1/marshalling.gen.js +3 -1
- package/dist/api/container/v1beta1/marshalling.gen.js +3 -3
- package/dist/api/function/v1beta1/api.gen.js +36 -0
- package/dist/api/function/v1beta1/marshalling.gen.js +3 -3
- package/dist/api/iam/v1alpha1/api.gen.js +28 -2
- package/dist/api/iam/v1alpha1/marshalling.gen.js +26 -1
- package/dist/api/iam/v1alpha1/validation-rules.gen.js +10 -1
- package/dist/api/instance/v1/content.gen.js +4 -1
- package/dist/api/instance/v1/index.js +1 -1
- package/dist/api/instance/v1/marshalling.gen.js +2 -0
- package/dist/api/ipam/v1/marshalling.gen.js +1 -1
- package/dist/api/ipfs/v1alpha1/marshalling.gen.js +0 -7
- package/dist/api/rdb/v1/marshalling.gen.js +7 -0
- package/dist/api/secret/v1alpha1/api.gen.js +2 -2
- package/dist/api/secret/v1alpha1/marshalling.gen.js +4 -0
- package/dist/api/std/index.gen.js +1 -0
- package/dist/api/tem/v1alpha1/api.gen.js +8 -2
- package/dist/api/tem/v1alpha1/marshalling.gen.js +13 -0
- package/dist/api/vpcgw/v1/marshalling.gen.js +9 -3
- package/dist/index.cjs +261 -78
- package/dist/index.d.ts +1375 -988
- package/dist/index.js +2 -0
- package/dist/node_modules/@scaleway/random-name/dist/index.js +13 -0
- package/dist/scw/constants.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1162,13 +1162,13 @@ declare class API$u extends API$v {
|
|
|
1162
1162
|
updateProject: (request?: Readonly<UpdateProjectRequest>) => Promise<Project$1>;
|
|
1163
1163
|
}
|
|
1164
1164
|
|
|
1165
|
-
type index_gen$
|
|
1166
|
-
type index_gen$
|
|
1167
|
-
type index_gen$
|
|
1168
|
-
type index_gen$
|
|
1169
|
-
type index_gen$
|
|
1170
|
-
declare namespace index_gen$
|
|
1171
|
-
export { API$u as API, type index_gen$
|
|
1165
|
+
type index_gen$t_CreateProjectRequest = CreateProjectRequest;
|
|
1166
|
+
type index_gen$t_DeleteProjectRequest = DeleteProjectRequest;
|
|
1167
|
+
type index_gen$t_GetProjectRequest = GetProjectRequest;
|
|
1168
|
+
type index_gen$t_ListProjectsRequest = ListProjectsRequest;
|
|
1169
|
+
type index_gen$t_UpdateProjectRequest = UpdateProjectRequest;
|
|
1170
|
+
declare namespace index_gen$t {
|
|
1171
|
+
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
1172
|
}
|
|
1173
1173
|
|
|
1174
1174
|
type ListProjectsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
@@ -1332,19 +1332,19 @@ declare namespace validationRules_gen$c {
|
|
|
1332
1332
|
export { validationRules_gen$c_ProjectApiCreateProjectRequest as ProjectApiCreateProjectRequest, validationRules_gen$c_ProjectApiListProjectsRequest as ProjectApiListProjectsRequest, validationRules_gen$c_ProjectApiUpdateProjectRequest as ProjectApiUpdateProjectRequest };
|
|
1333
1333
|
}
|
|
1334
1334
|
|
|
1335
|
-
type index_gen$
|
|
1336
|
-
type index_gen$
|
|
1337
|
-
type index_gen$
|
|
1338
|
-
type index_gen$
|
|
1339
|
-
declare const index_gen$
|
|
1340
|
-
type index_gen$
|
|
1341
|
-
type index_gen$
|
|
1342
|
-
declare namespace index_gen$
|
|
1343
|
-
export { type index_gen$
|
|
1335
|
+
type index_gen$s_ListProjectsRequestOrderBy = ListProjectsRequestOrderBy;
|
|
1336
|
+
type index_gen$s_ListProjectsResponse = ListProjectsResponse;
|
|
1337
|
+
type index_gen$s_Project = Project;
|
|
1338
|
+
type index_gen$s_ProjectAPI = ProjectAPI;
|
|
1339
|
+
declare const index_gen$s_ProjectAPI: typeof ProjectAPI;
|
|
1340
|
+
type index_gen$s_ProjectApiDeleteProjectRequest = ProjectApiDeleteProjectRequest;
|
|
1341
|
+
type index_gen$s_ProjectApiGetProjectRequest = ProjectApiGetProjectRequest;
|
|
1342
|
+
declare namespace index_gen$s {
|
|
1343
|
+
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$c as ValidationRules };
|
|
1344
1344
|
}
|
|
1345
1345
|
|
|
1346
1346
|
declare namespace index$w {
|
|
1347
|
-
export { index_gen$
|
|
1347
|
+
export { index_gen$t as v2, index_gen$s as v3 };
|
|
1348
1348
|
}
|
|
1349
1349
|
|
|
1350
1350
|
type ListServersRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
|
|
@@ -1644,20 +1644,20 @@ declare class API$t extends API$v {
|
|
|
1644
1644
|
/** Lists transient statutes of the enum {@link ServerStatus}. */
|
|
1645
1645
|
declare const SERVER_TRANSIENT_STATUSES$2: ServerStatus$1[];
|
|
1646
1646
|
|
|
1647
|
-
type index_gen$
|
|
1648
|
-
type index_gen$
|
|
1649
|
-
type index_gen$
|
|
1650
|
-
type index_gen$
|
|
1651
|
-
type index_gen$
|
|
1652
|
-
type index_gen$
|
|
1653
|
-
type index_gen$
|
|
1654
|
-
type index_gen$
|
|
1655
|
-
declare namespace index_gen$
|
|
1656
|
-
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$
|
|
1647
|
+
type index_gen$r_GetServerTypeRequest = GetServerTypeRequest;
|
|
1648
|
+
type index_gen$r_ListServerTypesRequest = ListServerTypesRequest;
|
|
1649
|
+
type index_gen$r_ListServerTypesResponse = ListServerTypesResponse;
|
|
1650
|
+
type index_gen$r_ReinstallServerRequest = ReinstallServerRequest;
|
|
1651
|
+
type index_gen$r_ServerTypeCPU = ServerTypeCPU;
|
|
1652
|
+
type index_gen$r_ServerTypeDisk = ServerTypeDisk;
|
|
1653
|
+
type index_gen$r_ServerTypeMemory = ServerTypeMemory;
|
|
1654
|
+
type index_gen$r_ServerTypeStock = ServerTypeStock;
|
|
1655
|
+
declare namespace index_gen$r {
|
|
1656
|
+
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
1657
|
}
|
|
1658
1658
|
|
|
1659
1659
|
declare namespace index$v {
|
|
1660
|
-
export { index_gen$
|
|
1660
|
+
export { index_gen$r as v1alpha1 };
|
|
1661
1661
|
}
|
|
1662
1662
|
|
|
1663
1663
|
type IPReverseStatus = 'unknown' | 'pending' | 'active' | 'error';
|
|
@@ -2827,9 +2827,22 @@ declare namespace index$t {
|
|
|
2827
2827
|
export { index$u as v1 };
|
|
2828
2828
|
}
|
|
2829
2829
|
|
|
2830
|
+
type DiscountDiscountMode = 'unknown_discount_mode' | 'discount_mode_rate' | 'discount_mode_value' | 'discount_mode_splittable';
|
|
2831
|
+
type DiscountFilterType = 'unknown_type' | 'product_category' | 'product' | 'product_offer' | 'product_reference' | 'region' | 'zone';
|
|
2830
2832
|
type DownloadInvoiceRequestFileType = 'pdf';
|
|
2831
2833
|
type InvoiceType = 'unknown_type' | 'periodic' | 'purchase';
|
|
2834
|
+
type ListDiscountsRequestOrderBy = 'creation_date_desc' | 'creation_date_asc';
|
|
2832
2835
|
type ListInvoicesRequestOrderBy = 'invoice_number_desc' | 'invoice_number_asc' | 'start_date_desc' | 'start_date_asc' | 'issued_date_desc' | 'issued_date_asc' | 'due_date_desc' | 'due_date_asc' | 'total_untaxed_desc' | 'total_untaxed_asc' | 'total_taxed_desc' | 'total_taxed_asc' | 'invoice_type_desc' | 'invoice_type_asc';
|
|
2836
|
+
interface DiscountCoupon {
|
|
2837
|
+
/** The description of the coupon. */
|
|
2838
|
+
description?: string;
|
|
2839
|
+
}
|
|
2840
|
+
interface DiscountFilter {
|
|
2841
|
+
/** Type of the filter. */
|
|
2842
|
+
type: DiscountFilterType;
|
|
2843
|
+
/** Value of filter, it can be a product/range/region/zone value. */
|
|
2844
|
+
value: string;
|
|
2845
|
+
}
|
|
2833
2846
|
interface GetConsumptionResponseConsumption {
|
|
2834
2847
|
/** Monetary value of the consumption. */
|
|
2835
2848
|
value?: Money;
|
|
@@ -2842,6 +2855,32 @@ interface GetConsumptionResponseConsumption {
|
|
|
2842
2855
|
/** Unique identifier of the product. */
|
|
2843
2856
|
operationPath: string;
|
|
2844
2857
|
}
|
|
2858
|
+
interface Discount {
|
|
2859
|
+
/** The ID of the discount. */
|
|
2860
|
+
id: string;
|
|
2861
|
+
/** The creation date of the discount. */
|
|
2862
|
+
creationDate?: Date;
|
|
2863
|
+
/** The organization ID of the discount. */
|
|
2864
|
+
organizationId: string;
|
|
2865
|
+
/** The description of the discount. */
|
|
2866
|
+
description: string;
|
|
2867
|
+
/** The initial value of the discount. */
|
|
2868
|
+
value: number;
|
|
2869
|
+
/** The value indicating how much of the discount has been used. */
|
|
2870
|
+
valueUsed: number;
|
|
2871
|
+
/** The remaining value of the discount. */
|
|
2872
|
+
valueRemaining: number;
|
|
2873
|
+
/** The mode of the discount. */
|
|
2874
|
+
mode: DiscountDiscountMode;
|
|
2875
|
+
/** The start date of the discount. */
|
|
2876
|
+
startDate?: Date;
|
|
2877
|
+
/** The stop date of the discount. */
|
|
2878
|
+
stopDate?: Date;
|
|
2879
|
+
/** The description of the coupon. */
|
|
2880
|
+
coupon?: DiscountCoupon;
|
|
2881
|
+
/** List of products/ranges/regions/zones to limit the usability of discounts. */
|
|
2882
|
+
filters: DiscountFilter[];
|
|
2883
|
+
}
|
|
2845
2884
|
interface Invoice {
|
|
2846
2885
|
/** Invoice ID. */
|
|
2847
2886
|
id: string;
|
|
@@ -2876,6 +2915,25 @@ interface GetConsumptionResponse {
|
|
|
2876
2915
|
/** Last consumption update date. */
|
|
2877
2916
|
updatedAt?: Date;
|
|
2878
2917
|
}
|
|
2918
|
+
type ListDiscountsRequest = {
|
|
2919
|
+
/** Order discounts in the response by their description. */
|
|
2920
|
+
orderBy?: ListDiscountsRequestOrderBy;
|
|
2921
|
+
/** Positive integer to choose the page to return. */
|
|
2922
|
+
page?: number;
|
|
2923
|
+
/**
|
|
2924
|
+
* Positive integer lower or equal to 100 to select the number of items to
|
|
2925
|
+
* return.
|
|
2926
|
+
*/
|
|
2927
|
+
pageSize?: number;
|
|
2928
|
+
/** ID of the organization. */
|
|
2929
|
+
organizationId?: string;
|
|
2930
|
+
};
|
|
2931
|
+
interface ListDiscountsResponse {
|
|
2932
|
+
/** Total number of discounts. */
|
|
2933
|
+
totalCount: number;
|
|
2934
|
+
/** Paginated returned discounts. */
|
|
2935
|
+
discounts: Discount[];
|
|
2936
|
+
}
|
|
2879
2937
|
type ListInvoicesRequest = {
|
|
2880
2938
|
/**
|
|
2881
2939
|
* Organization ID to filter for, only invoices from this Organization will be
|
|
@@ -2939,24 +2997,45 @@ declare class API$r extends API$v {
|
|
|
2939
2997
|
* @returns A Promise of Blob
|
|
2940
2998
|
*/
|
|
2941
2999
|
downloadInvoice: (request: Readonly<DownloadInvoiceRequest>) => Promise<Blob>;
|
|
3000
|
+
protected pageOfListDiscounts: (request?: Readonly<ListDiscountsRequest>) => Promise<ListDiscountsResponse>;
|
|
3001
|
+
/**
|
|
3002
|
+
* List all user's discounts. List all discounts for an organization and
|
|
3003
|
+
* usable categories/products/offers/references/regions/zones where the
|
|
3004
|
+
* discount can be applied.
|
|
3005
|
+
*
|
|
3006
|
+
* @param request - The request {@link ListDiscountsRequest}
|
|
3007
|
+
* @returns A Promise of ListDiscountsResponse
|
|
3008
|
+
*/
|
|
3009
|
+
listDiscounts: (request?: Readonly<ListDiscountsRequest>) => Promise<ListDiscountsResponse> & {
|
|
3010
|
+
all: () => Promise<Discount[]>;
|
|
3011
|
+
[Symbol.asyncIterator]: () => AsyncGenerator<Discount[], void, void>;
|
|
3012
|
+
};
|
|
2942
3013
|
}
|
|
2943
3014
|
|
|
2944
|
-
type index_gen$
|
|
2945
|
-
type index_gen$
|
|
2946
|
-
type index_gen$
|
|
2947
|
-
type index_gen$
|
|
2948
|
-
type index_gen$
|
|
2949
|
-
type index_gen$
|
|
2950
|
-
type index_gen$
|
|
2951
|
-
type index_gen$
|
|
2952
|
-
type index_gen$
|
|
2953
|
-
type index_gen$
|
|
2954
|
-
|
|
2955
|
-
|
|
3015
|
+
type index_gen$q_Discount = Discount;
|
|
3016
|
+
type index_gen$q_DiscountCoupon = DiscountCoupon;
|
|
3017
|
+
type index_gen$q_DiscountDiscountMode = DiscountDiscountMode;
|
|
3018
|
+
type index_gen$q_DiscountFilter = DiscountFilter;
|
|
3019
|
+
type index_gen$q_DiscountFilterType = DiscountFilterType;
|
|
3020
|
+
type index_gen$q_DownloadInvoiceRequest = DownloadInvoiceRequest;
|
|
3021
|
+
type index_gen$q_DownloadInvoiceRequestFileType = DownloadInvoiceRequestFileType;
|
|
3022
|
+
type index_gen$q_GetConsumptionRequest = GetConsumptionRequest;
|
|
3023
|
+
type index_gen$q_GetConsumptionResponse = GetConsumptionResponse;
|
|
3024
|
+
type index_gen$q_GetConsumptionResponseConsumption = GetConsumptionResponseConsumption;
|
|
3025
|
+
type index_gen$q_Invoice = Invoice;
|
|
3026
|
+
type index_gen$q_InvoiceType = InvoiceType;
|
|
3027
|
+
type index_gen$q_ListDiscountsRequest = ListDiscountsRequest;
|
|
3028
|
+
type index_gen$q_ListDiscountsRequestOrderBy = ListDiscountsRequestOrderBy;
|
|
3029
|
+
type index_gen$q_ListDiscountsResponse = ListDiscountsResponse;
|
|
3030
|
+
type index_gen$q_ListInvoicesRequest = ListInvoicesRequest;
|
|
3031
|
+
type index_gen$q_ListInvoicesRequestOrderBy = ListInvoicesRequestOrderBy;
|
|
3032
|
+
type index_gen$q_ListInvoicesResponse = ListInvoicesResponse;
|
|
3033
|
+
declare namespace index_gen$q {
|
|
3034
|
+
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 };
|
|
2956
3035
|
}
|
|
2957
3036
|
|
|
2958
3037
|
declare namespace index$s {
|
|
2959
|
-
export { index_gen$
|
|
3038
|
+
export { index_gen$q as v2alpha1 };
|
|
2960
3039
|
}
|
|
2961
3040
|
|
|
2962
3041
|
type ListSnapshotsRequestOrderBy$2 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
@@ -3478,22 +3557,22 @@ declare namespace validationRules_gen$a {
|
|
|
3478
3557
|
export { CreateSnapshotRequest$3 as CreateSnapshotRequest, CreateVolumeRequest$2 as CreateVolumeRequest, validationRules_gen$a_ImportSnapshotFromS3Request as ImportSnapshotFromS3Request, ListSnapshotsRequest$3 as ListSnapshotsRequest, validationRules_gen$a_ListVolumeTypesRequest as ListVolumeTypesRequest, ListVolumesRequest$2 as ListVolumesRequest, validationRules_gen$a_Reference as Reference };
|
|
3479
3558
|
}
|
|
3480
3559
|
|
|
3481
|
-
type index_gen$
|
|
3482
|
-
type index_gen$
|
|
3483
|
-
type index_gen$
|
|
3484
|
-
declare const index_gen$
|
|
3485
|
-
type index_gen$
|
|
3486
|
-
type index_gen$
|
|
3487
|
-
type index_gen$
|
|
3488
|
-
type index_gen$
|
|
3489
|
-
type index_gen$
|
|
3490
|
-
type index_gen$
|
|
3491
|
-
declare namespace index_gen$
|
|
3492
|
-
export { API$q as API, type CreateSnapshotRequest$4 as CreateSnapshotRequest, type CreateVolumeRequest$3 as CreateVolumeRequest, type index_gen$
|
|
3560
|
+
type index_gen$p_CreateVolumeRequestFromEmpty = CreateVolumeRequestFromEmpty;
|
|
3561
|
+
type index_gen$p_CreateVolumeRequestFromSnapshot = CreateVolumeRequestFromSnapshot;
|
|
3562
|
+
type index_gen$p_ListVolumeTypesResponse = ListVolumeTypesResponse;
|
|
3563
|
+
declare const index_gen$p_REFERENCE_TRANSIENT_STATUSES: typeof REFERENCE_TRANSIENT_STATUSES;
|
|
3564
|
+
type index_gen$p_ReferenceStatus = ReferenceStatus;
|
|
3565
|
+
type index_gen$p_ReferenceType = ReferenceType;
|
|
3566
|
+
type index_gen$p_SnapshotParentVolume = SnapshotParentVolume;
|
|
3567
|
+
type index_gen$p_SnapshotSummary = SnapshotSummary;
|
|
3568
|
+
type index_gen$p_VolumeSpecifications = VolumeSpecifications;
|
|
3569
|
+
type index_gen$p_VolumeStatus = VolumeStatus;
|
|
3570
|
+
declare namespace index_gen$p {
|
|
3571
|
+
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$a 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 };
|
|
3493
3572
|
}
|
|
3494
3573
|
|
|
3495
3574
|
declare namespace index$r {
|
|
3496
|
-
export { index_gen$
|
|
3575
|
+
export { index_gen$p as v1alpha1 };
|
|
3497
3576
|
}
|
|
3498
3577
|
|
|
3499
3578
|
type CockpitStatus = 'unknown_status' | 'creating' | 'ready' | 'deleting' | 'updating' | 'error';
|
|
@@ -3545,14 +3624,18 @@ interface Plan {
|
|
|
3545
3624
|
id: string;
|
|
3546
3625
|
/** Name of a given pricing plan. */
|
|
3547
3626
|
name: PlanName;
|
|
3548
|
-
/**
|
|
3627
|
+
/** Interval of time during which Scaleway's Cockpit keeps your metrics. */
|
|
3549
3628
|
retentionMetricsInterval?: string;
|
|
3550
|
-
/**
|
|
3629
|
+
/** Interval of time during which Scaleway's Cockpit keeps your logs. */
|
|
3551
3630
|
retentionLogsInterval?: string;
|
|
3552
|
-
/**
|
|
3631
|
+
/** Interval of time during which Scaleway's Cockpit keeps your traces. */
|
|
3632
|
+
retentionTracesInterval?: string;
|
|
3633
|
+
/** Ingestion price in cents for 1 million samples. */
|
|
3553
3634
|
sampleIngestionPrice: number;
|
|
3554
|
-
/** Ingestion price for 1 GB of logs
|
|
3635
|
+
/** Ingestion price in cents for 1 GB of logs. */
|
|
3555
3636
|
logsIngestionPrice: number;
|
|
3637
|
+
/** Ingestion price in cents for 1 GB of traces. */
|
|
3638
|
+
tracesIngestionPrice: number;
|
|
3556
3639
|
/** Retention price in euros per month. */
|
|
3557
3640
|
retentionPrice: number;
|
|
3558
3641
|
}
|
|
@@ -4088,57 +4171,57 @@ declare class API$p extends API$v {
|
|
|
4088
4171
|
/** Lists transient statutes of the enum {@link CockpitStatus}. */
|
|
4089
4172
|
declare const COCKPIT_TRANSIENT_STATUSES: CockpitStatus[];
|
|
4090
4173
|
|
|
4091
|
-
type index_gen$
|
|
4092
|
-
declare const index_gen$
|
|
4093
|
-
type index_gen$
|
|
4094
|
-
type index_gen$
|
|
4095
|
-
type index_gen$
|
|
4096
|
-
type index_gen$
|
|
4097
|
-
type index_gen$
|
|
4098
|
-
type index_gen$
|
|
4099
|
-
type index_gen$
|
|
4100
|
-
type index_gen$
|
|
4101
|
-
type index_gen$
|
|
4102
|
-
type index_gen$
|
|
4103
|
-
type index_gen$
|
|
4104
|
-
type index_gen$
|
|
4105
|
-
type index_gen$
|
|
4106
|
-
type index_gen$
|
|
4107
|
-
type index_gen$
|
|
4108
|
-
type index_gen$
|
|
4109
|
-
type index_gen$
|
|
4110
|
-
type index_gen$
|
|
4111
|
-
type index_gen$
|
|
4112
|
-
type index_gen$
|
|
4113
|
-
type index_gen$
|
|
4114
|
-
type index_gen$
|
|
4115
|
-
type index_gen$
|
|
4116
|
-
type index_gen$
|
|
4117
|
-
type index_gen$
|
|
4118
|
-
type index_gen$
|
|
4119
|
-
type index_gen$
|
|
4120
|
-
type index_gen$
|
|
4121
|
-
type index_gen$
|
|
4122
|
-
type index_gen$
|
|
4123
|
-
type index_gen$
|
|
4124
|
-
type index_gen$
|
|
4125
|
-
type index_gen$
|
|
4126
|
-
type index_gen$
|
|
4127
|
-
type index_gen$
|
|
4128
|
-
type index_gen$
|
|
4129
|
-
type index_gen$
|
|
4130
|
-
type index_gen$
|
|
4131
|
-
type index_gen$
|
|
4132
|
-
type index_gen$
|
|
4133
|
-
type index_gen$
|
|
4134
|
-
type index_gen$
|
|
4135
|
-
type index_gen$
|
|
4136
|
-
declare namespace index_gen$
|
|
4137
|
-
export { API$p as API, type index_gen$
|
|
4174
|
+
type index_gen$o_ActivateCockpitRequest = ActivateCockpitRequest;
|
|
4175
|
+
declare const index_gen$o_COCKPIT_TRANSIENT_STATUSES: typeof COCKPIT_TRANSIENT_STATUSES;
|
|
4176
|
+
type index_gen$o_Cockpit = Cockpit;
|
|
4177
|
+
type index_gen$o_CockpitEndpoints = CockpitEndpoints;
|
|
4178
|
+
type index_gen$o_CockpitMetrics = CockpitMetrics;
|
|
4179
|
+
type index_gen$o_CockpitStatus = CockpitStatus;
|
|
4180
|
+
type index_gen$o_ContactPoint = ContactPoint;
|
|
4181
|
+
type index_gen$o_ContactPointEmail = ContactPointEmail;
|
|
4182
|
+
type index_gen$o_CreateContactPointRequest = CreateContactPointRequest;
|
|
4183
|
+
type index_gen$o_CreateDatasourceRequest = CreateDatasourceRequest;
|
|
4184
|
+
type index_gen$o_CreateGrafanaUserRequest = CreateGrafanaUserRequest;
|
|
4185
|
+
type index_gen$o_Datasource = Datasource;
|
|
4186
|
+
type index_gen$o_DatasourceType = DatasourceType;
|
|
4187
|
+
type index_gen$o_DeactivateCockpitRequest = DeactivateCockpitRequest;
|
|
4188
|
+
type index_gen$o_DeleteContactPointRequest = DeleteContactPointRequest;
|
|
4189
|
+
type index_gen$o_DeleteGrafanaUserRequest = DeleteGrafanaUserRequest;
|
|
4190
|
+
type index_gen$o_DisableManagedAlertsRequest = DisableManagedAlertsRequest;
|
|
4191
|
+
type index_gen$o_EnableManagedAlertsRequest = EnableManagedAlertsRequest;
|
|
4192
|
+
type index_gen$o_GetCockpitMetricsRequest = GetCockpitMetricsRequest;
|
|
4193
|
+
type index_gen$o_GetCockpitRequest = GetCockpitRequest;
|
|
4194
|
+
type index_gen$o_GetGrafanaProductDashboardRequest = GetGrafanaProductDashboardRequest;
|
|
4195
|
+
type index_gen$o_GrafanaProductDashboard = GrafanaProductDashboard;
|
|
4196
|
+
type index_gen$o_GrafanaUser = GrafanaUser;
|
|
4197
|
+
type index_gen$o_GrafanaUserRole = GrafanaUserRole;
|
|
4198
|
+
type index_gen$o_ListContactPointsRequest = ListContactPointsRequest;
|
|
4199
|
+
type index_gen$o_ListContactPointsResponse = ListContactPointsResponse;
|
|
4200
|
+
type index_gen$o_ListDatasourcesRequest = ListDatasourcesRequest;
|
|
4201
|
+
type index_gen$o_ListDatasourcesRequestOrderBy = ListDatasourcesRequestOrderBy;
|
|
4202
|
+
type index_gen$o_ListDatasourcesResponse = ListDatasourcesResponse;
|
|
4203
|
+
type index_gen$o_ListGrafanaProductDashboardsRequest = ListGrafanaProductDashboardsRequest;
|
|
4204
|
+
type index_gen$o_ListGrafanaProductDashboardsResponse = ListGrafanaProductDashboardsResponse;
|
|
4205
|
+
type index_gen$o_ListGrafanaUsersRequest = ListGrafanaUsersRequest;
|
|
4206
|
+
type index_gen$o_ListGrafanaUsersRequestOrderBy = ListGrafanaUsersRequestOrderBy;
|
|
4207
|
+
type index_gen$o_ListGrafanaUsersResponse = ListGrafanaUsersResponse;
|
|
4208
|
+
type index_gen$o_ListPlansRequest = ListPlansRequest;
|
|
4209
|
+
type index_gen$o_ListPlansRequestOrderBy = ListPlansRequestOrderBy;
|
|
4210
|
+
type index_gen$o_ListPlansResponse = ListPlansResponse;
|
|
4211
|
+
type index_gen$o_Plan = Plan;
|
|
4212
|
+
type index_gen$o_PlanName = PlanName;
|
|
4213
|
+
type index_gen$o_ResetCockpitGrafanaRequest = ResetCockpitGrafanaRequest;
|
|
4214
|
+
type index_gen$o_ResetGrafanaUserPasswordRequest = ResetGrafanaUserPasswordRequest;
|
|
4215
|
+
type index_gen$o_SelectPlanRequest = SelectPlanRequest;
|
|
4216
|
+
type index_gen$o_SelectPlanResponse = SelectPlanResponse;
|
|
4217
|
+
type index_gen$o_TokenScopes = TokenScopes;
|
|
4218
|
+
type index_gen$o_TriggerTestAlertRequest = TriggerTestAlertRequest;
|
|
4219
|
+
declare namespace index_gen$o {
|
|
4220
|
+
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_ResetCockpitGrafanaRequest as ResetCockpitGrafanaRequest, 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 };
|
|
4138
4221
|
}
|
|
4139
4222
|
|
|
4140
4223
|
declare namespace index$q {
|
|
4141
|
-
export { index_gen$
|
|
4224
|
+
export { index_gen$o as v1beta1 };
|
|
4142
4225
|
}
|
|
4143
4226
|
|
|
4144
4227
|
type ContainerHttpOption = 'unknown_http_option' | 'enabled' | 'redirected';
|
|
@@ -4150,7 +4233,7 @@ type DomainStatus$3 = 'unknown' | 'ready' | 'deleting' | 'error' | 'creating' |
|
|
|
4150
4233
|
type ListContainersRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
4151
4234
|
type ListCronsRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
|
|
4152
4235
|
type ListDomainsRequestOrderBy$2 = 'created_at_asc' | 'created_at_desc' | 'hostname_asc' | 'hostname_desc';
|
|
4153
|
-
type ListLogsRequestOrderBy$
|
|
4236
|
+
type ListLogsRequestOrderBy$2 = 'timestamp_desc' | 'timestamp_asc';
|
|
4154
4237
|
type ListNamespacesRequestOrderBy$3 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
4155
4238
|
type ListTokensRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
|
|
4156
4239
|
type ListTriggersRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
|
|
@@ -4166,18 +4249,27 @@ interface SecretHashedValue$1 {
|
|
|
4166
4249
|
interface TriggerMnqNatsClientConfig$1 {
|
|
4167
4250
|
/** @deprecated */
|
|
4168
4251
|
mnqNamespaceId?: string;
|
|
4252
|
+
/** Name of the NATS subject the trigger listens to. */
|
|
4169
4253
|
subject: string;
|
|
4254
|
+
/** ID of the M&Q NATS account. */
|
|
4255
|
+
mnqNatsAccountId: string;
|
|
4256
|
+
/** ID of the M&Q project. */
|
|
4170
4257
|
mnqProjectId: string;
|
|
4258
|
+
/** Region of the M&Q project. */
|
|
4171
4259
|
mnqRegion: string;
|
|
4260
|
+
/** ID of the M&Q credentials used to subscribe to the NATS subject. */
|
|
4172
4261
|
mnqCredentialId?: string;
|
|
4173
|
-
mnqNatsAccountId: string;
|
|
4174
4262
|
}
|
|
4175
4263
|
interface TriggerMnqSqsClientConfig$1 {
|
|
4176
4264
|
/** @deprecated */
|
|
4177
4265
|
mnqNamespaceId?: string;
|
|
4266
|
+
/** Name of the SQS queue the trigger listens to. */
|
|
4178
4267
|
queue: string;
|
|
4268
|
+
/** ID of the M&Q project. */
|
|
4179
4269
|
mnqProjectId: string;
|
|
4270
|
+
/** Region in which the M&Q project is activated. */
|
|
4180
4271
|
mnqRegion: string;
|
|
4272
|
+
/** ID of the M&Q credentials used to read from the SQS queue. */
|
|
4181
4273
|
mnqCredentialId?: string;
|
|
4182
4274
|
}
|
|
4183
4275
|
interface TriggerSqsClientConfig$1 {
|
|
@@ -4193,16 +4285,23 @@ interface Secret$2 {
|
|
|
4193
4285
|
interface CreateTriggerRequestMnqNatsClientConfig$3 {
|
|
4194
4286
|
/** @deprecated */
|
|
4195
4287
|
mnqNamespaceId?: string;
|
|
4288
|
+
/** Name of the NATS subject the trigger should listen to. */
|
|
4196
4289
|
subject: string;
|
|
4290
|
+
/** ID of the M&Q NATS account. */
|
|
4291
|
+
mnqNatsAccountId: string;
|
|
4292
|
+
/** ID of the M&Q project. */
|
|
4197
4293
|
mnqProjectId: string;
|
|
4294
|
+
/** Region of the M&Q project. */
|
|
4198
4295
|
mnqRegion: string;
|
|
4199
|
-
mnqNatsAccountId: string;
|
|
4200
4296
|
}
|
|
4201
4297
|
interface CreateTriggerRequestMnqSqsClientConfig$3 {
|
|
4202
4298
|
/** @deprecated */
|
|
4203
4299
|
mnqNamespaceId?: string;
|
|
4300
|
+
/** Name of the SQS queue the trigger should listen to. */
|
|
4204
4301
|
queue: string;
|
|
4302
|
+
/** You must have activated SQS on this project. */
|
|
4205
4303
|
mnqProjectId: string;
|
|
4304
|
+
/** Region in which the M&Q project is activated. */
|
|
4206
4305
|
mnqRegion: string;
|
|
4207
4306
|
}
|
|
4208
4307
|
interface CreateTriggerRequestSqsClientConfig$1 {
|
|
@@ -4292,7 +4391,7 @@ interface Domain$3 {
|
|
|
4292
4391
|
/** Last error message of the domain. */
|
|
4293
4392
|
errorMessage?: string;
|
|
4294
4393
|
}
|
|
4295
|
-
interface Log$
|
|
4394
|
+
interface Log$2 {
|
|
4296
4395
|
message: string;
|
|
4297
4396
|
timestamp?: Date;
|
|
4298
4397
|
id: string;
|
|
@@ -4356,28 +4455,41 @@ interface Token$1 {
|
|
|
4356
4455
|
expiresAt?: Date;
|
|
4357
4456
|
}
|
|
4358
4457
|
interface Trigger$1 {
|
|
4458
|
+
/** ID of the trigger. */
|
|
4359
4459
|
id: string;
|
|
4460
|
+
/** Name of the trigger. */
|
|
4360
4461
|
name: string;
|
|
4462
|
+
/** Description of the trigger. */
|
|
4361
4463
|
description: string;
|
|
4464
|
+
/** ID of the container to trigger. */
|
|
4465
|
+
containerId: string;
|
|
4466
|
+
/** Type of the input. */
|
|
4362
4467
|
inputType: TriggerInputType$1;
|
|
4468
|
+
/** Status of the trigger. */
|
|
4363
4469
|
status: TriggerStatus$1;
|
|
4470
|
+
/** Error message of the trigger. */
|
|
4364
4471
|
errorMessage?: string;
|
|
4365
|
-
containerId: string;
|
|
4366
4472
|
/**
|
|
4367
|
-
*
|
|
4368
|
-
*
|
|
4473
|
+
* Configuration for a Scaleway M&Q SQS queue.
|
|
4474
|
+
*
|
|
4475
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
4476
|
+
* 'sqsConfig' could be set.
|
|
4369
4477
|
*/
|
|
4370
4478
|
scwSqsConfig?: TriggerMnqSqsClientConfig$1;
|
|
4371
4479
|
/**
|
|
4372
|
-
*
|
|
4373
|
-
*
|
|
4480
|
+
* Configuration for a Scaleway M&Q NATS subject.
|
|
4481
|
+
*
|
|
4482
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
4483
|
+
* 'sqsConfig' could be set.
|
|
4374
4484
|
*/
|
|
4375
|
-
|
|
4485
|
+
scwNatsConfig?: TriggerMnqNatsClientConfig$1;
|
|
4376
4486
|
/**
|
|
4377
|
-
*
|
|
4378
|
-
*
|
|
4487
|
+
* Configuration for an AWS SQS queue.
|
|
4488
|
+
*
|
|
4489
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
4490
|
+
* 'sqsConfig' could be set.
|
|
4379
4491
|
*/
|
|
4380
|
-
|
|
4492
|
+
sqsConfig?: TriggerSqsClientConfig$1;
|
|
4381
4493
|
}
|
|
4382
4494
|
interface UpdateTriggerRequestSqsClientConfig$1 {
|
|
4383
4495
|
accessKey?: string;
|
|
@@ -4503,24 +4615,33 @@ type CreateTriggerRequest$3 = {
|
|
|
4503
4615
|
* config.
|
|
4504
4616
|
*/
|
|
4505
4617
|
region?: Region;
|
|
4618
|
+
/** Name of the trigger. */
|
|
4506
4619
|
name: string;
|
|
4507
|
-
|
|
4620
|
+
/** ID of the container to trigger. */
|
|
4508
4621
|
containerId: string;
|
|
4622
|
+
/** Description of the trigger. */
|
|
4623
|
+
description?: string;
|
|
4509
4624
|
/**
|
|
4510
|
-
*
|
|
4511
|
-
*
|
|
4625
|
+
* Configuration for a Scaleway M&Q SQS queue.
|
|
4626
|
+
*
|
|
4627
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
4628
|
+
* 'sqsConfig' could be set.
|
|
4512
4629
|
*/
|
|
4513
4630
|
scwSqsConfig?: CreateTriggerRequestMnqSqsClientConfig$3;
|
|
4514
4631
|
/**
|
|
4515
|
-
*
|
|
4516
|
-
*
|
|
4632
|
+
* Configuration for a Scaleway M&Q NATS subject.
|
|
4633
|
+
*
|
|
4634
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
4635
|
+
* 'sqsConfig' could be set.
|
|
4517
4636
|
*/
|
|
4518
|
-
|
|
4637
|
+
scwNatsConfig?: CreateTriggerRequestMnqNatsClientConfig$3;
|
|
4519
4638
|
/**
|
|
4520
|
-
*
|
|
4521
|
-
*
|
|
4639
|
+
* Configuration for an AWS SQS queue.
|
|
4640
|
+
*
|
|
4641
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
4642
|
+
* 'sqsConfig' could be set.
|
|
4522
4643
|
*/
|
|
4523
|
-
|
|
4644
|
+
sqsConfig?: CreateTriggerRequestSqsClientConfig$1;
|
|
4524
4645
|
};
|
|
4525
4646
|
type DeleteContainerRequest = {
|
|
4526
4647
|
/**
|
|
@@ -4573,6 +4694,7 @@ type DeleteTriggerRequest$1 = {
|
|
|
4573
4694
|
* config.
|
|
4574
4695
|
*/
|
|
4575
4696
|
region?: Region;
|
|
4697
|
+
/** ID of the trigger to delete. */
|
|
4576
4698
|
triggerId: string;
|
|
4577
4699
|
};
|
|
4578
4700
|
type DeployContainerRequest = {
|
|
@@ -4635,6 +4757,7 @@ type GetTriggerRequest$1 = {
|
|
|
4635
4757
|
* config.
|
|
4636
4758
|
*/
|
|
4637
4759
|
region?: Region;
|
|
4760
|
+
/** ID of the trigger to get. */
|
|
4638
4761
|
triggerId: string;
|
|
4639
4762
|
};
|
|
4640
4763
|
type IssueJWTRequest$1 = {
|
|
@@ -4718,7 +4841,7 @@ interface ListDomainsResponse$3 {
|
|
|
4718
4841
|
/** Total number of domains. */
|
|
4719
4842
|
totalCount: number;
|
|
4720
4843
|
}
|
|
4721
|
-
type ListLogsRequest$
|
|
4844
|
+
type ListLogsRequest$3 = {
|
|
4722
4845
|
/**
|
|
4723
4846
|
* Region to target. If none is passed will use default region from the
|
|
4724
4847
|
* config.
|
|
@@ -4731,10 +4854,10 @@ type ListLogsRequest$1 = {
|
|
|
4731
4854
|
/** Number of logs per page. */
|
|
4732
4855
|
pageSize?: number;
|
|
4733
4856
|
/** Order of the logs. */
|
|
4734
|
-
orderBy?: ListLogsRequestOrderBy$
|
|
4857
|
+
orderBy?: ListLogsRequestOrderBy$2;
|
|
4735
4858
|
};
|
|
4736
|
-
interface ListLogsResponse$
|
|
4737
|
-
logs: Log$
|
|
4859
|
+
interface ListLogsResponse$2 {
|
|
4860
|
+
logs: Log$2[];
|
|
4738
4861
|
totalCount: number;
|
|
4739
4862
|
}
|
|
4740
4863
|
type ListNamespacesRequest$3 = {
|
|
@@ -4789,28 +4912,39 @@ type ListTriggersRequest$1 = {
|
|
|
4789
4912
|
* config.
|
|
4790
4913
|
*/
|
|
4791
4914
|
region?: Region;
|
|
4915
|
+
/** Page number to return. */
|
|
4792
4916
|
page?: number;
|
|
4917
|
+
/** Maximum number of triggers to return per page. */
|
|
4793
4918
|
pageSize?: number;
|
|
4919
|
+
/** Order in which to return results. */
|
|
4794
4920
|
orderBy?: ListTriggersRequestOrderBy$1;
|
|
4795
4921
|
/**
|
|
4922
|
+
* ID of the container the triggers belongs to.
|
|
4923
|
+
*
|
|
4796
4924
|
* One-of ('scope'): at most one of 'containerId', 'namespaceId', 'projectId'
|
|
4797
4925
|
* could be set.
|
|
4798
4926
|
*/
|
|
4799
4927
|
containerId?: string;
|
|
4800
4928
|
/**
|
|
4929
|
+
* ID of the namespace the triggers belongs to.
|
|
4930
|
+
*
|
|
4801
4931
|
* One-of ('scope'): at most one of 'containerId', 'namespaceId', 'projectId'
|
|
4802
4932
|
* could be set.
|
|
4803
4933
|
*/
|
|
4804
4934
|
namespaceId?: string;
|
|
4805
4935
|
/**
|
|
4936
|
+
* ID of the project the triggers belongs to.
|
|
4937
|
+
*
|
|
4806
4938
|
* One-of ('scope'): at most one of 'containerId', 'namespaceId', 'projectId'
|
|
4807
4939
|
* could be set.
|
|
4808
4940
|
*/
|
|
4809
4941
|
projectId?: string;
|
|
4810
4942
|
};
|
|
4811
4943
|
interface ListTriggersResponse$1 {
|
|
4812
|
-
triggers
|
|
4944
|
+
/** Total count of existing triggers (matching any filters specified). */
|
|
4813
4945
|
totalCount: number;
|
|
4946
|
+
/** Triggers on this page. */
|
|
4947
|
+
triggers: Trigger$1[];
|
|
4814
4948
|
}
|
|
4815
4949
|
type UpdateContainerRequest = {
|
|
4816
4950
|
/**
|
|
@@ -4895,10 +5029,17 @@ type UpdateTriggerRequest$3 = {
|
|
|
4895
5029
|
* config.
|
|
4896
5030
|
*/
|
|
4897
5031
|
region?: Region;
|
|
5032
|
+
/** ID of the trigger to update. */
|
|
4898
5033
|
triggerId: string;
|
|
5034
|
+
/** Name of the trigger. */
|
|
4899
5035
|
name?: string;
|
|
5036
|
+
/** Description of the trigger. */
|
|
4900
5037
|
description?: string;
|
|
4901
|
-
/**
|
|
5038
|
+
/**
|
|
5039
|
+
* Configuration for an AWS SQS queue.
|
|
5040
|
+
*
|
|
5041
|
+
* One-of ('config'): at most one of 'sqsConfig' could be set.
|
|
5042
|
+
*/
|
|
4902
5043
|
sqsConfig?: UpdateTriggerRequestSqsClientConfig$1;
|
|
4903
5044
|
};
|
|
4904
5045
|
|
|
@@ -5057,7 +5198,7 @@ declare class API$o extends API$v {
|
|
|
5057
5198
|
* @returns A Promise of Cron
|
|
5058
5199
|
*/
|
|
5059
5200
|
deleteCron: (request: Readonly<DeleteCronRequest$1>) => Promise<Cron$1>;
|
|
5060
|
-
protected pageOfListLogs: (request: Readonly<ListLogsRequest$
|
|
5201
|
+
protected pageOfListLogs: (request: Readonly<ListLogsRequest$3>) => Promise<ListLogsResponse$2>;
|
|
5061
5202
|
/**
|
|
5062
5203
|
* List your container logs. List the logs of the container with the specified
|
|
5063
5204
|
* ID.
|
|
@@ -5065,9 +5206,9 @@ declare class API$o extends API$v {
|
|
|
5065
5206
|
* @param request - The request {@link ListLogsRequest}
|
|
5066
5207
|
* @returns A Promise of ListLogsResponse
|
|
5067
5208
|
*/
|
|
5068
|
-
listLogs: (request: Readonly<ListLogsRequest$
|
|
5069
|
-
all: () => Promise<Log$
|
|
5070
|
-
[Symbol.asyncIterator]: () => AsyncGenerator<Log$
|
|
5209
|
+
listLogs: (request: Readonly<ListLogsRequest$3>) => Promise<ListLogsResponse$2> & {
|
|
5210
|
+
all: () => Promise<Log$2[]>;
|
|
5211
|
+
[Symbol.asyncIterator]: () => AsyncGenerator<Log$2[], void, void>;
|
|
5071
5212
|
};
|
|
5072
5213
|
protected pageOfListDomains: (request: Readonly<ListDomainsRequest$2>) => Promise<ListDomainsResponse$3>;
|
|
5073
5214
|
/**
|
|
@@ -5267,26 +5408,26 @@ declare namespace validationRules_gen$9 {
|
|
|
5267
5408
|
export { CreateTriggerRequest$2 as CreateTriggerRequest, CreateTriggerRequestMnqNatsClientConfig$2 as CreateTriggerRequestMnqNatsClientConfig, CreateTriggerRequestMnqSqsClientConfig$2 as CreateTriggerRequestMnqSqsClientConfig, UpdateTriggerRequest$2 as UpdateTriggerRequest };
|
|
5268
5409
|
}
|
|
5269
5410
|
|
|
5270
|
-
declare const index_gen$
|
|
5271
|
-
type index_gen$
|
|
5272
|
-
type index_gen$
|
|
5273
|
-
type index_gen$
|
|
5274
|
-
type index_gen$
|
|
5275
|
-
type index_gen$
|
|
5276
|
-
type index_gen$
|
|
5277
|
-
type index_gen$
|
|
5278
|
-
type index_gen$
|
|
5279
|
-
type index_gen$
|
|
5280
|
-
type index_gen$
|
|
5281
|
-
type index_gen$
|
|
5282
|
-
type index_gen$
|
|
5283
|
-
type index_gen$
|
|
5284
|
-
declare namespace index_gen$
|
|
5285
|
-
export { API$o as API, index_gen$
|
|
5411
|
+
declare const index_gen$n_CONTAINER_TRANSIENT_STATUSES: typeof CONTAINER_TRANSIENT_STATUSES;
|
|
5412
|
+
type index_gen$n_Container = Container;
|
|
5413
|
+
type index_gen$n_ContainerHttpOption = ContainerHttpOption;
|
|
5414
|
+
type index_gen$n_ContainerPrivacy = ContainerPrivacy;
|
|
5415
|
+
type index_gen$n_ContainerProtocol = ContainerProtocol;
|
|
5416
|
+
type index_gen$n_ContainerStatus = ContainerStatus;
|
|
5417
|
+
type index_gen$n_CreateContainerRequest = CreateContainerRequest;
|
|
5418
|
+
type index_gen$n_DeleteContainerRequest = DeleteContainerRequest;
|
|
5419
|
+
type index_gen$n_DeployContainerRequest = DeployContainerRequest;
|
|
5420
|
+
type index_gen$n_GetContainerRequest = GetContainerRequest;
|
|
5421
|
+
type index_gen$n_ListContainersRequest = ListContainersRequest;
|
|
5422
|
+
type index_gen$n_ListContainersRequestOrderBy = ListContainersRequestOrderBy;
|
|
5423
|
+
type index_gen$n_ListContainersResponse = ListContainersResponse;
|
|
5424
|
+
type index_gen$n_UpdateContainerRequest = UpdateContainerRequest;
|
|
5425
|
+
declare namespace index_gen$n {
|
|
5426
|
+
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$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$n_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$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$3 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$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$n_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$9 as ValidationRules };
|
|
5286
5427
|
}
|
|
5287
5428
|
|
|
5288
5429
|
declare namespace index$p {
|
|
5289
|
-
export { index_gen$
|
|
5430
|
+
export { index_gen$n as v1beta1 };
|
|
5290
5431
|
}
|
|
5291
5432
|
|
|
5292
5433
|
type ACLRuleAction$1 = 'allow' | 'deny';
|
|
@@ -7045,12 +7186,12 @@ declare namespace validationRules_gen$8 {
|
|
|
7045
7186
|
export { UpdateInstanceRequest$2 as UpdateInstanceRequest };
|
|
7046
7187
|
}
|
|
7047
7188
|
|
|
7048
|
-
declare namespace index_gen$
|
|
7189
|
+
declare namespace index_gen$m {
|
|
7049
7190
|
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$8 as ValidationRules, type Volume$3 as Volume, type VolumeType$2 as VolumeType };
|
|
7050
7191
|
}
|
|
7051
7192
|
|
|
7052
7193
|
declare namespace index$o {
|
|
7053
|
-
export { index_gen$
|
|
7194
|
+
export { index_gen$m as v1beta1 };
|
|
7054
7195
|
}
|
|
7055
7196
|
|
|
7056
7197
|
type LanguageCode = 'unknown_language_code' | 'en_US' | 'fr_FR' | 'de_DE';
|
|
@@ -8623,170 +8764,170 @@ declare const SSL_CERTIFICATE_TRANSIENT_STATUSES: SSLCertificateStatus[];
|
|
|
8623
8764
|
/** Lists transient statutes of the enum {@link TaskStatus}. */
|
|
8624
8765
|
declare const TASK_TRANSIENT_STATUSES$1: TaskStatus$1[];
|
|
8625
8766
|
|
|
8626
|
-
type index_gen$
|
|
8627
|
-
type index_gen$
|
|
8628
|
-
type index_gen$
|
|
8629
|
-
type index_gen$
|
|
8630
|
-
type index_gen$
|
|
8631
|
-
type index_gen$
|
|
8632
|
-
type index_gen$
|
|
8633
|
-
type index_gen$
|
|
8634
|
-
type index_gen$
|
|
8635
|
-
type index_gen$
|
|
8636
|
-
type index_gen$
|
|
8637
|
-
type index_gen$
|
|
8638
|
-
type index_gen$
|
|
8639
|
-
type index_gen$
|
|
8640
|
-
type index_gen$
|
|
8641
|
-
type index_gen$
|
|
8642
|
-
type index_gen$
|
|
8643
|
-
type index_gen$
|
|
8644
|
-
type index_gen$
|
|
8645
|
-
type index_gen$
|
|
8646
|
-
type index_gen$
|
|
8647
|
-
type index_gen$
|
|
8648
|
-
type index_gen$
|
|
8649
|
-
type index_gen$
|
|
8650
|
-
type index_gen$
|
|
8651
|
-
type index_gen$
|
|
8652
|
-
type index_gen$
|
|
8653
|
-
declare const index_gen$
|
|
8654
|
-
declare const index_gen$
|
|
8655
|
-
declare const index_gen$
|
|
8656
|
-
type index_gen$
|
|
8657
|
-
type index_gen$
|
|
8658
|
-
type index_gen$
|
|
8659
|
-
type index_gen$
|
|
8660
|
-
type index_gen$
|
|
8661
|
-
type index_gen$
|
|
8662
|
-
type index_gen$
|
|
8663
|
-
type index_gen$
|
|
8664
|
-
type index_gen$
|
|
8665
|
-
type index_gen$
|
|
8666
|
-
type index_gen$
|
|
8667
|
-
type index_gen$
|
|
8668
|
-
type index_gen$
|
|
8669
|
-
type index_gen$
|
|
8670
|
-
type index_gen$
|
|
8671
|
-
type index_gen$
|
|
8672
|
-
type index_gen$
|
|
8673
|
-
type index_gen$
|
|
8674
|
-
type index_gen$
|
|
8675
|
-
type index_gen$
|
|
8676
|
-
type index_gen$
|
|
8677
|
-
type index_gen$
|
|
8678
|
-
type index_gen$
|
|
8679
|
-
type index_gen$
|
|
8680
|
-
type index_gen$
|
|
8681
|
-
type index_gen$
|
|
8682
|
-
type index_gen$
|
|
8683
|
-
type index_gen$
|
|
8684
|
-
type index_gen$
|
|
8685
|
-
type index_gen$
|
|
8686
|
-
type index_gen$
|
|
8687
|
-
type index_gen$
|
|
8688
|
-
type index_gen$
|
|
8689
|
-
type index_gen$
|
|
8690
|
-
declare const index_gen$
|
|
8691
|
-
type index_gen$
|
|
8692
|
-
type index_gen$
|
|
8693
|
-
type index_gen$
|
|
8694
|
-
type index_gen$
|
|
8695
|
-
type index_gen$
|
|
8696
|
-
type index_gen$
|
|
8697
|
-
type index_gen$
|
|
8698
|
-
type index_gen$
|
|
8699
|
-
type index_gen$
|
|
8700
|
-
type index_gen$
|
|
8701
|
-
type index_gen$
|
|
8702
|
-
type index_gen$
|
|
8703
|
-
type index_gen$
|
|
8704
|
-
type index_gen$
|
|
8705
|
-
type index_gen$
|
|
8706
|
-
type index_gen$
|
|
8707
|
-
type index_gen$
|
|
8708
|
-
type index_gen$
|
|
8709
|
-
type index_gen$
|
|
8710
|
-
type index_gen$
|
|
8711
|
-
type index_gen$
|
|
8712
|
-
type index_gen$
|
|
8713
|
-
type index_gen$
|
|
8714
|
-
type index_gen$
|
|
8715
|
-
type index_gen$
|
|
8716
|
-
type index_gen$
|
|
8717
|
-
type index_gen$
|
|
8718
|
-
type index_gen$
|
|
8719
|
-
type index_gen$
|
|
8720
|
-
type index_gen$
|
|
8721
|
-
type index_gen$
|
|
8722
|
-
type index_gen$
|
|
8723
|
-
type index_gen$
|
|
8724
|
-
type index_gen$
|
|
8725
|
-
type index_gen$
|
|
8726
|
-
type index_gen$
|
|
8727
|
-
type index_gen$
|
|
8728
|
-
type index_gen$
|
|
8729
|
-
type index_gen$
|
|
8730
|
-
type index_gen$
|
|
8731
|
-
type index_gen$
|
|
8732
|
-
type index_gen$
|
|
8733
|
-
type index_gen$
|
|
8734
|
-
type index_gen$
|
|
8735
|
-
type index_gen$
|
|
8736
|
-
type index_gen$
|
|
8737
|
-
declare const index_gen$
|
|
8738
|
-
type index_gen$
|
|
8739
|
-
type index_gen$
|
|
8740
|
-
type index_gen$
|
|
8741
|
-
type index_gen$
|
|
8742
|
-
type index_gen$
|
|
8743
|
-
type index_gen$
|
|
8744
|
-
type index_gen$
|
|
8745
|
-
type index_gen$
|
|
8746
|
-
type index_gen$
|
|
8747
|
-
type index_gen$
|
|
8748
|
-
type index_gen$
|
|
8749
|
-
type index_gen$
|
|
8750
|
-
type index_gen$
|
|
8751
|
-
type index_gen$
|
|
8752
|
-
type index_gen$
|
|
8753
|
-
type index_gen$
|
|
8754
|
-
type index_gen$
|
|
8755
|
-
type index_gen$
|
|
8756
|
-
type index_gen$
|
|
8757
|
-
type index_gen$
|
|
8758
|
-
type index_gen$
|
|
8759
|
-
type index_gen$
|
|
8760
|
-
type index_gen$
|
|
8761
|
-
type index_gen$
|
|
8762
|
-
type index_gen$
|
|
8763
|
-
type index_gen$
|
|
8764
|
-
type index_gen$
|
|
8765
|
-
type index_gen$
|
|
8766
|
-
type index_gen$
|
|
8767
|
-
type index_gen$
|
|
8768
|
-
type index_gen$
|
|
8769
|
-
type index_gen$
|
|
8770
|
-
type index_gen$
|
|
8771
|
-
type index_gen$
|
|
8772
|
-
declare const index_gen$
|
|
8773
|
-
type index_gen$
|
|
8774
|
-
type index_gen$
|
|
8775
|
-
type index_gen$
|
|
8776
|
-
type index_gen$
|
|
8777
|
-
type index_gen$
|
|
8778
|
-
type index_gen$
|
|
8779
|
-
type index_gen$
|
|
8780
|
-
type index_gen$
|
|
8781
|
-
type index_gen$
|
|
8782
|
-
type index_gen$
|
|
8783
|
-
type index_gen$
|
|
8784
|
-
declare namespace index_gen$
|
|
8785
|
-
export { API$m as API, type index_gen$k_AvailableDomain as AvailableDomain, type index_gen$k_CheckContactsCompatibilityResponse as CheckContactsCompatibilityResponse, type index_gen$k_CheckContactsCompatibilityResponseContactCheckResult as CheckContactsCompatibilityResponseContactCheckResult, type index_gen$k_ClearDNSZoneRecordsRequest as ClearDNSZoneRecordsRequest, type index_gen$k_ClearDNSZoneRecordsResponse as ClearDNSZoneRecordsResponse, type index_gen$k_CloneDNSZoneRequest as CloneDNSZoneRequest, type index_gen$k_Contact as Contact, type index_gen$k_ContactEmailStatus as ContactEmailStatus, type index_gen$k_ContactExtensionEU as ContactExtensionEU, type index_gen$k_ContactExtensionFR as ContactExtensionFR, type index_gen$k_ContactExtensionFRAssociationInfo as ContactExtensionFRAssociationInfo, type index_gen$k_ContactExtensionFRCodeAuthAfnicInfo as ContactExtensionFRCodeAuthAfnicInfo, type index_gen$k_ContactExtensionFRDunsInfo as ContactExtensionFRDunsInfo, type index_gen$k_ContactExtensionFRIndividualInfo as ContactExtensionFRIndividualInfo, type index_gen$k_ContactExtensionFRMode as ContactExtensionFRMode, type index_gen$k_ContactExtensionFRTrademarkInfo as ContactExtensionFRTrademarkInfo, type index_gen$k_ContactExtensionNL as ContactExtensionNL, type index_gen$k_ContactExtensionNLLegalForm as ContactExtensionNLLegalForm, type index_gen$k_ContactLegalForm as ContactLegalForm, type index_gen$k_ContactQuestion as ContactQuestion, type index_gen$k_ContactRoles as ContactRoles, type index_gen$k_ContactRolesRoles as ContactRolesRoles, type index_gen$k_CreateDNSZoneRequest as CreateDNSZoneRequest, type index_gen$k_CreateSSLCertificateRequest as CreateSSLCertificateRequest, type index_gen$k_DNSZone as DNSZone, type index_gen$k_DNSZoneStatus as DNSZoneStatus, type index_gen$k_DNSZoneVersion as DNSZoneVersion, index_gen$k_DNS_ZONE_TRANSIENT_STATUSES as DNS_ZONE_TRANSIENT_STATUSES, index_gen$k_DOMAIN_FEATURE_TRANSIENT_STATUSES as DOMAIN_FEATURE_TRANSIENT_STATUSES, index_gen$k_DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES as DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES, DOMAIN_TRANSIENT_STATUSES$2 as DOMAIN_TRANSIENT_STATUSES, type index_gen$k_DSRecord as DSRecord, type index_gen$k_DSRecordAlgorithm as DSRecordAlgorithm, type index_gen$k_DSRecordDigest as DSRecordDigest, type index_gen$k_DSRecordDigestType as DSRecordDigestType, type index_gen$k_DSRecordPublicKey as DSRecordPublicKey, type index_gen$k_DeleteDNSZoneRequest as DeleteDNSZoneRequest, type index_gen$k_DeleteDNSZoneResponse as DeleteDNSZoneResponse, type index_gen$k_DeleteDNSZoneTsigKeyRequest as DeleteDNSZoneTsigKeyRequest, type index_gen$k_DeleteExternalDomainResponse as DeleteExternalDomainResponse, type index_gen$k_DeleteSSLCertificateRequest as DeleteSSLCertificateRequest, type index_gen$k_DeleteSSLCertificateResponse as DeleteSSLCertificateResponse, type Domain$2 as Domain, type index_gen$k_DomainDNSSEC as DomainDNSSEC, type index_gen$k_DomainFeatureStatus as DomainFeatureStatus, type index_gen$k_DomainRecord as DomainRecord, type index_gen$k_DomainRecordGeoIPConfig as DomainRecordGeoIPConfig, type index_gen$k_DomainRecordGeoIPConfigMatch as DomainRecordGeoIPConfigMatch, type index_gen$k_DomainRecordHTTPServiceConfig as DomainRecordHTTPServiceConfig, type index_gen$k_DomainRecordHTTPServiceConfigStrategy as DomainRecordHTTPServiceConfigStrategy, type index_gen$k_DomainRecordType as DomainRecordType, type index_gen$k_DomainRecordViewConfig as DomainRecordViewConfig, type index_gen$k_DomainRecordViewConfigView as DomainRecordViewConfigView, type index_gen$k_DomainRecordWeightedConfig as DomainRecordWeightedConfig, type index_gen$k_DomainRecordWeightedConfigWeightedIP as DomainRecordWeightedConfigWeightedIP, type index_gen$k_DomainRegistrationStatusExternalDomain as DomainRegistrationStatusExternalDomain, type index_gen$k_DomainRegistrationStatusTransfer as DomainRegistrationStatusTransfer, type index_gen$k_DomainRegistrationStatusTransferStatus as DomainRegistrationStatusTransferStatus, type DomainStatus$2 as DomainStatus, type index_gen$k_DomainSummary as DomainSummary, type index_gen$k_ExportRawDNSZoneRequest as ExportRawDNSZoneRequest, type index_gen$k_GetDNSZoneTsigKeyRequest as GetDNSZoneTsigKeyRequest, type index_gen$k_GetDNSZoneTsigKeyResponse as GetDNSZoneTsigKeyResponse, type index_gen$k_GetDNSZoneVersionDiffRequest as GetDNSZoneVersionDiffRequest, type index_gen$k_GetDNSZoneVersionDiffResponse as GetDNSZoneVersionDiffResponse, type index_gen$k_GetDomainAuthCodeResponse as GetDomainAuthCodeResponse, type index_gen$k_GetSSLCertificateRequest as GetSSLCertificateRequest, index_gen$k_HOST_TRANSIENT_STATUSES as HOST_TRANSIENT_STATUSES, type index_gen$k_Host as Host, type index_gen$k_HostStatus as HostStatus, type index_gen$k_ImportProviderDNSZoneRequest as ImportProviderDNSZoneRequest, type index_gen$k_ImportProviderDNSZoneRequestOnlineV1 as ImportProviderDNSZoneRequestOnlineV1, type index_gen$k_ImportProviderDNSZoneResponse as ImportProviderDNSZoneResponse, type index_gen$k_ImportRawDNSZoneRequest as ImportRawDNSZoneRequest, type index_gen$k_ImportRawDNSZoneRequestAXFRSource as ImportRawDNSZoneRequestAXFRSource, type index_gen$k_ImportRawDNSZoneRequestBindSource as ImportRawDNSZoneRequestBindSource, type index_gen$k_ImportRawDNSZoneRequestTsigKey as ImportRawDNSZoneRequestTsigKey, type index_gen$k_ImportRawDNSZoneResponse as ImportRawDNSZoneResponse, type index_gen$k_ListContactsRequestRole as ListContactsRequestRole, type index_gen$k_ListContactsResponse as ListContactsResponse, type index_gen$k_ListDNSZoneNameserversRequest as ListDNSZoneNameserversRequest, type index_gen$k_ListDNSZoneNameserversResponse as ListDNSZoneNameserversResponse, type index_gen$k_ListDNSZoneRecordsRequest as ListDNSZoneRecordsRequest, type index_gen$k_ListDNSZoneRecordsRequestOrderBy as ListDNSZoneRecordsRequestOrderBy, type index_gen$k_ListDNSZoneRecordsResponse as ListDNSZoneRecordsResponse, type index_gen$k_ListDNSZoneVersionRecordsRequest as ListDNSZoneVersionRecordsRequest, type index_gen$k_ListDNSZoneVersionRecordsResponse as ListDNSZoneVersionRecordsResponse, type index_gen$k_ListDNSZoneVersionsRequest as ListDNSZoneVersionsRequest, type index_gen$k_ListDNSZoneVersionsResponse as ListDNSZoneVersionsResponse, type index_gen$k_ListDNSZonesRequest as ListDNSZonesRequest, type index_gen$k_ListDNSZonesRequestOrderBy as ListDNSZonesRequestOrderBy, type index_gen$k_ListDNSZonesResponse as ListDNSZonesResponse, type index_gen$k_ListDomainHostsResponse as ListDomainHostsResponse, type ListDomainsRequestOrderBy$1 as ListDomainsRequestOrderBy, type ListDomainsResponse$2 as ListDomainsResponse, type index_gen$k_ListRenewableDomainsRequestOrderBy as ListRenewableDomainsRequestOrderBy, type index_gen$k_ListRenewableDomainsResponse as ListRenewableDomainsResponse, type index_gen$k_ListSSLCertificatesRequest as ListSSLCertificatesRequest, type index_gen$k_ListSSLCertificatesResponse as ListSSLCertificatesResponse, type index_gen$k_ListTasksRequestOrderBy as ListTasksRequestOrderBy, type index_gen$k_ListTasksResponse as ListTasksResponse, type index_gen$k_ListTldsRequestOrderBy as ListTldsRequestOrderBy, type index_gen$k_ListTldsResponse as ListTldsResponse, type Nameserver$1 as Nameserver, type index_gen$k_NewContact as NewContact, type index_gen$k_OrderResponse as OrderResponse, type index_gen$k_RawFormat as RawFormat, type index_gen$k_RecordChange as RecordChange, type index_gen$k_RecordChangeAdd as RecordChangeAdd, type index_gen$k_RecordChangeClear as RecordChangeClear, type index_gen$k_RecordChangeDelete as RecordChangeDelete, type index_gen$k_RecordChangeSet as RecordChangeSet, type index_gen$k_RecordIdentifier as RecordIdentifier, type index_gen$k_RefreshDNSZoneRequest as RefreshDNSZoneRequest, type index_gen$k_RefreshDNSZoneResponse as RefreshDNSZoneResponse, type index_gen$k_RegisterExternalDomainResponse as RegisterExternalDomainResponse, index_gen$k_RegistrarAPI as RegistrarAPI, type index_gen$k_RegistrarApiBuyDomainsRequest as RegistrarApiBuyDomainsRequest, type index_gen$k_RegistrarApiCheckContactsCompatibilityRequest as RegistrarApiCheckContactsCompatibilityRequest, type index_gen$k_RegistrarApiCreateDomainHostRequest as RegistrarApiCreateDomainHostRequest, type index_gen$k_RegistrarApiDeleteDomainHostRequest as RegistrarApiDeleteDomainHostRequest, type index_gen$k_RegistrarApiDeleteExternalDomainRequest as RegistrarApiDeleteExternalDomainRequest, type index_gen$k_RegistrarApiDisableDomainAutoRenewRequest as RegistrarApiDisableDomainAutoRenewRequest, type index_gen$k_RegistrarApiDisableDomainDNSSECRequest as RegistrarApiDisableDomainDNSSECRequest, type index_gen$k_RegistrarApiEnableDomainAutoRenewRequest as RegistrarApiEnableDomainAutoRenewRequest, type index_gen$k_RegistrarApiEnableDomainDNSSECRequest as RegistrarApiEnableDomainDNSSECRequest, type index_gen$k_RegistrarApiGetContactRequest as RegistrarApiGetContactRequest, type index_gen$k_RegistrarApiGetDomainAuthCodeRequest as RegistrarApiGetDomainAuthCodeRequest, type index_gen$k_RegistrarApiGetDomainRequest as RegistrarApiGetDomainRequest, type index_gen$k_RegistrarApiListContactsRequest as RegistrarApiListContactsRequest, type index_gen$k_RegistrarApiListDomainHostsRequest as RegistrarApiListDomainHostsRequest, type index_gen$k_RegistrarApiListDomainsRequest as RegistrarApiListDomainsRequest, type index_gen$k_RegistrarApiListRenewableDomainsRequest as RegistrarApiListRenewableDomainsRequest, type index_gen$k_RegistrarApiListTasksRequest as RegistrarApiListTasksRequest, type index_gen$k_RegistrarApiListTldsRequest as RegistrarApiListTldsRequest, type index_gen$k_RegistrarApiLockDomainTransferRequest as RegistrarApiLockDomainTransferRequest, type index_gen$k_RegistrarApiRegisterExternalDomainRequest as RegistrarApiRegisterExternalDomainRequest, type index_gen$k_RegistrarApiRenewDomainsRequest as RegistrarApiRenewDomainsRequest, type index_gen$k_RegistrarApiSearchAvailableDomainsRequest as RegistrarApiSearchAvailableDomainsRequest, type index_gen$k_RegistrarApiTradeDomainRequest as RegistrarApiTradeDomainRequest, type index_gen$k_RegistrarApiTransferInDomainRequest as RegistrarApiTransferInDomainRequest, type index_gen$k_RegistrarApiUnlockDomainTransferRequest as RegistrarApiUnlockDomainTransferRequest, type index_gen$k_RegistrarApiUpdateContactRequest as RegistrarApiUpdateContactRequest, type index_gen$k_RegistrarApiUpdateDomainHostRequest as RegistrarApiUpdateDomainHostRequest, type index_gen$k_RegistrarApiUpdateDomainRequest as RegistrarApiUpdateDomainRequest, type index_gen$k_RenewableDomain as RenewableDomain, type index_gen$k_RenewableDomainStatus as RenewableDomainStatus, type index_gen$k_RestoreDNSZoneVersionRequest as RestoreDNSZoneVersionRequest, type index_gen$k_RestoreDNSZoneVersionResponse as RestoreDNSZoneVersionResponse, type index_gen$k_SSLCertificate as SSLCertificate, type index_gen$k_SSLCertificateStatus as SSLCertificateStatus, index_gen$k_SSL_CERTIFICATE_TRANSIENT_STATUSES as SSL_CERTIFICATE_TRANSIENT_STATUSES, type index_gen$k_SearchAvailableDomainsResponse as SearchAvailableDomainsResponse, TASK_TRANSIENT_STATUSES$1 as TASK_TRANSIENT_STATUSES, type Task$1 as Task, type TaskStatus$1 as TaskStatus, type index_gen$k_TaskType as TaskType, type index_gen$k_Tld as Tld, type index_gen$k_TldOffer as TldOffer, type index_gen$k_TransferInDomainRequestTransferRequest as TransferInDomainRequestTransferRequest, type index_gen$k_UpdateContactRequestQuestion as UpdateContactRequestQuestion, type index_gen$k_UpdateDNSZoneNameserversRequest as UpdateDNSZoneNameserversRequest, type index_gen$k_UpdateDNSZoneNameserversResponse as UpdateDNSZoneNameserversResponse, type index_gen$k_UpdateDNSZoneRecordsRequest as UpdateDNSZoneRecordsRequest, type index_gen$k_UpdateDNSZoneRecordsResponse as UpdateDNSZoneRecordsResponse, type index_gen$k_UpdateDNSZoneRequest as UpdateDNSZoneRequest };
|
|
8767
|
+
type index_gen$l_AvailableDomain = AvailableDomain;
|
|
8768
|
+
type index_gen$l_CheckContactsCompatibilityResponse = CheckContactsCompatibilityResponse;
|
|
8769
|
+
type index_gen$l_CheckContactsCompatibilityResponseContactCheckResult = CheckContactsCompatibilityResponseContactCheckResult;
|
|
8770
|
+
type index_gen$l_ClearDNSZoneRecordsRequest = ClearDNSZoneRecordsRequest;
|
|
8771
|
+
type index_gen$l_ClearDNSZoneRecordsResponse = ClearDNSZoneRecordsResponse;
|
|
8772
|
+
type index_gen$l_CloneDNSZoneRequest = CloneDNSZoneRequest;
|
|
8773
|
+
type index_gen$l_Contact = Contact;
|
|
8774
|
+
type index_gen$l_ContactEmailStatus = ContactEmailStatus;
|
|
8775
|
+
type index_gen$l_ContactExtensionEU = ContactExtensionEU;
|
|
8776
|
+
type index_gen$l_ContactExtensionFR = ContactExtensionFR;
|
|
8777
|
+
type index_gen$l_ContactExtensionFRAssociationInfo = ContactExtensionFRAssociationInfo;
|
|
8778
|
+
type index_gen$l_ContactExtensionFRCodeAuthAfnicInfo = ContactExtensionFRCodeAuthAfnicInfo;
|
|
8779
|
+
type index_gen$l_ContactExtensionFRDunsInfo = ContactExtensionFRDunsInfo;
|
|
8780
|
+
type index_gen$l_ContactExtensionFRIndividualInfo = ContactExtensionFRIndividualInfo;
|
|
8781
|
+
type index_gen$l_ContactExtensionFRMode = ContactExtensionFRMode;
|
|
8782
|
+
type index_gen$l_ContactExtensionFRTrademarkInfo = ContactExtensionFRTrademarkInfo;
|
|
8783
|
+
type index_gen$l_ContactExtensionNL = ContactExtensionNL;
|
|
8784
|
+
type index_gen$l_ContactExtensionNLLegalForm = ContactExtensionNLLegalForm;
|
|
8785
|
+
type index_gen$l_ContactLegalForm = ContactLegalForm;
|
|
8786
|
+
type index_gen$l_ContactQuestion = ContactQuestion;
|
|
8787
|
+
type index_gen$l_ContactRoles = ContactRoles;
|
|
8788
|
+
type index_gen$l_ContactRolesRoles = ContactRolesRoles;
|
|
8789
|
+
type index_gen$l_CreateDNSZoneRequest = CreateDNSZoneRequest;
|
|
8790
|
+
type index_gen$l_CreateSSLCertificateRequest = CreateSSLCertificateRequest;
|
|
8791
|
+
type index_gen$l_DNSZone = DNSZone;
|
|
8792
|
+
type index_gen$l_DNSZoneStatus = DNSZoneStatus;
|
|
8793
|
+
type index_gen$l_DNSZoneVersion = DNSZoneVersion;
|
|
8794
|
+
declare const index_gen$l_DNS_ZONE_TRANSIENT_STATUSES: typeof DNS_ZONE_TRANSIENT_STATUSES;
|
|
8795
|
+
declare const index_gen$l_DOMAIN_FEATURE_TRANSIENT_STATUSES: typeof DOMAIN_FEATURE_TRANSIENT_STATUSES;
|
|
8796
|
+
declare const index_gen$l_DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES: typeof DOMAIN_REGISTRATION_STATUS_TRANSFER_TRANSIENT_STATUSES;
|
|
8797
|
+
type index_gen$l_DSRecord = DSRecord;
|
|
8798
|
+
type index_gen$l_DSRecordAlgorithm = DSRecordAlgorithm;
|
|
8799
|
+
type index_gen$l_DSRecordDigest = DSRecordDigest;
|
|
8800
|
+
type index_gen$l_DSRecordDigestType = DSRecordDigestType;
|
|
8801
|
+
type index_gen$l_DSRecordPublicKey = DSRecordPublicKey;
|
|
8802
|
+
type index_gen$l_DeleteDNSZoneRequest = DeleteDNSZoneRequest;
|
|
8803
|
+
type index_gen$l_DeleteDNSZoneResponse = DeleteDNSZoneResponse;
|
|
8804
|
+
type index_gen$l_DeleteDNSZoneTsigKeyRequest = DeleteDNSZoneTsigKeyRequest;
|
|
8805
|
+
type index_gen$l_DeleteExternalDomainResponse = DeleteExternalDomainResponse;
|
|
8806
|
+
type index_gen$l_DeleteSSLCertificateRequest = DeleteSSLCertificateRequest;
|
|
8807
|
+
type index_gen$l_DeleteSSLCertificateResponse = DeleteSSLCertificateResponse;
|
|
8808
|
+
type index_gen$l_DomainDNSSEC = DomainDNSSEC;
|
|
8809
|
+
type index_gen$l_DomainFeatureStatus = DomainFeatureStatus;
|
|
8810
|
+
type index_gen$l_DomainRecord = DomainRecord;
|
|
8811
|
+
type index_gen$l_DomainRecordGeoIPConfig = DomainRecordGeoIPConfig;
|
|
8812
|
+
type index_gen$l_DomainRecordGeoIPConfigMatch = DomainRecordGeoIPConfigMatch;
|
|
8813
|
+
type index_gen$l_DomainRecordHTTPServiceConfig = DomainRecordHTTPServiceConfig;
|
|
8814
|
+
type index_gen$l_DomainRecordHTTPServiceConfigStrategy = DomainRecordHTTPServiceConfigStrategy;
|
|
8815
|
+
type index_gen$l_DomainRecordType = DomainRecordType;
|
|
8816
|
+
type index_gen$l_DomainRecordViewConfig = DomainRecordViewConfig;
|
|
8817
|
+
type index_gen$l_DomainRecordViewConfigView = DomainRecordViewConfigView;
|
|
8818
|
+
type index_gen$l_DomainRecordWeightedConfig = DomainRecordWeightedConfig;
|
|
8819
|
+
type index_gen$l_DomainRecordWeightedConfigWeightedIP = DomainRecordWeightedConfigWeightedIP;
|
|
8820
|
+
type index_gen$l_DomainRegistrationStatusExternalDomain = DomainRegistrationStatusExternalDomain;
|
|
8821
|
+
type index_gen$l_DomainRegistrationStatusTransfer = DomainRegistrationStatusTransfer;
|
|
8822
|
+
type index_gen$l_DomainRegistrationStatusTransferStatus = DomainRegistrationStatusTransferStatus;
|
|
8823
|
+
type index_gen$l_DomainSummary = DomainSummary;
|
|
8824
|
+
type index_gen$l_ExportRawDNSZoneRequest = ExportRawDNSZoneRequest;
|
|
8825
|
+
type index_gen$l_GetDNSZoneTsigKeyRequest = GetDNSZoneTsigKeyRequest;
|
|
8826
|
+
type index_gen$l_GetDNSZoneTsigKeyResponse = GetDNSZoneTsigKeyResponse;
|
|
8827
|
+
type index_gen$l_GetDNSZoneVersionDiffRequest = GetDNSZoneVersionDiffRequest;
|
|
8828
|
+
type index_gen$l_GetDNSZoneVersionDiffResponse = GetDNSZoneVersionDiffResponse;
|
|
8829
|
+
type index_gen$l_GetDomainAuthCodeResponse = GetDomainAuthCodeResponse;
|
|
8830
|
+
type index_gen$l_GetSSLCertificateRequest = GetSSLCertificateRequest;
|
|
8831
|
+
declare const index_gen$l_HOST_TRANSIENT_STATUSES: typeof HOST_TRANSIENT_STATUSES;
|
|
8832
|
+
type index_gen$l_Host = Host;
|
|
8833
|
+
type index_gen$l_HostStatus = HostStatus;
|
|
8834
|
+
type index_gen$l_ImportProviderDNSZoneRequest = ImportProviderDNSZoneRequest;
|
|
8835
|
+
type index_gen$l_ImportProviderDNSZoneRequestOnlineV1 = ImportProviderDNSZoneRequestOnlineV1;
|
|
8836
|
+
type index_gen$l_ImportProviderDNSZoneResponse = ImportProviderDNSZoneResponse;
|
|
8837
|
+
type index_gen$l_ImportRawDNSZoneRequest = ImportRawDNSZoneRequest;
|
|
8838
|
+
type index_gen$l_ImportRawDNSZoneRequestAXFRSource = ImportRawDNSZoneRequestAXFRSource;
|
|
8839
|
+
type index_gen$l_ImportRawDNSZoneRequestBindSource = ImportRawDNSZoneRequestBindSource;
|
|
8840
|
+
type index_gen$l_ImportRawDNSZoneRequestTsigKey = ImportRawDNSZoneRequestTsigKey;
|
|
8841
|
+
type index_gen$l_ImportRawDNSZoneResponse = ImportRawDNSZoneResponse;
|
|
8842
|
+
type index_gen$l_ListContactsRequestRole = ListContactsRequestRole;
|
|
8843
|
+
type index_gen$l_ListContactsResponse = ListContactsResponse;
|
|
8844
|
+
type index_gen$l_ListDNSZoneNameserversRequest = ListDNSZoneNameserversRequest;
|
|
8845
|
+
type index_gen$l_ListDNSZoneNameserversResponse = ListDNSZoneNameserversResponse;
|
|
8846
|
+
type index_gen$l_ListDNSZoneRecordsRequest = ListDNSZoneRecordsRequest;
|
|
8847
|
+
type index_gen$l_ListDNSZoneRecordsRequestOrderBy = ListDNSZoneRecordsRequestOrderBy;
|
|
8848
|
+
type index_gen$l_ListDNSZoneRecordsResponse = ListDNSZoneRecordsResponse;
|
|
8849
|
+
type index_gen$l_ListDNSZoneVersionRecordsRequest = ListDNSZoneVersionRecordsRequest;
|
|
8850
|
+
type index_gen$l_ListDNSZoneVersionRecordsResponse = ListDNSZoneVersionRecordsResponse;
|
|
8851
|
+
type index_gen$l_ListDNSZoneVersionsRequest = ListDNSZoneVersionsRequest;
|
|
8852
|
+
type index_gen$l_ListDNSZoneVersionsResponse = ListDNSZoneVersionsResponse;
|
|
8853
|
+
type index_gen$l_ListDNSZonesRequest = ListDNSZonesRequest;
|
|
8854
|
+
type index_gen$l_ListDNSZonesRequestOrderBy = ListDNSZonesRequestOrderBy;
|
|
8855
|
+
type index_gen$l_ListDNSZonesResponse = ListDNSZonesResponse;
|
|
8856
|
+
type index_gen$l_ListDomainHostsResponse = ListDomainHostsResponse;
|
|
8857
|
+
type index_gen$l_ListRenewableDomainsRequestOrderBy = ListRenewableDomainsRequestOrderBy;
|
|
8858
|
+
type index_gen$l_ListRenewableDomainsResponse = ListRenewableDomainsResponse;
|
|
8859
|
+
type index_gen$l_ListSSLCertificatesRequest = ListSSLCertificatesRequest;
|
|
8860
|
+
type index_gen$l_ListSSLCertificatesResponse = ListSSLCertificatesResponse;
|
|
8861
|
+
type index_gen$l_ListTasksRequestOrderBy = ListTasksRequestOrderBy;
|
|
8862
|
+
type index_gen$l_ListTasksResponse = ListTasksResponse;
|
|
8863
|
+
type index_gen$l_ListTldsRequestOrderBy = ListTldsRequestOrderBy;
|
|
8864
|
+
type index_gen$l_ListTldsResponse = ListTldsResponse;
|
|
8865
|
+
type index_gen$l_NewContact = NewContact;
|
|
8866
|
+
type index_gen$l_OrderResponse = OrderResponse;
|
|
8867
|
+
type index_gen$l_RawFormat = RawFormat;
|
|
8868
|
+
type index_gen$l_RecordChange = RecordChange;
|
|
8869
|
+
type index_gen$l_RecordChangeAdd = RecordChangeAdd;
|
|
8870
|
+
type index_gen$l_RecordChangeClear = RecordChangeClear;
|
|
8871
|
+
type index_gen$l_RecordChangeDelete = RecordChangeDelete;
|
|
8872
|
+
type index_gen$l_RecordChangeSet = RecordChangeSet;
|
|
8873
|
+
type index_gen$l_RecordIdentifier = RecordIdentifier;
|
|
8874
|
+
type index_gen$l_RefreshDNSZoneRequest = RefreshDNSZoneRequest;
|
|
8875
|
+
type index_gen$l_RefreshDNSZoneResponse = RefreshDNSZoneResponse;
|
|
8876
|
+
type index_gen$l_RegisterExternalDomainResponse = RegisterExternalDomainResponse;
|
|
8877
|
+
type index_gen$l_RegistrarAPI = RegistrarAPI;
|
|
8878
|
+
declare const index_gen$l_RegistrarAPI: typeof RegistrarAPI;
|
|
8879
|
+
type index_gen$l_RegistrarApiBuyDomainsRequest = RegistrarApiBuyDomainsRequest;
|
|
8880
|
+
type index_gen$l_RegistrarApiCheckContactsCompatibilityRequest = RegistrarApiCheckContactsCompatibilityRequest;
|
|
8881
|
+
type index_gen$l_RegistrarApiCreateDomainHostRequest = RegistrarApiCreateDomainHostRequest;
|
|
8882
|
+
type index_gen$l_RegistrarApiDeleteDomainHostRequest = RegistrarApiDeleteDomainHostRequest;
|
|
8883
|
+
type index_gen$l_RegistrarApiDeleteExternalDomainRequest = RegistrarApiDeleteExternalDomainRequest;
|
|
8884
|
+
type index_gen$l_RegistrarApiDisableDomainAutoRenewRequest = RegistrarApiDisableDomainAutoRenewRequest;
|
|
8885
|
+
type index_gen$l_RegistrarApiDisableDomainDNSSECRequest = RegistrarApiDisableDomainDNSSECRequest;
|
|
8886
|
+
type index_gen$l_RegistrarApiEnableDomainAutoRenewRequest = RegistrarApiEnableDomainAutoRenewRequest;
|
|
8887
|
+
type index_gen$l_RegistrarApiEnableDomainDNSSECRequest = RegistrarApiEnableDomainDNSSECRequest;
|
|
8888
|
+
type index_gen$l_RegistrarApiGetContactRequest = RegistrarApiGetContactRequest;
|
|
8889
|
+
type index_gen$l_RegistrarApiGetDomainAuthCodeRequest = RegistrarApiGetDomainAuthCodeRequest;
|
|
8890
|
+
type index_gen$l_RegistrarApiGetDomainRequest = RegistrarApiGetDomainRequest;
|
|
8891
|
+
type index_gen$l_RegistrarApiListContactsRequest = RegistrarApiListContactsRequest;
|
|
8892
|
+
type index_gen$l_RegistrarApiListDomainHostsRequest = RegistrarApiListDomainHostsRequest;
|
|
8893
|
+
type index_gen$l_RegistrarApiListDomainsRequest = RegistrarApiListDomainsRequest;
|
|
8894
|
+
type index_gen$l_RegistrarApiListRenewableDomainsRequest = RegistrarApiListRenewableDomainsRequest;
|
|
8895
|
+
type index_gen$l_RegistrarApiListTasksRequest = RegistrarApiListTasksRequest;
|
|
8896
|
+
type index_gen$l_RegistrarApiListTldsRequest = RegistrarApiListTldsRequest;
|
|
8897
|
+
type index_gen$l_RegistrarApiLockDomainTransferRequest = RegistrarApiLockDomainTransferRequest;
|
|
8898
|
+
type index_gen$l_RegistrarApiRegisterExternalDomainRequest = RegistrarApiRegisterExternalDomainRequest;
|
|
8899
|
+
type index_gen$l_RegistrarApiRenewDomainsRequest = RegistrarApiRenewDomainsRequest;
|
|
8900
|
+
type index_gen$l_RegistrarApiSearchAvailableDomainsRequest = RegistrarApiSearchAvailableDomainsRequest;
|
|
8901
|
+
type index_gen$l_RegistrarApiTradeDomainRequest = RegistrarApiTradeDomainRequest;
|
|
8902
|
+
type index_gen$l_RegistrarApiTransferInDomainRequest = RegistrarApiTransferInDomainRequest;
|
|
8903
|
+
type index_gen$l_RegistrarApiUnlockDomainTransferRequest = RegistrarApiUnlockDomainTransferRequest;
|
|
8904
|
+
type index_gen$l_RegistrarApiUpdateContactRequest = RegistrarApiUpdateContactRequest;
|
|
8905
|
+
type index_gen$l_RegistrarApiUpdateDomainHostRequest = RegistrarApiUpdateDomainHostRequest;
|
|
8906
|
+
type index_gen$l_RegistrarApiUpdateDomainRequest = RegistrarApiUpdateDomainRequest;
|
|
8907
|
+
type index_gen$l_RenewableDomain = RenewableDomain;
|
|
8908
|
+
type index_gen$l_RenewableDomainStatus = RenewableDomainStatus;
|
|
8909
|
+
type index_gen$l_RestoreDNSZoneVersionRequest = RestoreDNSZoneVersionRequest;
|
|
8910
|
+
type index_gen$l_RestoreDNSZoneVersionResponse = RestoreDNSZoneVersionResponse;
|
|
8911
|
+
type index_gen$l_SSLCertificate = SSLCertificate;
|
|
8912
|
+
type index_gen$l_SSLCertificateStatus = SSLCertificateStatus;
|
|
8913
|
+
declare const index_gen$l_SSL_CERTIFICATE_TRANSIENT_STATUSES: typeof SSL_CERTIFICATE_TRANSIENT_STATUSES;
|
|
8914
|
+
type index_gen$l_SearchAvailableDomainsResponse = SearchAvailableDomainsResponse;
|
|
8915
|
+
type index_gen$l_TaskType = TaskType;
|
|
8916
|
+
type index_gen$l_Tld = Tld;
|
|
8917
|
+
type index_gen$l_TldOffer = TldOffer;
|
|
8918
|
+
type index_gen$l_TransferInDomainRequestTransferRequest = TransferInDomainRequestTransferRequest;
|
|
8919
|
+
type index_gen$l_UpdateContactRequestQuestion = UpdateContactRequestQuestion;
|
|
8920
|
+
type index_gen$l_UpdateDNSZoneNameserversRequest = UpdateDNSZoneNameserversRequest;
|
|
8921
|
+
type index_gen$l_UpdateDNSZoneNameserversResponse = UpdateDNSZoneNameserversResponse;
|
|
8922
|
+
type index_gen$l_UpdateDNSZoneRecordsRequest = UpdateDNSZoneRecordsRequest;
|
|
8923
|
+
type index_gen$l_UpdateDNSZoneRecordsResponse = UpdateDNSZoneRecordsResponse;
|
|
8924
|
+
type index_gen$l_UpdateDNSZoneRequest = UpdateDNSZoneRequest;
|
|
8925
|
+
declare namespace index_gen$l {
|
|
8926
|
+
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_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 };
|
|
8786
8927
|
}
|
|
8787
8928
|
|
|
8788
8929
|
declare namespace index$n {
|
|
8789
|
-
export { index_gen$
|
|
8930
|
+
export { index_gen$l as v2beta1 };
|
|
8790
8931
|
}
|
|
8791
8932
|
|
|
8792
8933
|
type FlexibleIPStatus = 'unknown' | 'ready' | 'updating' | 'attached' | 'error' | 'detaching' | 'locked';
|
|
@@ -9113,33 +9254,33 @@ declare namespace validationRules_gen$7 {
|
|
|
9113
9254
|
export { validationRules_gen$7_ListFlexibleIPsRequest as ListFlexibleIPsRequest };
|
|
9114
9255
|
}
|
|
9115
9256
|
|
|
9116
|
-
type index_gen$
|
|
9117
|
-
type index_gen$
|
|
9118
|
-
type index_gen$
|
|
9119
|
-
type index_gen$
|
|
9120
|
-
type index_gen$
|
|
9121
|
-
type index_gen$
|
|
9122
|
-
type index_gen$
|
|
9123
|
-
type index_gen$
|
|
9124
|
-
declare const index_gen$
|
|
9125
|
-
type index_gen$
|
|
9126
|
-
type index_gen$
|
|
9127
|
-
type index_gen$
|
|
9128
|
-
type index_gen$
|
|
9129
|
-
type index_gen$
|
|
9130
|
-
type index_gen$
|
|
9131
|
-
type index_gen$
|
|
9132
|
-
type index_gen$
|
|
9133
|
-
type index_gen$
|
|
9134
|
-
declare const index_gen$
|
|
9135
|
-
type index_gen$
|
|
9136
|
-
type index_gen$
|
|
9137
|
-
declare namespace index_gen$
|
|
9138
|
-
export { API$l as API, type index_gen$
|
|
9257
|
+
type index_gen$k_AttachFlexibleIPRequest = AttachFlexibleIPRequest;
|
|
9258
|
+
type index_gen$k_AttachFlexibleIPsResponse = AttachFlexibleIPsResponse;
|
|
9259
|
+
type index_gen$k_CreateFlexibleIPRequest = CreateFlexibleIPRequest;
|
|
9260
|
+
type index_gen$k_DeleteFlexibleIPRequest = DeleteFlexibleIPRequest;
|
|
9261
|
+
type index_gen$k_DeleteMACAddrRequest = DeleteMACAddrRequest;
|
|
9262
|
+
type index_gen$k_DetachFlexibleIPRequest = DetachFlexibleIPRequest;
|
|
9263
|
+
type index_gen$k_DetachFlexibleIPsResponse = DetachFlexibleIPsResponse;
|
|
9264
|
+
type index_gen$k_DuplicateMACAddrRequest = DuplicateMACAddrRequest;
|
|
9265
|
+
declare const index_gen$k_FLEXIBLE_IP_TRANSIENT_STATUSES: typeof FLEXIBLE_IP_TRANSIENT_STATUSES;
|
|
9266
|
+
type index_gen$k_FlexibleIP = FlexibleIP;
|
|
9267
|
+
type index_gen$k_FlexibleIPStatus = FlexibleIPStatus;
|
|
9268
|
+
type index_gen$k_GenerateMACAddrRequest = GenerateMACAddrRequest;
|
|
9269
|
+
type index_gen$k_GetFlexibleIPRequest = GetFlexibleIPRequest;
|
|
9270
|
+
type index_gen$k_ListFlexibleIPsRequestOrderBy = ListFlexibleIPsRequestOrderBy;
|
|
9271
|
+
type index_gen$k_ListFlexibleIPsResponse = ListFlexibleIPsResponse;
|
|
9272
|
+
type index_gen$k_MACAddress = MACAddress;
|
|
9273
|
+
type index_gen$k_MACAddressStatus = MACAddressStatus;
|
|
9274
|
+
type index_gen$k_MACAddressType = MACAddressType;
|
|
9275
|
+
declare const index_gen$k_MAC_ADDRESS_TRANSIENT_STATUSES: typeof MAC_ADDRESS_TRANSIENT_STATUSES;
|
|
9276
|
+
type index_gen$k_MoveMACAddrRequest = MoveMACAddrRequest;
|
|
9277
|
+
type index_gen$k_UpdateFlexibleIPRequest = UpdateFlexibleIPRequest;
|
|
9278
|
+
declare namespace index_gen$k {
|
|
9279
|
+
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$7 as ValidationRules };
|
|
9139
9280
|
}
|
|
9140
9281
|
|
|
9141
9282
|
declare namespace index$m {
|
|
9142
|
-
export { index_gen$
|
|
9283
|
+
export { index_gen$k as v1alpha1 };
|
|
9143
9284
|
}
|
|
9144
9285
|
|
|
9145
9286
|
type CronStatus = 'unknown' | 'ready' | 'deleting' | 'error' | 'locked' | 'creating' | 'pending';
|
|
@@ -9151,7 +9292,7 @@ type FunctionStatus = 'unknown' | 'ready' | 'deleting' | 'error' | 'locked' | 'c
|
|
|
9151
9292
|
type ListCronsRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
9152
9293
|
type ListDomainsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'hostname_asc' | 'hostname_desc';
|
|
9153
9294
|
type ListFunctionsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
9154
|
-
type ListLogsRequestOrderBy = 'timestamp_desc' | 'timestamp_asc';
|
|
9295
|
+
type ListLogsRequestOrderBy$1 = 'timestamp_desc' | 'timestamp_asc';
|
|
9155
9296
|
type ListNamespacesRequestOrderBy$2 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
9156
9297
|
type ListTokensRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
9157
9298
|
type ListTriggersRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
@@ -9168,18 +9309,27 @@ interface SecretHashedValue {
|
|
|
9168
9309
|
interface TriggerMnqNatsClientConfig {
|
|
9169
9310
|
/** @deprecated */
|
|
9170
9311
|
mnqNamespaceId?: string;
|
|
9312
|
+
/** Name of the NATS subject the trigger listens to. */
|
|
9171
9313
|
subject: string;
|
|
9314
|
+
/** ID of the M&Q NATS account. */
|
|
9315
|
+
mnqNatsAccountId: string;
|
|
9316
|
+
/** ID of the M&Q project. */
|
|
9172
9317
|
mnqProjectId: string;
|
|
9318
|
+
/** Region of the M&Q project. */
|
|
9173
9319
|
mnqRegion: string;
|
|
9320
|
+
/** ID of the M&Q credentials used to subscribe to the NATS subject. */
|
|
9174
9321
|
mnqCredentialId?: string;
|
|
9175
|
-
mnqNatsAccountId: string;
|
|
9176
9322
|
}
|
|
9177
9323
|
interface TriggerMnqSqsClientConfig {
|
|
9178
9324
|
/** @deprecated */
|
|
9179
9325
|
mnqNamespaceId?: string;
|
|
9326
|
+
/** Name of the SQS queue the trigger listens to. */
|
|
9180
9327
|
queue: string;
|
|
9328
|
+
/** ID of the M&Q project. */
|
|
9181
9329
|
mnqProjectId: string;
|
|
9330
|
+
/** Region in which the M&Q project is activated. */
|
|
9182
9331
|
mnqRegion: string;
|
|
9332
|
+
/** ID of the M&Q credentials used to read from the SQS queue. */
|
|
9183
9333
|
mnqCredentialId?: string;
|
|
9184
9334
|
}
|
|
9185
9335
|
interface TriggerSqsClientConfig {
|
|
@@ -9195,16 +9345,23 @@ interface Secret$1 {
|
|
|
9195
9345
|
interface CreateTriggerRequestMnqNatsClientConfig$1 {
|
|
9196
9346
|
/** @deprecated */
|
|
9197
9347
|
mnqNamespaceId?: string;
|
|
9348
|
+
/** Name of the NATS subject the trigger should listen to. */
|
|
9198
9349
|
subject: string;
|
|
9350
|
+
/** ID of the M&Q NATS account. */
|
|
9351
|
+
mnqNatsAccountId: string;
|
|
9352
|
+
/** ID of the M&Q project. */
|
|
9199
9353
|
mnqProjectId: string;
|
|
9354
|
+
/** Region of the M&Q project. */
|
|
9200
9355
|
mnqRegion: string;
|
|
9201
|
-
mnqNatsAccountId: string;
|
|
9202
9356
|
}
|
|
9203
9357
|
interface CreateTriggerRequestMnqSqsClientConfig$1 {
|
|
9204
9358
|
/** @deprecated */
|
|
9205
9359
|
mnqNamespaceId?: string;
|
|
9360
|
+
/** Name of the SQS queue the trigger should listen to. */
|
|
9206
9361
|
queue: string;
|
|
9362
|
+
/** You must have activated SQS on this project. */
|
|
9207
9363
|
mnqProjectId: string;
|
|
9364
|
+
/** Region in which the M&Q project is activated. */
|
|
9208
9365
|
mnqRegion: string;
|
|
9209
9366
|
}
|
|
9210
9367
|
interface CreateTriggerRequestSqsClientConfig {
|
|
@@ -9302,7 +9459,7 @@ interface Function {
|
|
|
9302
9459
|
httpOption: FunctionHttpOption;
|
|
9303
9460
|
runtimeMessage: string;
|
|
9304
9461
|
}
|
|
9305
|
-
interface Log {
|
|
9462
|
+
interface Log$1 {
|
|
9306
9463
|
/** Message of the log. */
|
|
9307
9464
|
message: string;
|
|
9308
9465
|
/** Timestamp of the log. */
|
|
@@ -9369,28 +9526,41 @@ interface Token {
|
|
|
9369
9526
|
expiresAt?: Date;
|
|
9370
9527
|
}
|
|
9371
9528
|
interface Trigger {
|
|
9529
|
+
/** ID of the trigger. */
|
|
9372
9530
|
id: string;
|
|
9531
|
+
/** Name of the trigger. */
|
|
9373
9532
|
name: string;
|
|
9533
|
+
/** Description of the trigger. */
|
|
9374
9534
|
description: string;
|
|
9535
|
+
/** ID of the function to trigger. */
|
|
9536
|
+
functionId: string;
|
|
9537
|
+
/** Type of the input. */
|
|
9375
9538
|
inputType: TriggerInputType;
|
|
9539
|
+
/** Status of the trigger. */
|
|
9376
9540
|
status: TriggerStatus;
|
|
9541
|
+
/** Error message of the trigger. */
|
|
9377
9542
|
errorMessage?: string;
|
|
9378
|
-
functionId: string;
|
|
9379
9543
|
/**
|
|
9380
|
-
*
|
|
9381
|
-
*
|
|
9544
|
+
* Configuration for a Scaleway M&Q SQS queue.
|
|
9545
|
+
*
|
|
9546
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
9547
|
+
* 'sqsConfig' could be set.
|
|
9382
9548
|
*/
|
|
9383
9549
|
scwSqsConfig?: TriggerMnqSqsClientConfig;
|
|
9384
9550
|
/**
|
|
9385
|
-
*
|
|
9386
|
-
*
|
|
9551
|
+
* Configuration for a Scaleway M&Q NATS subject.
|
|
9552
|
+
*
|
|
9553
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
9554
|
+
* 'sqsConfig' could be set.
|
|
9387
9555
|
*/
|
|
9388
|
-
|
|
9556
|
+
scwNatsConfig?: TriggerMnqNatsClientConfig;
|
|
9389
9557
|
/**
|
|
9390
|
-
*
|
|
9391
|
-
*
|
|
9558
|
+
* Configuration for an AWS SQS queue.
|
|
9559
|
+
*
|
|
9560
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
9561
|
+
* 'sqsConfig' could be set.
|
|
9392
9562
|
*/
|
|
9393
|
-
|
|
9563
|
+
sqsConfig?: TriggerSqsClientConfig;
|
|
9394
9564
|
}
|
|
9395
9565
|
interface UpdateTriggerRequestSqsClientConfig {
|
|
9396
9566
|
accessKey?: string;
|
|
@@ -9505,24 +9675,33 @@ type CreateTriggerRequest$1 = {
|
|
|
9505
9675
|
* config.
|
|
9506
9676
|
*/
|
|
9507
9677
|
region?: Region;
|
|
9678
|
+
/** Name of the trigger. */
|
|
9508
9679
|
name: string;
|
|
9509
|
-
|
|
9680
|
+
/** ID of the function to trigger. */
|
|
9510
9681
|
functionId: string;
|
|
9682
|
+
/** Description of the trigger. */
|
|
9683
|
+
description?: string;
|
|
9511
9684
|
/**
|
|
9512
|
-
*
|
|
9513
|
-
*
|
|
9685
|
+
* Configuration for a Scaleway M&Q SQS queue.
|
|
9686
|
+
*
|
|
9687
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
9688
|
+
* 'sqsConfig' could be set.
|
|
9514
9689
|
*/
|
|
9515
9690
|
scwSqsConfig?: CreateTriggerRequestMnqSqsClientConfig$1;
|
|
9516
9691
|
/**
|
|
9517
|
-
*
|
|
9518
|
-
*
|
|
9692
|
+
* Configuration for a Scaleway M&Q NATS subject.
|
|
9693
|
+
*
|
|
9694
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
9695
|
+
* 'sqsConfig' could be set.
|
|
9519
9696
|
*/
|
|
9520
|
-
|
|
9697
|
+
scwNatsConfig?: CreateTriggerRequestMnqNatsClientConfig$1;
|
|
9521
9698
|
/**
|
|
9522
|
-
*
|
|
9523
|
-
*
|
|
9699
|
+
* Configuration for an AWS SQS queue.
|
|
9700
|
+
*
|
|
9701
|
+
* One-of ('config'): at most one of 'scwSqsConfig', 'scwNatsConfig',
|
|
9702
|
+
* 'sqsConfig' could be set.
|
|
9524
9703
|
*/
|
|
9525
|
-
|
|
9704
|
+
sqsConfig?: CreateTriggerRequestSqsClientConfig;
|
|
9526
9705
|
};
|
|
9527
9706
|
type DeleteCronRequest = {
|
|
9528
9707
|
/**
|
|
@@ -9575,6 +9754,7 @@ type DeleteTriggerRequest = {
|
|
|
9575
9754
|
* config.
|
|
9576
9755
|
*/
|
|
9577
9756
|
region?: Region;
|
|
9757
|
+
/** ID of the trigger to delete. */
|
|
9578
9758
|
triggerId: string;
|
|
9579
9759
|
};
|
|
9580
9760
|
type DeployFunctionRequest = {
|
|
@@ -9661,6 +9841,7 @@ type GetTriggerRequest = {
|
|
|
9661
9841
|
* config.
|
|
9662
9842
|
*/
|
|
9663
9843
|
region?: Region;
|
|
9844
|
+
/** ID of the trigger to get. */
|
|
9664
9845
|
triggerId: string;
|
|
9665
9846
|
};
|
|
9666
9847
|
type IssueJWTRequest = {
|
|
@@ -9757,7 +9938,7 @@ interface ListFunctionsResponse {
|
|
|
9757
9938
|
/** Total number of functions. */
|
|
9758
9939
|
totalCount: number;
|
|
9759
9940
|
}
|
|
9760
|
-
type ListLogsRequest = {
|
|
9941
|
+
type ListLogsRequest$2 = {
|
|
9761
9942
|
/**
|
|
9762
9943
|
* Region to target. If none is passed will use default region from the
|
|
9763
9944
|
* config.
|
|
@@ -9770,11 +9951,11 @@ type ListLogsRequest = {
|
|
|
9770
9951
|
/** Number of logs per page. */
|
|
9771
9952
|
pageSize?: number;
|
|
9772
9953
|
/** Order of the logs. */
|
|
9773
|
-
orderBy?: ListLogsRequestOrderBy;
|
|
9954
|
+
orderBy?: ListLogsRequestOrderBy$1;
|
|
9774
9955
|
};
|
|
9775
|
-
interface ListLogsResponse {
|
|
9956
|
+
interface ListLogsResponse$1 {
|
|
9776
9957
|
/** Array of logs. */
|
|
9777
|
-
logs: Log[];
|
|
9958
|
+
logs: Log$1[];
|
|
9778
9959
|
/** Total number of logs. */
|
|
9779
9960
|
totalCount: number;
|
|
9780
9961
|
}
|
|
@@ -9829,28 +10010,39 @@ type ListTriggersRequest = {
|
|
|
9829
10010
|
* config.
|
|
9830
10011
|
*/
|
|
9831
10012
|
region?: Region;
|
|
10013
|
+
/** Page number to return. */
|
|
9832
10014
|
page?: number;
|
|
10015
|
+
/** Maximum number of triggers to return per page. */
|
|
9833
10016
|
pageSize?: number;
|
|
10017
|
+
/** Order in which to return results. */
|
|
9834
10018
|
orderBy?: ListTriggersRequestOrderBy;
|
|
9835
10019
|
/**
|
|
10020
|
+
* ID of the function the triggers belongs to.
|
|
10021
|
+
*
|
|
9836
10022
|
* One-of ('scope'): at most one of 'functionId', 'namespaceId', 'projectId'
|
|
9837
10023
|
* could be set.
|
|
9838
10024
|
*/
|
|
9839
10025
|
functionId?: string;
|
|
9840
10026
|
/**
|
|
10027
|
+
* ID of the namespace the triggers belongs to.
|
|
10028
|
+
*
|
|
9841
10029
|
* One-of ('scope'): at most one of 'functionId', 'namespaceId', 'projectId'
|
|
9842
10030
|
* could be set.
|
|
9843
10031
|
*/
|
|
9844
10032
|
namespaceId?: string;
|
|
9845
10033
|
/**
|
|
10034
|
+
* ID of the project the triggers belongs to.
|
|
10035
|
+
*
|
|
9846
10036
|
* One-of ('scope'): at most one of 'functionId', 'namespaceId', 'projectId'
|
|
9847
10037
|
* could be set.
|
|
9848
10038
|
*/
|
|
9849
10039
|
projectId?: string;
|
|
9850
10040
|
};
|
|
9851
10041
|
interface ListTriggersResponse {
|
|
9852
|
-
triggers
|
|
10042
|
+
/** Total count of existing triggers (matching any filters specified). */
|
|
9853
10043
|
totalCount: number;
|
|
10044
|
+
/** Triggers on this page. */
|
|
10045
|
+
triggers: Trigger[];
|
|
9854
10046
|
}
|
|
9855
10047
|
type UpdateCronRequest = {
|
|
9856
10048
|
/**
|
|
@@ -9929,10 +10121,17 @@ type UpdateTriggerRequest$1 = {
|
|
|
9929
10121
|
* config.
|
|
9930
10122
|
*/
|
|
9931
10123
|
region?: Region;
|
|
10124
|
+
/** ID of the trigger to update. */
|
|
9932
10125
|
triggerId: string;
|
|
10126
|
+
/** Name of the trigger. */
|
|
9933
10127
|
name?: string;
|
|
10128
|
+
/** Description of the trigger. */
|
|
9934
10129
|
description?: string;
|
|
9935
|
-
/**
|
|
10130
|
+
/**
|
|
10131
|
+
* Configuration for an AWS SQS queue.
|
|
10132
|
+
*
|
|
10133
|
+
* One-of ('config'): at most one of 'sqsConfig' could be set.
|
|
10134
|
+
*/
|
|
9936
10135
|
sqsConfig?: UpdateTriggerRequestSqsClientConfig;
|
|
9937
10136
|
};
|
|
9938
10137
|
interface UploadURL {
|
|
@@ -10124,7 +10323,7 @@ declare class API$k extends API$v {
|
|
|
10124
10323
|
* @returns A Promise of Cron
|
|
10125
10324
|
*/
|
|
10126
10325
|
deleteCron: (request: Readonly<DeleteCronRequest>) => Promise<Cron>;
|
|
10127
|
-
protected pageOfListLogs: (request: Readonly<ListLogsRequest>) => Promise<ListLogsResponse>;
|
|
10326
|
+
protected pageOfListLogs: (request: Readonly<ListLogsRequest$2>) => Promise<ListLogsResponse$1>;
|
|
10128
10327
|
/**
|
|
10129
10328
|
* List application logs. List the application logs of the function with the
|
|
10130
10329
|
* specified ID.
|
|
@@ -10132,9 +10331,9 @@ declare class API$k extends API$v {
|
|
|
10132
10331
|
* @param request - The request {@link ListLogsRequest}
|
|
10133
10332
|
* @returns A Promise of ListLogsResponse
|
|
10134
10333
|
*/
|
|
10135
|
-
listLogs: (request: Readonly<ListLogsRequest>) => Promise<ListLogsResponse> & {
|
|
10136
|
-
all: () => Promise<Log[]>;
|
|
10137
|
-
[Symbol.asyncIterator]: () => AsyncGenerator<Log[], void, void>;
|
|
10334
|
+
listLogs: (request: Readonly<ListLogsRequest$2>) => Promise<ListLogsResponse$1> & {
|
|
10335
|
+
all: () => Promise<Log$1[]>;
|
|
10336
|
+
[Symbol.asyncIterator]: () => AsyncGenerator<Log$1[], void, void>;
|
|
10138
10337
|
};
|
|
10139
10338
|
protected pageOfListDomains: (request: Readonly<ListDomainsRequest$1>) => Promise<ListDomainsResponse$1>;
|
|
10140
10339
|
/**
|
|
@@ -10226,7 +10425,19 @@ declare class API$k extends API$v {
|
|
|
10226
10425
|
* @returns A Promise of Token
|
|
10227
10426
|
*/
|
|
10228
10427
|
deleteToken: (request: Readonly<DeleteTokenRequest>) => Promise<Token>;
|
|
10428
|
+
/**
|
|
10429
|
+
* Create a trigger. Create a new trigger for a specified function.
|
|
10430
|
+
*
|
|
10431
|
+
* @param request - The request {@link CreateTriggerRequest}
|
|
10432
|
+
* @returns A Promise of Trigger
|
|
10433
|
+
*/
|
|
10229
10434
|
createTrigger: (request: Readonly<CreateTriggerRequest$1>) => Promise<Trigger>;
|
|
10435
|
+
/**
|
|
10436
|
+
* Get a trigger. Get a trigger with a specified ID.
|
|
10437
|
+
*
|
|
10438
|
+
* @param request - The request {@link GetTriggerRequest}
|
|
10439
|
+
* @returns A Promise of Trigger
|
|
10440
|
+
*/
|
|
10230
10441
|
getTrigger: (request: Readonly<GetTriggerRequest>) => Promise<Trigger>;
|
|
10231
10442
|
/**
|
|
10232
10443
|
* Waits for {@link Trigger} to be in a final state.
|
|
@@ -10237,11 +10448,30 @@ declare class API$k extends API$v {
|
|
|
10237
10448
|
*/
|
|
10238
10449
|
waitForTrigger: (request: Readonly<GetTriggerRequest>, options?: Readonly<WaitForOptions<Trigger>>) => Promise<Trigger>;
|
|
10239
10450
|
protected pageOfListTriggers: (request?: Readonly<ListTriggersRequest>) => Promise<ListTriggersResponse>;
|
|
10451
|
+
/**
|
|
10452
|
+
* List all triggers. List all triggers belonging to a specified Organization
|
|
10453
|
+
* or Project.
|
|
10454
|
+
*
|
|
10455
|
+
* @param request - The request {@link ListTriggersRequest}
|
|
10456
|
+
* @returns A Promise of ListTriggersResponse
|
|
10457
|
+
*/
|
|
10240
10458
|
listTriggers: (request?: Readonly<ListTriggersRequest>) => Promise<ListTriggersResponse> & {
|
|
10241
10459
|
all: () => Promise<Trigger[]>;
|
|
10242
10460
|
[Symbol.asyncIterator]: () => AsyncGenerator<Trigger[], void, void>;
|
|
10243
10461
|
};
|
|
10462
|
+
/**
|
|
10463
|
+
* Update a trigger. Update a trigger with a specified ID.
|
|
10464
|
+
*
|
|
10465
|
+
* @param request - The request {@link UpdateTriggerRequest}
|
|
10466
|
+
* @returns A Promise of Trigger
|
|
10467
|
+
*/
|
|
10244
10468
|
updateTrigger: (request: Readonly<UpdateTriggerRequest$1>) => Promise<Trigger>;
|
|
10469
|
+
/**
|
|
10470
|
+
* Delete a trigger. Delete a trigger with a specified ID.
|
|
10471
|
+
*
|
|
10472
|
+
* @param request - The request {@link DeleteTriggerRequest}
|
|
10473
|
+
* @returns A Promise of Trigger
|
|
10474
|
+
*/
|
|
10245
10475
|
deleteTrigger: (request: Readonly<DeleteTriggerRequest>) => Promise<Trigger>;
|
|
10246
10476
|
}
|
|
10247
10477
|
|
|
@@ -10306,75 +10536,71 @@ declare namespace validationRules_gen$6 {
|
|
|
10306
10536
|
export { validationRules_gen$6_CreateTriggerRequest as CreateTriggerRequest, validationRules_gen$6_CreateTriggerRequestMnqNatsClientConfig as CreateTriggerRequestMnqNatsClientConfig, validationRules_gen$6_CreateTriggerRequestMnqSqsClientConfig as CreateTriggerRequestMnqSqsClientConfig, validationRules_gen$6_UpdateTriggerRequest as UpdateTriggerRequest };
|
|
10307
10537
|
}
|
|
10308
10538
|
|
|
10309
|
-
declare const index_gen$
|
|
10310
|
-
type index_gen$
|
|
10311
|
-
type index_gen$
|
|
10312
|
-
type index_gen$
|
|
10313
|
-
type index_gen$
|
|
10314
|
-
type index_gen$
|
|
10315
|
-
type index_gen$
|
|
10316
|
-
type index_gen$
|
|
10317
|
-
type index_gen$
|
|
10318
|
-
type index_gen$
|
|
10319
|
-
type index_gen$
|
|
10320
|
-
type index_gen$
|
|
10321
|
-
type index_gen$
|
|
10322
|
-
type index_gen$
|
|
10323
|
-
declare const index_gen$
|
|
10324
|
-
type index_gen$
|
|
10325
|
-
type index_gen$
|
|
10326
|
-
type index_gen$
|
|
10327
|
-
type index_gen$
|
|
10328
|
-
type index_gen$
|
|
10329
|
-
type index_gen$
|
|
10330
|
-
type index_gen$
|
|
10331
|
-
type index_gen$
|
|
10332
|
-
type index_gen$
|
|
10333
|
-
type index_gen$
|
|
10334
|
-
type index_gen$
|
|
10335
|
-
type index_gen$
|
|
10336
|
-
type index_gen$
|
|
10337
|
-
type index_gen$
|
|
10338
|
-
type index_gen$
|
|
10339
|
-
type index_gen$
|
|
10340
|
-
type index_gen$
|
|
10341
|
-
type index_gen$
|
|
10342
|
-
type index_gen$
|
|
10343
|
-
type index_gen$
|
|
10344
|
-
type index_gen$
|
|
10345
|
-
type index_gen$
|
|
10346
|
-
type index_gen$
|
|
10347
|
-
type index_gen$
|
|
10348
|
-
type index_gen$
|
|
10349
|
-
type index_gen$
|
|
10350
|
-
type index_gen$
|
|
10351
|
-
type index_gen$
|
|
10352
|
-
type index_gen$
|
|
10353
|
-
type index_gen$
|
|
10354
|
-
|
|
10355
|
-
|
|
10356
|
-
type index_gen$
|
|
10357
|
-
type index_gen$
|
|
10358
|
-
|
|
10359
|
-
|
|
10360
|
-
type index_gen$
|
|
10361
|
-
type index_gen$
|
|
10362
|
-
type index_gen$
|
|
10363
|
-
type index_gen$
|
|
10364
|
-
type index_gen$
|
|
10365
|
-
type index_gen$
|
|
10366
|
-
type index_gen$
|
|
10367
|
-
type index_gen$
|
|
10368
|
-
|
|
10369
|
-
type index_gen$
|
|
10370
|
-
type index_gen$i_UpdateTriggerRequestSqsClientConfig = UpdateTriggerRequestSqsClientConfig;
|
|
10371
|
-
type index_gen$i_UploadURL = UploadURL;
|
|
10372
|
-
declare namespace index_gen$i {
|
|
10373
|
-
export { API$k as API, index_gen$i_CRON_TRANSIENT_STATUSES as CRON_TRANSIENT_STATUSES, type index_gen$i_CreateCronRequest as CreateCronRequest, type CreateDomainRequest$1 as CreateDomainRequest, type index_gen$i_CreateFunctionRequest as CreateFunctionRequest, type CreateNamespaceRequest$2 as CreateNamespaceRequest, type index_gen$i_CreateTokenRequest as CreateTokenRequest, type CreateTriggerRequest$1 as CreateTriggerRequest, type CreateTriggerRequestMnqNatsClientConfig$1 as CreateTriggerRequestMnqNatsClientConfig, type CreateTriggerRequestMnqSqsClientConfig$1 as CreateTriggerRequestMnqSqsClientConfig, type index_gen$i_CreateTriggerRequestSqsClientConfig as CreateTriggerRequestSqsClientConfig, type index_gen$i_Cron as Cron, type index_gen$i_CronStatus as CronStatus, DOMAIN_TRANSIENT_STATUSES$1 as DOMAIN_TRANSIENT_STATUSES, type index_gen$i_DeleteCronRequest as DeleteCronRequest, type index_gen$i_DeleteDomainRequest as DeleteDomainRequest, type index_gen$i_DeleteFunctionRequest as DeleteFunctionRequest, type DeleteNamespaceRequest$2 as DeleteNamespaceRequest, type index_gen$i_DeleteTokenRequest as DeleteTokenRequest, type index_gen$i_DeleteTriggerRequest as DeleteTriggerRequest, type index_gen$i_DeployFunctionRequest as DeployFunctionRequest, type Domain$1 as Domain, type DomainStatus$1 as DomainStatus, type index_gen$i_DownloadURL as DownloadURL, index_gen$i_FUNCTION_TRANSIENT_STATUSES as FUNCTION_TRANSIENT_STATUSES, type index_gen$i_Function as Function, type index_gen$i_FunctionHttpOption as FunctionHttpOption, type index_gen$i_FunctionPrivacy as FunctionPrivacy, type index_gen$i_FunctionRuntime as FunctionRuntime, type index_gen$i_FunctionStatus as FunctionStatus, type index_gen$i_GetCronRequest as GetCronRequest, type GetDomainRequest$1 as GetDomainRequest, type index_gen$i_GetFunctionDownloadURLRequest as GetFunctionDownloadURLRequest, type index_gen$i_GetFunctionRequest as GetFunctionRequest, type index_gen$i_GetFunctionUploadURLRequest as GetFunctionUploadURLRequest, type GetNamespaceRequest$2 as GetNamespaceRequest, type index_gen$i_GetTokenRequest as GetTokenRequest, type index_gen$i_GetTriggerRequest as GetTriggerRequest, type index_gen$i_IssueJWTRequest as IssueJWTRequest, type index_gen$i_ListCronsRequest as ListCronsRequest, type index_gen$i_ListCronsRequestOrderBy as ListCronsRequestOrderBy, type index_gen$i_ListCronsResponse as ListCronsResponse, type ListDomainsRequest$1 as ListDomainsRequest, type index_gen$i_ListDomainsRequestOrderBy as ListDomainsRequestOrderBy, type ListDomainsResponse$1 as ListDomainsResponse, type index_gen$i_ListFunctionRuntimesRequest as ListFunctionRuntimesRequest, type index_gen$i_ListFunctionRuntimesResponse as ListFunctionRuntimesResponse, type index_gen$i_ListFunctionsRequest as ListFunctionsRequest, type index_gen$i_ListFunctionsRequestOrderBy as ListFunctionsRequestOrderBy, type index_gen$i_ListFunctionsResponse as ListFunctionsResponse, type index_gen$i_ListLogsRequest as ListLogsRequest, type index_gen$i_ListLogsRequestOrderBy as ListLogsRequestOrderBy, type index_gen$i_ListLogsResponse as ListLogsResponse, type ListNamespacesRequest$2 as ListNamespacesRequest, type ListNamespacesRequestOrderBy$2 as ListNamespacesRequestOrderBy, type ListNamespacesResponse$2 as ListNamespacesResponse, type index_gen$i_ListTokensRequest as ListTokensRequest, type index_gen$i_ListTokensRequestOrderBy as ListTokensRequestOrderBy, type index_gen$i_ListTokensResponse as ListTokensResponse, type index_gen$i_ListTriggersRequest as ListTriggersRequest, type index_gen$i_ListTriggersRequestOrderBy as ListTriggersRequestOrderBy, type index_gen$i_ListTriggersResponse as ListTriggersResponse, type index_gen$i_Log as Log, type index_gen$i_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$i_RuntimeStatus as RuntimeStatus, type Secret$1 as Secret, type index_gen$i_SecretHashedValue as SecretHashedValue, index_gen$i_TOKEN_TRANSIENT_STATUSES as TOKEN_TRANSIENT_STATUSES, index_gen$i_TRIGGER_TRANSIENT_STATUSES as TRIGGER_TRANSIENT_STATUSES, type index_gen$i_Token as Token, type index_gen$i_TokenStatus as TokenStatus, type index_gen$i_Trigger as Trigger, type index_gen$i_TriggerInputType as TriggerInputType, type index_gen$i_TriggerMnqNatsClientConfig as TriggerMnqNatsClientConfig, type index_gen$i_TriggerMnqSqsClientConfig as TriggerMnqSqsClientConfig, type index_gen$i_TriggerSqsClientConfig as TriggerSqsClientConfig, type index_gen$i_TriggerStatus as TriggerStatus, type index_gen$i_UpdateCronRequest as UpdateCronRequest, type index_gen$i_UpdateFunctionRequest as UpdateFunctionRequest, type UpdateNamespaceRequest$2 as UpdateNamespaceRequest, type UpdateTriggerRequest$1 as UpdateTriggerRequest, type index_gen$i_UpdateTriggerRequestSqsClientConfig as UpdateTriggerRequestSqsClientConfig, type index_gen$i_UploadURL as UploadURL, validationRules_gen$6 as ValidationRules };
|
|
10539
|
+
declare const index_gen$j_CRON_TRANSIENT_STATUSES: typeof CRON_TRANSIENT_STATUSES;
|
|
10540
|
+
type index_gen$j_CreateCronRequest = CreateCronRequest;
|
|
10541
|
+
type index_gen$j_CreateFunctionRequest = CreateFunctionRequest;
|
|
10542
|
+
type index_gen$j_CreateTokenRequest = CreateTokenRequest;
|
|
10543
|
+
type index_gen$j_CreateTriggerRequestSqsClientConfig = CreateTriggerRequestSqsClientConfig;
|
|
10544
|
+
type index_gen$j_Cron = Cron;
|
|
10545
|
+
type index_gen$j_CronStatus = CronStatus;
|
|
10546
|
+
type index_gen$j_DeleteCronRequest = DeleteCronRequest;
|
|
10547
|
+
type index_gen$j_DeleteDomainRequest = DeleteDomainRequest;
|
|
10548
|
+
type index_gen$j_DeleteFunctionRequest = DeleteFunctionRequest;
|
|
10549
|
+
type index_gen$j_DeleteTokenRequest = DeleteTokenRequest;
|
|
10550
|
+
type index_gen$j_DeleteTriggerRequest = DeleteTriggerRequest;
|
|
10551
|
+
type index_gen$j_DeployFunctionRequest = DeployFunctionRequest;
|
|
10552
|
+
type index_gen$j_DownloadURL = DownloadURL;
|
|
10553
|
+
declare const index_gen$j_FUNCTION_TRANSIENT_STATUSES: typeof FUNCTION_TRANSIENT_STATUSES;
|
|
10554
|
+
type index_gen$j_Function = Function;
|
|
10555
|
+
type index_gen$j_FunctionHttpOption = FunctionHttpOption;
|
|
10556
|
+
type index_gen$j_FunctionPrivacy = FunctionPrivacy;
|
|
10557
|
+
type index_gen$j_FunctionRuntime = FunctionRuntime;
|
|
10558
|
+
type index_gen$j_FunctionStatus = FunctionStatus;
|
|
10559
|
+
type index_gen$j_GetCronRequest = GetCronRequest;
|
|
10560
|
+
type index_gen$j_GetFunctionDownloadURLRequest = GetFunctionDownloadURLRequest;
|
|
10561
|
+
type index_gen$j_GetFunctionRequest = GetFunctionRequest;
|
|
10562
|
+
type index_gen$j_GetFunctionUploadURLRequest = GetFunctionUploadURLRequest;
|
|
10563
|
+
type index_gen$j_GetTokenRequest = GetTokenRequest;
|
|
10564
|
+
type index_gen$j_GetTriggerRequest = GetTriggerRequest;
|
|
10565
|
+
type index_gen$j_IssueJWTRequest = IssueJWTRequest;
|
|
10566
|
+
type index_gen$j_ListCronsRequest = ListCronsRequest;
|
|
10567
|
+
type index_gen$j_ListCronsRequestOrderBy = ListCronsRequestOrderBy;
|
|
10568
|
+
type index_gen$j_ListCronsResponse = ListCronsResponse;
|
|
10569
|
+
type index_gen$j_ListDomainsRequestOrderBy = ListDomainsRequestOrderBy;
|
|
10570
|
+
type index_gen$j_ListFunctionRuntimesRequest = ListFunctionRuntimesRequest;
|
|
10571
|
+
type index_gen$j_ListFunctionRuntimesResponse = ListFunctionRuntimesResponse;
|
|
10572
|
+
type index_gen$j_ListFunctionsRequest = ListFunctionsRequest;
|
|
10573
|
+
type index_gen$j_ListFunctionsRequestOrderBy = ListFunctionsRequestOrderBy;
|
|
10574
|
+
type index_gen$j_ListFunctionsResponse = ListFunctionsResponse;
|
|
10575
|
+
type index_gen$j_ListTokensRequest = ListTokensRequest;
|
|
10576
|
+
type index_gen$j_ListTokensRequestOrderBy = ListTokensRequestOrderBy;
|
|
10577
|
+
type index_gen$j_ListTokensResponse = ListTokensResponse;
|
|
10578
|
+
type index_gen$j_ListTriggersRequest = ListTriggersRequest;
|
|
10579
|
+
type index_gen$j_ListTriggersRequestOrderBy = ListTriggersRequestOrderBy;
|
|
10580
|
+
type index_gen$j_ListTriggersResponse = ListTriggersResponse;
|
|
10581
|
+
type index_gen$j_LogStream = LogStream;
|
|
10582
|
+
type index_gen$j_RuntimeStatus = RuntimeStatus;
|
|
10583
|
+
type index_gen$j_SecretHashedValue = SecretHashedValue;
|
|
10584
|
+
declare const index_gen$j_TOKEN_TRANSIENT_STATUSES: typeof TOKEN_TRANSIENT_STATUSES;
|
|
10585
|
+
declare const index_gen$j_TRIGGER_TRANSIENT_STATUSES: typeof TRIGGER_TRANSIENT_STATUSES;
|
|
10586
|
+
type index_gen$j_Token = Token;
|
|
10587
|
+
type index_gen$j_TokenStatus = TokenStatus;
|
|
10588
|
+
type index_gen$j_Trigger = Trigger;
|
|
10589
|
+
type index_gen$j_TriggerInputType = TriggerInputType;
|
|
10590
|
+
type index_gen$j_TriggerMnqNatsClientConfig = TriggerMnqNatsClientConfig;
|
|
10591
|
+
type index_gen$j_TriggerMnqSqsClientConfig = TriggerMnqSqsClientConfig;
|
|
10592
|
+
type index_gen$j_TriggerSqsClientConfig = TriggerSqsClientConfig;
|
|
10593
|
+
type index_gen$j_TriggerStatus = TriggerStatus;
|
|
10594
|
+
type index_gen$j_UpdateCronRequest = UpdateCronRequest;
|
|
10595
|
+
type index_gen$j_UpdateFunctionRequest = UpdateFunctionRequest;
|
|
10596
|
+
type index_gen$j_UpdateTriggerRequestSqsClientConfig = UpdateTriggerRequestSqsClientConfig;
|
|
10597
|
+
type index_gen$j_UploadURL = UploadURL;
|
|
10598
|
+
declare namespace index_gen$j {
|
|
10599
|
+
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$2 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$2 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$2 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$2 as ListNamespacesRequest, type ListNamespacesRequestOrderBy$2 as ListNamespacesRequestOrderBy, type ListNamespacesResponse$2 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$2 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$2 as UpdateNamespaceRequest, type UpdateTriggerRequest$1 as UpdateTriggerRequest, type index_gen$j_UpdateTriggerRequestSqsClientConfig as UpdateTriggerRequestSqsClientConfig, type index_gen$j_UploadURL as UploadURL, validationRules_gen$6 as ValidationRules };
|
|
10374
10600
|
}
|
|
10375
10601
|
|
|
10376
10602
|
declare namespace index$l {
|
|
10377
|
-
export { index_gen$
|
|
10603
|
+
export { index_gen$j as v1beta1 };
|
|
10378
10604
|
}
|
|
10379
10605
|
|
|
10380
10606
|
type BearerType = 'unknown_bearer_type' | 'user' | 'application';
|
|
@@ -10382,11 +10608,14 @@ type ListAPIKeysRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated
|
|
|
10382
10608
|
type ListApplicationsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc';
|
|
10383
10609
|
type ListGroupsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc';
|
|
10384
10610
|
type ListJWTsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc';
|
|
10611
|
+
type ListLogsRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
10385
10612
|
type ListPermissionSetsRequestOrderBy = 'name_asc' | 'name_desc' | 'created_at_asc' | 'created_at_desc';
|
|
10386
10613
|
type ListPoliciesRequestOrderBy = 'policy_name_asc' | 'policy_name_desc' | 'created_at_asc' | 'created_at_desc';
|
|
10387
10614
|
type ListQuotaRequestOrderBy = 'name_asc' | 'name_desc';
|
|
10388
10615
|
type ListSSHKeysRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc';
|
|
10389
10616
|
type ListUsersRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'email_asc' | 'email_desc' | 'last_login_asc' | 'last_login_desc';
|
|
10617
|
+
type LogAction = 'unknown_action' | 'created' | 'updated' | 'deleted';
|
|
10618
|
+
type LogResourceType = 'unknown_resource_type' | 'api_key' | 'user' | 'application' | 'group' | 'policy';
|
|
10390
10619
|
type PermissionSetScopeType = 'unknown_scope_type' | 'projects' | 'organization' | 'account_root_user';
|
|
10391
10620
|
type UserStatus = 'unknown_status' | 'invitation_pending' | 'activated';
|
|
10392
10621
|
type UserType = 'unknown_type' | 'guest' | 'owner';
|
|
@@ -10494,6 +10723,26 @@ interface Group {
|
|
|
10494
10723
|
/** IDs of applications attached to this group. */
|
|
10495
10724
|
applicationIds: string[];
|
|
10496
10725
|
}
|
|
10726
|
+
interface Log {
|
|
10727
|
+
/** Log ID. */
|
|
10728
|
+
id: string;
|
|
10729
|
+
/** Creation date of the log. */
|
|
10730
|
+
createdAt?: Date;
|
|
10731
|
+
/** IP address of the HTTP request linked to the log. */
|
|
10732
|
+
ip: string;
|
|
10733
|
+
/** User-Agent of the HTTP request linked to the log. */
|
|
10734
|
+
userAgent: string;
|
|
10735
|
+
/** Action linked to the log. */
|
|
10736
|
+
action: LogAction;
|
|
10737
|
+
/** ID of the principal at the origin of the log. */
|
|
10738
|
+
bearerId: string;
|
|
10739
|
+
/** ID of Organization linked to the log. */
|
|
10740
|
+
organizationId: string;
|
|
10741
|
+
/** Type of the resource linked to the log. */
|
|
10742
|
+
resourceType: LogResourceType;
|
|
10743
|
+
/** ID of the resource linked to the log. */
|
|
10744
|
+
resourceId: string;
|
|
10745
|
+
}
|
|
10497
10746
|
interface PermissionSet {
|
|
10498
10747
|
/** Id of the permission set. */
|
|
10499
10748
|
id: string;
|
|
@@ -10811,6 +11060,10 @@ type GetJWTRequest = {
|
|
|
10811
11060
|
/** JWT ID of the JWT to get. */
|
|
10812
11061
|
jti: string;
|
|
10813
11062
|
};
|
|
11063
|
+
type GetLogRequest = {
|
|
11064
|
+
/** ID of the log. */
|
|
11065
|
+
logId: string;
|
|
11066
|
+
};
|
|
10814
11067
|
type GetPolicyRequest = {
|
|
10815
11068
|
/** Id of policy to search. */
|
|
10816
11069
|
policyId: string;
|
|
@@ -10931,6 +11184,32 @@ interface ListJWTsResponse {
|
|
|
10931
11184
|
jwts: JWT[];
|
|
10932
11185
|
totalCount: number;
|
|
10933
11186
|
}
|
|
11187
|
+
type ListLogsRequest$1 = {
|
|
11188
|
+
/** Criteria for sorting results. */
|
|
11189
|
+
orderBy?: ListLogsRequestOrderBy;
|
|
11190
|
+
/** Filter by Organization ID. */
|
|
11191
|
+
organizationId?: string;
|
|
11192
|
+
/** Number of results per page. Value must be between 1 and 100. */
|
|
11193
|
+
pageSize?: number;
|
|
11194
|
+
/** Page number. Value must be greater to 1. */
|
|
11195
|
+
page?: number;
|
|
11196
|
+
/** Defined whether or not to filter out logs created after this timestamp. */
|
|
11197
|
+
createdAfter?: Date;
|
|
11198
|
+
/** Defined whether or not to filter out logs created before this timestamp. */
|
|
11199
|
+
createdBefore?: Date;
|
|
11200
|
+
/** Defined whether or not to filter out by a specific action. */
|
|
11201
|
+
action?: LogAction;
|
|
11202
|
+
/** Defined whether or not to filter out by a specific type of resource. */
|
|
11203
|
+
resourceType?: LogResourceType;
|
|
11204
|
+
/** Defined whether or not to filter out log by bearer ID or resource ID. */
|
|
11205
|
+
search?: string;
|
|
11206
|
+
};
|
|
11207
|
+
interface ListLogsResponse {
|
|
11208
|
+
/** List of logs. */
|
|
11209
|
+
logs: Log[];
|
|
11210
|
+
/** Total count of logs. */
|
|
11211
|
+
totalCount: number;
|
|
11212
|
+
}
|
|
10934
11213
|
type ListPermissionSetsRequest$1 = {
|
|
10935
11214
|
/** Criteria for sorting results. */
|
|
10936
11215
|
orderBy?: ListPermissionSetsRequestOrderBy;
|
|
@@ -11585,6 +11864,12 @@ declare class API$j extends API$v {
|
|
|
11585
11864
|
* @param request - The request {@link DeleteJWTRequest}
|
|
11586
11865
|
*/
|
|
11587
11866
|
deleteJWT: (request: Readonly<DeleteJWTRequest>) => Promise<void>;
|
|
11867
|
+
protected pageOfListLogs: (request?: Readonly<ListLogsRequest$1>) => Promise<ListLogsResponse>;
|
|
11868
|
+
listLogs: (request?: Readonly<ListLogsRequest$1>) => Promise<ListLogsResponse> & {
|
|
11869
|
+
all: () => Promise<Log[]>;
|
|
11870
|
+
[Symbol.asyncIterator]: () => AsyncGenerator<Log[], void, void>;
|
|
11871
|
+
};
|
|
11872
|
+
getLog: (request: Readonly<GetLogRequest>) => Promise<Log>;
|
|
11588
11873
|
}
|
|
11589
11874
|
|
|
11590
11875
|
declare const CreateAPIKeyRequest: {
|
|
@@ -11688,6 +11973,15 @@ declare const ListJWTsRequest: {
|
|
|
11688
11973
|
lessThanOrEqual: number;
|
|
11689
11974
|
};
|
|
11690
11975
|
};
|
|
11976
|
+
declare const ListLogsRequest: {
|
|
11977
|
+
page: {
|
|
11978
|
+
greaterThan: number;
|
|
11979
|
+
};
|
|
11980
|
+
pageSize: {
|
|
11981
|
+
greaterThanOrEqual: number;
|
|
11982
|
+
lessThanOrEqual: number;
|
|
11983
|
+
};
|
|
11984
|
+
};
|
|
11691
11985
|
declare const ListPermissionSetsRequest: {
|
|
11692
11986
|
page: {
|
|
11693
11987
|
greaterThan: number;
|
|
@@ -11800,6 +12094,7 @@ declare const validationRules_gen$5_ListAPIKeysRequest: typeof ListAPIKeysReques
|
|
|
11800
12094
|
declare const validationRules_gen$5_ListApplicationsRequest: typeof ListApplicationsRequest;
|
|
11801
12095
|
declare const validationRules_gen$5_ListGroupsRequest: typeof ListGroupsRequest;
|
|
11802
12096
|
declare const validationRules_gen$5_ListJWTsRequest: typeof ListJWTsRequest;
|
|
12097
|
+
declare const validationRules_gen$5_ListLogsRequest: typeof ListLogsRequest;
|
|
11803
12098
|
declare const validationRules_gen$5_ListPermissionSetsRequest: typeof ListPermissionSetsRequest;
|
|
11804
12099
|
declare const validationRules_gen$5_ListPoliciesRequest: typeof ListPoliciesRequest;
|
|
11805
12100
|
declare const validationRules_gen$5_ListQuotaRequest: typeof ListQuotaRequest;
|
|
@@ -11811,66 +12106,72 @@ declare const validationRules_gen$5_UpdateGroupRequest: typeof UpdateGroupReques
|
|
|
11811
12106
|
declare const validationRules_gen$5_UpdatePolicyRequest: typeof UpdatePolicyRequest;
|
|
11812
12107
|
declare const validationRules_gen$5_UpdateSSHKeyRequest: typeof UpdateSSHKeyRequest;
|
|
11813
12108
|
declare namespace validationRules_gen$5 {
|
|
11814
|
-
export { validationRules_gen$5_CreateAPIKeyRequest as CreateAPIKeyRequest, validationRules_gen$5_CreateApplicationRequest as CreateApplicationRequest, validationRules_gen$5_CreateGroupRequest as CreateGroupRequest, validationRules_gen$5_CreatePolicyRequest as CreatePolicyRequest, validationRules_gen$5_CreateSSHKeyRequest as CreateSSHKeyRequest, validationRules_gen$5_GetQuotumRequest as GetQuotumRequest, validationRules_gen$5_ListAPIKeysRequest as ListAPIKeysRequest, validationRules_gen$5_ListApplicationsRequest as ListApplicationsRequest, validationRules_gen$5_ListGroupsRequest as ListGroupsRequest, validationRules_gen$5_ListJWTsRequest as ListJWTsRequest, validationRules_gen$5_ListPermissionSetsRequest as ListPermissionSetsRequest, validationRules_gen$5_ListPoliciesRequest as ListPoliciesRequest, validationRules_gen$5_ListQuotaRequest as ListQuotaRequest, validationRules_gen$5_ListRulesRequest as ListRulesRequest, validationRules_gen$5_ListSSHKeysRequest as ListSSHKeysRequest, ListUsersRequest$1 as ListUsersRequest, validationRules_gen$5_UpdateAPIKeyRequest as UpdateAPIKeyRequest, validationRules_gen$5_UpdateApplicationRequest as UpdateApplicationRequest, validationRules_gen$5_UpdateGroupRequest as UpdateGroupRequest, validationRules_gen$5_UpdatePolicyRequest as UpdatePolicyRequest, validationRules_gen$5_UpdateSSHKeyRequest as UpdateSSHKeyRequest };
|
|
12109
|
+
export { validationRules_gen$5_CreateAPIKeyRequest as CreateAPIKeyRequest, validationRules_gen$5_CreateApplicationRequest as CreateApplicationRequest, validationRules_gen$5_CreateGroupRequest as CreateGroupRequest, validationRules_gen$5_CreatePolicyRequest as CreatePolicyRequest, validationRules_gen$5_CreateSSHKeyRequest as CreateSSHKeyRequest, validationRules_gen$5_GetQuotumRequest as GetQuotumRequest, validationRules_gen$5_ListAPIKeysRequest as ListAPIKeysRequest, validationRules_gen$5_ListApplicationsRequest as ListApplicationsRequest, validationRules_gen$5_ListGroupsRequest as ListGroupsRequest, validationRules_gen$5_ListJWTsRequest as ListJWTsRequest, validationRules_gen$5_ListLogsRequest as ListLogsRequest, validationRules_gen$5_ListPermissionSetsRequest as ListPermissionSetsRequest, validationRules_gen$5_ListPoliciesRequest as ListPoliciesRequest, validationRules_gen$5_ListQuotaRequest as ListQuotaRequest, validationRules_gen$5_ListRulesRequest as ListRulesRequest, validationRules_gen$5_ListSSHKeysRequest as ListSSHKeysRequest, ListUsersRequest$1 as ListUsersRequest, validationRules_gen$5_UpdateAPIKeyRequest as UpdateAPIKeyRequest, validationRules_gen$5_UpdateApplicationRequest as UpdateApplicationRequest, validationRules_gen$5_UpdateGroupRequest as UpdateGroupRequest, validationRules_gen$5_UpdatePolicyRequest as UpdatePolicyRequest, validationRules_gen$5_UpdateSSHKeyRequest as UpdateSSHKeyRequest };
|
|
11815
12110
|
}
|
|
11816
12111
|
|
|
11817
|
-
type index_gen$
|
|
11818
|
-
type index_gen$
|
|
11819
|
-
type index_gen$
|
|
11820
|
-
type index_gen$
|
|
11821
|
-
type index_gen$
|
|
11822
|
-
type index_gen$
|
|
11823
|
-
type index_gen$
|
|
11824
|
-
type index_gen$
|
|
11825
|
-
type index_gen$
|
|
11826
|
-
type index_gen$
|
|
11827
|
-
type index_gen$
|
|
11828
|
-
type index_gen$
|
|
11829
|
-
type index_gen$
|
|
11830
|
-
type index_gen$
|
|
11831
|
-
type index_gen$
|
|
11832
|
-
type index_gen$
|
|
11833
|
-
type index_gen$
|
|
11834
|
-
type index_gen$
|
|
11835
|
-
type index_gen$
|
|
11836
|
-
type index_gen$
|
|
11837
|
-
type index_gen$
|
|
11838
|
-
type index_gen$
|
|
11839
|
-
type index_gen$
|
|
11840
|
-
type index_gen$
|
|
11841
|
-
type index_gen$
|
|
11842
|
-
type index_gen$
|
|
11843
|
-
type index_gen$
|
|
11844
|
-
type index_gen$
|
|
11845
|
-
type index_gen$
|
|
11846
|
-
type index_gen$
|
|
11847
|
-
type index_gen$
|
|
11848
|
-
type index_gen$
|
|
11849
|
-
type index_gen$
|
|
11850
|
-
type index_gen$
|
|
11851
|
-
type index_gen$
|
|
11852
|
-
type index_gen$
|
|
11853
|
-
type index_gen$
|
|
11854
|
-
type index_gen$
|
|
11855
|
-
type index_gen$
|
|
11856
|
-
type index_gen$
|
|
11857
|
-
type index_gen$
|
|
11858
|
-
type index_gen$
|
|
11859
|
-
type index_gen$
|
|
11860
|
-
type index_gen$
|
|
11861
|
-
type index_gen$
|
|
11862
|
-
type index_gen$
|
|
11863
|
-
type index_gen$
|
|
11864
|
-
type index_gen$
|
|
11865
|
-
type index_gen$
|
|
11866
|
-
type index_gen$
|
|
11867
|
-
type index_gen$
|
|
11868
|
-
|
|
11869
|
-
|
|
12112
|
+
type index_gen$i_APIKey = APIKey;
|
|
12113
|
+
type index_gen$i_AddGroupMemberRequest = AddGroupMemberRequest;
|
|
12114
|
+
type index_gen$i_AddGroupMembersRequest = AddGroupMembersRequest;
|
|
12115
|
+
type index_gen$i_Application = Application;
|
|
12116
|
+
type index_gen$i_BearerType = BearerType;
|
|
12117
|
+
type index_gen$i_ClonePolicyRequest = ClonePolicyRequest;
|
|
12118
|
+
type index_gen$i_DeleteAPIKeyRequest = DeleteAPIKeyRequest;
|
|
12119
|
+
type index_gen$i_DeleteApplicationRequest = DeleteApplicationRequest;
|
|
12120
|
+
type index_gen$i_DeleteGroupRequest = DeleteGroupRequest;
|
|
12121
|
+
type index_gen$i_DeleteJWTRequest = DeleteJWTRequest;
|
|
12122
|
+
type index_gen$i_DeletePolicyRequest = DeletePolicyRequest;
|
|
12123
|
+
type index_gen$i_DeleteSSHKeyRequest = DeleteSSHKeyRequest;
|
|
12124
|
+
type index_gen$i_GetAPIKeyRequest = GetAPIKeyRequest;
|
|
12125
|
+
type index_gen$i_GetApplicationRequest = GetApplicationRequest;
|
|
12126
|
+
type index_gen$i_GetGroupRequest = GetGroupRequest;
|
|
12127
|
+
type index_gen$i_GetJWTRequest = GetJWTRequest;
|
|
12128
|
+
type index_gen$i_GetLogRequest = GetLogRequest;
|
|
12129
|
+
type index_gen$i_GetPolicyRequest = GetPolicyRequest;
|
|
12130
|
+
type index_gen$i_GetSSHKeyRequest = GetSSHKeyRequest;
|
|
12131
|
+
type index_gen$i_GetUserRequest = GetUserRequest;
|
|
12132
|
+
type index_gen$i_Group = Group;
|
|
12133
|
+
type index_gen$i_JWT = JWT;
|
|
12134
|
+
type index_gen$i_ListAPIKeysRequestOrderBy = ListAPIKeysRequestOrderBy;
|
|
12135
|
+
type index_gen$i_ListAPIKeysResponse = ListAPIKeysResponse;
|
|
12136
|
+
type index_gen$i_ListApplicationsRequestOrderBy = ListApplicationsRequestOrderBy;
|
|
12137
|
+
type index_gen$i_ListApplicationsResponse = ListApplicationsResponse;
|
|
12138
|
+
type index_gen$i_ListGroupsRequestOrderBy = ListGroupsRequestOrderBy;
|
|
12139
|
+
type index_gen$i_ListGroupsResponse = ListGroupsResponse;
|
|
12140
|
+
type index_gen$i_ListJWTsRequestOrderBy = ListJWTsRequestOrderBy;
|
|
12141
|
+
type index_gen$i_ListJWTsResponse = ListJWTsResponse;
|
|
12142
|
+
type index_gen$i_ListLogsRequestOrderBy = ListLogsRequestOrderBy;
|
|
12143
|
+
type index_gen$i_ListLogsResponse = ListLogsResponse;
|
|
12144
|
+
type index_gen$i_ListPermissionSetsRequestOrderBy = ListPermissionSetsRequestOrderBy;
|
|
12145
|
+
type index_gen$i_ListPermissionSetsResponse = ListPermissionSetsResponse;
|
|
12146
|
+
type index_gen$i_ListPoliciesRequestOrderBy = ListPoliciesRequestOrderBy;
|
|
12147
|
+
type index_gen$i_ListPoliciesResponse = ListPoliciesResponse;
|
|
12148
|
+
type index_gen$i_ListQuotaRequestOrderBy = ListQuotaRequestOrderBy;
|
|
12149
|
+
type index_gen$i_ListQuotaResponse = ListQuotaResponse;
|
|
12150
|
+
type index_gen$i_ListRulesResponse = ListRulesResponse;
|
|
12151
|
+
type index_gen$i_ListSSHKeysRequestOrderBy = ListSSHKeysRequestOrderBy;
|
|
12152
|
+
type index_gen$i_ListSSHKeysResponse = ListSSHKeysResponse;
|
|
12153
|
+
type index_gen$i_Log = Log;
|
|
12154
|
+
type index_gen$i_LogAction = LogAction;
|
|
12155
|
+
type index_gen$i_LogResourceType = LogResourceType;
|
|
12156
|
+
type index_gen$i_PermissionSet = PermissionSet;
|
|
12157
|
+
type index_gen$i_PermissionSetScopeType = PermissionSetScopeType;
|
|
12158
|
+
type index_gen$i_Policy = Policy;
|
|
12159
|
+
type index_gen$i_Quotum = Quotum;
|
|
12160
|
+
type index_gen$i_RemoveGroupMemberRequest = RemoveGroupMemberRequest;
|
|
12161
|
+
type index_gen$i_Rule = Rule;
|
|
12162
|
+
type index_gen$i_RuleSpecs = RuleSpecs;
|
|
12163
|
+
type index_gen$i_SSHKey = SSHKey;
|
|
12164
|
+
type index_gen$i_SetGroupMembersRequest = SetGroupMembersRequest;
|
|
12165
|
+
type index_gen$i_SetRulesRequest = SetRulesRequest;
|
|
12166
|
+
type index_gen$i_SetRulesResponse = SetRulesResponse;
|
|
12167
|
+
type index_gen$i_UserStatus = UserStatus;
|
|
12168
|
+
type index_gen$i_UserType = UserType;
|
|
12169
|
+
declare namespace index_gen$i {
|
|
12170
|
+
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$5 as ValidationRules };
|
|
11870
12171
|
}
|
|
11871
12172
|
|
|
11872
12173
|
declare namespace index$k {
|
|
11873
|
-
export { index_gen$
|
|
12174
|
+
export { index_gen$i as v1alpha1 };
|
|
11874
12175
|
}
|
|
11875
12176
|
|
|
11876
12177
|
type Arch = 'x86_64' | 'arm' | 'arm64';
|
|
@@ -11890,6 +12191,7 @@ type SecurityGroupState = 'available' | 'syncing' | 'syncing_error';
|
|
|
11890
12191
|
type ServerAction = 'poweron' | 'backup' | 'stop_in_place' | 'poweroff' | 'terminate' | 'reboot' | 'enable_routed_ip';
|
|
11891
12192
|
type ServerIpIpFamily = 'inet' | 'inet6';
|
|
11892
12193
|
type ServerIpProvisioningMode = 'manual' | 'dhcp' | 'slaac';
|
|
12194
|
+
type ServerIpState = 'unknown_state' | 'detached' | 'attached' | 'pending' | 'error';
|
|
11893
12195
|
type ServerState = 'running' | 'stopped' | 'stopped in place' | 'starting' | 'stopping' | 'locked';
|
|
11894
12196
|
type ServerTypesAvailability = 'available' | 'scarce' | 'shortage';
|
|
11895
12197
|
type SnapshotState = 'available' | 'snapshotting' | 'error' | 'invalid_data' | 'importing' | 'exporting';
|
|
@@ -12061,6 +12363,7 @@ interface ServerIp {
|
|
|
12061
12363
|
provisioningMode: ServerIpProvisioningMode;
|
|
12062
12364
|
/** Tags associated with the IP. */
|
|
12063
12365
|
tags: string[];
|
|
12366
|
+
state: ServerIpState;
|
|
12064
12367
|
}
|
|
12065
12368
|
interface ServerIpv6 {
|
|
12066
12369
|
/** Instance IPv6 IP-Address. */
|
|
@@ -14426,6 +14729,8 @@ declare const IP_TRANSIENT_STATUSES: IpState[];
|
|
|
14426
14729
|
declare const PRIVATE_NIC_TRANSIENT_STATUSES: PrivateNICState[];
|
|
14427
14730
|
/** Lists transient statutes of the enum {@link SecurityGroupState}. */
|
|
14428
14731
|
declare const SECURITY_GROUP_TRANSIENT_STATUSES: SecurityGroupState[];
|
|
14732
|
+
/** Lists transient statutes of the enum {@link ServerIpState}. */
|
|
14733
|
+
declare const SERVER_IP_TRANSIENT_STATUSES: ServerIpState[];
|
|
14429
14734
|
/** Lists transient statutes of the enum {@link ServerState}. */
|
|
14430
14735
|
declare const SERVER_TRANSIENT_STATUSES: ServerState[];
|
|
14431
14736
|
/** Lists transient statutes of the enum {@link SnapshotState}. */
|
|
@@ -14530,6 +14835,7 @@ type index$j_PlanBlockMigrationRequest = PlanBlockMigrationRequest;
|
|
|
14530
14835
|
type index$j_PrivateNIC = PrivateNIC;
|
|
14531
14836
|
type index$j_PrivateNICState = PrivateNICState;
|
|
14532
14837
|
declare const index$j_SECURITY_GROUP_TRANSIENT_STATUSES: typeof SECURITY_GROUP_TRANSIENT_STATUSES;
|
|
14838
|
+
declare const index$j_SERVER_IP_TRANSIENT_STATUSES: typeof SERVER_IP_TRANSIENT_STATUSES;
|
|
14533
14839
|
declare const index$j_SERVER_TRANSIENT_STATUSES: typeof SERVER_TRANSIENT_STATUSES;
|
|
14534
14840
|
type index$j_SecurityGroup = SecurityGroup;
|
|
14535
14841
|
type index$j_SecurityGroupPolicy = SecurityGroupPolicy;
|
|
@@ -14548,6 +14854,7 @@ type index$j_ServerActionResponse = ServerActionResponse;
|
|
|
14548
14854
|
type index$j_ServerIp = ServerIp;
|
|
14549
14855
|
type index$j_ServerIpIpFamily = ServerIpIpFamily;
|
|
14550
14856
|
type index$j_ServerIpProvisioningMode = ServerIpProvisioningMode;
|
|
14857
|
+
type index$j_ServerIpState = ServerIpState;
|
|
14551
14858
|
type index$j_ServerIpv6 = ServerIpv6;
|
|
14552
14859
|
type index$j_ServerLocation = ServerLocation;
|
|
14553
14860
|
type index$j_ServerMaintenance = ServerMaintenance;
|
|
@@ -14603,7 +14910,7 @@ type index$j_VolumeTypeCapabilities = VolumeTypeCapabilities;
|
|
|
14603
14910
|
type index$j_VolumeTypeConstraints = VolumeTypeConstraints;
|
|
14604
14911
|
type index$j_VolumeVolumeType = VolumeVolumeType;
|
|
14605
14912
|
declare namespace index$j {
|
|
14606
|
-
export { InstanceV1UtilsAPI as API, type index$j_ApplyBlockMigrationRequest as ApplyBlockMigrationRequest, type index$j_Arch as Arch, type index$j_AttachVolumeRequest as AttachVolumeRequest, type index$j_AttachVolumeResponse as AttachVolumeResponse, type index$j_BootType as BootType, type index$j_Bootscript as Bootscript, type index$j_CreateImageRequest as CreateImageRequest, type index$j_CreateImageResponse as CreateImageResponse, type CreateIpRequest$1 as CreateIpRequest, type index$j_CreateIpResponse as CreateIpResponse, type index$j_CreatePlacementGroupRequest as CreatePlacementGroupRequest, type index$j_CreatePlacementGroupResponse as CreatePlacementGroupResponse, type index$j_CreatePrivateNICRequest as CreatePrivateNICRequest, type index$j_CreatePrivateNICResponse as CreatePrivateNICResponse, type index$j_CreateSecurityGroupRequest as CreateSecurityGroupRequest, type index$j_CreateSecurityGroupResponse as CreateSecurityGroupResponse, type index$j_CreateSecurityGroupRuleRequest as CreateSecurityGroupRuleRequest, type index$j_CreateSecurityGroupRuleResponse as CreateSecurityGroupRuleResponse, type index$j_CreateServerRequest as CreateServerRequest, type index$j_CreateServerResponse as CreateServerResponse, type CreateSnapshotRequest$1 as CreateSnapshotRequest, type index$j_CreateSnapshotResponse as CreateSnapshotResponse, type CreateVolumeRequest$1 as CreateVolumeRequest, type index$j_CreateVolumeResponse as CreateVolumeResponse, type index$j_Dashboard as Dashboard, type DeleteImageRequest$1 as DeleteImageRequest, type index$j_DeleteIpRequest as DeleteIpRequest, type index$j_DeletePlacementGroupRequest as DeletePlacementGroupRequest, type index$j_DeletePrivateNICRequest as DeletePrivateNICRequest, type index$j_DeleteSecurityGroupRequest as DeleteSecurityGroupRequest, type index$j_DeleteSecurityGroupRuleRequest as DeleteSecurityGroupRuleRequest, type index$j_DeleteServerRequest as DeleteServerRequest, type index$j_DeleteServerUserDataRequest as DeleteServerUserDataRequest, type DeleteSnapshotRequest$1 as DeleteSnapshotRequest, type DeleteVolumeRequest$1 as DeleteVolumeRequest, type index$j_DetachVolumeRequest as DetachVolumeRequest, type index$j_DetachVolumeResponse as DetachVolumeResponse, type index$j_ExportSnapshotRequest as ExportSnapshotRequest, type index$j_ExportSnapshotResponse as ExportSnapshotResponse, type index$j_GetBootscriptRequest as GetBootscriptRequest, type index$j_GetBootscriptResponse as GetBootscriptResponse, type index$j_GetDashboardRequest as GetDashboardRequest, type index$j_GetDashboardResponse as GetDashboardResponse, type GetImageRequest$3 as GetImageRequest, type GetImageResponse$1 as GetImageResponse, type GetIpRequest$1 as GetIpRequest, type index$j_GetIpResponse as GetIpResponse, type index$j_GetPlacementGroupRequest as GetPlacementGroupRequest, type index$j_GetPlacementGroupResponse as GetPlacementGroupResponse, type index$j_GetPlacementGroupServersRequest as GetPlacementGroupServersRequest, type index$j_GetPlacementGroupServersResponse as GetPlacementGroupServersResponse, type index$j_GetPrivateNICRequest as GetPrivateNICRequest, type index$j_GetPrivateNICResponse as GetPrivateNICResponse, type index$j_GetSecurityGroupRequest as GetSecurityGroupRequest, type index$j_GetSecurityGroupResponse as GetSecurityGroupResponse, type index$j_GetSecurityGroupRuleRequest as GetSecurityGroupRuleRequest, type index$j_GetSecurityGroupRuleResponse as GetSecurityGroupRuleResponse, type index$j_GetServerRequest as GetServerRequest, type index$j_GetServerResponse as GetServerResponse, type index$j_GetServerTypesAvailabilityRequest as GetServerTypesAvailabilityRequest, type index$j_GetServerTypesAvailabilityResponse as GetServerTypesAvailabilityResponse, type index$j_GetServerTypesAvailabilityResponseAvailability as GetServerTypesAvailabilityResponseAvailability, type index$j_GetServerUserDataRequest as GetServerUserDataRequest, type GetSnapshotRequest$1 as GetSnapshotRequest, type index$j_GetSnapshotResponse as GetSnapshotResponse, type GetVolumeRequest$1 as GetVolumeRequest, type index$j_GetVolumeResponse as GetVolumeResponse, IMAGE_TRANSIENT_STATUSES$1 as IMAGE_TRANSIENT_STATUSES, index$j_IP_TRANSIENT_STATUSES as IP_TRANSIENT_STATUSES, type Image$3 as Image, type index$j_ImageState as ImageState, type Ip$1 as Ip, type index$j_IpState as IpState, type index$j_IpType as IpType, type index$j_ListBootscriptsRequest as ListBootscriptsRequest, type index$j_ListBootscriptsResponse as ListBootscriptsResponse, type index$j_ListDefaultSecurityGroupRulesRequest as ListDefaultSecurityGroupRulesRequest, type ListImagesRequest$3 as ListImagesRequest, type ListImagesResponse$3 as ListImagesResponse, type index$j_ListIpsRequest as ListIpsRequest, type ListIpsResponse$1 as ListIpsResponse, type index$j_ListPlacementGroupsRequest as ListPlacementGroupsRequest, type index$j_ListPlacementGroupsResponse as ListPlacementGroupsResponse, type index$j_ListPrivateNICsRequest as ListPrivateNICsRequest, type index$j_ListPrivateNICsResponse as ListPrivateNICsResponse, type index$j_ListSecurityGroupRulesRequest as ListSecurityGroupRulesRequest, type index$j_ListSecurityGroupRulesResponse as ListSecurityGroupRulesResponse, type index$j_ListSecurityGroupsRequest as ListSecurityGroupsRequest, type index$j_ListSecurityGroupsResponse as ListSecurityGroupsResponse, type index$j_ListServerActionsRequest as ListServerActionsRequest, type index$j_ListServerActionsResponse as ListServerActionsResponse, type index$j_ListServerUserDataRequest as ListServerUserDataRequest, type index$j_ListServerUserDataResponse as ListServerUserDataResponse, type index$j_ListServersRequest as ListServersRequest, type index$j_ListServersRequestOrder as ListServersRequestOrder, type index$j_ListServersResponse as ListServersResponse, type index$j_ListServersTypesRequest as ListServersTypesRequest, type index$j_ListServersTypesResponse as ListServersTypesResponse, type ListSnapshotsRequest$1 as ListSnapshotsRequest, type ListSnapshotsResponse$1 as ListSnapshotsResponse, type ListVolumesRequest$1 as ListVolumesRequest, type ListVolumesResponse$1 as ListVolumesResponse, type index$j_ListVolumesTypesRequest as ListVolumesTypesRequest, type index$j_ListVolumesTypesResponse as ListVolumesTypesResponse, type index$j_MigrationPlan as MigrationPlan, index$j_PRIVATE_NIC_TRANSIENT_STATUSES as PRIVATE_NIC_TRANSIENT_STATUSES, type index$j_PlacementGroup as PlacementGroup, type index$j_PlacementGroupPolicyMode as PlacementGroupPolicyMode, type index$j_PlacementGroupPolicyType as PlacementGroupPolicyType, type index$j_PlacementGroupServer as PlacementGroupServer, type index$j_PlanBlockMigrationRequest as PlanBlockMigrationRequest, type index$j_PrivateNIC as PrivateNIC, type index$j_PrivateNICState as PrivateNICState, index$j_SECURITY_GROUP_TRANSIENT_STATUSES as SECURITY_GROUP_TRANSIENT_STATUSES, index$j_SERVER_TRANSIENT_STATUSES as SERVER_TRANSIENT_STATUSES, SNAPSHOT_TRANSIENT_STATUSES$1 as SNAPSHOT_TRANSIENT_STATUSES, type index$j_SecurityGroup as SecurityGroup, type index$j_SecurityGroupPolicy as SecurityGroupPolicy, type index$j_SecurityGroupRule as SecurityGroupRule, type index$j_SecurityGroupRuleAction as SecurityGroupRuleAction, type index$j_SecurityGroupRuleDirection as SecurityGroupRuleDirection, type index$j_SecurityGroupRuleProtocol as SecurityGroupRuleProtocol, type index$j_SecurityGroupState as SecurityGroupState, type index$j_SecurityGroupSummary as SecurityGroupSummary, type index$j_SecurityGroupTemplate as SecurityGroupTemplate, type index$j_Server as Server, type index$j_ServerAction as ServerAction, type index$j_ServerActionRequest as ServerActionRequest, type index$j_ServerActionRequestVolumeBackupTemplate as ServerActionRequestVolumeBackupTemplate, type index$j_ServerActionResponse as ServerActionResponse, type index$j_ServerIp as ServerIp, type index$j_ServerIpIpFamily as ServerIpIpFamily, type index$j_ServerIpProvisioningMode as ServerIpProvisioningMode, type index$j_ServerIpv6 as ServerIpv6, type index$j_ServerLocation as ServerLocation, type index$j_ServerMaintenance as ServerMaintenance, type index$j_ServerState as ServerState, type index$j_ServerSummary as ServerSummary, type index$j_ServerType as ServerType, type index$j_ServerTypeCapabilities as ServerTypeCapabilities, type index$j_ServerTypeNetwork as ServerTypeNetwork, type index$j_ServerTypeNetworkInterface as ServerTypeNetworkInterface, type index$j_ServerTypeVolumeConstraintSizes as ServerTypeVolumeConstraintSizes, type index$j_ServerTypeVolumeConstraintsByType as ServerTypeVolumeConstraintsByType, type index$j_ServerTypesAvailability as ServerTypesAvailability, type index$j_SetImageRequest as SetImageRequest, type index$j_SetPlacementGroupRequest as SetPlacementGroupRequest, type index$j_SetPlacementGroupResponse as SetPlacementGroupResponse, type index$j_SetPlacementGroupServersRequest as SetPlacementGroupServersRequest, type index$j_SetPlacementGroupServersResponse as SetPlacementGroupServersResponse, type index$j_SetSecurityGroupRulesRequest as SetSecurityGroupRulesRequest, type index$j_SetSecurityGroupRulesRequestRule as SetSecurityGroupRulesRequestRule, type index$j_SetSecurityGroupRulesResponse as SetSecurityGroupRulesResponse, type index$j_SetServerUserDataRequest as SetServerUserDataRequest, type Snapshot$1 as Snapshot, type index$j_SnapshotBaseVolume as SnapshotBaseVolume, type index$j_SnapshotState as SnapshotState, type index$j_SnapshotVolumeType as SnapshotVolumeType, index$j_TASK_TRANSIENT_STATUSES as TASK_TRANSIENT_STATUSES, type index$j_Task as Task, type index$j_TaskStatus as TaskStatus, type UpdateImageRequest$1 as UpdateImageRequest, type index$j_UpdateImageResponse as UpdateImageResponse, type UpdateIpRequest$1 as UpdateIpRequest, type index$j_UpdateIpResponse as UpdateIpResponse, type index$j_UpdatePlacementGroupRequest as UpdatePlacementGroupRequest, type index$j_UpdatePlacementGroupResponse as UpdatePlacementGroupResponse, type index$j_UpdatePlacementGroupServersRequest as UpdatePlacementGroupServersRequest, type index$j_UpdatePlacementGroupServersResponse as UpdatePlacementGroupServersResponse, type index$j_UpdatePrivateNICRequest as UpdatePrivateNICRequest, type index$j_UpdateSecurityGroupRequest as UpdateSecurityGroupRequest, type index$j_UpdateSecurityGroupResponse as UpdateSecurityGroupResponse, type index$j_UpdateSecurityGroupRuleRequest as UpdateSecurityGroupRuleRequest, type index$j_UpdateSecurityGroupRuleResponse as UpdateSecurityGroupRuleResponse, type index$j_UpdateServerRequest as UpdateServerRequest, type index$j_UpdateServerResponse as UpdateServerResponse, type UpdateSnapshotRequest$1 as UpdateSnapshotRequest, type index$j_UpdateSnapshotResponse as UpdateSnapshotResponse, type UpdateVolumeRequest$1 as UpdateVolumeRequest, type index$j_UpdateVolumeResponse as UpdateVolumeResponse, index$j_VOLUME_SERVER_TRANSIENT_STATUSES as VOLUME_SERVER_TRANSIENT_STATUSES, index$j_VOLUME_TRANSIENT_STATUSES as VOLUME_TRANSIENT_STATUSES, type Volume$2 as Volume, type index$j_VolumeServer as VolumeServer, type index$j_VolumeServerState as VolumeServerState, type index$j_VolumeServerTemplate as VolumeServerTemplate, type index$j_VolumeServerVolumeType as VolumeServerVolumeType, type index$j_VolumeState as VolumeState, type index$j_VolumeSummary as VolumeSummary, type index$j_VolumeTemplate as VolumeTemplate, type VolumeType$1 as VolumeType, type index$j_VolumeTypeCapabilities as VolumeTypeCapabilities, type index$j_VolumeTypeConstraints as VolumeTypeConstraints, type index$j_VolumeVolumeType as VolumeVolumeType };
|
|
14913
|
+
export { InstanceV1UtilsAPI as API, type index$j_ApplyBlockMigrationRequest as ApplyBlockMigrationRequest, type index$j_Arch as Arch, type index$j_AttachVolumeRequest as AttachVolumeRequest, type index$j_AttachVolumeResponse as AttachVolumeResponse, type index$j_BootType as BootType, type index$j_Bootscript as Bootscript, type index$j_CreateImageRequest as CreateImageRequest, type index$j_CreateImageResponse as CreateImageResponse, type CreateIpRequest$1 as CreateIpRequest, type index$j_CreateIpResponse as CreateIpResponse, type index$j_CreatePlacementGroupRequest as CreatePlacementGroupRequest, type index$j_CreatePlacementGroupResponse as CreatePlacementGroupResponse, type index$j_CreatePrivateNICRequest as CreatePrivateNICRequest, type index$j_CreatePrivateNICResponse as CreatePrivateNICResponse, type index$j_CreateSecurityGroupRequest as CreateSecurityGroupRequest, type index$j_CreateSecurityGroupResponse as CreateSecurityGroupResponse, type index$j_CreateSecurityGroupRuleRequest as CreateSecurityGroupRuleRequest, type index$j_CreateSecurityGroupRuleResponse as CreateSecurityGroupRuleResponse, type index$j_CreateServerRequest as CreateServerRequest, type index$j_CreateServerResponse as CreateServerResponse, type CreateSnapshotRequest$1 as CreateSnapshotRequest, type index$j_CreateSnapshotResponse as CreateSnapshotResponse, type CreateVolumeRequest$1 as CreateVolumeRequest, type index$j_CreateVolumeResponse as CreateVolumeResponse, type index$j_Dashboard as Dashboard, type DeleteImageRequest$1 as DeleteImageRequest, type index$j_DeleteIpRequest as DeleteIpRequest, type index$j_DeletePlacementGroupRequest as DeletePlacementGroupRequest, type index$j_DeletePrivateNICRequest as DeletePrivateNICRequest, type index$j_DeleteSecurityGroupRequest as DeleteSecurityGroupRequest, type index$j_DeleteSecurityGroupRuleRequest as DeleteSecurityGroupRuleRequest, type index$j_DeleteServerRequest as DeleteServerRequest, type index$j_DeleteServerUserDataRequest as DeleteServerUserDataRequest, type DeleteSnapshotRequest$1 as DeleteSnapshotRequest, type DeleteVolumeRequest$1 as DeleteVolumeRequest, type index$j_DetachVolumeRequest as DetachVolumeRequest, type index$j_DetachVolumeResponse as DetachVolumeResponse, type index$j_ExportSnapshotRequest as ExportSnapshotRequest, type index$j_ExportSnapshotResponse as ExportSnapshotResponse, type index$j_GetBootscriptRequest as GetBootscriptRequest, type index$j_GetBootscriptResponse as GetBootscriptResponse, type index$j_GetDashboardRequest as GetDashboardRequest, type index$j_GetDashboardResponse as GetDashboardResponse, type GetImageRequest$3 as GetImageRequest, type GetImageResponse$1 as GetImageResponse, type GetIpRequest$1 as GetIpRequest, type index$j_GetIpResponse as GetIpResponse, type index$j_GetPlacementGroupRequest as GetPlacementGroupRequest, type index$j_GetPlacementGroupResponse as GetPlacementGroupResponse, type index$j_GetPlacementGroupServersRequest as GetPlacementGroupServersRequest, type index$j_GetPlacementGroupServersResponse as GetPlacementGroupServersResponse, type index$j_GetPrivateNICRequest as GetPrivateNICRequest, type index$j_GetPrivateNICResponse as GetPrivateNICResponse, type index$j_GetSecurityGroupRequest as GetSecurityGroupRequest, type index$j_GetSecurityGroupResponse as GetSecurityGroupResponse, type index$j_GetSecurityGroupRuleRequest as GetSecurityGroupRuleRequest, type index$j_GetSecurityGroupRuleResponse as GetSecurityGroupRuleResponse, type index$j_GetServerRequest as GetServerRequest, type index$j_GetServerResponse as GetServerResponse, type index$j_GetServerTypesAvailabilityRequest as GetServerTypesAvailabilityRequest, type index$j_GetServerTypesAvailabilityResponse as GetServerTypesAvailabilityResponse, type index$j_GetServerTypesAvailabilityResponseAvailability as GetServerTypesAvailabilityResponseAvailability, type index$j_GetServerUserDataRequest as GetServerUserDataRequest, type GetSnapshotRequest$1 as GetSnapshotRequest, type index$j_GetSnapshotResponse as GetSnapshotResponse, type GetVolumeRequest$1 as GetVolumeRequest, type index$j_GetVolumeResponse as GetVolumeResponse, IMAGE_TRANSIENT_STATUSES$1 as IMAGE_TRANSIENT_STATUSES, index$j_IP_TRANSIENT_STATUSES as IP_TRANSIENT_STATUSES, type Image$3 as Image, type index$j_ImageState as ImageState, type Ip$1 as Ip, type index$j_IpState as IpState, type index$j_IpType as IpType, type index$j_ListBootscriptsRequest as ListBootscriptsRequest, type index$j_ListBootscriptsResponse as ListBootscriptsResponse, type index$j_ListDefaultSecurityGroupRulesRequest as ListDefaultSecurityGroupRulesRequest, type ListImagesRequest$3 as ListImagesRequest, type ListImagesResponse$3 as ListImagesResponse, type index$j_ListIpsRequest as ListIpsRequest, type ListIpsResponse$1 as ListIpsResponse, type index$j_ListPlacementGroupsRequest as ListPlacementGroupsRequest, type index$j_ListPlacementGroupsResponse as ListPlacementGroupsResponse, type index$j_ListPrivateNICsRequest as ListPrivateNICsRequest, type index$j_ListPrivateNICsResponse as ListPrivateNICsResponse, type index$j_ListSecurityGroupRulesRequest as ListSecurityGroupRulesRequest, type index$j_ListSecurityGroupRulesResponse as ListSecurityGroupRulesResponse, type index$j_ListSecurityGroupsRequest as ListSecurityGroupsRequest, type index$j_ListSecurityGroupsResponse as ListSecurityGroupsResponse, type index$j_ListServerActionsRequest as ListServerActionsRequest, type index$j_ListServerActionsResponse as ListServerActionsResponse, type index$j_ListServerUserDataRequest as ListServerUserDataRequest, type index$j_ListServerUserDataResponse as ListServerUserDataResponse, type index$j_ListServersRequest as ListServersRequest, type index$j_ListServersRequestOrder as ListServersRequestOrder, type index$j_ListServersResponse as ListServersResponse, type index$j_ListServersTypesRequest as ListServersTypesRequest, type index$j_ListServersTypesResponse as ListServersTypesResponse, type ListSnapshotsRequest$1 as ListSnapshotsRequest, type ListSnapshotsResponse$1 as ListSnapshotsResponse, type ListVolumesRequest$1 as ListVolumesRequest, type ListVolumesResponse$1 as ListVolumesResponse, type index$j_ListVolumesTypesRequest as ListVolumesTypesRequest, type index$j_ListVolumesTypesResponse as ListVolumesTypesResponse, type index$j_MigrationPlan as MigrationPlan, index$j_PRIVATE_NIC_TRANSIENT_STATUSES as PRIVATE_NIC_TRANSIENT_STATUSES, type index$j_PlacementGroup as PlacementGroup, type index$j_PlacementGroupPolicyMode as PlacementGroupPolicyMode, type index$j_PlacementGroupPolicyType as PlacementGroupPolicyType, type index$j_PlacementGroupServer as PlacementGroupServer, type index$j_PlanBlockMigrationRequest as PlanBlockMigrationRequest, type index$j_PrivateNIC as PrivateNIC, type index$j_PrivateNICState as PrivateNICState, index$j_SECURITY_GROUP_TRANSIENT_STATUSES as SECURITY_GROUP_TRANSIENT_STATUSES, index$j_SERVER_IP_TRANSIENT_STATUSES as SERVER_IP_TRANSIENT_STATUSES, index$j_SERVER_TRANSIENT_STATUSES as SERVER_TRANSIENT_STATUSES, SNAPSHOT_TRANSIENT_STATUSES$1 as SNAPSHOT_TRANSIENT_STATUSES, type index$j_SecurityGroup as SecurityGroup, type index$j_SecurityGroupPolicy as SecurityGroupPolicy, type index$j_SecurityGroupRule as SecurityGroupRule, type index$j_SecurityGroupRuleAction as SecurityGroupRuleAction, type index$j_SecurityGroupRuleDirection as SecurityGroupRuleDirection, type index$j_SecurityGroupRuleProtocol as SecurityGroupRuleProtocol, type index$j_SecurityGroupState as SecurityGroupState, type index$j_SecurityGroupSummary as SecurityGroupSummary, type index$j_SecurityGroupTemplate as SecurityGroupTemplate, type index$j_Server as Server, type index$j_ServerAction as ServerAction, type index$j_ServerActionRequest as ServerActionRequest, type index$j_ServerActionRequestVolumeBackupTemplate as ServerActionRequestVolumeBackupTemplate, type index$j_ServerActionResponse as ServerActionResponse, type index$j_ServerIp as ServerIp, type index$j_ServerIpIpFamily as ServerIpIpFamily, type index$j_ServerIpProvisioningMode as ServerIpProvisioningMode, type index$j_ServerIpState as ServerIpState, type index$j_ServerIpv6 as ServerIpv6, type index$j_ServerLocation as ServerLocation, type index$j_ServerMaintenance as ServerMaintenance, type index$j_ServerState as ServerState, type index$j_ServerSummary as ServerSummary, type index$j_ServerType as ServerType, type index$j_ServerTypeCapabilities as ServerTypeCapabilities, type index$j_ServerTypeNetwork as ServerTypeNetwork, type index$j_ServerTypeNetworkInterface as ServerTypeNetworkInterface, type index$j_ServerTypeVolumeConstraintSizes as ServerTypeVolumeConstraintSizes, type index$j_ServerTypeVolumeConstraintsByType as ServerTypeVolumeConstraintsByType, type index$j_ServerTypesAvailability as ServerTypesAvailability, type index$j_SetImageRequest as SetImageRequest, type index$j_SetPlacementGroupRequest as SetPlacementGroupRequest, type index$j_SetPlacementGroupResponse as SetPlacementGroupResponse, type index$j_SetPlacementGroupServersRequest as SetPlacementGroupServersRequest, type index$j_SetPlacementGroupServersResponse as SetPlacementGroupServersResponse, type index$j_SetSecurityGroupRulesRequest as SetSecurityGroupRulesRequest, type index$j_SetSecurityGroupRulesRequestRule as SetSecurityGroupRulesRequestRule, type index$j_SetSecurityGroupRulesResponse as SetSecurityGroupRulesResponse, type index$j_SetServerUserDataRequest as SetServerUserDataRequest, type Snapshot$1 as Snapshot, type index$j_SnapshotBaseVolume as SnapshotBaseVolume, type index$j_SnapshotState as SnapshotState, type index$j_SnapshotVolumeType as SnapshotVolumeType, index$j_TASK_TRANSIENT_STATUSES as TASK_TRANSIENT_STATUSES, type index$j_Task as Task, type index$j_TaskStatus as TaskStatus, type UpdateImageRequest$1 as UpdateImageRequest, type index$j_UpdateImageResponse as UpdateImageResponse, type UpdateIpRequest$1 as UpdateIpRequest, type index$j_UpdateIpResponse as UpdateIpResponse, type index$j_UpdatePlacementGroupRequest as UpdatePlacementGroupRequest, type index$j_UpdatePlacementGroupResponse as UpdatePlacementGroupResponse, type index$j_UpdatePlacementGroupServersRequest as UpdatePlacementGroupServersRequest, type index$j_UpdatePlacementGroupServersResponse as UpdatePlacementGroupServersResponse, type index$j_UpdatePrivateNICRequest as UpdatePrivateNICRequest, type index$j_UpdateSecurityGroupRequest as UpdateSecurityGroupRequest, type index$j_UpdateSecurityGroupResponse as UpdateSecurityGroupResponse, type index$j_UpdateSecurityGroupRuleRequest as UpdateSecurityGroupRuleRequest, type index$j_UpdateSecurityGroupRuleResponse as UpdateSecurityGroupRuleResponse, type index$j_UpdateServerRequest as UpdateServerRequest, type index$j_UpdateServerResponse as UpdateServerResponse, type UpdateSnapshotRequest$1 as UpdateSnapshotRequest, type index$j_UpdateSnapshotResponse as UpdateSnapshotResponse, type UpdateVolumeRequest$1 as UpdateVolumeRequest, type index$j_UpdateVolumeResponse as UpdateVolumeResponse, index$j_VOLUME_SERVER_TRANSIENT_STATUSES as VOLUME_SERVER_TRANSIENT_STATUSES, index$j_VOLUME_TRANSIENT_STATUSES as VOLUME_TRANSIENT_STATUSES, type Volume$2 as Volume, type index$j_VolumeServer as VolumeServer, type index$j_VolumeServerState as VolumeServerState, type index$j_VolumeServerTemplate as VolumeServerTemplate, type index$j_VolumeServerVolumeType as VolumeServerVolumeType, type index$j_VolumeState as VolumeState, type index$j_VolumeSummary as VolumeSummary, type index$j_VolumeTemplate as VolumeTemplate, type VolumeType$1 as VolumeType, type index$j_VolumeTypeCapabilities as VolumeTypeCapabilities, type index$j_VolumeTypeConstraints as VolumeTypeConstraints, type index$j_VolumeVolumeType as VolumeVolumeType };
|
|
14607
14914
|
}
|
|
14608
14915
|
|
|
14609
14916
|
declare namespace index$i {
|
|
@@ -15852,86 +16159,86 @@ declare class API$h extends API$v {
|
|
|
15852
16159
|
/** Lists transient statutes of the enum {@link HubStatus}. */
|
|
15853
16160
|
declare const HUB_TRANSIENT_STATUSES: HubStatus[];
|
|
15854
16161
|
|
|
15855
|
-
type index_gen$
|
|
15856
|
-
type index_gen$
|
|
15857
|
-
type index_gen$
|
|
15858
|
-
type index_gen$
|
|
15859
|
-
type index_gen$
|
|
15860
|
-
type index_gen$
|
|
15861
|
-
type index_gen$
|
|
15862
|
-
type index_gen$
|
|
15863
|
-
type index_gen$
|
|
15864
|
-
type index_gen$
|
|
15865
|
-
type index_gen$
|
|
15866
|
-
type index_gen$
|
|
15867
|
-
type index_gen$
|
|
15868
|
-
type index_gen$
|
|
15869
|
-
type index_gen$
|
|
15870
|
-
type index_gen$
|
|
15871
|
-
type index_gen$
|
|
15872
|
-
type index_gen$
|
|
15873
|
-
type index_gen$
|
|
15874
|
-
type index_gen$
|
|
15875
|
-
type index_gen$
|
|
15876
|
-
type index_gen$
|
|
15877
|
-
type index_gen$
|
|
15878
|
-
type index_gen$
|
|
15879
|
-
type index_gen$
|
|
15880
|
-
type index_gen$
|
|
15881
|
-
type index_gen$
|
|
15882
|
-
type index_gen$
|
|
15883
|
-
type index_gen$
|
|
15884
|
-
type index_gen$
|
|
15885
|
-
type index_gen$
|
|
15886
|
-
type index_gen$
|
|
15887
|
-
type index_gen$
|
|
15888
|
-
type index_gen$
|
|
15889
|
-
declare const index_gen$
|
|
15890
|
-
type index_gen$
|
|
15891
|
-
type index_gen$
|
|
15892
|
-
type index_gen$
|
|
15893
|
-
type index_gen$
|
|
15894
|
-
type index_gen$
|
|
15895
|
-
type index_gen$
|
|
15896
|
-
type index_gen$
|
|
15897
|
-
type index_gen$
|
|
15898
|
-
type index_gen$
|
|
15899
|
-
type index_gen$
|
|
15900
|
-
type index_gen$
|
|
15901
|
-
type index_gen$
|
|
15902
|
-
type index_gen$
|
|
15903
|
-
type index_gen$
|
|
15904
|
-
type index_gen$
|
|
15905
|
-
type index_gen$
|
|
15906
|
-
type index_gen$
|
|
15907
|
-
type index_gen$
|
|
15908
|
-
type index_gen$
|
|
15909
|
-
type index_gen$
|
|
15910
|
-
type index_gen$
|
|
15911
|
-
type index_gen$
|
|
15912
|
-
type index_gen$
|
|
15913
|
-
type index_gen$
|
|
15914
|
-
type index_gen$
|
|
15915
|
-
type index_gen$
|
|
15916
|
-
type index_gen$
|
|
15917
|
-
type index_gen$
|
|
15918
|
-
type index_gen$
|
|
15919
|
-
type index_gen$
|
|
15920
|
-
type index_gen$
|
|
15921
|
-
type index_gen$
|
|
15922
|
-
type index_gen$
|
|
15923
|
-
type index_gen$
|
|
15924
|
-
type index_gen$
|
|
15925
|
-
type index_gen$
|
|
15926
|
-
type index_gen$
|
|
15927
|
-
type index_gen$
|
|
15928
|
-
type index_gen$
|
|
15929
|
-
declare namespace index_gen$
|
|
15930
|
-
export { API$h as API, type Certificate$1 as Certificate, type index_gen$
|
|
16162
|
+
type index_gen$h_CreateDeviceRequest = CreateDeviceRequest;
|
|
16163
|
+
type index_gen$h_CreateDeviceResponse = CreateDeviceResponse;
|
|
16164
|
+
type index_gen$h_CreateHubRequest = CreateHubRequest;
|
|
16165
|
+
type index_gen$h_CreateNetworkRequest = CreateNetworkRequest;
|
|
16166
|
+
type index_gen$h_CreateNetworkResponse = CreateNetworkResponse;
|
|
16167
|
+
type index_gen$h_CreateRouteRequestDatabaseConfig = CreateRouteRequestDatabaseConfig;
|
|
16168
|
+
type index_gen$h_CreateRouteRequestRestConfig = CreateRouteRequestRestConfig;
|
|
16169
|
+
type index_gen$h_CreateRouteRequestS3Config = CreateRouteRequestS3Config;
|
|
16170
|
+
type index_gen$h_DeleteDeviceRequest = DeleteDeviceRequest;
|
|
16171
|
+
type index_gen$h_DeleteHubRequest = DeleteHubRequest;
|
|
16172
|
+
type index_gen$h_DeleteNetworkRequest = DeleteNetworkRequest;
|
|
16173
|
+
type index_gen$h_DeleteTwinDocumentRequest = DeleteTwinDocumentRequest;
|
|
16174
|
+
type index_gen$h_DeleteTwinDocumentsRequest = DeleteTwinDocumentsRequest;
|
|
16175
|
+
type index_gen$h_Device = Device;
|
|
16176
|
+
type index_gen$h_DeviceMessageFilters = DeviceMessageFilters;
|
|
16177
|
+
type index_gen$h_DeviceMessageFiltersRule = DeviceMessageFiltersRule;
|
|
16178
|
+
type index_gen$h_DeviceMessageFiltersRulePolicy = DeviceMessageFiltersRulePolicy;
|
|
16179
|
+
type index_gen$h_DeviceStatus = DeviceStatus;
|
|
16180
|
+
type index_gen$h_DisableDeviceRequest = DisableDeviceRequest;
|
|
16181
|
+
type index_gen$h_DisableHubRequest = DisableHubRequest;
|
|
16182
|
+
type index_gen$h_EnableDeviceRequest = EnableDeviceRequest;
|
|
16183
|
+
type index_gen$h_EnableHubRequest = EnableHubRequest;
|
|
16184
|
+
type index_gen$h_GetDeviceCertificateRequest = GetDeviceCertificateRequest;
|
|
16185
|
+
type index_gen$h_GetDeviceCertificateResponse = GetDeviceCertificateResponse;
|
|
16186
|
+
type index_gen$h_GetDeviceMetricsRequest = GetDeviceMetricsRequest;
|
|
16187
|
+
type index_gen$h_GetDeviceMetricsResponse = GetDeviceMetricsResponse;
|
|
16188
|
+
type index_gen$h_GetDeviceRequest = GetDeviceRequest;
|
|
16189
|
+
type index_gen$h_GetHubCARequest = GetHubCARequest;
|
|
16190
|
+
type index_gen$h_GetHubCAResponse = GetHubCAResponse;
|
|
16191
|
+
type index_gen$h_GetHubMetricsRequest = GetHubMetricsRequest;
|
|
16192
|
+
type index_gen$h_GetHubMetricsResponse = GetHubMetricsResponse;
|
|
16193
|
+
type index_gen$h_GetHubRequest = GetHubRequest;
|
|
16194
|
+
type index_gen$h_GetNetworkRequest = GetNetworkRequest;
|
|
16195
|
+
type index_gen$h_GetTwinDocumentRequest = GetTwinDocumentRequest;
|
|
16196
|
+
declare const index_gen$h_HUB_TRANSIENT_STATUSES: typeof HUB_TRANSIENT_STATUSES;
|
|
16197
|
+
type index_gen$h_Hub = Hub;
|
|
16198
|
+
type index_gen$h_HubProductPlan = HubProductPlan;
|
|
16199
|
+
type index_gen$h_HubStatus = HubStatus;
|
|
16200
|
+
type index_gen$h_HubTwinsGraphiteConfig = HubTwinsGraphiteConfig;
|
|
16201
|
+
type index_gen$h_ListDevicesRequest = ListDevicesRequest;
|
|
16202
|
+
type index_gen$h_ListDevicesRequestOrderBy = ListDevicesRequestOrderBy;
|
|
16203
|
+
type index_gen$h_ListDevicesResponse = ListDevicesResponse;
|
|
16204
|
+
type index_gen$h_ListHubsRequest = ListHubsRequest;
|
|
16205
|
+
type index_gen$h_ListHubsRequestOrderBy = ListHubsRequestOrderBy;
|
|
16206
|
+
type index_gen$h_ListHubsResponse = ListHubsResponse;
|
|
16207
|
+
type index_gen$h_ListNetworksRequest = ListNetworksRequest;
|
|
16208
|
+
type index_gen$h_ListNetworksRequestOrderBy = ListNetworksRequestOrderBy;
|
|
16209
|
+
type index_gen$h_ListNetworksResponse = ListNetworksResponse;
|
|
16210
|
+
type index_gen$h_ListTwinDocumentsRequest = ListTwinDocumentsRequest;
|
|
16211
|
+
type index_gen$h_ListTwinDocumentsResponse = ListTwinDocumentsResponse;
|
|
16212
|
+
type index_gen$h_ListTwinDocumentsResponseDocumentSummary = ListTwinDocumentsResponseDocumentSummary;
|
|
16213
|
+
type index_gen$h_Network = Network;
|
|
16214
|
+
type index_gen$h_NetworkNetworkType = NetworkNetworkType;
|
|
16215
|
+
type index_gen$h_PatchTwinDocumentRequest = PatchTwinDocumentRequest;
|
|
16216
|
+
type index_gen$h_PutTwinDocumentRequest = PutTwinDocumentRequest;
|
|
16217
|
+
type index_gen$h_RenewDeviceCertificateRequest = RenewDeviceCertificateRequest;
|
|
16218
|
+
type index_gen$h_RenewDeviceCertificateResponse = RenewDeviceCertificateResponse;
|
|
16219
|
+
type index_gen$h_RouteDatabaseConfig = RouteDatabaseConfig;
|
|
16220
|
+
type index_gen$h_RouteDatabaseConfigEngine = RouteDatabaseConfigEngine;
|
|
16221
|
+
type index_gen$h_RouteRestConfig = RouteRestConfig;
|
|
16222
|
+
type index_gen$h_RouteRestConfigHttpVerb = RouteRestConfigHttpVerb;
|
|
16223
|
+
type index_gen$h_RouteRouteType = RouteRouteType;
|
|
16224
|
+
type index_gen$h_RouteS3Config = RouteS3Config;
|
|
16225
|
+
type index_gen$h_RouteS3ConfigS3Strategy = RouteS3ConfigS3Strategy;
|
|
16226
|
+
type index_gen$h_RouteSummary = RouteSummary;
|
|
16227
|
+
type index_gen$h_SetDeviceCertificateRequest = SetDeviceCertificateRequest;
|
|
16228
|
+
type index_gen$h_SetDeviceCertificateResponse = SetDeviceCertificateResponse;
|
|
16229
|
+
type index_gen$h_SetHubCARequest = SetHubCARequest;
|
|
16230
|
+
type index_gen$h_TwinDocument = TwinDocument;
|
|
16231
|
+
type index_gen$h_UpdateDeviceRequest = UpdateDeviceRequest;
|
|
16232
|
+
type index_gen$h_UpdateHubRequest = UpdateHubRequest;
|
|
16233
|
+
type index_gen$h_UpdateRouteRequestDatabaseConfig = UpdateRouteRequestDatabaseConfig;
|
|
16234
|
+
type index_gen$h_UpdateRouteRequestRestConfig = UpdateRouteRequestRestConfig;
|
|
16235
|
+
type index_gen$h_UpdateRouteRequestS3Config = UpdateRouteRequestS3Config;
|
|
16236
|
+
declare namespace index_gen$h {
|
|
16237
|
+
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 };
|
|
15931
16238
|
}
|
|
15932
16239
|
|
|
15933
16240
|
declare namespace index$h {
|
|
15934
|
-
export { index_gen$
|
|
16241
|
+
export { index_gen$h as v1 };
|
|
15935
16242
|
}
|
|
15936
16243
|
|
|
15937
16244
|
type ListIPsRequestOrderBy$1 = 'created_at_desc' | 'created_at_asc' | 'updated_at_desc' | 'updated_at_asc' | 'attached_at_desc' | 'attached_at_asc';
|
|
@@ -16008,7 +16315,7 @@ type BookIPRequest = {
|
|
|
16008
16315
|
*/
|
|
16009
16316
|
projectId?: string;
|
|
16010
16317
|
/** Source in which to book the IP. Not all sources are available for booking. */
|
|
16011
|
-
source
|
|
16318
|
+
source: Source;
|
|
16012
16319
|
/** Request an IPv6 instead of an IPv4. */
|
|
16013
16320
|
isIpv6: boolean;
|
|
16014
16321
|
/**
|
|
@@ -16184,17 +16491,17 @@ declare namespace validationRules_gen$4 {
|
|
|
16184
16491
|
export { ListIPsRequest$2 as ListIPsRequest };
|
|
16185
16492
|
}
|
|
16186
16493
|
|
|
16187
|
-
type index_gen$
|
|
16188
|
-
type index_gen$
|
|
16189
|
-
type index_gen$
|
|
16190
|
-
type index_gen$
|
|
16191
|
-
type index_gen$
|
|
16192
|
-
declare namespace index_gen$
|
|
16193
|
-
export { API$g as API, type index_gen$
|
|
16494
|
+
type index_gen$g_BookIPRequest = BookIPRequest;
|
|
16495
|
+
type index_gen$g_ReleaseIPRequest = ReleaseIPRequest;
|
|
16496
|
+
type index_gen$g_Resource = Resource;
|
|
16497
|
+
type index_gen$g_ResourceType = ResourceType;
|
|
16498
|
+
type index_gen$g_Source = Source;
|
|
16499
|
+
declare namespace index_gen$g {
|
|
16500
|
+
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$4 as ValidationRules };
|
|
16194
16501
|
}
|
|
16195
16502
|
|
|
16196
16503
|
declare namespace index$g {
|
|
16197
|
-
export { index_gen$
|
|
16504
|
+
export { index_gen$g as v1 };
|
|
16198
16505
|
}
|
|
16199
16506
|
|
|
16200
16507
|
type ListNamesRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
@@ -16219,10 +16526,6 @@ interface PinInfo {
|
|
|
16219
16526
|
progress?: number;
|
|
16220
16527
|
statusDetails: PinDetails;
|
|
16221
16528
|
}
|
|
16222
|
-
interface PinOptions {
|
|
16223
|
-
requiredZones: string[];
|
|
16224
|
-
replicationCount: number;
|
|
16225
|
-
}
|
|
16226
16529
|
interface Name {
|
|
16227
16530
|
nameId: string;
|
|
16228
16531
|
projectId: string;
|
|
@@ -16276,8 +16579,6 @@ type CreatePinByCIDRequest = {
|
|
|
16276
16579
|
origins?: string[];
|
|
16277
16580
|
/** Pin name. */
|
|
16278
16581
|
name?: string;
|
|
16279
|
-
/** Pin options. */
|
|
16280
|
-
pinOptions?: PinOptions;
|
|
16281
16582
|
};
|
|
16282
16583
|
type CreatePinByURLRequest = {
|
|
16283
16584
|
/**
|
|
@@ -16291,8 +16592,6 @@ type CreatePinByURLRequest = {
|
|
|
16291
16592
|
url: string;
|
|
16292
16593
|
/** Pin name. */
|
|
16293
16594
|
name?: string;
|
|
16294
|
-
/** Pin options. */
|
|
16295
|
-
pinOptions?: PinOptions;
|
|
16296
16595
|
};
|
|
16297
16596
|
type CreateVolumeRequest = {
|
|
16298
16597
|
/**
|
|
@@ -16504,8 +16803,6 @@ type ReplacePinRequest = {
|
|
|
16504
16803
|
name?: string;
|
|
16505
16804
|
/** Node containing the content you want to pin. */
|
|
16506
16805
|
origins?: string[];
|
|
16507
|
-
/** Pin options. */
|
|
16508
|
-
pinOptions?: PinOptions;
|
|
16509
16806
|
};
|
|
16510
16807
|
interface ReplacePinResponse {
|
|
16511
16808
|
pin?: Pin;
|
|
@@ -16711,51 +17008,50 @@ declare const NAME_TRANSIENT_STATUSES: NameStatus[];
|
|
|
16711
17008
|
/** Lists transient statutes of the enum {@link PinStatus}. */
|
|
16712
17009
|
declare const PIN_TRANSIENT_STATUSES: PinStatus[];
|
|
16713
17010
|
|
|
16714
|
-
type index_gen$
|
|
16715
|
-
type index_gen$
|
|
16716
|
-
type index_gen$
|
|
16717
|
-
type index_gen$
|
|
16718
|
-
type index_gen$
|
|
16719
|
-
type index_gen$
|
|
16720
|
-
type index_gen$
|
|
16721
|
-
type index_gen$
|
|
16722
|
-
type index_gen$
|
|
16723
|
-
declare const index_gen$
|
|
16724
|
-
type index_gen$
|
|
16725
|
-
type index_gen$
|
|
16726
|
-
type index_gen$
|
|
16727
|
-
type index_gen$
|
|
16728
|
-
type index_gen$
|
|
16729
|
-
type index_gen$
|
|
16730
|
-
type index_gen$
|
|
16731
|
-
type index_gen$
|
|
16732
|
-
type index_gen$
|
|
16733
|
-
type index_gen$
|
|
16734
|
-
type index_gen$
|
|
16735
|
-
type index_gen$
|
|
16736
|
-
type index_gen$
|
|
16737
|
-
type index_gen$
|
|
16738
|
-
type index_gen$
|
|
16739
|
-
declare const index_gen$
|
|
16740
|
-
type index_gen$
|
|
16741
|
-
type index_gen$
|
|
16742
|
-
declare const index_gen$
|
|
16743
|
-
type index_gen$
|
|
16744
|
-
type index_gen$
|
|
16745
|
-
type index_gen$
|
|
16746
|
-
type index_gen$
|
|
16747
|
-
type index_gen$
|
|
16748
|
-
type index_gen$
|
|
16749
|
-
type index_gen$
|
|
16750
|
-
type index_gen$
|
|
16751
|
-
type index_gen$
|
|
16752
|
-
|
|
16753
|
-
|
|
16754
|
-
export { API$f as API, type index_gen$e_CreatePinByCIDRequest as CreatePinByCIDRequest, type index_gen$e_CreatePinByURLRequest as CreatePinByURLRequest, type index_gen$e_CreateVolumeRequest as CreateVolumeRequest, type index_gen$e_DeletePinRequest as DeletePinRequest, type index_gen$e_DeleteVolumeRequest as DeleteVolumeRequest, type index_gen$e_ExportKeyNameResponse as ExportKeyNameResponse, type index_gen$e_GetPinRequest as GetPinRequest, type index_gen$e_GetVolumeRequest as GetVolumeRequest, index_gen$e_IpnsAPI as IpnsAPI, type index_gen$e_IpnsApiCreateNameRequest as IpnsApiCreateNameRequest, type index_gen$e_IpnsApiDeleteNameRequest as IpnsApiDeleteNameRequest, type index_gen$e_IpnsApiExportKeyNameRequest as IpnsApiExportKeyNameRequest, type index_gen$e_IpnsApiGetNameRequest as IpnsApiGetNameRequest, type index_gen$e_IpnsApiImportKeyNameRequest as IpnsApiImportKeyNameRequest, type index_gen$e_IpnsApiListNamesRequest as IpnsApiListNamesRequest, type index_gen$e_IpnsApiUpdateNameRequest as IpnsApiUpdateNameRequest, type index_gen$e_ListNamesRequestOrderBy as ListNamesRequestOrderBy, type index_gen$e_ListNamesResponse as ListNamesResponse, type index_gen$e_ListPinsRequest as ListPinsRequest, type index_gen$e_ListPinsRequestOrderBy as ListPinsRequestOrderBy, type index_gen$e_ListPinsResponse as ListPinsResponse, type index_gen$e_ListVolumesRequest as ListVolumesRequest, type index_gen$e_ListVolumesRequestOrderBy as ListVolumesRequestOrderBy, type index_gen$e_ListVolumesResponse as ListVolumesResponse, index_gen$e_NAME_TRANSIENT_STATUSES as NAME_TRANSIENT_STATUSES, type index_gen$e_Name as Name, type index_gen$e_NameStatus as NameStatus, index_gen$e_PIN_TRANSIENT_STATUSES as PIN_TRANSIENT_STATUSES, type index_gen$e_Pin as Pin, type index_gen$e_PinCID as PinCID, type index_gen$e_PinCIDMeta as PinCIDMeta, type index_gen$e_PinDetails as PinDetails, type index_gen$e_PinInfo as PinInfo, type index_gen$e_PinOptions as PinOptions, type index_gen$e_PinStatus as PinStatus, type index_gen$e_ReplacePinRequest as ReplacePinRequest, type index_gen$e_ReplacePinResponse as ReplacePinResponse, type index_gen$e_UpdateVolumeRequest as UpdateVolumeRequest, type Volume$1 as Volume };
|
|
17011
|
+
type index_gen$f_CreatePinByCIDRequest = CreatePinByCIDRequest;
|
|
17012
|
+
type index_gen$f_CreatePinByURLRequest = CreatePinByURLRequest;
|
|
17013
|
+
type index_gen$f_CreateVolumeRequest = CreateVolumeRequest;
|
|
17014
|
+
type index_gen$f_DeletePinRequest = DeletePinRequest;
|
|
17015
|
+
type index_gen$f_DeleteVolumeRequest = DeleteVolumeRequest;
|
|
17016
|
+
type index_gen$f_ExportKeyNameResponse = ExportKeyNameResponse;
|
|
17017
|
+
type index_gen$f_GetPinRequest = GetPinRequest;
|
|
17018
|
+
type index_gen$f_GetVolumeRequest = GetVolumeRequest;
|
|
17019
|
+
type index_gen$f_IpnsAPI = IpnsAPI;
|
|
17020
|
+
declare const index_gen$f_IpnsAPI: typeof IpnsAPI;
|
|
17021
|
+
type index_gen$f_IpnsApiCreateNameRequest = IpnsApiCreateNameRequest;
|
|
17022
|
+
type index_gen$f_IpnsApiDeleteNameRequest = IpnsApiDeleteNameRequest;
|
|
17023
|
+
type index_gen$f_IpnsApiExportKeyNameRequest = IpnsApiExportKeyNameRequest;
|
|
17024
|
+
type index_gen$f_IpnsApiGetNameRequest = IpnsApiGetNameRequest;
|
|
17025
|
+
type index_gen$f_IpnsApiImportKeyNameRequest = IpnsApiImportKeyNameRequest;
|
|
17026
|
+
type index_gen$f_IpnsApiListNamesRequest = IpnsApiListNamesRequest;
|
|
17027
|
+
type index_gen$f_IpnsApiUpdateNameRequest = IpnsApiUpdateNameRequest;
|
|
17028
|
+
type index_gen$f_ListNamesRequestOrderBy = ListNamesRequestOrderBy;
|
|
17029
|
+
type index_gen$f_ListNamesResponse = ListNamesResponse;
|
|
17030
|
+
type index_gen$f_ListPinsRequest = ListPinsRequest;
|
|
17031
|
+
type index_gen$f_ListPinsRequestOrderBy = ListPinsRequestOrderBy;
|
|
17032
|
+
type index_gen$f_ListPinsResponse = ListPinsResponse;
|
|
17033
|
+
type index_gen$f_ListVolumesRequest = ListVolumesRequest;
|
|
17034
|
+
type index_gen$f_ListVolumesRequestOrderBy = ListVolumesRequestOrderBy;
|
|
17035
|
+
type index_gen$f_ListVolumesResponse = ListVolumesResponse;
|
|
17036
|
+
declare const index_gen$f_NAME_TRANSIENT_STATUSES: typeof NAME_TRANSIENT_STATUSES;
|
|
17037
|
+
type index_gen$f_Name = Name;
|
|
17038
|
+
type index_gen$f_NameStatus = NameStatus;
|
|
17039
|
+
declare const index_gen$f_PIN_TRANSIENT_STATUSES: typeof PIN_TRANSIENT_STATUSES;
|
|
17040
|
+
type index_gen$f_Pin = Pin;
|
|
17041
|
+
type index_gen$f_PinCID = PinCID;
|
|
17042
|
+
type index_gen$f_PinCIDMeta = PinCIDMeta;
|
|
17043
|
+
type index_gen$f_PinDetails = PinDetails;
|
|
17044
|
+
type index_gen$f_PinInfo = PinInfo;
|
|
17045
|
+
type index_gen$f_PinStatus = PinStatus;
|
|
17046
|
+
type index_gen$f_ReplacePinRequest = ReplacePinRequest;
|
|
17047
|
+
type index_gen$f_ReplacePinResponse = ReplacePinResponse;
|
|
17048
|
+
type index_gen$f_UpdateVolumeRequest = UpdateVolumeRequest;
|
|
17049
|
+
declare namespace index_gen$f {
|
|
17050
|
+
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 };
|
|
16755
17051
|
}
|
|
16756
17052
|
|
|
16757
17053
|
declare namespace index$f {
|
|
16758
|
-
export { index_gen$
|
|
17054
|
+
export { index_gen$f as v1alpha1 };
|
|
16759
17055
|
}
|
|
16760
17056
|
|
|
16761
17057
|
type AutoscalerEstimator = 'unknown_estimator' | 'binpacking';
|
|
@@ -22351,11 +22647,11 @@ declare class API$c extends API$v {
|
|
|
22351
22647
|
getVersion: (request: Readonly<GetVersionRequest$1>) => Promise<GetVersionResponse>;
|
|
22352
22648
|
}
|
|
22353
22649
|
|
|
22354
|
-
type index_gen$
|
|
22355
|
-
type index_gen$
|
|
22356
|
-
type index_gen$
|
|
22357
|
-
declare namespace index_gen$
|
|
22358
|
-
export { API$c as API, type GetImageRequest$2 as GetImageRequest, type index_gen$
|
|
22650
|
+
type index_gen$e_GetImageResponse = GetImageResponse;
|
|
22651
|
+
type index_gen$e_GetVersionResponse = GetVersionResponse;
|
|
22652
|
+
type index_gen$e_Organization = Organization;
|
|
22653
|
+
declare namespace index_gen$e {
|
|
22654
|
+
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 };
|
|
22359
22655
|
}
|
|
22360
22656
|
|
|
22361
22657
|
type ListImagesRequestOrderBy$1 = 'name_asc' | 'name_desc' | 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc';
|
|
@@ -22582,27 +22878,27 @@ declare class API$b extends API$v {
|
|
|
22582
22878
|
getCategory: (request: Readonly<GetCategoryRequest>) => Promise<Category>;
|
|
22583
22879
|
}
|
|
22584
22880
|
|
|
22585
|
-
type index_gen$
|
|
22586
|
-
type index_gen$
|
|
22587
|
-
type index_gen$
|
|
22588
|
-
type index_gen$
|
|
22589
|
-
type index_gen$
|
|
22590
|
-
type index_gen$
|
|
22591
|
-
type index_gen$
|
|
22592
|
-
type index_gen$
|
|
22593
|
-
type index_gen$
|
|
22594
|
-
type index_gen$
|
|
22595
|
-
type index_gen$
|
|
22596
|
-
type index_gen$
|
|
22597
|
-
type index_gen$
|
|
22598
|
-
type index_gen$
|
|
22599
|
-
type index_gen$
|
|
22600
|
-
declare namespace index_gen$
|
|
22601
|
-
export { API$b as API, type index_gen$
|
|
22881
|
+
type index_gen$d_Category = Category;
|
|
22882
|
+
type index_gen$d_GetCategoryRequest = GetCategoryRequest;
|
|
22883
|
+
type index_gen$d_GetLocalImageRequest = GetLocalImageRequest;
|
|
22884
|
+
type index_gen$d_GetVersionRequest = GetVersionRequest;
|
|
22885
|
+
type index_gen$d_ListCategoriesRequest = ListCategoriesRequest;
|
|
22886
|
+
type index_gen$d_ListCategoriesResponse = ListCategoriesResponse;
|
|
22887
|
+
type index_gen$d_ListLocalImagesRequest = ListLocalImagesRequest;
|
|
22888
|
+
type index_gen$d_ListLocalImagesRequestOrderBy = ListLocalImagesRequestOrderBy;
|
|
22889
|
+
type index_gen$d_ListLocalImagesResponse = ListLocalImagesResponse;
|
|
22890
|
+
type index_gen$d_ListVersionsRequest = ListVersionsRequest;
|
|
22891
|
+
type index_gen$d_ListVersionsRequestOrderBy = ListVersionsRequestOrderBy;
|
|
22892
|
+
type index_gen$d_ListVersionsResponse = ListVersionsResponse;
|
|
22893
|
+
type index_gen$d_LocalImage = LocalImage;
|
|
22894
|
+
type index_gen$d_LocalImageType = LocalImageType;
|
|
22895
|
+
type index_gen$d_Version = Version;
|
|
22896
|
+
declare namespace index_gen$d {
|
|
22897
|
+
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 };
|
|
22602
22898
|
}
|
|
22603
22899
|
|
|
22604
22900
|
declare namespace index$a {
|
|
22605
|
-
export { index_gen$
|
|
22901
|
+
export { index_gen$e as v1, index_gen$d as v2 };
|
|
22606
22902
|
}
|
|
22607
22903
|
|
|
22608
22904
|
type ListCredentialsRequestOrderBy = 'id_asc' | 'id_desc' | 'name_asc' | 'name_desc';
|
|
@@ -22947,22 +23243,22 @@ declare class API$a extends API$v {
|
|
|
22947
23243
|
getCredential: (request: Readonly<GetCredentialRequest>) => Promise<Credential>;
|
|
22948
23244
|
}
|
|
22949
23245
|
|
|
22950
|
-
type index_gen$
|
|
22951
|
-
type index_gen$
|
|
22952
|
-
type index_gen$
|
|
22953
|
-
type index_gen$
|
|
22954
|
-
type index_gen$
|
|
22955
|
-
type index_gen$
|
|
22956
|
-
type index_gen$
|
|
22957
|
-
type index_gen$
|
|
22958
|
-
type index_gen$
|
|
22959
|
-
type index_gen$
|
|
22960
|
-
type index_gen$
|
|
22961
|
-
type index_gen$
|
|
22962
|
-
type index_gen$
|
|
22963
|
-
type index_gen$
|
|
22964
|
-
declare namespace index_gen$
|
|
22965
|
-
export { API$a as API, type index_gen$
|
|
23246
|
+
type index_gen$c_CreateCredentialRequest = CreateCredentialRequest;
|
|
23247
|
+
type index_gen$c_Credential = Credential;
|
|
23248
|
+
type index_gen$c_CredentialNATSCredsFile = CredentialNATSCredsFile;
|
|
23249
|
+
type index_gen$c_CredentialSQSSNSCreds = CredentialSQSSNSCreds;
|
|
23250
|
+
type index_gen$c_CredentialSummary = CredentialSummary;
|
|
23251
|
+
type index_gen$c_CredentialSummarySQSSNSCreds = CredentialSummarySQSSNSCreds;
|
|
23252
|
+
type index_gen$c_DeleteCredentialRequest = DeleteCredentialRequest;
|
|
23253
|
+
type index_gen$c_GetCredentialRequest = GetCredentialRequest;
|
|
23254
|
+
type index_gen$c_ListCredentialsRequest = ListCredentialsRequest;
|
|
23255
|
+
type index_gen$c_ListCredentialsRequestOrderBy = ListCredentialsRequestOrderBy;
|
|
23256
|
+
type index_gen$c_ListCredentialsResponse = ListCredentialsResponse;
|
|
23257
|
+
type index_gen$c_NamespaceProtocol = NamespaceProtocol;
|
|
23258
|
+
type index_gen$c_Permissions = Permissions;
|
|
23259
|
+
type index_gen$c_UpdateCredentialRequest = UpdateCredentialRequest;
|
|
23260
|
+
declare namespace index_gen$c {
|
|
23261
|
+
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 };
|
|
22966
23262
|
}
|
|
22967
23263
|
|
|
22968
23264
|
type ListNatsAccountsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc';
|
|
@@ -23765,51 +24061,51 @@ declare namespace validationRules_gen$2 {
|
|
|
23765
24061
|
export { validationRules_gen$2_NatsAccount as NatsAccount, validationRules_gen$2_NatsApiCreateNatsAccountRequest as NatsApiCreateNatsAccountRequest, validationRules_gen$2_NatsApiCreateNatsCredentialsRequest as NatsApiCreateNatsCredentialsRequest, validationRules_gen$2_NatsApiUpdateNatsAccountRequest as NatsApiUpdateNatsAccountRequest, validationRules_gen$2_NatsCredentials as NatsCredentials, validationRules_gen$2_SnsApiCreateSnsCredentialsRequest as SnsApiCreateSnsCredentialsRequest, validationRules_gen$2_SnsApiUpdateSnsCredentialsRequest as SnsApiUpdateSnsCredentialsRequest, validationRules_gen$2_SnsCredentials as SnsCredentials, validationRules_gen$2_SqsApiCreateSqsCredentialsRequest as SqsApiCreateSqsCredentialsRequest, validationRules_gen$2_SqsApiUpdateSqsCredentialsRequest as SqsApiUpdateSqsCredentialsRequest, validationRules_gen$2_SqsCredentials as SqsCredentials };
|
|
23766
24062
|
}
|
|
23767
24063
|
|
|
23768
|
-
type index_gen$
|
|
23769
|
-
type index_gen$
|
|
23770
|
-
type index_gen$
|
|
23771
|
-
type index_gen$
|
|
23772
|
-
type index_gen$
|
|
23773
|
-
type index_gen$
|
|
23774
|
-
type index_gen$
|
|
23775
|
-
type index_gen$
|
|
23776
|
-
type index_gen$
|
|
23777
|
-
type index_gen$
|
|
23778
|
-
declare const index_gen$
|
|
23779
|
-
type index_gen$
|
|
23780
|
-
type index_gen$
|
|
23781
|
-
type index_gen$
|
|
23782
|
-
type index_gen$
|
|
23783
|
-
type index_gen$
|
|
23784
|
-
type index_gen$
|
|
23785
|
-
type index_gen$
|
|
23786
|
-
declare const index_gen$
|
|
23787
|
-
type index_gen$
|
|
23788
|
-
type index_gen$
|
|
23789
|
-
type index_gen$
|
|
23790
|
-
type index_gen$
|
|
23791
|
-
type index_gen$
|
|
23792
|
-
type index_gen$
|
|
23793
|
-
type index_gen$
|
|
23794
|
-
type index_gen$
|
|
23795
|
-
type index_gen$
|
|
23796
|
-
type index_gen$
|
|
23797
|
-
declare const index_gen$
|
|
23798
|
-
type index_gen$
|
|
23799
|
-
type index_gen$
|
|
23800
|
-
type index_gen$
|
|
23801
|
-
type index_gen$
|
|
23802
|
-
type index_gen$
|
|
23803
|
-
type index_gen$
|
|
23804
|
-
type index_gen$
|
|
23805
|
-
type index_gen$
|
|
23806
|
-
type index_gen$
|
|
23807
|
-
declare namespace index_gen$
|
|
23808
|
-
export { type index_gen$
|
|
24064
|
+
type index_gen$b_File = File;
|
|
24065
|
+
type index_gen$b_ListNatsAccountsRequestOrderBy = ListNatsAccountsRequestOrderBy;
|
|
24066
|
+
type index_gen$b_ListNatsAccountsResponse = ListNatsAccountsResponse;
|
|
24067
|
+
type index_gen$b_ListNatsCredentialsRequestOrderBy = ListNatsCredentialsRequestOrderBy;
|
|
24068
|
+
type index_gen$b_ListNatsCredentialsResponse = ListNatsCredentialsResponse;
|
|
24069
|
+
type index_gen$b_ListSnsCredentialsRequestOrderBy = ListSnsCredentialsRequestOrderBy;
|
|
24070
|
+
type index_gen$b_ListSnsCredentialsResponse = ListSnsCredentialsResponse;
|
|
24071
|
+
type index_gen$b_ListSqsCredentialsRequestOrderBy = ListSqsCredentialsRequestOrderBy;
|
|
24072
|
+
type index_gen$b_ListSqsCredentialsResponse = ListSqsCredentialsResponse;
|
|
24073
|
+
type index_gen$b_NatsAPI = NatsAPI;
|
|
24074
|
+
declare const index_gen$b_NatsAPI: typeof NatsAPI;
|
|
24075
|
+
type index_gen$b_NatsApiDeleteNatsAccountRequest = NatsApiDeleteNatsAccountRequest;
|
|
24076
|
+
type index_gen$b_NatsApiDeleteNatsCredentialsRequest = NatsApiDeleteNatsCredentialsRequest;
|
|
24077
|
+
type index_gen$b_NatsApiGetNatsAccountRequest = NatsApiGetNatsAccountRequest;
|
|
24078
|
+
type index_gen$b_NatsApiGetNatsCredentialsRequest = NatsApiGetNatsCredentialsRequest;
|
|
24079
|
+
type index_gen$b_NatsApiListNatsAccountsRequest = NatsApiListNatsAccountsRequest;
|
|
24080
|
+
type index_gen$b_NatsApiListNatsCredentialsRequest = NatsApiListNatsCredentialsRequest;
|
|
24081
|
+
type index_gen$b_SnsAPI = SnsAPI;
|
|
24082
|
+
declare const index_gen$b_SnsAPI: typeof SnsAPI;
|
|
24083
|
+
type index_gen$b_SnsApiActivateSnsRequest = SnsApiActivateSnsRequest;
|
|
24084
|
+
type index_gen$b_SnsApiDeactivateSnsRequest = SnsApiDeactivateSnsRequest;
|
|
24085
|
+
type index_gen$b_SnsApiDeleteSnsCredentialsRequest = SnsApiDeleteSnsCredentialsRequest;
|
|
24086
|
+
type index_gen$b_SnsApiGetSnsCredentialsRequest = SnsApiGetSnsCredentialsRequest;
|
|
24087
|
+
type index_gen$b_SnsApiGetSnsInfoRequest = SnsApiGetSnsInfoRequest;
|
|
24088
|
+
type index_gen$b_SnsApiListSnsCredentialsRequest = SnsApiListSnsCredentialsRequest;
|
|
24089
|
+
type index_gen$b_SnsInfo = SnsInfo;
|
|
24090
|
+
type index_gen$b_SnsInfoStatus = SnsInfoStatus;
|
|
24091
|
+
type index_gen$b_SnsPermissions = SnsPermissions;
|
|
24092
|
+
type index_gen$b_SqsAPI = SqsAPI;
|
|
24093
|
+
declare const index_gen$b_SqsAPI: typeof SqsAPI;
|
|
24094
|
+
type index_gen$b_SqsApiActivateSqsRequest = SqsApiActivateSqsRequest;
|
|
24095
|
+
type index_gen$b_SqsApiDeactivateSqsRequest = SqsApiDeactivateSqsRequest;
|
|
24096
|
+
type index_gen$b_SqsApiDeleteSqsCredentialsRequest = SqsApiDeleteSqsCredentialsRequest;
|
|
24097
|
+
type index_gen$b_SqsApiGetSqsCredentialsRequest = SqsApiGetSqsCredentialsRequest;
|
|
24098
|
+
type index_gen$b_SqsApiGetSqsInfoRequest = SqsApiGetSqsInfoRequest;
|
|
24099
|
+
type index_gen$b_SqsApiListSqsCredentialsRequest = SqsApiListSqsCredentialsRequest;
|
|
24100
|
+
type index_gen$b_SqsInfo = SqsInfo;
|
|
24101
|
+
type index_gen$b_SqsInfoStatus = SqsInfoStatus;
|
|
24102
|
+
type index_gen$b_SqsPermissions = SqsPermissions;
|
|
24103
|
+
declare namespace index_gen$b {
|
|
24104
|
+
export { type index_gen$b_File as File, type index_gen$b_ListNatsAccountsRequestOrderBy as ListNatsAccountsRequestOrderBy, type index_gen$b_ListNatsAccountsResponse as ListNatsAccountsResponse, type index_gen$b_ListNatsCredentialsRequestOrderBy as ListNatsCredentialsRequestOrderBy, type index_gen$b_ListNatsCredentialsResponse as ListNatsCredentialsResponse, type index_gen$b_ListSnsCredentialsRequestOrderBy as ListSnsCredentialsRequestOrderBy, type index_gen$b_ListSnsCredentialsResponse as ListSnsCredentialsResponse, type index_gen$b_ListSqsCredentialsRequestOrderBy as ListSqsCredentialsRequestOrderBy, type index_gen$b_ListSqsCredentialsResponse as ListSqsCredentialsResponse, index_gen$b_NatsAPI as NatsAPI, type NatsAccount$1 as NatsAccount, type NatsApiCreateNatsAccountRequest$1 as NatsApiCreateNatsAccountRequest, type NatsApiCreateNatsCredentialsRequest$1 as NatsApiCreateNatsCredentialsRequest, type index_gen$b_NatsApiDeleteNatsAccountRequest as NatsApiDeleteNatsAccountRequest, type index_gen$b_NatsApiDeleteNatsCredentialsRequest as NatsApiDeleteNatsCredentialsRequest, type index_gen$b_NatsApiGetNatsAccountRequest as NatsApiGetNatsAccountRequest, type index_gen$b_NatsApiGetNatsCredentialsRequest as NatsApiGetNatsCredentialsRequest, type index_gen$b_NatsApiListNatsAccountsRequest as NatsApiListNatsAccountsRequest, type index_gen$b_NatsApiListNatsCredentialsRequest as NatsApiListNatsCredentialsRequest, type NatsApiUpdateNatsAccountRequest$1 as NatsApiUpdateNatsAccountRequest, type NatsCredentials$1 as NatsCredentials, index_gen$b_SnsAPI as SnsAPI, type index_gen$b_SnsApiActivateSnsRequest as SnsApiActivateSnsRequest, type SnsApiCreateSnsCredentialsRequest$1 as SnsApiCreateSnsCredentialsRequest, type index_gen$b_SnsApiDeactivateSnsRequest as SnsApiDeactivateSnsRequest, type index_gen$b_SnsApiDeleteSnsCredentialsRequest as SnsApiDeleteSnsCredentialsRequest, type index_gen$b_SnsApiGetSnsCredentialsRequest as SnsApiGetSnsCredentialsRequest, type index_gen$b_SnsApiGetSnsInfoRequest as SnsApiGetSnsInfoRequest, type index_gen$b_SnsApiListSnsCredentialsRequest as SnsApiListSnsCredentialsRequest, type SnsApiUpdateSnsCredentialsRequest$1 as SnsApiUpdateSnsCredentialsRequest, type SnsCredentials$1 as SnsCredentials, type index_gen$b_SnsInfo as SnsInfo, type index_gen$b_SnsInfoStatus as SnsInfoStatus, type index_gen$b_SnsPermissions as SnsPermissions, index_gen$b_SqsAPI as SqsAPI, type index_gen$b_SqsApiActivateSqsRequest as SqsApiActivateSqsRequest, type SqsApiCreateSqsCredentialsRequest$1 as SqsApiCreateSqsCredentialsRequest, type index_gen$b_SqsApiDeactivateSqsRequest as SqsApiDeactivateSqsRequest, type index_gen$b_SqsApiDeleteSqsCredentialsRequest as SqsApiDeleteSqsCredentialsRequest, type index_gen$b_SqsApiGetSqsCredentialsRequest as SqsApiGetSqsCredentialsRequest, type index_gen$b_SqsApiGetSqsInfoRequest as SqsApiGetSqsInfoRequest, type index_gen$b_SqsApiListSqsCredentialsRequest as SqsApiListSqsCredentialsRequest, type SqsApiUpdateSqsCredentialsRequest$1 as SqsApiUpdateSqsCredentialsRequest, type SqsCredentials$1 as SqsCredentials, type index_gen$b_SqsInfo as SqsInfo, type index_gen$b_SqsInfoStatus as SqsInfoStatus, type index_gen$b_SqsPermissions as SqsPermissions, validationRules_gen$2 as ValidationRules };
|
|
23809
24105
|
}
|
|
23810
24106
|
|
|
23811
24107
|
declare namespace index$9 {
|
|
23812
|
-
export { index_gen$
|
|
24108
|
+
export { index_gen$c as v1alpha1, index_gen$b as v1beta1 };
|
|
23813
24109
|
}
|
|
23814
24110
|
|
|
23815
24111
|
type ACLRuleAction = 'allow' | 'deny';
|
|
@@ -24300,6 +24596,18 @@ interface User {
|
|
|
24300
24596
|
*/
|
|
24301
24597
|
isAdmin: boolean;
|
|
24302
24598
|
}
|
|
24599
|
+
interface UpgradeInstanceRequestMajorUpgradeWorkflow {
|
|
24600
|
+
/**
|
|
24601
|
+
* This will create a new Database Instance with same specifications as the
|
|
24602
|
+
* current one and perform a Database Engine upgrade.
|
|
24603
|
+
*/
|
|
24604
|
+
upgradableVersionId: string;
|
|
24605
|
+
/**
|
|
24606
|
+
* At the end of the migration procedure this option let you migrate all your
|
|
24607
|
+
* database endpoint to the upgraded instance.
|
|
24608
|
+
*/
|
|
24609
|
+
withEndpoints: boolean;
|
|
24610
|
+
}
|
|
24303
24611
|
type AddInstanceACLRulesRequest = {
|
|
24304
24612
|
/**
|
|
24305
24613
|
* Region to target. If none is passed will use default region from the
|
|
@@ -25133,7 +25441,8 @@ type UpgradeInstanceRequest = {
|
|
|
25133
25441
|
* Node type of the Database Instance you want to upgrade to.
|
|
25134
25442
|
*
|
|
25135
25443
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25136
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25444
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25445
|
+
* could be set.
|
|
25137
25446
|
*/
|
|
25138
25447
|
nodeType?: string;
|
|
25139
25448
|
/**
|
|
@@ -25141,21 +25450,24 @@ type UpgradeInstanceRequest = {
|
|
|
25141
25450
|
* Instance.
|
|
25142
25451
|
*
|
|
25143
25452
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25144
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25453
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25454
|
+
* could be set.
|
|
25145
25455
|
*/
|
|
25146
25456
|
enableHa?: boolean;
|
|
25147
25457
|
/**
|
|
25148
25458
|
* Increase your block storage volume size.
|
|
25149
25459
|
*
|
|
25150
25460
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25151
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25461
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25462
|
+
* could be set.
|
|
25152
25463
|
*/
|
|
25153
25464
|
volumeSize?: number;
|
|
25154
25465
|
/**
|
|
25155
25466
|
* Change your Database Instance storage type.
|
|
25156
25467
|
*
|
|
25157
25468
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25158
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25469
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25470
|
+
* could be set.
|
|
25159
25471
|
*/
|
|
25160
25472
|
volumeType?: VolumeType;
|
|
25161
25473
|
/**
|
|
@@ -25163,9 +25475,19 @@ type UpgradeInstanceRequest = {
|
|
|
25163
25475
|
* current one and perform a Database Engine upgrade.
|
|
25164
25476
|
*
|
|
25165
25477
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25166
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25478
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25479
|
+
* could be set.
|
|
25167
25480
|
*/
|
|
25168
25481
|
upgradableVersionId?: string;
|
|
25482
|
+
/**
|
|
25483
|
+
* Upgrade your database engine to a new major version including instance
|
|
25484
|
+
* endpoints.
|
|
25485
|
+
*
|
|
25486
|
+
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25487
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25488
|
+
* could be set.
|
|
25489
|
+
*/
|
|
25490
|
+
majorUpgradeWorkflow?: UpgradeInstanceRequestMajorUpgradeWorkflow;
|
|
25169
25491
|
};
|
|
25170
25492
|
|
|
25171
25493
|
/** Managed Database for PostgreSQL and MySQL API. */
|
|
@@ -25805,141 +26127,142 @@ declare namespace validationRules_gen$1 {
|
|
|
25805
26127
|
export { validationRules_gen$1_UpdateInstanceRequest as UpdateInstanceRequest };
|
|
25806
26128
|
}
|
|
25807
26129
|
|
|
25808
|
-
type index_gen$
|
|
25809
|
-
type index_gen$
|
|
25810
|
-
type index_gen$
|
|
25811
|
-
type index_gen$
|
|
25812
|
-
type index_gen$
|
|
25813
|
-
type index_gen$
|
|
25814
|
-
type index_gen$
|
|
25815
|
-
type index_gen$
|
|
25816
|
-
type index_gen$
|
|
25817
|
-
type index_gen$
|
|
25818
|
-
type index_gen$
|
|
25819
|
-
type index_gen$
|
|
25820
|
-
type index_gen$
|
|
25821
|
-
type index_gen$
|
|
25822
|
-
type index_gen$
|
|
25823
|
-
type index_gen$
|
|
25824
|
-
type index_gen$
|
|
25825
|
-
type index_gen$
|
|
25826
|
-
type index_gen$
|
|
25827
|
-
declare const index_gen$
|
|
25828
|
-
type index_gen$
|
|
25829
|
-
type index_gen$
|
|
25830
|
-
type index_gen$
|
|
25831
|
-
type index_gen$
|
|
25832
|
-
type index_gen$
|
|
25833
|
-
type index_gen$
|
|
25834
|
-
type index_gen$
|
|
25835
|
-
type index_gen$
|
|
25836
|
-
type index_gen$
|
|
25837
|
-
type index_gen$
|
|
25838
|
-
type index_gen$
|
|
25839
|
-
type index_gen$
|
|
25840
|
-
type index_gen$
|
|
25841
|
-
type index_gen$
|
|
25842
|
-
type index_gen$
|
|
25843
|
-
type index_gen$
|
|
25844
|
-
type index_gen$
|
|
25845
|
-
type index_gen$
|
|
25846
|
-
type index_gen$
|
|
25847
|
-
type index_gen$
|
|
25848
|
-
type index_gen$
|
|
25849
|
-
type index_gen$
|
|
25850
|
-
type index_gen$
|
|
25851
|
-
type index_gen$
|
|
25852
|
-
type index_gen$
|
|
25853
|
-
type index_gen$
|
|
25854
|
-
type index_gen$
|
|
25855
|
-
type index_gen$
|
|
25856
|
-
type index_gen$
|
|
25857
|
-
type index_gen$
|
|
25858
|
-
type index_gen$
|
|
25859
|
-
declare const index_gen$
|
|
25860
|
-
declare const index_gen$
|
|
25861
|
-
type index_gen$
|
|
25862
|
-
type index_gen$
|
|
25863
|
-
type index_gen$
|
|
25864
|
-
type index_gen$
|
|
25865
|
-
type index_gen$
|
|
25866
|
-
type index_gen$
|
|
25867
|
-
type index_gen$
|
|
25868
|
-
type index_gen$
|
|
25869
|
-
type index_gen$
|
|
25870
|
-
type index_gen$
|
|
25871
|
-
type index_gen$
|
|
25872
|
-
type index_gen$
|
|
25873
|
-
type index_gen$
|
|
25874
|
-
type index_gen$
|
|
25875
|
-
type index_gen$
|
|
25876
|
-
type index_gen$
|
|
25877
|
-
type index_gen$
|
|
25878
|
-
type index_gen$
|
|
25879
|
-
type index_gen$
|
|
25880
|
-
type index_gen$
|
|
25881
|
-
type index_gen$
|
|
25882
|
-
type index_gen$
|
|
25883
|
-
type index_gen$
|
|
25884
|
-
type index_gen$
|
|
25885
|
-
type index_gen$
|
|
25886
|
-
type index_gen$
|
|
25887
|
-
type index_gen$
|
|
25888
|
-
type index_gen$
|
|
25889
|
-
type index_gen$
|
|
25890
|
-
type index_gen$
|
|
25891
|
-
type index_gen$
|
|
25892
|
-
type index_gen$
|
|
25893
|
-
type index_gen$
|
|
25894
|
-
type index_gen$
|
|
25895
|
-
type index_gen$
|
|
25896
|
-
declare const index_gen$
|
|
25897
|
-
type index_gen$
|
|
25898
|
-
type index_gen$
|
|
25899
|
-
type index_gen$
|
|
25900
|
-
type index_gen$
|
|
25901
|
-
type index_gen$
|
|
25902
|
-
type index_gen$
|
|
25903
|
-
type index_gen$
|
|
25904
|
-
type index_gen$
|
|
25905
|
-
type index_gen$
|
|
25906
|
-
type index_gen$
|
|
25907
|
-
type index_gen$
|
|
25908
|
-
type index_gen$
|
|
25909
|
-
declare const index_gen$
|
|
25910
|
-
type index_gen$
|
|
25911
|
-
type index_gen$
|
|
25912
|
-
type index_gen$
|
|
25913
|
-
type index_gen$
|
|
25914
|
-
type index_gen$
|
|
25915
|
-
type index_gen$
|
|
25916
|
-
type index_gen$
|
|
25917
|
-
type index_gen$
|
|
25918
|
-
type index_gen$
|
|
25919
|
-
type index_gen$
|
|
25920
|
-
declare const index_gen$
|
|
25921
|
-
type index_gen$
|
|
25922
|
-
type index_gen$
|
|
25923
|
-
type index_gen$
|
|
25924
|
-
type index_gen$
|
|
25925
|
-
type index_gen$
|
|
25926
|
-
type index_gen$
|
|
25927
|
-
type index_gen$
|
|
25928
|
-
type index_gen$
|
|
25929
|
-
type index_gen$
|
|
25930
|
-
type index_gen$
|
|
25931
|
-
type index_gen$
|
|
25932
|
-
type index_gen$
|
|
25933
|
-
type index_gen$
|
|
25934
|
-
type index_gen$
|
|
25935
|
-
type index_gen$
|
|
25936
|
-
type index_gen$
|
|
25937
|
-
|
|
25938
|
-
|
|
26130
|
+
type index_gen$a_ACLRuleAction = ACLRuleAction;
|
|
26131
|
+
type index_gen$a_ACLRuleDirection = ACLRuleDirection;
|
|
26132
|
+
type index_gen$a_ACLRuleProtocol = ACLRuleProtocol;
|
|
26133
|
+
type index_gen$a_ACLRuleRequest = ACLRuleRequest;
|
|
26134
|
+
type index_gen$a_AddInstanceACLRulesRequest = AddInstanceACLRulesRequest;
|
|
26135
|
+
type index_gen$a_AddInstanceACLRulesResponse = AddInstanceACLRulesResponse;
|
|
26136
|
+
type index_gen$a_AddInstanceSettingsRequest = AddInstanceSettingsRequest;
|
|
26137
|
+
type index_gen$a_AddInstanceSettingsResponse = AddInstanceSettingsResponse;
|
|
26138
|
+
type index_gen$a_BackupSchedule = BackupSchedule;
|
|
26139
|
+
type index_gen$a_CloneInstanceRequest = CloneInstanceRequest;
|
|
26140
|
+
type index_gen$a_CreateDatabaseBackupRequest = CreateDatabaseBackupRequest;
|
|
26141
|
+
type index_gen$a_CreateDatabaseRequest = CreateDatabaseRequest;
|
|
26142
|
+
type index_gen$a_CreateEndpointRequest = CreateEndpointRequest;
|
|
26143
|
+
type index_gen$a_CreateInstanceFromSnapshotRequest = CreateInstanceFromSnapshotRequest;
|
|
26144
|
+
type index_gen$a_CreateInstanceRequest = CreateInstanceRequest;
|
|
26145
|
+
type index_gen$a_CreateReadReplicaEndpointRequest = CreateReadReplicaEndpointRequest;
|
|
26146
|
+
type index_gen$a_CreateReadReplicaRequest = CreateReadReplicaRequest;
|
|
26147
|
+
type index_gen$a_CreateSnapshotRequest = CreateSnapshotRequest;
|
|
26148
|
+
type index_gen$a_CreateUserRequest = CreateUserRequest;
|
|
26149
|
+
declare const index_gen$a_DATABASE_BACKUP_TRANSIENT_STATUSES: typeof DATABASE_BACKUP_TRANSIENT_STATUSES;
|
|
26150
|
+
type index_gen$a_Database = Database;
|
|
26151
|
+
type index_gen$a_DatabaseBackup = DatabaseBackup;
|
|
26152
|
+
type index_gen$a_DatabaseBackupStatus = DatabaseBackupStatus;
|
|
26153
|
+
type index_gen$a_DatabaseEngine = DatabaseEngine;
|
|
26154
|
+
type index_gen$a_DeleteDatabaseBackupRequest = DeleteDatabaseBackupRequest;
|
|
26155
|
+
type index_gen$a_DeleteDatabaseRequest = DeleteDatabaseRequest;
|
|
26156
|
+
type index_gen$a_DeleteInstanceACLRulesRequest = DeleteInstanceACLRulesRequest;
|
|
26157
|
+
type index_gen$a_DeleteInstanceACLRulesResponse = DeleteInstanceACLRulesResponse;
|
|
26158
|
+
type index_gen$a_DeleteInstanceRequest = DeleteInstanceRequest;
|
|
26159
|
+
type index_gen$a_DeleteInstanceSettingsRequest = DeleteInstanceSettingsRequest;
|
|
26160
|
+
type index_gen$a_DeleteInstanceSettingsResponse = DeleteInstanceSettingsResponse;
|
|
26161
|
+
type index_gen$a_DeleteReadReplicaRequest = DeleteReadReplicaRequest;
|
|
26162
|
+
type index_gen$a_DeleteSnapshotRequest = DeleteSnapshotRequest;
|
|
26163
|
+
type index_gen$a_DeleteUserRequest = DeleteUserRequest;
|
|
26164
|
+
type index_gen$a_EndpointDirectAccessDetails = EndpointDirectAccessDetails;
|
|
26165
|
+
type index_gen$a_EndpointLoadBalancerDetails = EndpointLoadBalancerDetails;
|
|
26166
|
+
type index_gen$a_EndpointPrivateNetworkDetails = EndpointPrivateNetworkDetails;
|
|
26167
|
+
type index_gen$a_EndpointSpecLoadBalancer = EndpointSpecLoadBalancer;
|
|
26168
|
+
type index_gen$a_EndpointSpecPrivateNetwork = EndpointSpecPrivateNetwork;
|
|
26169
|
+
type index_gen$a_EndpointSpecPrivateNetworkIpamConfig = EndpointSpecPrivateNetworkIpamConfig;
|
|
26170
|
+
type index_gen$a_EngineSetting = EngineSetting;
|
|
26171
|
+
type index_gen$a_EngineSettingPropertyType = EngineSettingPropertyType;
|
|
26172
|
+
type index_gen$a_EngineVersion = EngineVersion;
|
|
26173
|
+
type index_gen$a_ExportDatabaseBackupRequest = ExportDatabaseBackupRequest;
|
|
26174
|
+
type index_gen$a_GetDatabaseBackupRequest = GetDatabaseBackupRequest;
|
|
26175
|
+
type index_gen$a_GetInstanceCertificateRequest = GetInstanceCertificateRequest;
|
|
26176
|
+
type index_gen$a_GetInstanceLogRequest = GetInstanceLogRequest;
|
|
26177
|
+
type index_gen$a_GetInstanceMetricsRequest = GetInstanceMetricsRequest;
|
|
26178
|
+
type index_gen$a_GetInstanceRequest = GetInstanceRequest;
|
|
26179
|
+
type index_gen$a_GetReadReplicaRequest = GetReadReplicaRequest;
|
|
26180
|
+
type index_gen$a_GetSnapshotRequest = GetSnapshotRequest;
|
|
26181
|
+
declare const index_gen$a_INSTANCE_LOG_TRANSIENT_STATUSES: typeof INSTANCE_LOG_TRANSIENT_STATUSES;
|
|
26182
|
+
declare const index_gen$a_INSTANCE_TRANSIENT_STATUSES: typeof INSTANCE_TRANSIENT_STATUSES;
|
|
26183
|
+
type index_gen$a_Instance = Instance;
|
|
26184
|
+
type index_gen$a_InstanceLog = InstanceLog;
|
|
26185
|
+
type index_gen$a_InstanceLogStatus = InstanceLogStatus;
|
|
26186
|
+
type index_gen$a_InstanceMetrics = InstanceMetrics;
|
|
26187
|
+
type index_gen$a_InstanceSetting = InstanceSetting;
|
|
26188
|
+
type index_gen$a_InstanceStatus = InstanceStatus;
|
|
26189
|
+
type index_gen$a_ListDatabaseBackupsRequest = ListDatabaseBackupsRequest;
|
|
26190
|
+
type index_gen$a_ListDatabaseBackupsRequestOrderBy = ListDatabaseBackupsRequestOrderBy;
|
|
26191
|
+
type index_gen$a_ListDatabaseBackupsResponse = ListDatabaseBackupsResponse;
|
|
26192
|
+
type index_gen$a_ListDatabaseEnginesRequest = ListDatabaseEnginesRequest;
|
|
26193
|
+
type index_gen$a_ListDatabaseEnginesResponse = ListDatabaseEnginesResponse;
|
|
26194
|
+
type index_gen$a_ListDatabasesRequest = ListDatabasesRequest;
|
|
26195
|
+
type index_gen$a_ListDatabasesRequestOrderBy = ListDatabasesRequestOrderBy;
|
|
26196
|
+
type index_gen$a_ListDatabasesResponse = ListDatabasesResponse;
|
|
26197
|
+
type index_gen$a_ListInstanceACLRulesRequest = ListInstanceACLRulesRequest;
|
|
26198
|
+
type index_gen$a_ListInstanceACLRulesResponse = ListInstanceACLRulesResponse;
|
|
26199
|
+
type index_gen$a_ListInstanceLogsDetailsRequest = ListInstanceLogsDetailsRequest;
|
|
26200
|
+
type index_gen$a_ListInstanceLogsDetailsResponse = ListInstanceLogsDetailsResponse;
|
|
26201
|
+
type index_gen$a_ListInstanceLogsDetailsResponseInstanceLogDetail = ListInstanceLogsDetailsResponseInstanceLogDetail;
|
|
26202
|
+
type index_gen$a_ListInstanceLogsRequest = ListInstanceLogsRequest;
|
|
26203
|
+
type index_gen$a_ListInstanceLogsRequestOrderBy = ListInstanceLogsRequestOrderBy;
|
|
26204
|
+
type index_gen$a_ListInstanceLogsResponse = ListInstanceLogsResponse;
|
|
26205
|
+
type index_gen$a_ListInstancesRequest = ListInstancesRequest;
|
|
26206
|
+
type index_gen$a_ListInstancesRequestOrderBy = ListInstancesRequestOrderBy;
|
|
26207
|
+
type index_gen$a_ListInstancesResponse = ListInstancesResponse;
|
|
26208
|
+
type index_gen$a_ListPrivilegesRequest = ListPrivilegesRequest;
|
|
26209
|
+
type index_gen$a_ListPrivilegesRequestOrderBy = ListPrivilegesRequestOrderBy;
|
|
26210
|
+
type index_gen$a_ListPrivilegesResponse = ListPrivilegesResponse;
|
|
26211
|
+
type index_gen$a_ListSnapshotsRequest = ListSnapshotsRequest;
|
|
26212
|
+
type index_gen$a_ListSnapshotsRequestOrderBy = ListSnapshotsRequestOrderBy;
|
|
26213
|
+
type index_gen$a_ListSnapshotsResponse = ListSnapshotsResponse;
|
|
26214
|
+
type index_gen$a_ListUsersRequest = ListUsersRequest;
|
|
26215
|
+
type index_gen$a_ListUsersRequestOrderBy = ListUsersRequestOrderBy;
|
|
26216
|
+
type index_gen$a_ListUsersResponse = ListUsersResponse;
|
|
26217
|
+
type index_gen$a_LogsPolicy = LogsPolicy;
|
|
26218
|
+
declare const index_gen$a_MAINTENANCE_TRANSIENT_STATUSES: typeof MAINTENANCE_TRANSIENT_STATUSES;
|
|
26219
|
+
type index_gen$a_Maintenance = Maintenance;
|
|
26220
|
+
type index_gen$a_MaintenanceStatus = MaintenanceStatus;
|
|
26221
|
+
type index_gen$a_MigrateEndpointRequest = MigrateEndpointRequest;
|
|
26222
|
+
type index_gen$a_NodeTypeGeneration = NodeTypeGeneration;
|
|
26223
|
+
type index_gen$a_NodeTypeVolumeConstraintSizes = NodeTypeVolumeConstraintSizes;
|
|
26224
|
+
type index_gen$a_NodeTypeVolumeType = NodeTypeVolumeType;
|
|
26225
|
+
type index_gen$a_Permission = Permission;
|
|
26226
|
+
type index_gen$a_PrepareInstanceLogsRequest = PrepareInstanceLogsRequest;
|
|
26227
|
+
type index_gen$a_PrepareInstanceLogsResponse = PrepareInstanceLogsResponse;
|
|
26228
|
+
type index_gen$a_Privilege = Privilege;
|
|
26229
|
+
type index_gen$a_PromoteReadReplicaRequest = PromoteReadReplicaRequest;
|
|
26230
|
+
type index_gen$a_PurgeInstanceLogsRequest = PurgeInstanceLogsRequest;
|
|
26231
|
+
declare const index_gen$a_READ_REPLICA_TRANSIENT_STATUSES: typeof READ_REPLICA_TRANSIENT_STATUSES;
|
|
26232
|
+
type index_gen$a_ReadReplica = ReadReplica;
|
|
26233
|
+
type index_gen$a_ReadReplicaEndpointSpec = ReadReplicaEndpointSpec;
|
|
26234
|
+
type index_gen$a_ReadReplicaEndpointSpecDirectAccess = ReadReplicaEndpointSpecDirectAccess;
|
|
26235
|
+
type index_gen$a_ReadReplicaEndpointSpecPrivateNetwork = ReadReplicaEndpointSpecPrivateNetwork;
|
|
26236
|
+
type index_gen$a_ReadReplicaEndpointSpecPrivateNetworkIpamConfig = ReadReplicaEndpointSpecPrivateNetworkIpamConfig;
|
|
26237
|
+
type index_gen$a_ReadReplicaStatus = ReadReplicaStatus;
|
|
26238
|
+
type index_gen$a_RenewInstanceCertificateRequest = RenewInstanceCertificateRequest;
|
|
26239
|
+
type index_gen$a_ResetReadReplicaRequest = ResetReadReplicaRequest;
|
|
26240
|
+
type index_gen$a_RestartInstanceRequest = RestartInstanceRequest;
|
|
26241
|
+
type index_gen$a_RestoreDatabaseBackupRequest = RestoreDatabaseBackupRequest;
|
|
26242
|
+
declare const index_gen$a_SNAPSHOT_TRANSIENT_STATUSES: typeof SNAPSHOT_TRANSIENT_STATUSES;
|
|
26243
|
+
type index_gen$a_SetInstanceACLRulesRequest = SetInstanceACLRulesRequest;
|
|
26244
|
+
type index_gen$a_SetInstanceACLRulesResponse = SetInstanceACLRulesResponse;
|
|
26245
|
+
type index_gen$a_SetInstanceSettingsRequest = SetInstanceSettingsRequest;
|
|
26246
|
+
type index_gen$a_SetInstanceSettingsResponse = SetInstanceSettingsResponse;
|
|
26247
|
+
type index_gen$a_SetPrivilegeRequest = SetPrivilegeRequest;
|
|
26248
|
+
type index_gen$a_Snapshot = Snapshot;
|
|
26249
|
+
type index_gen$a_SnapshotStatus = SnapshotStatus;
|
|
26250
|
+
type index_gen$a_StorageClass = StorageClass;
|
|
26251
|
+
type index_gen$a_UpdateDatabaseBackupRequest = UpdateDatabaseBackupRequest;
|
|
26252
|
+
type index_gen$a_UpdateSnapshotRequest = UpdateSnapshotRequest;
|
|
26253
|
+
type index_gen$a_UpdateUserRequest = UpdateUserRequest;
|
|
26254
|
+
type index_gen$a_UpgradableVersion = UpgradableVersion;
|
|
26255
|
+
type index_gen$a_UpgradeInstanceRequest = UpgradeInstanceRequest;
|
|
26256
|
+
type index_gen$a_UpgradeInstanceRequestMajorUpgradeWorkflow = UpgradeInstanceRequestMajorUpgradeWorkflow;
|
|
26257
|
+
type index_gen$a_User = User;
|
|
26258
|
+
type index_gen$a_Volume = Volume;
|
|
26259
|
+
type index_gen$a_VolumeType = VolumeType;
|
|
26260
|
+
declare namespace index_gen$a {
|
|
26261
|
+
export { type ACLRule$1 as ACLRule, type index_gen$a_ACLRuleAction as ACLRuleAction, type index_gen$a_ACLRuleDirection as ACLRuleDirection, type index_gen$a_ACLRuleProtocol as ACLRuleProtocol, type index_gen$a_ACLRuleRequest as ACLRuleRequest, API$9 as API, type index_gen$a_AddInstanceACLRulesRequest as AddInstanceACLRulesRequest, type index_gen$a_AddInstanceACLRulesResponse as AddInstanceACLRulesResponse, type index_gen$a_AddInstanceSettingsRequest as AddInstanceSettingsRequest, type index_gen$a_AddInstanceSettingsResponse as AddInstanceSettingsResponse, type index_gen$a_BackupSchedule as BackupSchedule, type index_gen$a_CloneInstanceRequest as CloneInstanceRequest, type index_gen$a_CreateDatabaseBackupRequest as CreateDatabaseBackupRequest, type index_gen$a_CreateDatabaseRequest as CreateDatabaseRequest, type index_gen$a_CreateEndpointRequest as CreateEndpointRequest, type index_gen$a_CreateInstanceFromSnapshotRequest as CreateInstanceFromSnapshotRequest, type index_gen$a_CreateInstanceRequest as CreateInstanceRequest, type index_gen$a_CreateReadReplicaEndpointRequest as CreateReadReplicaEndpointRequest, type index_gen$a_CreateReadReplicaRequest as CreateReadReplicaRequest, type index_gen$a_CreateSnapshotRequest as CreateSnapshotRequest, type index_gen$a_CreateUserRequest as CreateUserRequest, index_gen$a_DATABASE_BACKUP_TRANSIENT_STATUSES as DATABASE_BACKUP_TRANSIENT_STATUSES, type index_gen$a_Database as Database, type index_gen$a_DatabaseBackup as DatabaseBackup, type index_gen$a_DatabaseBackupStatus as DatabaseBackupStatus, type index_gen$a_DatabaseEngine as DatabaseEngine, type index_gen$a_DeleteDatabaseBackupRequest as DeleteDatabaseBackupRequest, type index_gen$a_DeleteDatabaseRequest as DeleteDatabaseRequest, type DeleteEndpointRequest$1 as DeleteEndpointRequest, type index_gen$a_DeleteInstanceACLRulesRequest as DeleteInstanceACLRulesRequest, type index_gen$a_DeleteInstanceACLRulesResponse as DeleteInstanceACLRulesResponse, type index_gen$a_DeleteInstanceRequest as DeleteInstanceRequest, type index_gen$a_DeleteInstanceSettingsRequest as DeleteInstanceSettingsRequest, type index_gen$a_DeleteInstanceSettingsResponse as DeleteInstanceSettingsResponse, type index_gen$a_DeleteReadReplicaRequest as DeleteReadReplicaRequest, type index_gen$a_DeleteSnapshotRequest as DeleteSnapshotRequest, type index_gen$a_DeleteUserRequest as DeleteUserRequest, type Endpoint$1 as Endpoint, type index_gen$a_EndpointDirectAccessDetails as EndpointDirectAccessDetails, type index_gen$a_EndpointLoadBalancerDetails as EndpointLoadBalancerDetails, type index_gen$a_EndpointPrivateNetworkDetails as EndpointPrivateNetworkDetails, type EndpointSpec$1 as EndpointSpec, type index_gen$a_EndpointSpecLoadBalancer as EndpointSpecLoadBalancer, type index_gen$a_EndpointSpecPrivateNetwork as EndpointSpecPrivateNetwork, type index_gen$a_EndpointSpecPrivateNetworkIpamConfig as EndpointSpecPrivateNetworkIpamConfig, type index_gen$a_EngineSetting as EngineSetting, type index_gen$a_EngineSettingPropertyType as EngineSettingPropertyType, type index_gen$a_EngineVersion as EngineVersion, type index_gen$a_ExportDatabaseBackupRequest as ExportDatabaseBackupRequest, type index_gen$a_GetDatabaseBackupRequest as GetDatabaseBackupRequest, type GetEndpointRequest$1 as GetEndpointRequest, type index_gen$a_GetInstanceCertificateRequest as GetInstanceCertificateRequest, type index_gen$a_GetInstanceLogRequest as GetInstanceLogRequest, type index_gen$a_GetInstanceMetricsRequest as GetInstanceMetricsRequest, type index_gen$a_GetInstanceRequest as GetInstanceRequest, type index_gen$a_GetReadReplicaRequest as GetReadReplicaRequest, type index_gen$a_GetSnapshotRequest as GetSnapshotRequest, index_gen$a_INSTANCE_LOG_TRANSIENT_STATUSES as INSTANCE_LOG_TRANSIENT_STATUSES, index_gen$a_INSTANCE_TRANSIENT_STATUSES as INSTANCE_TRANSIENT_STATUSES, type index_gen$a_Instance as Instance, type index_gen$a_InstanceLog as InstanceLog, type index_gen$a_InstanceLogStatus as InstanceLogStatus, type index_gen$a_InstanceMetrics as InstanceMetrics, type index_gen$a_InstanceSetting as InstanceSetting, type index_gen$a_InstanceStatus as InstanceStatus, type index_gen$a_ListDatabaseBackupsRequest as ListDatabaseBackupsRequest, type index_gen$a_ListDatabaseBackupsRequestOrderBy as ListDatabaseBackupsRequestOrderBy, type index_gen$a_ListDatabaseBackupsResponse as ListDatabaseBackupsResponse, type index_gen$a_ListDatabaseEnginesRequest as ListDatabaseEnginesRequest, type index_gen$a_ListDatabaseEnginesResponse as ListDatabaseEnginesResponse, type index_gen$a_ListDatabasesRequest as ListDatabasesRequest, type index_gen$a_ListDatabasesRequestOrderBy as ListDatabasesRequestOrderBy, type index_gen$a_ListDatabasesResponse as ListDatabasesResponse, type index_gen$a_ListInstanceACLRulesRequest as ListInstanceACLRulesRequest, type index_gen$a_ListInstanceACLRulesResponse as ListInstanceACLRulesResponse, type index_gen$a_ListInstanceLogsDetailsRequest as ListInstanceLogsDetailsRequest, type index_gen$a_ListInstanceLogsDetailsResponse as ListInstanceLogsDetailsResponse, type index_gen$a_ListInstanceLogsDetailsResponseInstanceLogDetail as ListInstanceLogsDetailsResponseInstanceLogDetail, type index_gen$a_ListInstanceLogsRequest as ListInstanceLogsRequest, type index_gen$a_ListInstanceLogsRequestOrderBy as ListInstanceLogsRequestOrderBy, type index_gen$a_ListInstanceLogsResponse as ListInstanceLogsResponse, type index_gen$a_ListInstancesRequest as ListInstancesRequest, type index_gen$a_ListInstancesRequestOrderBy as ListInstancesRequestOrderBy, type index_gen$a_ListInstancesResponse as ListInstancesResponse, type ListNodeTypesRequest$1 as ListNodeTypesRequest, type ListNodeTypesResponse$1 as ListNodeTypesResponse, type index_gen$a_ListPrivilegesRequest as ListPrivilegesRequest, type index_gen$a_ListPrivilegesRequestOrderBy as ListPrivilegesRequestOrderBy, type index_gen$a_ListPrivilegesResponse as ListPrivilegesResponse, type index_gen$a_ListSnapshotsRequest as ListSnapshotsRequest, type index_gen$a_ListSnapshotsRequestOrderBy as ListSnapshotsRequestOrderBy, type index_gen$a_ListSnapshotsResponse as ListSnapshotsResponse, type index_gen$a_ListUsersRequest as ListUsersRequest, type index_gen$a_ListUsersRequestOrderBy as ListUsersRequestOrderBy, type index_gen$a_ListUsersResponse as ListUsersResponse, type index_gen$a_LogsPolicy as LogsPolicy, index_gen$a_MAINTENANCE_TRANSIENT_STATUSES as MAINTENANCE_TRANSIENT_STATUSES, type index_gen$a_Maintenance as Maintenance, type index_gen$a_MaintenanceStatus as MaintenanceStatus, type index_gen$a_MigrateEndpointRequest as MigrateEndpointRequest, type NodeType$1 as NodeType, type index_gen$a_NodeTypeGeneration as NodeTypeGeneration, type NodeTypeStock$1 as NodeTypeStock, type index_gen$a_NodeTypeVolumeConstraintSizes as NodeTypeVolumeConstraintSizes, type index_gen$a_NodeTypeVolumeType as NodeTypeVolumeType, type index_gen$a_Permission as Permission, type index_gen$a_PrepareInstanceLogsRequest as PrepareInstanceLogsRequest, type index_gen$a_PrepareInstanceLogsResponse as PrepareInstanceLogsResponse, type index_gen$a_Privilege as Privilege, type index_gen$a_PromoteReadReplicaRequest as PromoteReadReplicaRequest, type index_gen$a_PurgeInstanceLogsRequest as PurgeInstanceLogsRequest, index_gen$a_READ_REPLICA_TRANSIENT_STATUSES as READ_REPLICA_TRANSIENT_STATUSES, type index_gen$a_ReadReplica as ReadReplica, type index_gen$a_ReadReplicaEndpointSpec as ReadReplicaEndpointSpec, type index_gen$a_ReadReplicaEndpointSpecDirectAccess as ReadReplicaEndpointSpecDirectAccess, type index_gen$a_ReadReplicaEndpointSpecPrivateNetwork as ReadReplicaEndpointSpecPrivateNetwork, type index_gen$a_ReadReplicaEndpointSpecPrivateNetworkIpamConfig as ReadReplicaEndpointSpecPrivateNetworkIpamConfig, type index_gen$a_ReadReplicaStatus as ReadReplicaStatus, type index_gen$a_RenewInstanceCertificateRequest as RenewInstanceCertificateRequest, type index_gen$a_ResetReadReplicaRequest as ResetReadReplicaRequest, type index_gen$a_RestartInstanceRequest as RestartInstanceRequest, type index_gen$a_RestoreDatabaseBackupRequest as RestoreDatabaseBackupRequest, index_gen$a_SNAPSHOT_TRANSIENT_STATUSES as SNAPSHOT_TRANSIENT_STATUSES, type index_gen$a_SetInstanceACLRulesRequest as SetInstanceACLRulesRequest, type index_gen$a_SetInstanceACLRulesResponse as SetInstanceACLRulesResponse, type index_gen$a_SetInstanceSettingsRequest as SetInstanceSettingsRequest, type index_gen$a_SetInstanceSettingsResponse as SetInstanceSettingsResponse, type index_gen$a_SetPrivilegeRequest as SetPrivilegeRequest, type index_gen$a_Snapshot as Snapshot, type index_gen$a_SnapshotStatus as SnapshotStatus, type index_gen$a_StorageClass as StorageClass, type index_gen$a_UpdateDatabaseBackupRequest as UpdateDatabaseBackupRequest, type UpdateInstanceRequest$1 as UpdateInstanceRequest, type index_gen$a_UpdateSnapshotRequest as UpdateSnapshotRequest, type index_gen$a_UpdateUserRequest as UpdateUserRequest, type index_gen$a_UpgradableVersion as UpgradableVersion, type index_gen$a_UpgradeInstanceRequest as UpgradeInstanceRequest, type index_gen$a_UpgradeInstanceRequestMajorUpgradeWorkflow as UpgradeInstanceRequestMajorUpgradeWorkflow, type index_gen$a_User as User, validationRules_gen$1 as ValidationRules, type index_gen$a_Volume as Volume, type index_gen$a_VolumeType as VolumeType };
|
|
25939
26262
|
}
|
|
25940
26263
|
|
|
25941
26264
|
declare namespace index$8 {
|
|
25942
|
-
export { index_gen$
|
|
26265
|
+
export { index_gen$a as v1 };
|
|
25943
26266
|
}
|
|
25944
26267
|
|
|
25945
26268
|
type AvailableClusterSettingPropertyType = 'UNKNOWN' | 'BOOLEAN' | 'INT' | 'STRING';
|
|
@@ -26660,63 +26983,63 @@ declare class API$8 extends API$v {
|
|
|
26660
26983
|
/** Lists transient statutes of the enum {@link ClusterStatus}. */
|
|
26661
26984
|
declare const CLUSTER_TRANSIENT_STATUSES: ClusterStatus[];
|
|
26662
26985
|
|
|
26663
|
-
type index_gen$
|
|
26664
|
-
type index_gen$
|
|
26665
|
-
type index_gen$
|
|
26666
|
-
type index_gen$
|
|
26667
|
-
type index_gen$
|
|
26668
|
-
type index_gen$
|
|
26669
|
-
type index_gen$
|
|
26670
|
-
type index_gen$
|
|
26671
|
-
type index_gen$
|
|
26672
|
-
declare const index_gen$
|
|
26673
|
-
type index_gen$
|
|
26674
|
-
type index_gen$
|
|
26675
|
-
type index_gen$
|
|
26676
|
-
type index_gen$
|
|
26677
|
-
type index_gen$
|
|
26678
|
-
type index_gen$
|
|
26679
|
-
type index_gen$
|
|
26680
|
-
type index_gen$
|
|
26681
|
-
type index_gen$
|
|
26682
|
-
type index_gen$
|
|
26683
|
-
type index_gen$
|
|
26684
|
-
type index_gen$
|
|
26685
|
-
type index_gen$
|
|
26686
|
-
type index_gen$
|
|
26687
|
-
type index_gen$
|
|
26688
|
-
type index_gen$
|
|
26689
|
-
type index_gen$
|
|
26690
|
-
type index_gen$
|
|
26691
|
-
type index_gen$
|
|
26692
|
-
type index_gen$
|
|
26693
|
-
type index_gen$
|
|
26694
|
-
type index_gen$
|
|
26695
|
-
type index_gen$
|
|
26696
|
-
type index_gen$
|
|
26697
|
-
type index_gen$
|
|
26698
|
-
type index_gen$
|
|
26699
|
-
type index_gen$
|
|
26700
|
-
type index_gen$
|
|
26701
|
-
type index_gen$
|
|
26702
|
-
type index_gen$
|
|
26703
|
-
type index_gen$
|
|
26704
|
-
type index_gen$
|
|
26705
|
-
type index_gen$
|
|
26706
|
-
type index_gen$
|
|
26707
|
-
type index_gen$
|
|
26708
|
-
type index_gen$
|
|
26709
|
-
type index_gen$
|
|
26710
|
-
type index_gen$
|
|
26711
|
-
type index_gen$
|
|
26712
|
-
type index_gen$
|
|
26713
|
-
type index_gen$
|
|
26714
|
-
declare namespace index_gen$
|
|
26715
|
-
export { type index_gen$
|
|
26986
|
+
type index_gen$9_ACLRule = ACLRule;
|
|
26987
|
+
type index_gen$9_ACLRuleSpec = ACLRuleSpec;
|
|
26988
|
+
type index_gen$9_AddAclRulesRequest = AddAclRulesRequest;
|
|
26989
|
+
type index_gen$9_AddAclRulesResponse = AddAclRulesResponse;
|
|
26990
|
+
type index_gen$9_AddClusterSettingsRequest = AddClusterSettingsRequest;
|
|
26991
|
+
type index_gen$9_AddEndpointsRequest = AddEndpointsRequest;
|
|
26992
|
+
type index_gen$9_AddEndpointsResponse = AddEndpointsResponse;
|
|
26993
|
+
type index_gen$9_AvailableClusterSetting = AvailableClusterSetting;
|
|
26994
|
+
type index_gen$9_AvailableClusterSettingPropertyType = AvailableClusterSettingPropertyType;
|
|
26995
|
+
declare const index_gen$9_CLUSTER_TRANSIENT_STATUSES: typeof CLUSTER_TRANSIENT_STATUSES;
|
|
26996
|
+
type index_gen$9_Cluster = Cluster;
|
|
26997
|
+
type index_gen$9_ClusterMetricsResponse = ClusterMetricsResponse;
|
|
26998
|
+
type index_gen$9_ClusterSetting = ClusterSetting;
|
|
26999
|
+
type index_gen$9_ClusterSettingsResponse = ClusterSettingsResponse;
|
|
27000
|
+
type index_gen$9_ClusterStatus = ClusterStatus;
|
|
27001
|
+
type index_gen$9_ClusterVersion = ClusterVersion;
|
|
27002
|
+
type index_gen$9_CreateClusterRequest = CreateClusterRequest;
|
|
27003
|
+
type index_gen$9_DeleteAclRuleRequest = DeleteAclRuleRequest;
|
|
27004
|
+
type index_gen$9_DeleteClusterRequest = DeleteClusterRequest;
|
|
27005
|
+
type index_gen$9_DeleteClusterSettingRequest = DeleteClusterSettingRequest;
|
|
27006
|
+
type index_gen$9_DeleteEndpointRequest = DeleteEndpointRequest;
|
|
27007
|
+
type index_gen$9_Endpoint = Endpoint;
|
|
27008
|
+
type index_gen$9_EndpointSpec = EndpointSpec;
|
|
27009
|
+
type index_gen$9_EndpointSpecPrivateNetworkSpec = EndpointSpecPrivateNetworkSpec;
|
|
27010
|
+
type index_gen$9_EndpointSpecPrivateNetworkSpecIpamConfig = EndpointSpecPrivateNetworkSpecIpamConfig;
|
|
27011
|
+
type index_gen$9_EndpointSpecPublicNetworkSpec = EndpointSpecPublicNetworkSpec;
|
|
27012
|
+
type index_gen$9_GetAclRuleRequest = GetAclRuleRequest;
|
|
27013
|
+
type index_gen$9_GetClusterCertificateRequest = GetClusterCertificateRequest;
|
|
27014
|
+
type index_gen$9_GetClusterMetricsRequest = GetClusterMetricsRequest;
|
|
27015
|
+
type index_gen$9_GetClusterRequest = GetClusterRequest;
|
|
27016
|
+
type index_gen$9_GetEndpointRequest = GetEndpointRequest;
|
|
27017
|
+
type index_gen$9_ListClusterVersionsRequest = ListClusterVersionsRequest;
|
|
27018
|
+
type index_gen$9_ListClusterVersionsResponse = ListClusterVersionsResponse;
|
|
27019
|
+
type index_gen$9_ListClustersRequest = ListClustersRequest;
|
|
27020
|
+
type index_gen$9_ListClustersRequestOrderBy = ListClustersRequestOrderBy;
|
|
27021
|
+
type index_gen$9_ListClustersResponse = ListClustersResponse;
|
|
27022
|
+
type index_gen$9_ListNodeTypesRequest = ListNodeTypesRequest;
|
|
27023
|
+
type index_gen$9_ListNodeTypesResponse = ListNodeTypesResponse;
|
|
27024
|
+
type index_gen$9_MigrateClusterRequest = MigrateClusterRequest;
|
|
27025
|
+
type index_gen$9_NodeType = NodeType;
|
|
27026
|
+
type index_gen$9_NodeTypeStock = NodeTypeStock;
|
|
27027
|
+
type index_gen$9_PrivateNetworkProvisioningMode = PrivateNetworkProvisioningMode;
|
|
27028
|
+
type index_gen$9_PublicNetwork = PublicNetwork;
|
|
27029
|
+
type index_gen$9_RenewClusterCertificateRequest = RenewClusterCertificateRequest;
|
|
27030
|
+
type index_gen$9_SetAclRulesRequest = SetAclRulesRequest;
|
|
27031
|
+
type index_gen$9_SetAclRulesResponse = SetAclRulesResponse;
|
|
27032
|
+
type index_gen$9_SetClusterSettingsRequest = SetClusterSettingsRequest;
|
|
27033
|
+
type index_gen$9_SetEndpointsRequest = SetEndpointsRequest;
|
|
27034
|
+
type index_gen$9_SetEndpointsResponse = SetEndpointsResponse;
|
|
27035
|
+
type index_gen$9_UpdateClusterRequest = UpdateClusterRequest;
|
|
27036
|
+
type index_gen$9_UpdateEndpointRequest = UpdateEndpointRequest;
|
|
27037
|
+
declare namespace index_gen$9 {
|
|
27038
|
+
export { type index_gen$9_ACLRule as ACLRule, type index_gen$9_ACLRuleSpec as ACLRuleSpec, API$8 as API, type index_gen$9_AddAclRulesRequest as AddAclRulesRequest, type index_gen$9_AddAclRulesResponse as AddAclRulesResponse, type index_gen$9_AddClusterSettingsRequest as AddClusterSettingsRequest, type index_gen$9_AddEndpointsRequest as AddEndpointsRequest, type index_gen$9_AddEndpointsResponse as AddEndpointsResponse, type index_gen$9_AvailableClusterSetting as AvailableClusterSetting, type index_gen$9_AvailableClusterSettingPropertyType as AvailableClusterSettingPropertyType, index_gen$9_CLUSTER_TRANSIENT_STATUSES as CLUSTER_TRANSIENT_STATUSES, type index_gen$9_Cluster as Cluster, type index_gen$9_ClusterMetricsResponse as ClusterMetricsResponse, type index_gen$9_ClusterSetting as ClusterSetting, type index_gen$9_ClusterSettingsResponse as ClusterSettingsResponse, type index_gen$9_ClusterStatus as ClusterStatus, type index_gen$9_ClusterVersion as ClusterVersion, type index_gen$9_CreateClusterRequest as CreateClusterRequest, type index_gen$9_DeleteAclRuleRequest as DeleteAclRuleRequest, type index_gen$9_DeleteClusterRequest as DeleteClusterRequest, type index_gen$9_DeleteClusterSettingRequest as DeleteClusterSettingRequest, type index_gen$9_DeleteEndpointRequest as DeleteEndpointRequest, type index_gen$9_Endpoint as Endpoint, type index_gen$9_EndpointSpec as EndpointSpec, type index_gen$9_EndpointSpecPrivateNetworkSpec as EndpointSpecPrivateNetworkSpec, type index_gen$9_EndpointSpecPrivateNetworkSpecIpamConfig as EndpointSpecPrivateNetworkSpecIpamConfig, type index_gen$9_EndpointSpecPublicNetworkSpec as EndpointSpecPublicNetworkSpec, type index_gen$9_GetAclRuleRequest as GetAclRuleRequest, type index_gen$9_GetClusterCertificateRequest as GetClusterCertificateRequest, type index_gen$9_GetClusterMetricsRequest as GetClusterMetricsRequest, type index_gen$9_GetClusterRequest as GetClusterRequest, type index_gen$9_GetEndpointRequest as GetEndpointRequest, type index_gen$9_ListClusterVersionsRequest as ListClusterVersionsRequest, type index_gen$9_ListClusterVersionsResponse as ListClusterVersionsResponse, type index_gen$9_ListClustersRequest as ListClustersRequest, type index_gen$9_ListClustersRequestOrderBy as ListClustersRequestOrderBy, type index_gen$9_ListClustersResponse as ListClustersResponse, type index_gen$9_ListNodeTypesRequest as ListNodeTypesRequest, type index_gen$9_ListNodeTypesResponse as ListNodeTypesResponse, type index_gen$9_MigrateClusterRequest as MigrateClusterRequest, type index_gen$9_NodeType as NodeType, type index_gen$9_NodeTypeStock as NodeTypeStock, type PrivateNetwork$2 as PrivateNetwork, type index_gen$9_PrivateNetworkProvisioningMode as PrivateNetworkProvisioningMode, type index_gen$9_PublicNetwork as PublicNetwork, type index_gen$9_RenewClusterCertificateRequest as RenewClusterCertificateRequest, type index_gen$9_SetAclRulesRequest as SetAclRulesRequest, type index_gen$9_SetAclRulesResponse as SetAclRulesResponse, type index_gen$9_SetClusterSettingsRequest as SetClusterSettingsRequest, type index_gen$9_SetEndpointsRequest as SetEndpointsRequest, type index_gen$9_SetEndpointsResponse as SetEndpointsResponse, type index_gen$9_UpdateClusterRequest as UpdateClusterRequest, type index_gen$9_UpdateEndpointRequest as UpdateEndpointRequest };
|
|
26716
27039
|
}
|
|
26717
27040
|
|
|
26718
27041
|
declare namespace index$7 {
|
|
26719
|
-
export { index_gen$
|
|
27042
|
+
export { index_gen$9 as v1 };
|
|
26720
27043
|
}
|
|
26721
27044
|
|
|
26722
27045
|
type ImageStatus = 'unknown' | 'ready' | 'deleting' | 'error' | 'locked';
|
|
@@ -27180,43 +27503,44 @@ declare const NAMESPACE_TRANSIENT_STATUSES: NamespaceStatus[];
|
|
|
27180
27503
|
/** Lists transient statutes of the enum {@link TagStatus}. */
|
|
27181
27504
|
declare const TAG_TRANSIENT_STATUSES: TagStatus[];
|
|
27182
27505
|
|
|
27183
|
-
type index_gen$
|
|
27184
|
-
type index_gen$
|
|
27185
|
-
type index_gen$
|
|
27186
|
-
type index_gen$
|
|
27187
|
-
type index_gen$
|
|
27188
|
-
type index_gen$
|
|
27189
|
-
type index_gen$
|
|
27190
|
-
declare const index_gen$
|
|
27191
|
-
type index_gen$
|
|
27192
|
-
type index_gen$
|
|
27193
|
-
type index_gen$
|
|
27194
|
-
type index_gen$
|
|
27195
|
-
type index_gen$
|
|
27196
|
-
type index_gen$
|
|
27197
|
-
type index_gen$
|
|
27198
|
-
type index_gen$
|
|
27199
|
-
type index_gen$
|
|
27200
|
-
type index_gen$
|
|
27201
|
-
declare const index_gen$
|
|
27202
|
-
type index_gen$
|
|
27203
|
-
type index_gen$
|
|
27204
|
-
declare const index_gen$
|
|
27205
|
-
type index_gen$
|
|
27206
|
-
type index_gen$
|
|
27207
|
-
type index_gen$
|
|
27208
|
-
type index_gen$
|
|
27209
|
-
declare namespace index_gen$
|
|
27210
|
-
export { API$7 as API, type index_gen$
|
|
27506
|
+
type index_gen$8_CreateNamespaceRequest = CreateNamespaceRequest;
|
|
27507
|
+
type index_gen$8_DeleteImageRequest = DeleteImageRequest;
|
|
27508
|
+
type index_gen$8_DeleteNamespaceRequest = DeleteNamespaceRequest;
|
|
27509
|
+
type index_gen$8_DeleteTagRequest = DeleteTagRequest;
|
|
27510
|
+
type index_gen$8_GetImageRequest = GetImageRequest;
|
|
27511
|
+
type index_gen$8_GetNamespaceRequest = GetNamespaceRequest;
|
|
27512
|
+
type index_gen$8_GetTagRequest = GetTagRequest;
|
|
27513
|
+
declare const index_gen$8_IMAGE_TRANSIENT_STATUSES: typeof IMAGE_TRANSIENT_STATUSES;
|
|
27514
|
+
type index_gen$8_Image = Image;
|
|
27515
|
+
type index_gen$8_ImageStatus = ImageStatus;
|
|
27516
|
+
type index_gen$8_ImageVisibility = ImageVisibility;
|
|
27517
|
+
type index_gen$8_ListImagesRequest = ListImagesRequest;
|
|
27518
|
+
type index_gen$8_ListImagesRequestOrderBy = ListImagesRequestOrderBy;
|
|
27519
|
+
type index_gen$8_ListImagesResponse = ListImagesResponse;
|
|
27520
|
+
type index_gen$8_ListNamespacesRequest = ListNamespacesRequest;
|
|
27521
|
+
type index_gen$8_ListNamespacesRequestOrderBy = ListNamespacesRequestOrderBy;
|
|
27522
|
+
type index_gen$8_ListNamespacesResponse = ListNamespacesResponse;
|
|
27523
|
+
type index_gen$8_ListTagsRequestOrderBy = ListTagsRequestOrderBy;
|
|
27524
|
+
declare const index_gen$8_NAMESPACE_TRANSIENT_STATUSES: typeof NAMESPACE_TRANSIENT_STATUSES;
|
|
27525
|
+
type index_gen$8_Namespace = Namespace;
|
|
27526
|
+
type index_gen$8_NamespaceStatus = NamespaceStatus;
|
|
27527
|
+
declare const index_gen$8_TAG_TRANSIENT_STATUSES: typeof TAG_TRANSIENT_STATUSES;
|
|
27528
|
+
type index_gen$8_Tag = Tag;
|
|
27529
|
+
type index_gen$8_TagStatus = TagStatus;
|
|
27530
|
+
type index_gen$8_UpdateImageRequest = UpdateImageRequest;
|
|
27531
|
+
type index_gen$8_UpdateNamespaceRequest = UpdateNamespaceRequest;
|
|
27532
|
+
declare namespace index_gen$8 {
|
|
27533
|
+
export { API$7 as API, type index_gen$8_CreateNamespaceRequest as CreateNamespaceRequest, type index_gen$8_DeleteImageRequest as DeleteImageRequest, type index_gen$8_DeleteNamespaceRequest as DeleteNamespaceRequest, type index_gen$8_DeleteTagRequest as DeleteTagRequest, type index_gen$8_GetImageRequest as GetImageRequest, type index_gen$8_GetNamespaceRequest as GetNamespaceRequest, type index_gen$8_GetTagRequest as GetTagRequest, index_gen$8_IMAGE_TRANSIENT_STATUSES as IMAGE_TRANSIENT_STATUSES, type index_gen$8_Image as Image, type index_gen$8_ImageStatus as ImageStatus, type index_gen$8_ImageVisibility as ImageVisibility, type index_gen$8_ListImagesRequest as ListImagesRequest, type index_gen$8_ListImagesRequestOrderBy as ListImagesRequestOrderBy, type index_gen$8_ListImagesResponse as ListImagesResponse, type index_gen$8_ListNamespacesRequest as ListNamespacesRequest, type index_gen$8_ListNamespacesRequestOrderBy as ListNamespacesRequestOrderBy, type index_gen$8_ListNamespacesResponse as ListNamespacesResponse, type ListTagsRequest$1 as ListTagsRequest, type index_gen$8_ListTagsRequestOrderBy as ListTagsRequestOrderBy, type ListTagsResponse$1 as ListTagsResponse, index_gen$8_NAMESPACE_TRANSIENT_STATUSES as NAMESPACE_TRANSIENT_STATUSES, type index_gen$8_Namespace as Namespace, type index_gen$8_NamespaceStatus as NamespaceStatus, index_gen$8_TAG_TRANSIENT_STATUSES as TAG_TRANSIENT_STATUSES, type index_gen$8_Tag as Tag, type index_gen$8_TagStatus as TagStatus, type index_gen$8_UpdateImageRequest as UpdateImageRequest, type index_gen$8_UpdateNamespaceRequest as UpdateNamespaceRequest };
|
|
27211
27534
|
}
|
|
27212
27535
|
|
|
27213
27536
|
declare namespace index$6 {
|
|
27214
|
-
export { index_gen$
|
|
27537
|
+
export { index_gen$8 as v1 };
|
|
27215
27538
|
}
|
|
27216
27539
|
|
|
27217
27540
|
type ListFoldersRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
27218
27541
|
type ListSecretsRequestOrderBy = 'name_asc' | 'name_desc' | 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc';
|
|
27219
27542
|
type Product = 'unknown';
|
|
27543
|
+
type SecretEphemeralAction = 'unknown_ephemeral_action' | 'delete_secret' | 'disable_secret';
|
|
27220
27544
|
type SecretStatus = 'ready' | 'locked';
|
|
27221
27545
|
type SecretType = 'unknown_secret_type' | 'opaque' | 'certificate' | 'key_value';
|
|
27222
27546
|
type SecretVersionStatus = 'unknown' | 'enabled' | 'disabled' | 'destroyed';
|
|
@@ -27299,6 +27623,10 @@ interface Secret {
|
|
|
27299
27623
|
type: SecretType;
|
|
27300
27624
|
/** Location of the secret in the directory structure. */
|
|
27301
27625
|
path: string;
|
|
27626
|
+
/** (Optional.) Date on which the secret will be deleted or deactivated. */
|
|
27627
|
+
expiresAt?: Date;
|
|
27628
|
+
/** See `Secret.EphemeralAction` enum for description of values. */
|
|
27629
|
+
ephemeralAction: SecretEphemeralAction;
|
|
27302
27630
|
/** Region of the secret. */
|
|
27303
27631
|
region: Region;
|
|
27304
27632
|
}
|
|
@@ -27412,6 +27740,10 @@ type CreateSecretRequest = {
|
|
|
27412
27740
|
* specified, the path is `/`.
|
|
27413
27741
|
*/
|
|
27414
27742
|
path?: string;
|
|
27743
|
+
/** (Optional.) Date on which the secret will be deleted or deactivated. */
|
|
27744
|
+
expiresAt?: Date;
|
|
27745
|
+
/** Action to be taken when the secret expires. */
|
|
27746
|
+
ephemeralAction?: SecretEphemeralAction;
|
|
27415
27747
|
};
|
|
27416
27748
|
type CreateSecretVersionRequest = {
|
|
27417
27749
|
/**
|
|
@@ -27694,6 +28026,8 @@ type ListSecretsRequest = {
|
|
|
27694
28026
|
isManaged?: boolean;
|
|
27695
28027
|
/** Filter by path (optional). */
|
|
27696
28028
|
path?: string;
|
|
28029
|
+
/** Filter by ephemeral / not ephemeral (optional). */
|
|
28030
|
+
isEphemeral?: boolean;
|
|
27697
28031
|
};
|
|
27698
28032
|
interface ListSecretsResponse {
|
|
27699
28033
|
/** Single page of secrets matching the requested criteria. */
|
|
@@ -28018,52 +28352,58 @@ declare class API$6 extends API$v {
|
|
|
28018
28352
|
};
|
|
28019
28353
|
}
|
|
28020
28354
|
|
|
28021
|
-
type index_gen$
|
|
28022
|
-
type index_gen$
|
|
28023
|
-
type index_gen$
|
|
28024
|
-
type index_gen$
|
|
28025
|
-
type index_gen$
|
|
28026
|
-
type index_gen$
|
|
28027
|
-
type index_gen$
|
|
28028
|
-
type index_gen$
|
|
28029
|
-
type index_gen$
|
|
28030
|
-
type index_gen$
|
|
28031
|
-
type index_gen$
|
|
28032
|
-
type index_gen$
|
|
28033
|
-
type index_gen$
|
|
28034
|
-
type index_gen$
|
|
28035
|
-
type index_gen$
|
|
28036
|
-
type index_gen$
|
|
28037
|
-
type index_gen$
|
|
28038
|
-
type index_gen$
|
|
28039
|
-
type index_gen$
|
|
28040
|
-
type index_gen$
|
|
28041
|
-
type index_gen$
|
|
28042
|
-
type index_gen$
|
|
28043
|
-
type index_gen$
|
|
28044
|
-
type index_gen$
|
|
28045
|
-
type index_gen$
|
|
28046
|
-
type index_gen$
|
|
28047
|
-
type index_gen$
|
|
28048
|
-
type index_gen$
|
|
28049
|
-
type index_gen$
|
|
28050
|
-
type index_gen$
|
|
28051
|
-
type index_gen$
|
|
28052
|
-
type index_gen$
|
|
28053
|
-
type index_gen$
|
|
28054
|
-
type index_gen$
|
|
28055
|
-
type index_gen$
|
|
28056
|
-
type index_gen$
|
|
28057
|
-
type index_gen$
|
|
28058
|
-
type index_gen$
|
|
28059
|
-
type index_gen$
|
|
28060
|
-
type index_gen$
|
|
28061
|
-
|
|
28062
|
-
|
|
28355
|
+
type index_gen$7_AccessSecretVersionByNameRequest = AccessSecretVersionByNameRequest;
|
|
28356
|
+
type index_gen$7_AccessSecretVersionRequest = AccessSecretVersionRequest;
|
|
28357
|
+
type index_gen$7_AccessSecretVersionResponse = AccessSecretVersionResponse;
|
|
28358
|
+
type index_gen$7_AddSecretOwnerRequest = AddSecretOwnerRequest;
|
|
28359
|
+
type index_gen$7_CreateFolderRequest = CreateFolderRequest;
|
|
28360
|
+
type index_gen$7_CreateSecretRequest = CreateSecretRequest;
|
|
28361
|
+
type index_gen$7_CreateSecretVersionRequest = CreateSecretVersionRequest;
|
|
28362
|
+
type index_gen$7_DeleteFolderRequest = DeleteFolderRequest;
|
|
28363
|
+
type index_gen$7_DeleteSecretRequest = DeleteSecretRequest;
|
|
28364
|
+
type index_gen$7_DestroySecretVersionRequest = DestroySecretVersionRequest;
|
|
28365
|
+
type index_gen$7_DisableSecretVersionRequest = DisableSecretVersionRequest;
|
|
28366
|
+
type index_gen$7_EnableSecretVersionRequest = EnableSecretVersionRequest;
|
|
28367
|
+
type index_gen$7_Folder = Folder;
|
|
28368
|
+
type index_gen$7_GeneratePasswordRequest = GeneratePasswordRequest;
|
|
28369
|
+
type index_gen$7_GetSecretByNameRequest = GetSecretByNameRequest;
|
|
28370
|
+
type index_gen$7_GetSecretRequest = GetSecretRequest;
|
|
28371
|
+
type index_gen$7_GetSecretVersionByNameRequest = GetSecretVersionByNameRequest;
|
|
28372
|
+
type index_gen$7_GetSecretVersionRequest = GetSecretVersionRequest;
|
|
28373
|
+
type index_gen$7_ListFoldersRequest = ListFoldersRequest;
|
|
28374
|
+
type index_gen$7_ListFoldersRequestOrderBy = ListFoldersRequestOrderBy;
|
|
28375
|
+
type index_gen$7_ListFoldersResponse = ListFoldersResponse;
|
|
28376
|
+
type index_gen$7_ListSecretVersionsByNameRequest = ListSecretVersionsByNameRequest;
|
|
28377
|
+
type index_gen$7_ListSecretVersionsRequest = ListSecretVersionsRequest;
|
|
28378
|
+
type index_gen$7_ListSecretVersionsResponse = ListSecretVersionsResponse;
|
|
28379
|
+
type index_gen$7_ListSecretsRequest = ListSecretsRequest;
|
|
28380
|
+
type index_gen$7_ListSecretsRequestOrderBy = ListSecretsRequestOrderBy;
|
|
28381
|
+
type index_gen$7_ListSecretsResponse = ListSecretsResponse;
|
|
28382
|
+
type index_gen$7_ListTagsRequest = ListTagsRequest;
|
|
28383
|
+
type index_gen$7_ListTagsResponse = ListTagsResponse;
|
|
28384
|
+
type index_gen$7_PasswordGenerationParams = PasswordGenerationParams;
|
|
28385
|
+
type index_gen$7_Product = Product;
|
|
28386
|
+
type index_gen$7_ProtectSecretRequest = ProtectSecretRequest;
|
|
28387
|
+
type index_gen$7_Secret = Secret;
|
|
28388
|
+
type index_gen$7_SecretEphemeralAction = SecretEphemeralAction;
|
|
28389
|
+
type index_gen$7_SecretStatus = SecretStatus;
|
|
28390
|
+
type index_gen$7_SecretType = SecretType;
|
|
28391
|
+
type index_gen$7_SecretVersion = SecretVersion;
|
|
28392
|
+
type index_gen$7_SecretVersionStatus = SecretVersionStatus;
|
|
28393
|
+
type index_gen$7_UnprotectSecretRequest = UnprotectSecretRequest;
|
|
28394
|
+
type index_gen$7_UpdateSecretRequest = UpdateSecretRequest;
|
|
28395
|
+
type index_gen$7_UpdateSecretVersionRequest = UpdateSecretVersionRequest;
|
|
28396
|
+
declare namespace index_gen$7 {
|
|
28397
|
+
export { API$6 as API, type index_gen$7_AccessSecretVersionByNameRequest as AccessSecretVersionByNameRequest, type index_gen$7_AccessSecretVersionRequest as AccessSecretVersionRequest, type index_gen$7_AccessSecretVersionResponse as AccessSecretVersionResponse, type index_gen$7_AddSecretOwnerRequest as AddSecretOwnerRequest, type index_gen$7_CreateFolderRequest as CreateFolderRequest, type index_gen$7_CreateSecretRequest as CreateSecretRequest, type index_gen$7_CreateSecretVersionRequest as CreateSecretVersionRequest, type index_gen$7_DeleteFolderRequest as DeleteFolderRequest, type index_gen$7_DeleteSecretRequest as DeleteSecretRequest, type index_gen$7_DestroySecretVersionRequest as DestroySecretVersionRequest, type index_gen$7_DisableSecretVersionRequest as DisableSecretVersionRequest, type index_gen$7_EnableSecretVersionRequest as EnableSecretVersionRequest, type index_gen$7_Folder as Folder, type index_gen$7_GeneratePasswordRequest as GeneratePasswordRequest, type index_gen$7_GetSecretByNameRequest as GetSecretByNameRequest, type index_gen$7_GetSecretRequest as GetSecretRequest, type index_gen$7_GetSecretVersionByNameRequest as GetSecretVersionByNameRequest, type index_gen$7_GetSecretVersionRequest as GetSecretVersionRequest, type index_gen$7_ListFoldersRequest as ListFoldersRequest, type index_gen$7_ListFoldersRequestOrderBy as ListFoldersRequestOrderBy, type index_gen$7_ListFoldersResponse as ListFoldersResponse, type index_gen$7_ListSecretVersionsByNameRequest as ListSecretVersionsByNameRequest, type index_gen$7_ListSecretVersionsRequest as ListSecretVersionsRequest, type index_gen$7_ListSecretVersionsResponse as ListSecretVersionsResponse, type index_gen$7_ListSecretsRequest as ListSecretsRequest, type index_gen$7_ListSecretsRequestOrderBy as ListSecretsRequestOrderBy, type index_gen$7_ListSecretsResponse as ListSecretsResponse, type index_gen$7_ListTagsRequest as ListTagsRequest, type index_gen$7_ListTagsResponse as ListTagsResponse, type index_gen$7_PasswordGenerationParams as PasswordGenerationParams, type index_gen$7_Product as Product, type index_gen$7_ProtectSecretRequest as ProtectSecretRequest, type index_gen$7_Secret as Secret, type index_gen$7_SecretEphemeralAction as SecretEphemeralAction, type index_gen$7_SecretStatus as SecretStatus, type index_gen$7_SecretType as SecretType, type index_gen$7_SecretVersion as SecretVersion, type index_gen$7_SecretVersionStatus as SecretVersionStatus, type index_gen$7_UnprotectSecretRequest as UnprotectSecretRequest, type index_gen$7_UpdateSecretRequest as UpdateSecretRequest, type index_gen$7_UpdateSecretVersionRequest as UpdateSecretVersionRequest };
|
|
28063
28398
|
}
|
|
28064
28399
|
|
|
28065
28400
|
declare namespace index$5 {
|
|
28066
|
-
export { index_gen$
|
|
28401
|
+
export { index_gen$7 as v1alpha1 };
|
|
28402
|
+
}
|
|
28403
|
+
|
|
28404
|
+
type index_gen$6_LanguageCode = LanguageCode;
|
|
28405
|
+
declare namespace index_gen$6 {
|
|
28406
|
+
export type { index_gen$6_LanguageCode as LanguageCode };
|
|
28067
28407
|
}
|
|
28068
28408
|
|
|
28069
28409
|
type EyeColors = 'unknown' | 'amber' | 'blue' | 'brown' | 'gray' | 'green' | 'hazel' | 'red' | 'violet';
|
|
@@ -28146,6 +28486,7 @@ type SmokeHumanRequest = {
|
|
|
28146
28486
|
type UpdateHumanRequest = {
|
|
28147
28487
|
/** UUID of the human you want to update. */
|
|
28148
28488
|
humanId: string;
|
|
28489
|
+
/** Height of the human in meters. */
|
|
28149
28490
|
height?: number;
|
|
28150
28491
|
shoeSize?: number;
|
|
28151
28492
|
altitudeInMeter?: number;
|
|
@@ -28266,6 +28607,7 @@ declare namespace index$4 {
|
|
|
28266
28607
|
}
|
|
28267
28608
|
|
|
28268
28609
|
type DomainLastStatusRecordStatus = 'unknown_record_status' | 'valid' | 'invalid' | 'not_found';
|
|
28610
|
+
type DomainReputationStatus = 'unknown_status' | 'excellent' | 'good' | 'average' | 'bad';
|
|
28269
28611
|
type DomainStatus = 'unknown' | 'checked' | 'unchecked' | 'invalid' | 'locked' | 'revoked' | 'pending';
|
|
28270
28612
|
type EmailFlag = 'unknown_flag' | 'soft_bounce' | 'hard_bounce' | 'spam' | 'mailbox_full' | 'mailbox_not_found' | 'greylisted' | 'send_before_expiration';
|
|
28271
28613
|
type EmailRcptType = 'unknown_rcpt_type' | 'to' | 'cc' | 'bcc';
|
|
@@ -28287,6 +28629,22 @@ interface EmailTry {
|
|
|
28287
28629
|
*/
|
|
28288
28630
|
message: string;
|
|
28289
28631
|
}
|
|
28632
|
+
interface DomainReputation {
|
|
28633
|
+
/** Status of your domain's reputation. */
|
|
28634
|
+
status: DomainReputationStatus;
|
|
28635
|
+
/**
|
|
28636
|
+
* A range from 0 to 100 that determines your domain's reputation score. A
|
|
28637
|
+
* score of `0` means a bad domain reputation and a score of `100` means an
|
|
28638
|
+
* excellent domain reputation.
|
|
28639
|
+
*/
|
|
28640
|
+
score: number;
|
|
28641
|
+
/** Time and date the score was calculated. */
|
|
28642
|
+
scoredAt?: Date;
|
|
28643
|
+
/** The previously-calculated domain's reputation score. */
|
|
28644
|
+
previousScore?: number;
|
|
28645
|
+
/** Time and date the previous reputation score was calculated. */
|
|
28646
|
+
previousScoredAt?: Date;
|
|
28647
|
+
}
|
|
28290
28648
|
interface DomainStatistics {
|
|
28291
28649
|
totalCount: number;
|
|
28292
28650
|
sentCount: number;
|
|
@@ -28343,7 +28701,7 @@ interface Email {
|
|
|
28343
28701
|
flags: EmailFlag[];
|
|
28344
28702
|
}
|
|
28345
28703
|
interface DomainLastStatusDkimRecord {
|
|
28346
|
-
/** Status of the DKIM record's
|
|
28704
|
+
/** Status of the DKIM record's configuration. */
|
|
28347
28705
|
status: DomainLastStatusRecordStatus;
|
|
28348
28706
|
/** Time and date the DKIM record was last valid. */
|
|
28349
28707
|
lastValidAt?: Date;
|
|
@@ -28351,7 +28709,7 @@ interface DomainLastStatusDkimRecord {
|
|
|
28351
28709
|
error?: string;
|
|
28352
28710
|
}
|
|
28353
28711
|
interface DomainLastStatusSpfRecord {
|
|
28354
|
-
/** Status of the SPF record's
|
|
28712
|
+
/** Status of the SPF record's configuration. */
|
|
28355
28713
|
status: DomainLastStatusRecordStatus;
|
|
28356
28714
|
/** Time and date the SPF record was last valid. */
|
|
28357
28715
|
lastValidAt?: Date;
|
|
@@ -28385,6 +28743,11 @@ interface Domain {
|
|
|
28385
28743
|
dkimConfig: string;
|
|
28386
28744
|
/** Domain's statistics. */
|
|
28387
28745
|
statistics?: DomainStatistics;
|
|
28746
|
+
/**
|
|
28747
|
+
* The domain's reputation is available when your domain is checked and has
|
|
28748
|
+
* sent enough emails.
|
|
28749
|
+
*/
|
|
28750
|
+
reputation?: DomainReputation;
|
|
28388
28751
|
/**
|
|
28389
28752
|
* Region to target. If none is passed will use default region from the
|
|
28390
28753
|
* config.
|
|
@@ -28454,7 +28817,7 @@ interface CreateEmailResponse {
|
|
|
28454
28817
|
emails: Email[];
|
|
28455
28818
|
}
|
|
28456
28819
|
interface DomainLastStatus {
|
|
28457
|
-
/** The
|
|
28820
|
+
/** The ID of the domain. */
|
|
28458
28821
|
domainId: string;
|
|
28459
28822
|
/** The domain name (example.com). */
|
|
28460
28823
|
domainName: string;
|
|
@@ -28678,7 +29041,13 @@ declare class API$4 extends API$v {
|
|
|
28678
29041
|
createDomain: (request: Readonly<CreateDomainRequest>) => Promise<Domain>;
|
|
28679
29042
|
/**
|
|
28680
29043
|
* Get information about a domain. Retrieve information about a specific
|
|
28681
|
-
* domain using the `region` and `domain_id` parameters.
|
|
29044
|
+
* domain using the `region` and `domain_id` parameters. Monitor your domain's
|
|
29045
|
+
* reputation and improve **average** and **bad** reputation statuses, using
|
|
29046
|
+
* your domain's **Email activity** tab on the [Scaleway
|
|
29047
|
+
* console](https://console.scaleway.com/transactional-email/domains) to get a
|
|
29048
|
+
* more detailed report. Check out our [dedicated
|
|
29049
|
+
* documentation](https://www.scaleway.com/en/docs/managed-services/transactional-email/reference-content/understanding-tem-reputation-score/)
|
|
29050
|
+
* to improve your domain's reputation.
|
|
28682
29051
|
*
|
|
28683
29052
|
* @param request - The request {@link GetDomainRequest}
|
|
28684
29053
|
* @returns A Promise of Domain
|
|
@@ -28694,7 +29063,7 @@ declare class API$4 extends API$v {
|
|
|
28694
29063
|
waitForDomain: (request: Readonly<GetDomainRequest>, options?: Readonly<WaitForOptions<Domain>>) => Promise<Domain>;
|
|
28695
29064
|
protected pageOfListDomains: (request?: Readonly<ListDomainsRequest>) => Promise<ListDomainsResponse>;
|
|
28696
29065
|
/**
|
|
28697
|
-
* List domains. Retrieve domains in a specific
|
|
29066
|
+
* List domains. Retrieve domains in a specific Project or in a specific
|
|
28698
29067
|
* Organization using the `region` parameter.
|
|
28699
29068
|
*
|
|
28700
29069
|
* @param request - The request {@link ListDomainsRequest}
|
|
@@ -28750,6 +29119,8 @@ type index_gen$4_DomainLastStatus = DomainLastStatus;
|
|
|
28750
29119
|
type index_gen$4_DomainLastStatusDkimRecord = DomainLastStatusDkimRecord;
|
|
28751
29120
|
type index_gen$4_DomainLastStatusRecordStatus = DomainLastStatusRecordStatus;
|
|
28752
29121
|
type index_gen$4_DomainLastStatusSpfRecord = DomainLastStatusSpfRecord;
|
|
29122
|
+
type index_gen$4_DomainReputation = DomainReputation;
|
|
29123
|
+
type index_gen$4_DomainReputationStatus = DomainReputationStatus;
|
|
28753
29124
|
type index_gen$4_DomainStatistics = DomainStatistics;
|
|
28754
29125
|
type index_gen$4_DomainStatus = DomainStatus;
|
|
28755
29126
|
declare const index_gen$4_EMAIL_TRANSIENT_STATUSES: typeof EMAIL_TRANSIENT_STATUSES;
|
|
@@ -28770,7 +29141,7 @@ type index_gen$4_ListEmailsResponse = ListEmailsResponse;
|
|
|
28770
29141
|
type index_gen$4_RevokeDomainRequest = RevokeDomainRequest;
|
|
28771
29142
|
type index_gen$4_Statistics = Statistics;
|
|
28772
29143
|
declare namespace index_gen$4 {
|
|
28773
|
-
export { API$4 as API, type index_gen$4_CancelEmailRequest as CancelEmailRequest, type index_gen$4_CheckDomainRequest as CheckDomainRequest, type index_gen$4_CreateDomainRequest as CreateDomainRequest, type index_gen$4_CreateEmailRequest as CreateEmailRequest, type index_gen$4_CreateEmailRequestAddress as CreateEmailRequestAddress, type index_gen$4_CreateEmailRequestAttachment as CreateEmailRequestAttachment, type index_gen$4_CreateEmailResponse as CreateEmailResponse, index_gen$4_DOMAIN_TRANSIENT_STATUSES as DOMAIN_TRANSIENT_STATUSES, type index_gen$4_Domain as Domain, type index_gen$4_DomainLastStatus as DomainLastStatus, type index_gen$4_DomainLastStatusDkimRecord as DomainLastStatusDkimRecord, type index_gen$4_DomainLastStatusRecordStatus as DomainLastStatusRecordStatus, type index_gen$4_DomainLastStatusSpfRecord as DomainLastStatusSpfRecord, type index_gen$4_DomainStatistics as DomainStatistics, type index_gen$4_DomainStatus as DomainStatus, index_gen$4_EMAIL_TRANSIENT_STATUSES as EMAIL_TRANSIENT_STATUSES, type index_gen$4_Email as Email, type index_gen$4_EmailFlag as EmailFlag, type index_gen$4_EmailRcptType as EmailRcptType, type index_gen$4_EmailStatus as EmailStatus, type index_gen$4_EmailTry as EmailTry, type index_gen$4_GetDomainLastStatusRequest as GetDomainLastStatusRequest, type index_gen$4_GetDomainRequest as GetDomainRequest, type index_gen$4_GetEmailRequest as GetEmailRequest, type index_gen$4_GetStatisticsRequest as GetStatisticsRequest, type index_gen$4_ListDomainsRequest as ListDomainsRequest, type index_gen$4_ListDomainsResponse as ListDomainsResponse, type index_gen$4_ListEmailsRequest as ListEmailsRequest, type index_gen$4_ListEmailsRequestOrderBy as ListEmailsRequestOrderBy, type index_gen$4_ListEmailsResponse as ListEmailsResponse, type index_gen$4_RevokeDomainRequest as RevokeDomainRequest, type index_gen$4_Statistics as Statistics };
|
|
29144
|
+
export { API$4 as API, type index_gen$4_CancelEmailRequest as CancelEmailRequest, type index_gen$4_CheckDomainRequest as CheckDomainRequest, type index_gen$4_CreateDomainRequest as CreateDomainRequest, type index_gen$4_CreateEmailRequest as CreateEmailRequest, type index_gen$4_CreateEmailRequestAddress as CreateEmailRequestAddress, type index_gen$4_CreateEmailRequestAttachment as CreateEmailRequestAttachment, type index_gen$4_CreateEmailResponse as CreateEmailResponse, index_gen$4_DOMAIN_TRANSIENT_STATUSES as DOMAIN_TRANSIENT_STATUSES, type index_gen$4_Domain as Domain, type index_gen$4_DomainLastStatus as DomainLastStatus, type index_gen$4_DomainLastStatusDkimRecord as DomainLastStatusDkimRecord, type index_gen$4_DomainLastStatusRecordStatus as DomainLastStatusRecordStatus, type index_gen$4_DomainLastStatusSpfRecord as DomainLastStatusSpfRecord, type index_gen$4_DomainReputation as DomainReputation, type index_gen$4_DomainReputationStatus as DomainReputationStatus, type index_gen$4_DomainStatistics as DomainStatistics, type index_gen$4_DomainStatus as DomainStatus, index_gen$4_EMAIL_TRANSIENT_STATUSES as EMAIL_TRANSIENT_STATUSES, type index_gen$4_Email as Email, type index_gen$4_EmailFlag as EmailFlag, type index_gen$4_EmailRcptType as EmailRcptType, type index_gen$4_EmailStatus as EmailStatus, type index_gen$4_EmailTry as EmailTry, type index_gen$4_GetDomainLastStatusRequest as GetDomainLastStatusRequest, type index_gen$4_GetDomainRequest as GetDomainRequest, type index_gen$4_GetEmailRequest as GetEmailRequest, type index_gen$4_GetStatisticsRequest as GetStatisticsRequest, type index_gen$4_ListDomainsRequest as ListDomainsRequest, type index_gen$4_ListDomainsResponse as ListDomainsResponse, type index_gen$4_ListEmailsRequest as ListEmailsRequest, type index_gen$4_ListEmailsRequestOrderBy as ListEmailsRequestOrderBy, type index_gen$4_ListEmailsResponse as ListEmailsResponse, type index_gen$4_RevokeDomainRequest as RevokeDomainRequest, type index_gen$4_Statistics as Statistics };
|
|
28774
29145
|
}
|
|
28775
29146
|
|
|
28776
29147
|
declare namespace index$3 {
|
|
@@ -29504,6 +29875,8 @@ interface DHCP {
|
|
|
29504
29875
|
interface IpamConfig {
|
|
29505
29876
|
/** Defines whether the default route is enabled on that Gateway Network. */
|
|
29506
29877
|
pushDefaultRoute: boolean;
|
|
29878
|
+
/** IPAM-booked IP ID as the Gateway's IP in this Private Network. */
|
|
29879
|
+
ipamIpId: string;
|
|
29507
29880
|
}
|
|
29508
29881
|
interface GatewayNetwork {
|
|
29509
29882
|
/** ID of the Public Gateway-Private Network connection. */
|
|
@@ -29636,6 +30009,12 @@ type CreateDHCPRequest = {
|
|
|
29636
30009
|
*/
|
|
29637
30010
|
dnsLocalName?: string;
|
|
29638
30011
|
};
|
|
30012
|
+
interface CreateGatewayNetworkRequestIpamConfig {
|
|
30013
|
+
/** Enabling the default route also enables masquerading. */
|
|
30014
|
+
pushDefaultRoute: boolean;
|
|
30015
|
+
/** Use this IPAM-booked IP ID as the Gateway's IP in this Private Network. */
|
|
30016
|
+
ipamIpId?: string;
|
|
30017
|
+
}
|
|
29639
30018
|
interface DHCPEntry {
|
|
29640
30019
|
/** DHCP entry ID. */
|
|
29641
30020
|
id: string;
|
|
@@ -29744,6 +30123,12 @@ interface SetPATRulesRequestRule {
|
|
|
29744
30123
|
/** Protocol the rule should apply to. */
|
|
29745
30124
|
protocol: PATRuleProtocol;
|
|
29746
30125
|
}
|
|
30126
|
+
interface UpdateGatewayNetworkRequestIpamConfig {
|
|
30127
|
+
/** Enabling the default route also enables masquerading. */
|
|
30128
|
+
pushDefaultRoute?: boolean;
|
|
30129
|
+
/** Use this IPAM-booked IP ID as the Gateway's IP in this Private Network. */
|
|
30130
|
+
ipamIpId?: string;
|
|
30131
|
+
}
|
|
29747
30132
|
type CreateDHCPEntryRequest = {
|
|
29748
30133
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
29749
30134
|
zone?: Zone;
|
|
@@ -29799,7 +30184,7 @@ type CreateGatewayNetworkRequest = {
|
|
|
29799
30184
|
* One-of ('ipConfig'): at most one of 'dhcpId', 'dhcp', 'address',
|
|
29800
30185
|
* 'ipamConfig' could be set.
|
|
29801
30186
|
*/
|
|
29802
|
-
ipamConfig?:
|
|
30187
|
+
ipamConfig?: CreateGatewayNetworkRequestIpamConfig;
|
|
29803
30188
|
};
|
|
29804
30189
|
type CreateGatewayRequest = {
|
|
29805
30190
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
@@ -30240,7 +30625,7 @@ type UpdateGatewayNetworkRequest = {
|
|
|
30240
30625
|
* One-of ('ipConfig'): at most one of 'dhcpId', 'address', 'ipamConfig' could
|
|
30241
30626
|
* be set.
|
|
30242
30627
|
*/
|
|
30243
|
-
ipamConfig?:
|
|
30628
|
+
ipamConfig?: UpdateGatewayNetworkRequestIpamConfig;
|
|
30244
30629
|
};
|
|
30245
30630
|
type UpdateGatewayRequest = {
|
|
30246
30631
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
@@ -30683,6 +31068,7 @@ declare const GATEWAY_TRANSIENT_STATUSES: GatewayStatus[];
|
|
|
30683
31068
|
type index_gen$1_CreateDHCPEntryRequest = CreateDHCPEntryRequest;
|
|
30684
31069
|
type index_gen$1_CreateDHCPRequest = CreateDHCPRequest;
|
|
30685
31070
|
type index_gen$1_CreateGatewayNetworkRequest = CreateGatewayNetworkRequest;
|
|
31071
|
+
type index_gen$1_CreateGatewayNetworkRequestIpamConfig = CreateGatewayNetworkRequestIpamConfig;
|
|
30686
31072
|
type index_gen$1_CreateGatewayRequest = CreateGatewayRequest;
|
|
30687
31073
|
type index_gen$1_CreateIPRequest = CreateIPRequest;
|
|
30688
31074
|
type index_gen$1_CreatePATRuleRequest = CreatePATRuleRequest;
|
|
@@ -30742,12 +31128,13 @@ type index_gen$1_SetPATRulesResponse = SetPATRulesResponse;
|
|
|
30742
31128
|
type index_gen$1_UpdateDHCPEntryRequest = UpdateDHCPEntryRequest;
|
|
30743
31129
|
type index_gen$1_UpdateDHCPRequest = UpdateDHCPRequest;
|
|
30744
31130
|
type index_gen$1_UpdateGatewayNetworkRequest = UpdateGatewayNetworkRequest;
|
|
31131
|
+
type index_gen$1_UpdateGatewayNetworkRequestIpamConfig = UpdateGatewayNetworkRequestIpamConfig;
|
|
30745
31132
|
type index_gen$1_UpdateGatewayRequest = UpdateGatewayRequest;
|
|
30746
31133
|
type index_gen$1_UpdateIPRequest = UpdateIPRequest;
|
|
30747
31134
|
type index_gen$1_UpdatePATRuleRequest = UpdatePATRuleRequest;
|
|
30748
31135
|
type index_gen$1_UpgradeGatewayRequest = UpgradeGatewayRequest;
|
|
30749
31136
|
declare namespace index_gen$1 {
|
|
30750
|
-
export { API$1 as API, type index_gen$1_CreateDHCPEntryRequest as CreateDHCPEntryRequest, type index_gen$1_CreateDHCPRequest as CreateDHCPRequest, type index_gen$1_CreateGatewayNetworkRequest as CreateGatewayNetworkRequest, type index_gen$1_CreateGatewayRequest as CreateGatewayRequest, type index_gen$1_CreateIPRequest as CreateIPRequest, type index_gen$1_CreatePATRuleRequest as CreatePATRuleRequest, type index_gen$1_DHCP as DHCP, type index_gen$1_DHCPEntry as DHCPEntry, type index_gen$1_DHCPEntryType as DHCPEntryType, type index_gen$1_DeleteDHCPEntryRequest as DeleteDHCPEntryRequest, type index_gen$1_DeleteDHCPRequest as DeleteDHCPRequest, type index_gen$1_DeleteGatewayNetworkRequest as DeleteGatewayNetworkRequest, type index_gen$1_DeleteGatewayRequest as DeleteGatewayRequest, type index_gen$1_DeleteIPRequest as DeleteIPRequest, type index_gen$1_DeletePATRuleRequest as DeletePATRuleRequest, index_gen$1_GATEWAY_NETWORK_TRANSIENT_STATUSES as GATEWAY_NETWORK_TRANSIENT_STATUSES, index_gen$1_GATEWAY_TRANSIENT_STATUSES as GATEWAY_TRANSIENT_STATUSES, type index_gen$1_Gateway as Gateway, type index_gen$1_GatewayNetwork as GatewayNetwork, type index_gen$1_GatewayNetworkStatus as GatewayNetworkStatus, type index_gen$1_GatewayStatus as GatewayStatus, type index_gen$1_GatewayType as GatewayType, type index_gen$1_GetDHCPEntryRequest as GetDHCPEntryRequest, type index_gen$1_GetDHCPRequest as GetDHCPRequest, type index_gen$1_GetGatewayNetworkRequest as GetGatewayNetworkRequest, type index_gen$1_GetGatewayRequest as GetGatewayRequest, type index_gen$1_GetIPRequest as GetIPRequest, type index_gen$1_GetPATRuleRequest as GetPATRuleRequest, type index_gen$1_IP as IP, type index_gen$1_IpamConfig as IpamConfig, type index_gen$1_ListDHCPEntriesRequest as ListDHCPEntriesRequest, type index_gen$1_ListDHCPEntriesRequestOrderBy as ListDHCPEntriesRequestOrderBy, type index_gen$1_ListDHCPEntriesResponse as ListDHCPEntriesResponse, type index_gen$1_ListDHCPsRequest as ListDHCPsRequest, type index_gen$1_ListDHCPsRequestOrderBy as ListDHCPsRequestOrderBy, type index_gen$1_ListDHCPsResponse as ListDHCPsResponse, type index_gen$1_ListGatewayNetworksRequest as ListGatewayNetworksRequest, type index_gen$1_ListGatewayNetworksRequestOrderBy as ListGatewayNetworksRequestOrderBy, type index_gen$1_ListGatewayNetworksResponse as ListGatewayNetworksResponse, type index_gen$1_ListGatewayTypesRequest as ListGatewayTypesRequest, type index_gen$1_ListGatewayTypesResponse as ListGatewayTypesResponse, type index_gen$1_ListGatewaysRequest as ListGatewaysRequest, type index_gen$1_ListGatewaysRequestOrderBy as ListGatewaysRequestOrderBy, type index_gen$1_ListGatewaysResponse as ListGatewaysResponse, type index_gen$1_ListIPsRequest as ListIPsRequest, type index_gen$1_ListIPsRequestOrderBy as ListIPsRequestOrderBy, type index_gen$1_ListIPsResponse as ListIPsResponse, type index_gen$1_ListPATRulesRequest as ListPATRulesRequest, type index_gen$1_ListPATRulesRequestOrderBy as ListPATRulesRequestOrderBy, type index_gen$1_ListPATRulesResponse as ListPATRulesResponse, type index_gen$1_PATRule as PATRule, type index_gen$1_PATRuleProtocol as PATRuleProtocol, type index_gen$1_RefreshSSHKeysRequest as RefreshSSHKeysRequest, type index_gen$1_SetDHCPEntriesRequest as SetDHCPEntriesRequest, type index_gen$1_SetDHCPEntriesRequestEntry as SetDHCPEntriesRequestEntry, type index_gen$1_SetDHCPEntriesResponse as SetDHCPEntriesResponse, type index_gen$1_SetPATRulesRequest as SetPATRulesRequest, type index_gen$1_SetPATRulesRequestRule as SetPATRulesRequestRule, type index_gen$1_SetPATRulesResponse as SetPATRulesResponse, type index_gen$1_UpdateDHCPEntryRequest as UpdateDHCPEntryRequest, type index_gen$1_UpdateDHCPRequest as UpdateDHCPRequest, type index_gen$1_UpdateGatewayNetworkRequest as UpdateGatewayNetworkRequest, type index_gen$1_UpdateGatewayRequest as UpdateGatewayRequest, type index_gen$1_UpdateIPRequest as UpdateIPRequest, type index_gen$1_UpdatePATRuleRequest as UpdatePATRuleRequest, type index_gen$1_UpgradeGatewayRequest as UpgradeGatewayRequest };
|
|
31137
|
+
export { API$1 as API, type index_gen$1_CreateDHCPEntryRequest as CreateDHCPEntryRequest, type index_gen$1_CreateDHCPRequest as CreateDHCPRequest, type index_gen$1_CreateGatewayNetworkRequest as CreateGatewayNetworkRequest, type index_gen$1_CreateGatewayNetworkRequestIpamConfig as CreateGatewayNetworkRequestIpamConfig, type index_gen$1_CreateGatewayRequest as CreateGatewayRequest, type index_gen$1_CreateIPRequest as CreateIPRequest, type index_gen$1_CreatePATRuleRequest as CreatePATRuleRequest, type index_gen$1_DHCP as DHCP, type index_gen$1_DHCPEntry as DHCPEntry, type index_gen$1_DHCPEntryType as DHCPEntryType, type index_gen$1_DeleteDHCPEntryRequest as DeleteDHCPEntryRequest, type index_gen$1_DeleteDHCPRequest as DeleteDHCPRequest, type index_gen$1_DeleteGatewayNetworkRequest as DeleteGatewayNetworkRequest, type index_gen$1_DeleteGatewayRequest as DeleteGatewayRequest, type index_gen$1_DeleteIPRequest as DeleteIPRequest, type index_gen$1_DeletePATRuleRequest as DeletePATRuleRequest, index_gen$1_GATEWAY_NETWORK_TRANSIENT_STATUSES as GATEWAY_NETWORK_TRANSIENT_STATUSES, index_gen$1_GATEWAY_TRANSIENT_STATUSES as GATEWAY_TRANSIENT_STATUSES, type index_gen$1_Gateway as Gateway, type index_gen$1_GatewayNetwork as GatewayNetwork, type index_gen$1_GatewayNetworkStatus as GatewayNetworkStatus, type index_gen$1_GatewayStatus as GatewayStatus, type index_gen$1_GatewayType as GatewayType, type index_gen$1_GetDHCPEntryRequest as GetDHCPEntryRequest, type index_gen$1_GetDHCPRequest as GetDHCPRequest, type index_gen$1_GetGatewayNetworkRequest as GetGatewayNetworkRequest, type index_gen$1_GetGatewayRequest as GetGatewayRequest, type index_gen$1_GetIPRequest as GetIPRequest, type index_gen$1_GetPATRuleRequest as GetPATRuleRequest, type index_gen$1_IP as IP, type index_gen$1_IpamConfig as IpamConfig, type index_gen$1_ListDHCPEntriesRequest as ListDHCPEntriesRequest, type index_gen$1_ListDHCPEntriesRequestOrderBy as ListDHCPEntriesRequestOrderBy, type index_gen$1_ListDHCPEntriesResponse as ListDHCPEntriesResponse, type index_gen$1_ListDHCPsRequest as ListDHCPsRequest, type index_gen$1_ListDHCPsRequestOrderBy as ListDHCPsRequestOrderBy, type index_gen$1_ListDHCPsResponse as ListDHCPsResponse, type index_gen$1_ListGatewayNetworksRequest as ListGatewayNetworksRequest, type index_gen$1_ListGatewayNetworksRequestOrderBy as ListGatewayNetworksRequestOrderBy, type index_gen$1_ListGatewayNetworksResponse as ListGatewayNetworksResponse, type index_gen$1_ListGatewayTypesRequest as ListGatewayTypesRequest, type index_gen$1_ListGatewayTypesResponse as ListGatewayTypesResponse, type index_gen$1_ListGatewaysRequest as ListGatewaysRequest, type index_gen$1_ListGatewaysRequestOrderBy as ListGatewaysRequestOrderBy, type index_gen$1_ListGatewaysResponse as ListGatewaysResponse, type index_gen$1_ListIPsRequest as ListIPsRequest, type index_gen$1_ListIPsRequestOrderBy as ListIPsRequestOrderBy, type index_gen$1_ListIPsResponse as ListIPsResponse, type index_gen$1_ListPATRulesRequest as ListPATRulesRequest, type index_gen$1_ListPATRulesRequestOrderBy as ListPATRulesRequestOrderBy, type index_gen$1_ListPATRulesResponse as ListPATRulesResponse, type index_gen$1_PATRule as PATRule, type index_gen$1_PATRuleProtocol as PATRuleProtocol, type index_gen$1_RefreshSSHKeysRequest as RefreshSSHKeysRequest, type index_gen$1_SetDHCPEntriesRequest as SetDHCPEntriesRequest, type index_gen$1_SetDHCPEntriesRequestEntry as SetDHCPEntriesRequestEntry, type index_gen$1_SetDHCPEntriesResponse as SetDHCPEntriesResponse, type index_gen$1_SetPATRulesRequest as SetPATRulesRequest, type index_gen$1_SetPATRulesRequestRule as SetPATRulesRequestRule, type index_gen$1_SetPATRulesResponse as SetPATRulesResponse, type index_gen$1_UpdateDHCPEntryRequest as UpdateDHCPEntryRequest, type index_gen$1_UpdateDHCPRequest as UpdateDHCPRequest, type index_gen$1_UpdateGatewayNetworkRequest as UpdateGatewayNetworkRequest, type index_gen$1_UpdateGatewayNetworkRequestIpamConfig as UpdateGatewayNetworkRequestIpamConfig, type index_gen$1_UpdateGatewayRequest as UpdateGatewayRequest, type index_gen$1_UpdateIPRequest as UpdateIPRequest, type index_gen$1_UpdatePATRuleRequest as UpdatePATRuleRequest, type index_gen$1_UpgradeGatewayRequest as UpgradeGatewayRequest };
|
|
30751
31138
|
}
|
|
30752
31139
|
|
|
30753
31140
|
declare namespace index$1 {
|
|
@@ -31181,4 +31568,4 @@ declare namespace index {
|
|
|
31181
31568
|
export { index_gen as v1alpha1 };
|
|
31182
31569
|
}
|
|
31183
31570
|
|
|
31184
|
-
export { API$v as API, index$w as Account, index$v as AppleSilicon, index$t as BareMetal, index$s as Billing, index$r as Block, type Client, type ClientConfig, index$q as Cockpit, index$p as Container, type DefaultValues, index$o as DocumentDB, index$n as Domain, index$x as Errors, index$m as FlexibleIP, index$l as Function, index$k as IAM, index$h as IOT, index$g as IPAM, index$f as IPFS, index$i as Instance, 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$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 };
|
|
31571
|
+
export { API$v as API, index$w as Account, index$v as AppleSilicon, index$t as BareMetal, index$s as Billing, index$r as Block, type Client, type ClientConfig, index$q as Cockpit, index$p as Container, type DefaultValues, index$o as DocumentDB, index$n as Domain, index$x as Errors, index$m as FlexibleIP, index$l as Function, index$k as IAM, index$h as IOT, index$g as IPAM, index$f as IPFS, index$i as Instance, 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 };
|