@scaleway/sdk 1.38.1 → 1.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/function/v1beta1/api.gen.js +36 -0
- package/dist/api/iam/v1alpha1/api.gen.js +27 -1
- 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/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/tem/v1alpha1/api.gen.js +8 -2
- package/dist/api/vpcgw/v1/marshalling.gen.js +9 -3
- package/dist/index.cjs +189 -24
- package/dist/index.d.ts +333 -68
- package/dist/scw/constants.js +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -2865,9 +2865,51 @@ declare namespace index$t {
|
|
|
2865
2865
|
export { index$u as v1 };
|
|
2866
2866
|
}
|
|
2867
2867
|
|
|
2868
|
+
type DiscountDiscountMode = 'unknown_discount_mode' | 'discount_mode_rate' | 'discount_mode_value' | 'discount_mode_splittable';
|
|
2869
|
+
type DiscountFilterType = 'unknown_type' | 'product_category' | 'product' | 'product_offer' | 'product_reference' | 'region' | 'zone';
|
|
2868
2870
|
type DownloadInvoiceRequestFileType = 'pdf';
|
|
2869
2871
|
type InvoiceType = 'unknown_type' | 'periodic' | 'purchase';
|
|
2872
|
+
type ListDiscountsRequestOrderBy = 'creation_date_desc' | 'creation_date_asc';
|
|
2870
2873
|
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';
|
|
2874
|
+
/** Discount. */
|
|
2875
|
+
interface Discount {
|
|
2876
|
+
/** The ID of the discount. */
|
|
2877
|
+
id: string;
|
|
2878
|
+
/** The creation date of the discount. */
|
|
2879
|
+
creationDate?: Date;
|
|
2880
|
+
/** The organization ID of the discount. */
|
|
2881
|
+
organizationId: string;
|
|
2882
|
+
/** The description of the discount. */
|
|
2883
|
+
description: string;
|
|
2884
|
+
/** The initial value of the discount. */
|
|
2885
|
+
value: number;
|
|
2886
|
+
/** The value indicating how much of the discount has been used. */
|
|
2887
|
+
valueUsed: number;
|
|
2888
|
+
/** The remaining value of the discount. */
|
|
2889
|
+
valueRemaining: number;
|
|
2890
|
+
/** The mode of the discount. */
|
|
2891
|
+
mode: DiscountDiscountMode;
|
|
2892
|
+
/** The start date of the discount. */
|
|
2893
|
+
startDate?: Date;
|
|
2894
|
+
/** The stop date of the discount. */
|
|
2895
|
+
stopDate?: Date;
|
|
2896
|
+
/** The description of the coupon. */
|
|
2897
|
+
coupon?: DiscountCoupon;
|
|
2898
|
+
/** List of products/ranges/regions/zones to limit the usability of discounts. */
|
|
2899
|
+
filters: DiscountFilter[];
|
|
2900
|
+
}
|
|
2901
|
+
/** Discount. coupon. */
|
|
2902
|
+
interface DiscountCoupon {
|
|
2903
|
+
/** The description of the coupon. */
|
|
2904
|
+
description?: string;
|
|
2905
|
+
}
|
|
2906
|
+
/** Discount. filter. */
|
|
2907
|
+
interface DiscountFilter {
|
|
2908
|
+
/** Type of the filter. */
|
|
2909
|
+
type: DiscountFilterType;
|
|
2910
|
+
/** Value of filter, it can be a product/range/region/zone value. */
|
|
2911
|
+
value: string;
|
|
2912
|
+
}
|
|
2871
2913
|
/** Get consumption response. */
|
|
2872
2914
|
interface GetConsumptionResponse {
|
|
2873
2915
|
/** Detailed consumption list. */
|
|
@@ -2907,6 +2949,13 @@ interface Invoice {
|
|
|
2907
2949
|
/** Invoice number. */
|
|
2908
2950
|
number: number;
|
|
2909
2951
|
}
|
|
2952
|
+
/** List discounts response. */
|
|
2953
|
+
interface ListDiscountsResponse {
|
|
2954
|
+
/** Total number of discounts. */
|
|
2955
|
+
totalCount: number;
|
|
2956
|
+
/** Paginated returned discounts. */
|
|
2957
|
+
discounts: Discount[];
|
|
2958
|
+
}
|
|
2910
2959
|
/** List invoices response. */
|
|
2911
2960
|
interface ListInvoicesResponse {
|
|
2912
2961
|
/** Total number of invoices. */
|
|
@@ -2946,6 +2995,19 @@ type DownloadInvoiceRequest = {
|
|
|
2946
2995
|
/** Wanted file type. */
|
|
2947
2996
|
fileType?: DownloadInvoiceRequestFileType;
|
|
2948
2997
|
};
|
|
2998
|
+
type ListDiscountsRequest = {
|
|
2999
|
+
/** Order discounts in the response by their description. */
|
|
3000
|
+
orderBy?: ListDiscountsRequestOrderBy;
|
|
3001
|
+
/** Positive integer to choose the page to return. */
|
|
3002
|
+
page?: number;
|
|
3003
|
+
/**
|
|
3004
|
+
* Positive integer lower or equal to 100 to select the number of items to
|
|
3005
|
+
* return.
|
|
3006
|
+
*/
|
|
3007
|
+
pageSize?: number;
|
|
3008
|
+
/** ID of the organization. */
|
|
3009
|
+
organizationId?: string;
|
|
3010
|
+
};
|
|
2949
3011
|
|
|
2950
3012
|
/**
|
|
2951
3013
|
* Billing API.
|
|
@@ -2981,8 +3043,26 @@ declare class API$r extends API$v {
|
|
|
2981
3043
|
* @returns A Promise of Blob
|
|
2982
3044
|
*/
|
|
2983
3045
|
downloadInvoice: (request: Readonly<DownloadInvoiceRequest>) => Promise<Blob>;
|
|
3046
|
+
protected pageOfListDiscounts: (request?: Readonly<ListDiscountsRequest>) => Promise<ListDiscountsResponse>;
|
|
3047
|
+
/**
|
|
3048
|
+
* List all user's discounts. List all discounts for an organization and
|
|
3049
|
+
* usable categories/products/offers/references/regions/zones where the
|
|
3050
|
+
* discount can be applied.
|
|
3051
|
+
*
|
|
3052
|
+
* @param request - The request {@link ListDiscountsRequest}
|
|
3053
|
+
* @returns A Promise of ListDiscountsResponse
|
|
3054
|
+
*/
|
|
3055
|
+
listDiscounts: (request?: Readonly<ListDiscountsRequest>) => Promise<ListDiscountsResponse> & {
|
|
3056
|
+
all: () => Promise<Discount[]>;
|
|
3057
|
+
[Symbol.asyncIterator]: () => AsyncGenerator<Discount[], void, void>;
|
|
3058
|
+
};
|
|
2984
3059
|
}
|
|
2985
3060
|
|
|
3061
|
+
type index_gen$p_Discount = Discount;
|
|
3062
|
+
type index_gen$p_DiscountCoupon = DiscountCoupon;
|
|
3063
|
+
type index_gen$p_DiscountDiscountMode = DiscountDiscountMode;
|
|
3064
|
+
type index_gen$p_DiscountFilter = DiscountFilter;
|
|
3065
|
+
type index_gen$p_DiscountFilterType = DiscountFilterType;
|
|
2986
3066
|
type index_gen$p_DownloadInvoiceRequest = DownloadInvoiceRequest;
|
|
2987
3067
|
type index_gen$p_DownloadInvoiceRequestFileType = DownloadInvoiceRequestFileType;
|
|
2988
3068
|
type index_gen$p_GetConsumptionRequest = GetConsumptionRequest;
|
|
@@ -2990,11 +3070,14 @@ type index_gen$p_GetConsumptionResponse = GetConsumptionResponse;
|
|
|
2990
3070
|
type index_gen$p_GetConsumptionResponseConsumption = GetConsumptionResponseConsumption;
|
|
2991
3071
|
type index_gen$p_Invoice = Invoice;
|
|
2992
3072
|
type index_gen$p_InvoiceType = InvoiceType;
|
|
3073
|
+
type index_gen$p_ListDiscountsRequest = ListDiscountsRequest;
|
|
3074
|
+
type index_gen$p_ListDiscountsRequestOrderBy = ListDiscountsRequestOrderBy;
|
|
3075
|
+
type index_gen$p_ListDiscountsResponse = ListDiscountsResponse;
|
|
2993
3076
|
type index_gen$p_ListInvoicesRequest = ListInvoicesRequest;
|
|
2994
3077
|
type index_gen$p_ListInvoicesRequestOrderBy = ListInvoicesRequestOrderBy;
|
|
2995
3078
|
type index_gen$p_ListInvoicesResponse = ListInvoicesResponse;
|
|
2996
3079
|
declare namespace index_gen$p {
|
|
2997
|
-
export { API$r as API, type index_gen$p_DownloadInvoiceRequest as DownloadInvoiceRequest, type index_gen$p_DownloadInvoiceRequestFileType as DownloadInvoiceRequestFileType, type index_gen$p_GetConsumptionRequest as GetConsumptionRequest, type index_gen$p_GetConsumptionResponse as GetConsumptionResponse, type index_gen$p_GetConsumptionResponseConsumption as GetConsumptionResponseConsumption, type index_gen$p_Invoice as Invoice, type index_gen$p_InvoiceType as InvoiceType, type index_gen$p_ListInvoicesRequest as ListInvoicesRequest, type index_gen$p_ListInvoicesRequestOrderBy as ListInvoicesRequestOrderBy, type index_gen$p_ListInvoicesResponse as ListInvoicesResponse };
|
|
3080
|
+
export { API$r as API, type index_gen$p_Discount as Discount, type index_gen$p_DiscountCoupon as DiscountCoupon, type index_gen$p_DiscountDiscountMode as DiscountDiscountMode, type index_gen$p_DiscountFilter as DiscountFilter, type index_gen$p_DiscountFilterType as DiscountFilterType, type index_gen$p_DownloadInvoiceRequest as DownloadInvoiceRequest, type index_gen$p_DownloadInvoiceRequestFileType as DownloadInvoiceRequestFileType, type index_gen$p_GetConsumptionRequest as GetConsumptionRequest, type index_gen$p_GetConsumptionResponse as GetConsumptionResponse, type index_gen$p_GetConsumptionResponseConsumption as GetConsumptionResponseConsumption, type index_gen$p_Invoice as Invoice, type index_gen$p_InvoiceType as InvoiceType, type index_gen$p_ListDiscountsRequest as ListDiscountsRequest, type index_gen$p_ListDiscountsRequestOrderBy as ListDiscountsRequestOrderBy, type index_gen$p_ListDiscountsResponse as ListDiscountsResponse, type index_gen$p_ListInvoicesRequest as ListInvoicesRequest, type index_gen$p_ListInvoicesRequestOrderBy as ListInvoicesRequestOrderBy, type index_gen$p_ListInvoicesResponse as ListInvoicesResponse };
|
|
2998
3081
|
}
|
|
2999
3082
|
|
|
3000
3083
|
declare namespace index$s {
|
|
@@ -3709,14 +3792,18 @@ interface Plan {
|
|
|
3709
3792
|
id: string;
|
|
3710
3793
|
/** Name of a given pricing plan. */
|
|
3711
3794
|
name: PlanName;
|
|
3712
|
-
/**
|
|
3795
|
+
/** Interval of time during which Scaleway's Cockpit keeps your metrics. */
|
|
3713
3796
|
retentionMetricsInterval?: string;
|
|
3714
|
-
/**
|
|
3797
|
+
/** Interval of time during which Scaleway's Cockpit keeps your logs. */
|
|
3715
3798
|
retentionLogsInterval?: string;
|
|
3716
|
-
/**
|
|
3799
|
+
/** Interval of time during which Scaleway's Cockpit keeps your traces. */
|
|
3800
|
+
retentionTracesInterval?: string;
|
|
3801
|
+
/** Ingestion price in cents for 1 million samples. */
|
|
3717
3802
|
sampleIngestionPrice: number;
|
|
3718
|
-
/** Ingestion price for 1 GB of logs
|
|
3803
|
+
/** Ingestion price in cents for 1 GB of logs. */
|
|
3719
3804
|
logsIngestionPrice: number;
|
|
3805
|
+
/** Ingestion price in cents for 1 GB of traces. */
|
|
3806
|
+
tracesIngestionPrice: number;
|
|
3720
3807
|
/** Retention price in euros per month. */
|
|
3721
3808
|
retentionPrice: number;
|
|
3722
3809
|
}
|
|
@@ -4206,7 +4293,7 @@ type DomainStatus$3 = 'unknown' | 'ready' | 'deleting' | 'error' | 'creating' |
|
|
|
4206
4293
|
type ListContainersRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
4207
4294
|
type ListCronsRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
|
|
4208
4295
|
type ListDomainsRequestOrderBy$2 = 'created_at_asc' | 'created_at_desc' | 'hostname_asc' | 'hostname_desc';
|
|
4209
|
-
type ListLogsRequestOrderBy$
|
|
4296
|
+
type ListLogsRequestOrderBy$2 = 'timestamp_desc' | 'timestamp_asc';
|
|
4210
4297
|
type ListNamespacesRequestOrderBy$3 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
4211
4298
|
type ListTokensRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
|
|
4212
4299
|
type ListTriggersRequestOrderBy$1 = 'created_at_asc' | 'created_at_desc';
|
|
@@ -4352,8 +4439,8 @@ interface ListDomainsResponse$3 {
|
|
|
4352
4439
|
totalCount: number;
|
|
4353
4440
|
}
|
|
4354
4441
|
/** List logs response. */
|
|
4355
|
-
interface ListLogsResponse$
|
|
4356
|
-
logs: Log$
|
|
4442
|
+
interface ListLogsResponse$2 {
|
|
4443
|
+
logs: Log$2[];
|
|
4357
4444
|
totalCount: number;
|
|
4358
4445
|
}
|
|
4359
4446
|
/** List namespaces response. */
|
|
@@ -4375,7 +4462,7 @@ interface ListTriggersResponse$1 {
|
|
|
4375
4462
|
triggers: Trigger$1[];
|
|
4376
4463
|
}
|
|
4377
4464
|
/** Log. */
|
|
4378
|
-
interface Log$
|
|
4465
|
+
interface Log$2 {
|
|
4379
4466
|
message: string;
|
|
4380
4467
|
timestamp?: Date;
|
|
4381
4468
|
id: string;
|
|
@@ -4799,7 +4886,7 @@ type DeleteCronRequest$1 = {
|
|
|
4799
4886
|
/** UUID of the cron to delete. */
|
|
4800
4887
|
cronId: string;
|
|
4801
4888
|
};
|
|
4802
|
-
type ListLogsRequest$
|
|
4889
|
+
type ListLogsRequest$3 = {
|
|
4803
4890
|
/**
|
|
4804
4891
|
* Region to target. If none is passed will use default region from the
|
|
4805
4892
|
* config.
|
|
@@ -4812,7 +4899,7 @@ type ListLogsRequest$1 = {
|
|
|
4812
4899
|
/** Number of logs per page. */
|
|
4813
4900
|
pageSize?: number;
|
|
4814
4901
|
/** Order of the logs. */
|
|
4815
|
-
orderBy?: ListLogsRequestOrderBy$
|
|
4902
|
+
orderBy?: ListLogsRequestOrderBy$2;
|
|
4816
4903
|
};
|
|
4817
4904
|
type ListDomainsRequest$2 = {
|
|
4818
4905
|
/**
|
|
@@ -5189,7 +5276,7 @@ declare class API$o extends API$v {
|
|
|
5189
5276
|
* @returns A Promise of Cron
|
|
5190
5277
|
*/
|
|
5191
5278
|
deleteCron: (request: Readonly<DeleteCronRequest$1>) => Promise<Cron$1>;
|
|
5192
|
-
protected pageOfListLogs: (request: Readonly<ListLogsRequest$
|
|
5279
|
+
protected pageOfListLogs: (request: Readonly<ListLogsRequest$3>) => Promise<ListLogsResponse$2>;
|
|
5193
5280
|
/**
|
|
5194
5281
|
* List your container logs. List the logs of the container with the specified
|
|
5195
5282
|
* ID.
|
|
@@ -5197,9 +5284,9 @@ declare class API$o extends API$v {
|
|
|
5197
5284
|
* @param request - The request {@link ListLogsRequest}
|
|
5198
5285
|
* @returns A Promise of ListLogsResponse
|
|
5199
5286
|
*/
|
|
5200
|
-
listLogs: (request: Readonly<ListLogsRequest$
|
|
5201
|
-
all: () => Promise<Log$
|
|
5202
|
-
[Symbol.asyncIterator]: () => AsyncGenerator<Log$
|
|
5287
|
+
listLogs: (request: Readonly<ListLogsRequest$3>) => Promise<ListLogsResponse$2> & {
|
|
5288
|
+
all: () => Promise<Log$2[]>;
|
|
5289
|
+
[Symbol.asyncIterator]: () => AsyncGenerator<Log$2[], void, void>;
|
|
5203
5290
|
};
|
|
5204
5291
|
protected pageOfListDomains: (request: Readonly<ListDomainsRequest$2>) => Promise<ListDomainsResponse$3>;
|
|
5205
5292
|
/**
|
|
@@ -5414,7 +5501,7 @@ type index_gen$m_ListContainersRequestOrderBy = ListContainersRequestOrderBy;
|
|
|
5414
5501
|
type index_gen$m_ListContainersResponse = ListContainersResponse;
|
|
5415
5502
|
type index_gen$m_UpdateContainerRequest = UpdateContainerRequest;
|
|
5416
5503
|
declare namespace index_gen$m {
|
|
5417
|
-
export { API$o as API, index_gen$m_CONTAINER_TRANSIENT_STATUSES as CONTAINER_TRANSIENT_STATUSES, CRON_TRANSIENT_STATUSES$1 as CRON_TRANSIENT_STATUSES, type index_gen$m_Container as Container, type index_gen$m_ContainerHttpOption as ContainerHttpOption, type index_gen$m_ContainerPrivacy as ContainerPrivacy, type index_gen$m_ContainerProtocol as ContainerProtocol, type index_gen$m_ContainerStatus as ContainerStatus, type index_gen$m_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$m_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$m_DeployContainerRequest as DeployContainerRequest, type Domain$3 as Domain, type DomainStatus$3 as DomainStatus, type index_gen$m_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$m_ListContainersRequest as ListContainersRequest, type index_gen$m_ListContainersRequestOrderBy as ListContainersRequestOrderBy, type index_gen$m_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$
|
|
5504
|
+
export { API$o as API, index_gen$m_CONTAINER_TRANSIENT_STATUSES as CONTAINER_TRANSIENT_STATUSES, CRON_TRANSIENT_STATUSES$1 as CRON_TRANSIENT_STATUSES, type index_gen$m_Container as Container, type index_gen$m_ContainerHttpOption as ContainerHttpOption, type index_gen$m_ContainerPrivacy as ContainerPrivacy, type index_gen$m_ContainerProtocol as ContainerProtocol, type index_gen$m_ContainerStatus as ContainerStatus, type index_gen$m_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$m_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$m_DeployContainerRequest as DeployContainerRequest, type Domain$3 as Domain, type DomainStatus$3 as DomainStatus, type index_gen$m_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$m_ListContainersRequest as ListContainersRequest, type index_gen$m_ListContainersRequestOrderBy as ListContainersRequestOrderBy, type index_gen$m_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 NullValue$2 as NullValue, 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$m_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 };
|
|
5418
5505
|
}
|
|
5419
5506
|
|
|
5420
5507
|
declare namespace index$p {
|
|
@@ -9372,7 +9459,7 @@ type FunctionStatus = 'unknown' | 'ready' | 'deleting' | 'error' | 'locked' | 'c
|
|
|
9372
9459
|
type ListCronsRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
9373
9460
|
type ListDomainsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'hostname_asc' | 'hostname_desc';
|
|
9374
9461
|
type ListFunctionsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
9375
|
-
type ListLogsRequestOrderBy = 'timestamp_desc' | 'timestamp_asc';
|
|
9462
|
+
type ListLogsRequestOrderBy$1 = 'timestamp_desc' | 'timestamp_asc';
|
|
9376
9463
|
type ListNamespacesRequestOrderBy$2 = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
9377
9464
|
type ListTokensRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
9378
9465
|
type ListTriggersRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
@@ -9526,9 +9613,9 @@ interface ListFunctionsResponse {
|
|
|
9526
9613
|
totalCount: number;
|
|
9527
9614
|
}
|
|
9528
9615
|
/** List logs response. */
|
|
9529
|
-
interface ListLogsResponse {
|
|
9616
|
+
interface ListLogsResponse$1 {
|
|
9530
9617
|
/** Array of logs. */
|
|
9531
|
-
logs: Log[];
|
|
9618
|
+
logs: Log$1[];
|
|
9532
9619
|
/** Total number of logs. */
|
|
9533
9620
|
totalCount: number;
|
|
9534
9621
|
}
|
|
@@ -9550,7 +9637,7 @@ interface ListTriggersResponse {
|
|
|
9550
9637
|
triggers: Trigger[];
|
|
9551
9638
|
}
|
|
9552
9639
|
/** Log. */
|
|
9553
|
-
interface Log {
|
|
9640
|
+
interface Log$1 {
|
|
9554
9641
|
/** Message of the log. */
|
|
9555
9642
|
message: string;
|
|
9556
9643
|
/** Timestamp of the log. */
|
|
@@ -9693,10 +9780,10 @@ interface TriggerMnqNatsClientConfig {
|
|
|
9693
9780
|
}
|
|
9694
9781
|
/** Trigger. mnq sqs client config. */
|
|
9695
9782
|
interface TriggerMnqSqsClientConfig {
|
|
9696
|
-
/** @deprecated */
|
|
9697
|
-
mnqNamespaceId?: string;
|
|
9698
9783
|
/** Name of the SQS queue the trigger listens to. */
|
|
9699
9784
|
queue: string;
|
|
9785
|
+
/** @deprecated */
|
|
9786
|
+
mnqNamespaceId?: string;
|
|
9700
9787
|
/** ID of the M&Q project. */
|
|
9701
9788
|
mnqProjectId: string;
|
|
9702
9789
|
/** Region in which the M&Q project is activated. */
|
|
@@ -10006,7 +10093,7 @@ type DeleteCronRequest = {
|
|
|
10006
10093
|
/** UUID of the cron to delete. */
|
|
10007
10094
|
cronId: string;
|
|
10008
10095
|
};
|
|
10009
|
-
type ListLogsRequest = {
|
|
10096
|
+
type ListLogsRequest$2 = {
|
|
10010
10097
|
/**
|
|
10011
10098
|
* Region to target. If none is passed will use default region from the
|
|
10012
10099
|
* config.
|
|
@@ -10019,7 +10106,7 @@ type ListLogsRequest = {
|
|
|
10019
10106
|
/** Number of logs per page. */
|
|
10020
10107
|
pageSize?: number;
|
|
10021
10108
|
/** Order of the logs. */
|
|
10022
|
-
orderBy?: ListLogsRequestOrderBy;
|
|
10109
|
+
orderBy?: ListLogsRequestOrderBy$1;
|
|
10023
10110
|
};
|
|
10024
10111
|
type ListDomainsRequest$1 = {
|
|
10025
10112
|
/**
|
|
@@ -10423,7 +10510,7 @@ declare class API$k extends API$v {
|
|
|
10423
10510
|
* @returns A Promise of Cron
|
|
10424
10511
|
*/
|
|
10425
10512
|
deleteCron: (request: Readonly<DeleteCronRequest>) => Promise<Cron>;
|
|
10426
|
-
protected pageOfListLogs: (request: Readonly<ListLogsRequest>) => Promise<ListLogsResponse>;
|
|
10513
|
+
protected pageOfListLogs: (request: Readonly<ListLogsRequest$2>) => Promise<ListLogsResponse$1>;
|
|
10427
10514
|
/**
|
|
10428
10515
|
* List application logs. List the application logs of the function with the
|
|
10429
10516
|
* specified ID.
|
|
@@ -10431,9 +10518,9 @@ declare class API$k extends API$v {
|
|
|
10431
10518
|
* @param request - The request {@link ListLogsRequest}
|
|
10432
10519
|
* @returns A Promise of ListLogsResponse
|
|
10433
10520
|
*/
|
|
10434
|
-
listLogs: (request: Readonly<ListLogsRequest>) => Promise<ListLogsResponse> & {
|
|
10435
|
-
all: () => Promise<Log[]>;
|
|
10436
|
-
[Symbol.asyncIterator]: () => AsyncGenerator<Log[], void, void>;
|
|
10521
|
+
listLogs: (request: Readonly<ListLogsRequest$2>) => Promise<ListLogsResponse$1> & {
|
|
10522
|
+
all: () => Promise<Log$1[]>;
|
|
10523
|
+
[Symbol.asyncIterator]: () => AsyncGenerator<Log$1[], void, void>;
|
|
10437
10524
|
};
|
|
10438
10525
|
protected pageOfListDomains: (request: Readonly<ListDomainsRequest$1>) => Promise<ListDomainsResponse$1>;
|
|
10439
10526
|
/**
|
|
@@ -10525,7 +10612,19 @@ declare class API$k extends API$v {
|
|
|
10525
10612
|
* @returns A Promise of Token
|
|
10526
10613
|
*/
|
|
10527
10614
|
deleteToken: (request: Readonly<DeleteTokenRequest>) => Promise<Token>;
|
|
10615
|
+
/**
|
|
10616
|
+
* Create a trigger. Create a new trigger for a specified function.
|
|
10617
|
+
*
|
|
10618
|
+
* @param request - The request {@link CreateTriggerRequest}
|
|
10619
|
+
* @returns A Promise of Trigger
|
|
10620
|
+
*/
|
|
10528
10621
|
createTrigger: (request: Readonly<CreateTriggerRequest$1>) => Promise<Trigger>;
|
|
10622
|
+
/**
|
|
10623
|
+
* Get a trigger. Get a trigger with a specified ID.
|
|
10624
|
+
*
|
|
10625
|
+
* @param request - The request {@link GetTriggerRequest}
|
|
10626
|
+
* @returns A Promise of Trigger
|
|
10627
|
+
*/
|
|
10529
10628
|
getTrigger: (request: Readonly<GetTriggerRequest>) => Promise<Trigger>;
|
|
10530
10629
|
/**
|
|
10531
10630
|
* Waits for {@link Trigger} to be in a final state.
|
|
@@ -10536,11 +10635,30 @@ declare class API$k extends API$v {
|
|
|
10536
10635
|
*/
|
|
10537
10636
|
waitForTrigger: (request: Readonly<GetTriggerRequest>, options?: Readonly<WaitForOptions<Trigger>>) => Promise<Trigger>;
|
|
10538
10637
|
protected pageOfListTriggers: (request?: Readonly<ListTriggersRequest>) => Promise<ListTriggersResponse>;
|
|
10638
|
+
/**
|
|
10639
|
+
* List all triggers. List all triggers belonging to a specified Organization
|
|
10640
|
+
* or Project.
|
|
10641
|
+
*
|
|
10642
|
+
* @param request - The request {@link ListTriggersRequest}
|
|
10643
|
+
* @returns A Promise of ListTriggersResponse
|
|
10644
|
+
*/
|
|
10539
10645
|
listTriggers: (request?: Readonly<ListTriggersRequest>) => Promise<ListTriggersResponse> & {
|
|
10540
10646
|
all: () => Promise<Trigger[]>;
|
|
10541
10647
|
[Symbol.asyncIterator]: () => AsyncGenerator<Trigger[], void, void>;
|
|
10542
10648
|
};
|
|
10649
|
+
/**
|
|
10650
|
+
* Update a trigger. Update a trigger with a specified ID.
|
|
10651
|
+
*
|
|
10652
|
+
* @param request - The request {@link UpdateTriggerRequest}
|
|
10653
|
+
* @returns A Promise of Trigger
|
|
10654
|
+
*/
|
|
10543
10655
|
updateTrigger: (request: Readonly<UpdateTriggerRequest$1>) => Promise<Trigger>;
|
|
10656
|
+
/**
|
|
10657
|
+
* Delete a trigger. Delete a trigger with a specified ID.
|
|
10658
|
+
*
|
|
10659
|
+
* @param request - The request {@link DeleteTriggerRequest}
|
|
10660
|
+
* @returns A Promise of Trigger
|
|
10661
|
+
*/
|
|
10544
10662
|
deleteTrigger: (request: Readonly<DeleteTriggerRequest>) => Promise<Trigger>;
|
|
10545
10663
|
}
|
|
10546
10664
|
|
|
@@ -10641,16 +10759,12 @@ type index_gen$i_ListFunctionRuntimesResponse = ListFunctionRuntimesResponse;
|
|
|
10641
10759
|
type index_gen$i_ListFunctionsRequest = ListFunctionsRequest;
|
|
10642
10760
|
type index_gen$i_ListFunctionsRequestOrderBy = ListFunctionsRequestOrderBy;
|
|
10643
10761
|
type index_gen$i_ListFunctionsResponse = ListFunctionsResponse;
|
|
10644
|
-
type index_gen$i_ListLogsRequest = ListLogsRequest;
|
|
10645
|
-
type index_gen$i_ListLogsRequestOrderBy = ListLogsRequestOrderBy;
|
|
10646
|
-
type index_gen$i_ListLogsResponse = ListLogsResponse;
|
|
10647
10762
|
type index_gen$i_ListTokensRequest = ListTokensRequest;
|
|
10648
10763
|
type index_gen$i_ListTokensRequestOrderBy = ListTokensRequestOrderBy;
|
|
10649
10764
|
type index_gen$i_ListTokensResponse = ListTokensResponse;
|
|
10650
10765
|
type index_gen$i_ListTriggersRequest = ListTriggersRequest;
|
|
10651
10766
|
type index_gen$i_ListTriggersRequestOrderBy = ListTriggersRequestOrderBy;
|
|
10652
10767
|
type index_gen$i_ListTriggersResponse = ListTriggersResponse;
|
|
10653
|
-
type index_gen$i_Log = Log;
|
|
10654
10768
|
type index_gen$i_LogStream = LogStream;
|
|
10655
10769
|
type index_gen$i_RuntimeStatus = RuntimeStatus;
|
|
10656
10770
|
type index_gen$i_SecretHashedValue = SecretHashedValue;
|
|
@@ -10669,7 +10783,7 @@ type index_gen$i_UpdateFunctionRequest = UpdateFunctionRequest;
|
|
|
10669
10783
|
type index_gen$i_UpdateTriggerRequestSqsClientConfig = UpdateTriggerRequestSqsClientConfig;
|
|
10670
10784
|
type index_gen$i_UploadURL = UploadURL;
|
|
10671
10785
|
declare namespace index_gen$i {
|
|
10672
|
-
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
|
|
10786
|
+
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 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$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 Log$1 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 NullValue$1 as NullValue, 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 };
|
|
10673
10787
|
}
|
|
10674
10788
|
|
|
10675
10789
|
declare namespace index$l {
|
|
@@ -10681,11 +10795,14 @@ type ListAPIKeysRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated
|
|
|
10681
10795
|
type ListApplicationsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc';
|
|
10682
10796
|
type ListGroupsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc';
|
|
10683
10797
|
type ListJWTsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc';
|
|
10798
|
+
type ListLogsRequestOrderBy = 'created_at_asc' | 'created_at_desc';
|
|
10684
10799
|
type ListPermissionSetsRequestOrderBy = 'name_asc' | 'name_desc' | 'created_at_asc' | 'created_at_desc';
|
|
10685
10800
|
type ListPoliciesRequestOrderBy = 'policy_name_asc' | 'policy_name_desc' | 'created_at_asc' | 'created_at_desc';
|
|
10686
10801
|
type ListQuotaRequestOrderBy = 'name_asc' | 'name_desc';
|
|
10687
10802
|
type ListSSHKeysRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc' | 'name_asc' | 'name_desc';
|
|
10688
10803
|
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';
|
|
10804
|
+
type LogAction = 'unknown_action' | 'created' | 'updated' | 'deleted';
|
|
10805
|
+
type LogResourceType = 'unknown_resource_type' | 'api_key' | 'user' | 'application' | 'group' | 'policy';
|
|
10689
10806
|
type PermissionSetScopeType = 'unknown_scope_type' | 'projects' | 'organization' | 'account_root_user';
|
|
10690
10807
|
type UserStatus = 'unknown_status' | 'invitation_pending' | 'activated';
|
|
10691
10808
|
type UserType = 'unknown_type' | 'guest' | 'owner';
|
|
@@ -10804,6 +10921,13 @@ interface ListJWTsResponse {
|
|
|
10804
10921
|
jwts: JWT[];
|
|
10805
10922
|
totalCount: number;
|
|
10806
10923
|
}
|
|
10924
|
+
/** List logs response. */
|
|
10925
|
+
interface ListLogsResponse {
|
|
10926
|
+
/** List of logs. */
|
|
10927
|
+
logs: Log[];
|
|
10928
|
+
/** Total count of logs. */
|
|
10929
|
+
totalCount: number;
|
|
10930
|
+
}
|
|
10807
10931
|
/** List permission sets response. */
|
|
10808
10932
|
interface ListPermissionSetsResponse {
|
|
10809
10933
|
/** List of permission sets. */
|
|
@@ -10846,6 +10970,27 @@ interface ListUsersResponse$1 {
|
|
|
10846
10970
|
/** Total count of users. */
|
|
10847
10971
|
totalCount: number;
|
|
10848
10972
|
}
|
|
10973
|
+
/** Log. */
|
|
10974
|
+
interface Log {
|
|
10975
|
+
/** Log ID. */
|
|
10976
|
+
id: string;
|
|
10977
|
+
/** Creation date of the log. */
|
|
10978
|
+
createdAt?: Date;
|
|
10979
|
+
/** IP address of the HTTP request linked to the log. */
|
|
10980
|
+
ip: string;
|
|
10981
|
+
/** User-Agent of the HTTP request linked to the log. */
|
|
10982
|
+
userAgent: string;
|
|
10983
|
+
/** Action linked to the log. */
|
|
10984
|
+
action: LogAction;
|
|
10985
|
+
/** ID of the principal at the origin of the log. */
|
|
10986
|
+
bearerId: string;
|
|
10987
|
+
/** ID of Organization linked to the log. */
|
|
10988
|
+
organizationId: string;
|
|
10989
|
+
/** Type of the resource linked to the log. */
|
|
10990
|
+
resourceType: LogResourceType;
|
|
10991
|
+
/** ID of the resource linked to the log. */
|
|
10992
|
+
resourceId: string;
|
|
10993
|
+
}
|
|
10849
10994
|
/** Permission set. */
|
|
10850
10995
|
interface PermissionSet {
|
|
10851
10996
|
/** Id of the permission set. */
|
|
@@ -11468,6 +11613,30 @@ type DeleteJWTRequest = {
|
|
|
11468
11613
|
/** JWT ID of the JWT to delete. */
|
|
11469
11614
|
jti: string;
|
|
11470
11615
|
};
|
|
11616
|
+
type ListLogsRequest$1 = {
|
|
11617
|
+
/** Criteria for sorting results. */
|
|
11618
|
+
orderBy?: ListLogsRequestOrderBy;
|
|
11619
|
+
/** Filter by Organization ID. */
|
|
11620
|
+
organizationId?: string;
|
|
11621
|
+
/** Number of results per page. Value must be between 1 and 100. */
|
|
11622
|
+
pageSize?: number;
|
|
11623
|
+
/** Page number. Value must be greater to 1. */
|
|
11624
|
+
page?: number;
|
|
11625
|
+
/** Defined whether or not to filter out logs created after this timestamp. */
|
|
11626
|
+
createdAfter?: Date;
|
|
11627
|
+
/** Defined whether or not to filter out logs created before this timestamp. */
|
|
11628
|
+
createdBefore?: Date;
|
|
11629
|
+
/** Defined whether or not to filter out by a specific action. */
|
|
11630
|
+
action?: LogAction;
|
|
11631
|
+
/** Defined whether or not to filter out by a specific type of resource. */
|
|
11632
|
+
resourceType?: LogResourceType;
|
|
11633
|
+
/** Defined whether or not to filter out log by bearer ID or resource ID. */
|
|
11634
|
+
search?: string;
|
|
11635
|
+
};
|
|
11636
|
+
type GetLogRequest = {
|
|
11637
|
+
/** ID of the log. */
|
|
11638
|
+
logId: string;
|
|
11639
|
+
};
|
|
11471
11640
|
|
|
11472
11641
|
/** IAM API. */
|
|
11473
11642
|
declare class API$j extends API$v {
|
|
@@ -11905,6 +12074,12 @@ declare class API$j extends API$v {
|
|
|
11905
12074
|
* @param request - The request {@link DeleteJWTRequest}
|
|
11906
12075
|
*/
|
|
11907
12076
|
deleteJWT: (request: Readonly<DeleteJWTRequest>) => Promise<void>;
|
|
12077
|
+
protected pageOfListLogs: (request?: Readonly<ListLogsRequest$1>) => Promise<ListLogsResponse>;
|
|
12078
|
+
listLogs: (request?: Readonly<ListLogsRequest$1>) => Promise<ListLogsResponse> & {
|
|
12079
|
+
all: () => Promise<Log[]>;
|
|
12080
|
+
[Symbol.asyncIterator]: () => AsyncGenerator<Log[], void, void>;
|
|
12081
|
+
};
|
|
12082
|
+
getLog: (request: Readonly<GetLogRequest>) => Promise<Log>;
|
|
11908
12083
|
}
|
|
11909
12084
|
|
|
11910
12085
|
declare const CreateAPIKeyRequest: {
|
|
@@ -12008,6 +12183,15 @@ declare const ListJWTsRequest: {
|
|
|
12008
12183
|
lessThanOrEqual: number;
|
|
12009
12184
|
};
|
|
12010
12185
|
};
|
|
12186
|
+
declare const ListLogsRequest: {
|
|
12187
|
+
page: {
|
|
12188
|
+
greaterThan: number;
|
|
12189
|
+
};
|
|
12190
|
+
pageSize: {
|
|
12191
|
+
greaterThanOrEqual: number;
|
|
12192
|
+
lessThanOrEqual: number;
|
|
12193
|
+
};
|
|
12194
|
+
};
|
|
12011
12195
|
declare const ListPermissionSetsRequest: {
|
|
12012
12196
|
page: {
|
|
12013
12197
|
greaterThan: number;
|
|
@@ -12120,6 +12304,7 @@ declare const validationRules_gen$5_ListAPIKeysRequest: typeof ListAPIKeysReques
|
|
|
12120
12304
|
declare const validationRules_gen$5_ListApplicationsRequest: typeof ListApplicationsRequest;
|
|
12121
12305
|
declare const validationRules_gen$5_ListGroupsRequest: typeof ListGroupsRequest;
|
|
12122
12306
|
declare const validationRules_gen$5_ListJWTsRequest: typeof ListJWTsRequest;
|
|
12307
|
+
declare const validationRules_gen$5_ListLogsRequest: typeof ListLogsRequest;
|
|
12123
12308
|
declare const validationRules_gen$5_ListPermissionSetsRequest: typeof ListPermissionSetsRequest;
|
|
12124
12309
|
declare const validationRules_gen$5_ListPoliciesRequest: typeof ListPoliciesRequest;
|
|
12125
12310
|
declare const validationRules_gen$5_ListQuotaRequest: typeof ListQuotaRequest;
|
|
@@ -12131,7 +12316,7 @@ declare const validationRules_gen$5_UpdateGroupRequest: typeof UpdateGroupReques
|
|
|
12131
12316
|
declare const validationRules_gen$5_UpdatePolicyRequest: typeof UpdatePolicyRequest;
|
|
12132
12317
|
declare const validationRules_gen$5_UpdateSSHKeyRequest: typeof UpdateSSHKeyRequest;
|
|
12133
12318
|
declare namespace validationRules_gen$5 {
|
|
12134
|
-
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 };
|
|
12319
|
+
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 };
|
|
12135
12320
|
}
|
|
12136
12321
|
|
|
12137
12322
|
type index_gen$h_APIKey = APIKey;
|
|
@@ -12150,6 +12335,7 @@ type index_gen$h_GetAPIKeyRequest = GetAPIKeyRequest;
|
|
|
12150
12335
|
type index_gen$h_GetApplicationRequest = GetApplicationRequest;
|
|
12151
12336
|
type index_gen$h_GetGroupRequest = GetGroupRequest;
|
|
12152
12337
|
type index_gen$h_GetJWTRequest = GetJWTRequest;
|
|
12338
|
+
type index_gen$h_GetLogRequest = GetLogRequest;
|
|
12153
12339
|
type index_gen$h_GetPolicyRequest = GetPolicyRequest;
|
|
12154
12340
|
type index_gen$h_GetSSHKeyRequest = GetSSHKeyRequest;
|
|
12155
12341
|
type index_gen$h_GetUserRequest = GetUserRequest;
|
|
@@ -12163,6 +12349,8 @@ type index_gen$h_ListGroupsRequestOrderBy = ListGroupsRequestOrderBy;
|
|
|
12163
12349
|
type index_gen$h_ListGroupsResponse = ListGroupsResponse;
|
|
12164
12350
|
type index_gen$h_ListJWTsRequestOrderBy = ListJWTsRequestOrderBy;
|
|
12165
12351
|
type index_gen$h_ListJWTsResponse = ListJWTsResponse;
|
|
12352
|
+
type index_gen$h_ListLogsRequestOrderBy = ListLogsRequestOrderBy;
|
|
12353
|
+
type index_gen$h_ListLogsResponse = ListLogsResponse;
|
|
12166
12354
|
type index_gen$h_ListPermissionSetsRequestOrderBy = ListPermissionSetsRequestOrderBy;
|
|
12167
12355
|
type index_gen$h_ListPermissionSetsResponse = ListPermissionSetsResponse;
|
|
12168
12356
|
type index_gen$h_ListPoliciesRequestOrderBy = ListPoliciesRequestOrderBy;
|
|
@@ -12172,6 +12360,9 @@ type index_gen$h_ListQuotaResponse = ListQuotaResponse;
|
|
|
12172
12360
|
type index_gen$h_ListRulesResponse = ListRulesResponse;
|
|
12173
12361
|
type index_gen$h_ListSSHKeysRequestOrderBy = ListSSHKeysRequestOrderBy;
|
|
12174
12362
|
type index_gen$h_ListSSHKeysResponse = ListSSHKeysResponse;
|
|
12363
|
+
type index_gen$h_Log = Log;
|
|
12364
|
+
type index_gen$h_LogAction = LogAction;
|
|
12365
|
+
type index_gen$h_LogResourceType = LogResourceType;
|
|
12175
12366
|
type index_gen$h_PermissionSet = PermissionSet;
|
|
12176
12367
|
type index_gen$h_PermissionSetScopeType = PermissionSetScopeType;
|
|
12177
12368
|
type index_gen$h_Policy = Policy;
|
|
@@ -12186,7 +12377,7 @@ type index_gen$h_SetRulesResponse = SetRulesResponse;
|
|
|
12186
12377
|
type index_gen$h_UserStatus = UserStatus;
|
|
12187
12378
|
type index_gen$h_UserType = UserType;
|
|
12188
12379
|
declare namespace index_gen$h {
|
|
12189
|
-
export { API$j as API, type index_gen$h_APIKey as APIKey, type index_gen$h_AddGroupMemberRequest as AddGroupMemberRequest, type index_gen$h_AddGroupMembersRequest as AddGroupMembersRequest, type index_gen$h_Application as Application, type index_gen$h_BearerType as BearerType, type index_gen$h_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$h_DeleteAPIKeyRequest as DeleteAPIKeyRequest, type index_gen$h_DeleteApplicationRequest as DeleteApplicationRequest, type index_gen$h_DeleteGroupRequest as DeleteGroupRequest, type index_gen$h_DeleteJWTRequest as DeleteJWTRequest, type index_gen$h_DeletePolicyRequest as DeletePolicyRequest, type index_gen$h_DeleteSSHKeyRequest as DeleteSSHKeyRequest, type DeleteUserRequest$1 as DeleteUserRequest, type index_gen$h_GetAPIKeyRequest as GetAPIKeyRequest, type index_gen$h_GetApplicationRequest as GetApplicationRequest, type index_gen$h_GetGroupRequest as GetGroupRequest, type index_gen$h_GetJWTRequest as GetJWTRequest, type index_gen$h_GetPolicyRequest as GetPolicyRequest, type GetQuotumRequest$1 as GetQuotumRequest, type index_gen$h_GetSSHKeyRequest as GetSSHKeyRequest, type index_gen$h_GetUserRequest as GetUserRequest, type index_gen$h_Group as Group, type index_gen$h_JWT as JWT, type ListAPIKeysRequest$1 as ListAPIKeysRequest, type index_gen$h_ListAPIKeysRequestOrderBy as ListAPIKeysRequestOrderBy, type index_gen$h_ListAPIKeysResponse as ListAPIKeysResponse, type ListApplicationsRequest$1 as ListApplicationsRequest, type index_gen$h_ListApplicationsRequestOrderBy as ListApplicationsRequestOrderBy, type index_gen$h_ListApplicationsResponse as ListApplicationsResponse, type ListGroupsRequest$1 as ListGroupsRequest, type index_gen$h_ListGroupsRequestOrderBy as ListGroupsRequestOrderBy, type index_gen$h_ListGroupsResponse as ListGroupsResponse, type ListJWTsRequest$1 as ListJWTsRequest, type index_gen$h_ListJWTsRequestOrderBy as ListJWTsRequestOrderBy, type index_gen$h_ListJWTsResponse as ListJWTsResponse, type ListPermissionSetsRequest$1 as ListPermissionSetsRequest, type index_gen$h_ListPermissionSetsRequestOrderBy as ListPermissionSetsRequestOrderBy, type index_gen$h_ListPermissionSetsResponse as ListPermissionSetsResponse, type ListPoliciesRequest$1 as ListPoliciesRequest, type index_gen$h_ListPoliciesRequestOrderBy as ListPoliciesRequestOrderBy, type index_gen$h_ListPoliciesResponse as ListPoliciesResponse, type ListQuotaRequest$1 as ListQuotaRequest, type index_gen$h_ListQuotaRequestOrderBy as ListQuotaRequestOrderBy, type index_gen$h_ListQuotaResponse as ListQuotaResponse, type ListRulesRequest$1 as ListRulesRequest, type index_gen$h_ListRulesResponse as ListRulesResponse, type ListSSHKeysRequest$1 as ListSSHKeysRequest, type index_gen$h_ListSSHKeysRequestOrderBy as ListSSHKeysRequestOrderBy, type index_gen$h_ListSSHKeysResponse as ListSSHKeysResponse, type ListUsersRequest$2 as ListUsersRequest, type ListUsersRequestOrderBy$1 as ListUsersRequestOrderBy, type ListUsersResponse$1 as ListUsersResponse, type index_gen$h_PermissionSet as PermissionSet, type index_gen$h_PermissionSetScopeType as PermissionSetScopeType, type index_gen$h_Policy as Policy, type index_gen$h_Quotum as Quotum, type index_gen$h_RemoveGroupMemberRequest as RemoveGroupMemberRequest, type index_gen$h_Rule as Rule, type index_gen$h_RuleSpecs as RuleSpecs, type index_gen$h_SSHKey as SSHKey, type index_gen$h_SetGroupMembersRequest as SetGroupMembersRequest, type index_gen$h_SetRulesRequest as SetRulesRequest, type index_gen$h_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$h_UserStatus as UserStatus, type index_gen$h_UserType as UserType, validationRules_gen$5 as ValidationRules };
|
|
12380
|
+
export { API$j as API, type index_gen$h_APIKey as APIKey, type index_gen$h_AddGroupMemberRequest as AddGroupMemberRequest, type index_gen$h_AddGroupMembersRequest as AddGroupMembersRequest, type index_gen$h_Application as Application, type index_gen$h_BearerType as BearerType, type index_gen$h_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$h_DeleteAPIKeyRequest as DeleteAPIKeyRequest, type index_gen$h_DeleteApplicationRequest as DeleteApplicationRequest, type index_gen$h_DeleteGroupRequest as DeleteGroupRequest, type index_gen$h_DeleteJWTRequest as DeleteJWTRequest, type index_gen$h_DeletePolicyRequest as DeletePolicyRequest, type index_gen$h_DeleteSSHKeyRequest as DeleteSSHKeyRequest, type DeleteUserRequest$1 as DeleteUserRequest, type index_gen$h_GetAPIKeyRequest as GetAPIKeyRequest, type index_gen$h_GetApplicationRequest as GetApplicationRequest, type index_gen$h_GetGroupRequest as GetGroupRequest, type index_gen$h_GetJWTRequest as GetJWTRequest, type index_gen$h_GetLogRequest as GetLogRequest, type index_gen$h_GetPolicyRequest as GetPolicyRequest, type GetQuotumRequest$1 as GetQuotumRequest, type index_gen$h_GetSSHKeyRequest as GetSSHKeyRequest, type index_gen$h_GetUserRequest as GetUserRequest, type index_gen$h_Group as Group, type index_gen$h_JWT as JWT, type ListAPIKeysRequest$1 as ListAPIKeysRequest, type index_gen$h_ListAPIKeysRequestOrderBy as ListAPIKeysRequestOrderBy, type index_gen$h_ListAPIKeysResponse as ListAPIKeysResponse, type ListApplicationsRequest$1 as ListApplicationsRequest, type index_gen$h_ListApplicationsRequestOrderBy as ListApplicationsRequestOrderBy, type index_gen$h_ListApplicationsResponse as ListApplicationsResponse, type ListGroupsRequest$1 as ListGroupsRequest, type index_gen$h_ListGroupsRequestOrderBy as ListGroupsRequestOrderBy, type index_gen$h_ListGroupsResponse as ListGroupsResponse, type ListJWTsRequest$1 as ListJWTsRequest, type index_gen$h_ListJWTsRequestOrderBy as ListJWTsRequestOrderBy, type index_gen$h_ListJWTsResponse as ListJWTsResponse, type ListLogsRequest$1 as ListLogsRequest, type index_gen$h_ListLogsRequestOrderBy as ListLogsRequestOrderBy, type index_gen$h_ListLogsResponse as ListLogsResponse, type ListPermissionSetsRequest$1 as ListPermissionSetsRequest, type index_gen$h_ListPermissionSetsRequestOrderBy as ListPermissionSetsRequestOrderBy, type index_gen$h_ListPermissionSetsResponse as ListPermissionSetsResponse, type ListPoliciesRequest$1 as ListPoliciesRequest, type index_gen$h_ListPoliciesRequestOrderBy as ListPoliciesRequestOrderBy, type index_gen$h_ListPoliciesResponse as ListPoliciesResponse, type ListQuotaRequest$1 as ListQuotaRequest, type index_gen$h_ListQuotaRequestOrderBy as ListQuotaRequestOrderBy, type index_gen$h_ListQuotaResponse as ListQuotaResponse, type ListRulesRequest$1 as ListRulesRequest, type index_gen$h_ListRulesResponse as ListRulesResponse, type ListSSHKeysRequest$1 as ListSSHKeysRequest, type index_gen$h_ListSSHKeysRequestOrderBy as ListSSHKeysRequestOrderBy, type index_gen$h_ListSSHKeysResponse as ListSSHKeysResponse, type ListUsersRequest$2 as ListUsersRequest, type ListUsersRequestOrderBy$1 as ListUsersRequestOrderBy, type ListUsersResponse$1 as ListUsersResponse, type index_gen$h_Log as Log, type index_gen$h_LogAction as LogAction, type index_gen$h_LogResourceType as LogResourceType, type index_gen$h_PermissionSet as PermissionSet, type index_gen$h_PermissionSetScopeType as PermissionSetScopeType, type index_gen$h_Policy as Policy, type index_gen$h_Quotum as Quotum, type index_gen$h_RemoveGroupMemberRequest as RemoveGroupMemberRequest, type index_gen$h_Rule as Rule, type index_gen$h_RuleSpecs as RuleSpecs, type index_gen$h_SSHKey as SSHKey, type index_gen$h_SetGroupMembersRequest as SetGroupMembersRequest, type index_gen$h_SetRulesRequest as SetRulesRequest, type index_gen$h_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$h_UserStatus as UserStatus, type index_gen$h_UserType as UserType, validationRules_gen$5 as ValidationRules };
|
|
12190
12381
|
}
|
|
12191
12382
|
|
|
12192
12383
|
declare namespace index$k {
|
|
@@ -12210,6 +12401,7 @@ type SecurityGroupState = 'available' | 'syncing' | 'syncing_error';
|
|
|
12210
12401
|
type ServerAction = 'poweron' | 'backup' | 'stop_in_place' | 'poweroff' | 'terminate' | 'reboot' | 'enable_routed_ip';
|
|
12211
12402
|
type ServerIpIpFamily = 'inet' | 'inet6';
|
|
12212
12403
|
type ServerIpProvisioningMode = 'manual' | 'dhcp' | 'slaac';
|
|
12404
|
+
type ServerIpState = 'unknown_state' | 'detached' | 'attached' | 'pending' | 'error';
|
|
12213
12405
|
type ServerState = 'running' | 'stopped' | 'stopped in place' | 'starting' | 'stopping' | 'locked';
|
|
12214
12406
|
type ServerTypesAvailability = 'available' | 'scarce' | 'shortage';
|
|
12215
12407
|
type SnapshotState = 'available' | 'snapshotting' | 'error' | 'invalid_data' | 'importing' | 'exporting';
|
|
@@ -12694,6 +12886,7 @@ interface ServerIp {
|
|
|
12694
12886
|
provisioningMode: ServerIpProvisioningMode;
|
|
12695
12887
|
/** Tags associated with the IP. */
|
|
12696
12888
|
tags: string[];
|
|
12889
|
+
state: ServerIpState;
|
|
12697
12890
|
}
|
|
12698
12891
|
/** Server. ipv6. */
|
|
12699
12892
|
interface ServerIpv6 {
|
|
@@ -14789,6 +14982,8 @@ declare const IP_TRANSIENT_STATUSES: IpState[];
|
|
|
14789
14982
|
declare const PRIVATE_NIC_TRANSIENT_STATUSES: PrivateNICState[];
|
|
14790
14983
|
/** Lists transient statutes of the enum {@link SecurityGroupState}. */
|
|
14791
14984
|
declare const SECURITY_GROUP_TRANSIENT_STATUSES: SecurityGroupState[];
|
|
14985
|
+
/** Lists transient statutes of the enum {@link ServerIpState}. */
|
|
14986
|
+
declare const SERVER_IP_TRANSIENT_STATUSES: ServerIpState[];
|
|
14792
14987
|
/** Lists transient statutes of the enum {@link ServerState}. */
|
|
14793
14988
|
declare const SERVER_TRANSIENT_STATUSES: ServerState[];
|
|
14794
14989
|
/** Lists transient statutes of the enum {@link SnapshotState}. */
|
|
@@ -14893,6 +15088,7 @@ type index$j_PlanBlockMigrationRequest = PlanBlockMigrationRequest;
|
|
|
14893
15088
|
type index$j_PrivateNIC = PrivateNIC;
|
|
14894
15089
|
type index$j_PrivateNICState = PrivateNICState;
|
|
14895
15090
|
declare const index$j_SECURITY_GROUP_TRANSIENT_STATUSES: typeof SECURITY_GROUP_TRANSIENT_STATUSES;
|
|
15091
|
+
declare const index$j_SERVER_IP_TRANSIENT_STATUSES: typeof SERVER_IP_TRANSIENT_STATUSES;
|
|
14896
15092
|
declare const index$j_SERVER_TRANSIENT_STATUSES: typeof SERVER_TRANSIENT_STATUSES;
|
|
14897
15093
|
type index$j_SecurityGroup = SecurityGroup;
|
|
14898
15094
|
type index$j_SecurityGroupPolicy = SecurityGroupPolicy;
|
|
@@ -14911,6 +15107,7 @@ type index$j_ServerActionResponse = ServerActionResponse;
|
|
|
14911
15107
|
type index$j_ServerIp = ServerIp;
|
|
14912
15108
|
type index$j_ServerIpIpFamily = ServerIpIpFamily;
|
|
14913
15109
|
type index$j_ServerIpProvisioningMode = ServerIpProvisioningMode;
|
|
15110
|
+
type index$j_ServerIpState = ServerIpState;
|
|
14914
15111
|
type index$j_ServerIpv6 = ServerIpv6;
|
|
14915
15112
|
type index$j_ServerLocation = ServerLocation;
|
|
14916
15113
|
type index$j_ServerMaintenance = ServerMaintenance;
|
|
@@ -14965,7 +15162,7 @@ type index$j_VolumeTypeCapabilities = VolumeTypeCapabilities;
|
|
|
14965
15162
|
type index$j_VolumeTypeConstraints = VolumeTypeConstraints;
|
|
14966
15163
|
type index$j_VolumeVolumeType = VolumeVolumeType;
|
|
14967
15164
|
declare namespace index$j {
|
|
14968
|
-
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_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 };
|
|
15165
|
+
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_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 };
|
|
14969
15166
|
}
|
|
14970
15167
|
|
|
14971
15168
|
declare namespace index$i {
|
|
@@ -16664,10 +16861,6 @@ interface PinInfo {
|
|
|
16664
16861
|
progress?: number;
|
|
16665
16862
|
statusDetails: PinDetails;
|
|
16666
16863
|
}
|
|
16667
|
-
interface PinOptions {
|
|
16668
|
-
requiredZones: string[];
|
|
16669
|
-
replicationCount: number;
|
|
16670
|
-
}
|
|
16671
16864
|
interface ReplacePinResponse {
|
|
16672
16865
|
pin?: Pin;
|
|
16673
16866
|
}
|
|
@@ -16751,8 +16944,6 @@ type CreatePinByURLRequest = {
|
|
|
16751
16944
|
url: string;
|
|
16752
16945
|
/** Pin name. */
|
|
16753
16946
|
name?: string;
|
|
16754
|
-
/** Pin options. */
|
|
16755
|
-
pinOptions?: PinOptions;
|
|
16756
16947
|
};
|
|
16757
16948
|
type CreatePinByCIDRequest = {
|
|
16758
16949
|
/**
|
|
@@ -16768,8 +16959,6 @@ type CreatePinByCIDRequest = {
|
|
|
16768
16959
|
origins?: string[];
|
|
16769
16960
|
/** Pin name. */
|
|
16770
16961
|
name?: string;
|
|
16771
|
-
/** Pin options. */
|
|
16772
|
-
pinOptions?: PinOptions;
|
|
16773
16962
|
};
|
|
16774
16963
|
type ReplacePinRequest = {
|
|
16775
16964
|
/**
|
|
@@ -16787,8 +16976,6 @@ type ReplacePinRequest = {
|
|
|
16787
16976
|
name?: string;
|
|
16788
16977
|
/** Node containing the content you want to pin. */
|
|
16789
16978
|
origins?: string[];
|
|
16790
|
-
/** Pin options. */
|
|
16791
|
-
pinOptions?: PinOptions;
|
|
16792
16979
|
};
|
|
16793
16980
|
type GetPinRequest = {
|
|
16794
16981
|
/**
|
|
@@ -17142,13 +17329,12 @@ type index_gen$e_PinCID = PinCID;
|
|
|
17142
17329
|
type index_gen$e_PinCIDMeta = PinCIDMeta;
|
|
17143
17330
|
type index_gen$e_PinDetails = PinDetails;
|
|
17144
17331
|
type index_gen$e_PinInfo = PinInfo;
|
|
17145
|
-
type index_gen$e_PinOptions = PinOptions;
|
|
17146
17332
|
type index_gen$e_PinStatus = PinStatus;
|
|
17147
17333
|
type index_gen$e_ReplacePinRequest = ReplacePinRequest;
|
|
17148
17334
|
type index_gen$e_ReplacePinResponse = ReplacePinResponse;
|
|
17149
17335
|
type index_gen$e_UpdateVolumeRequest = UpdateVolumeRequest;
|
|
17150
17336
|
declare namespace index_gen$e {
|
|
17151
|
-
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$
|
|
17337
|
+
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_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 };
|
|
17152
17338
|
}
|
|
17153
17339
|
|
|
17154
17340
|
declare namespace index$f {
|
|
@@ -24900,6 +25086,21 @@ interface UpgradableVersion {
|
|
|
24900
25086
|
version: string;
|
|
24901
25087
|
minorVersion: string;
|
|
24902
25088
|
}
|
|
25089
|
+
/** Upgrade instance request. major upgrade workflow. */
|
|
25090
|
+
interface UpgradeInstanceRequestMajorUpgradeWorkflow {
|
|
25091
|
+
/**
|
|
25092
|
+
* Update your database engine to a newer version. This will create a new
|
|
25093
|
+
* Database Instance with same specifications as the current one and perform a
|
|
25094
|
+
* Database Engine upgrade.
|
|
25095
|
+
*/
|
|
25096
|
+
upgradableVersionId: string;
|
|
25097
|
+
/**
|
|
25098
|
+
* Include endpoint during the migration. At the end of the migration
|
|
25099
|
+
* procedure this option let you migrate all your database endpoint to the
|
|
25100
|
+
* upgraded instance.
|
|
25101
|
+
*/
|
|
25102
|
+
withEndpoints: boolean;
|
|
25103
|
+
}
|
|
24903
25104
|
/** User. */
|
|
24904
25105
|
interface User {
|
|
24905
25106
|
/**
|
|
@@ -25046,7 +25247,8 @@ type UpgradeInstanceRequest = {
|
|
|
25046
25247
|
* Node type of the Database Instance you want to upgrade to.
|
|
25047
25248
|
*
|
|
25048
25249
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25049
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25250
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25251
|
+
* could be set.
|
|
25050
25252
|
*/
|
|
25051
25253
|
nodeType?: string;
|
|
25052
25254
|
/**
|
|
@@ -25054,21 +25256,24 @@ type UpgradeInstanceRequest = {
|
|
|
25054
25256
|
* Instance.
|
|
25055
25257
|
*
|
|
25056
25258
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25057
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25259
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25260
|
+
* could be set.
|
|
25058
25261
|
*/
|
|
25059
25262
|
enableHa?: boolean;
|
|
25060
25263
|
/**
|
|
25061
25264
|
* Increase your block storage volume size.
|
|
25062
25265
|
*
|
|
25063
25266
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25064
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25267
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25268
|
+
* could be set.
|
|
25065
25269
|
*/
|
|
25066
25270
|
volumeSize?: number;
|
|
25067
25271
|
/**
|
|
25068
25272
|
* Change your Database Instance storage type.
|
|
25069
25273
|
*
|
|
25070
25274
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25071
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25275
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25276
|
+
* could be set.
|
|
25072
25277
|
*/
|
|
25073
25278
|
volumeType?: VolumeType;
|
|
25074
25279
|
/**
|
|
@@ -25077,9 +25282,19 @@ type UpgradeInstanceRequest = {
|
|
|
25077
25282
|
* Database Engine upgrade.
|
|
25078
25283
|
*
|
|
25079
25284
|
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25080
|
-
* 'volumeSize', 'volumeType', 'upgradableVersionId'
|
|
25285
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25286
|
+
* could be set.
|
|
25081
25287
|
*/
|
|
25082
25288
|
upgradableVersionId?: string;
|
|
25289
|
+
/**
|
|
25290
|
+
* Upgrade your database engine to a new major version including instance
|
|
25291
|
+
* endpoints.
|
|
25292
|
+
*
|
|
25293
|
+
* One-of ('upgradeTarget'): at most one of 'nodeType', 'enableHa',
|
|
25294
|
+
* 'volumeSize', 'volumeType', 'upgradableVersionId', 'majorUpgradeWorkflow'
|
|
25295
|
+
* could be set.
|
|
25296
|
+
*/
|
|
25297
|
+
majorUpgradeWorkflow?: UpgradeInstanceRequestMajorUpgradeWorkflow;
|
|
25083
25298
|
};
|
|
25084
25299
|
type ListInstancesRequest = {
|
|
25085
25300
|
/**
|
|
@@ -26461,11 +26676,12 @@ type index_gen$9_UpdateSnapshotRequest = UpdateSnapshotRequest;
|
|
|
26461
26676
|
type index_gen$9_UpdateUserRequest = UpdateUserRequest;
|
|
26462
26677
|
type index_gen$9_UpgradableVersion = UpgradableVersion;
|
|
26463
26678
|
type index_gen$9_UpgradeInstanceRequest = UpgradeInstanceRequest;
|
|
26679
|
+
type index_gen$9_UpgradeInstanceRequestMajorUpgradeWorkflow = UpgradeInstanceRequestMajorUpgradeWorkflow;
|
|
26464
26680
|
type index_gen$9_User = User;
|
|
26465
26681
|
type index_gen$9_Volume = Volume;
|
|
26466
26682
|
type index_gen$9_VolumeType = VolumeType;
|
|
26467
26683
|
declare namespace index_gen$9 {
|
|
26468
|
-
export { type ACLRule$1 as ACLRule, type index_gen$9_ACLRuleAction as ACLRuleAction, type index_gen$9_ACLRuleDirection as ACLRuleDirection, type index_gen$9_ACLRuleProtocol as ACLRuleProtocol, type index_gen$9_ACLRuleRequest as ACLRuleRequest, API$9 as API, type index_gen$9_AddInstanceACLRulesRequest as AddInstanceACLRulesRequest, type index_gen$9_AddInstanceACLRulesResponse as AddInstanceACLRulesResponse, type index_gen$9_AddInstanceSettingsRequest as AddInstanceSettingsRequest, type index_gen$9_AddInstanceSettingsResponse as AddInstanceSettingsResponse, type index_gen$9_BackupSchedule as BackupSchedule, type index_gen$9_CloneInstanceRequest as CloneInstanceRequest, type index_gen$9_CreateDatabaseBackupRequest as CreateDatabaseBackupRequest, type index_gen$9_CreateDatabaseRequest as CreateDatabaseRequest, type index_gen$9_CreateEndpointRequest as CreateEndpointRequest, type index_gen$9_CreateInstanceFromSnapshotRequest as CreateInstanceFromSnapshotRequest, type index_gen$9_CreateInstanceRequest as CreateInstanceRequest, type index_gen$9_CreateReadReplicaEndpointRequest as CreateReadReplicaEndpointRequest, type index_gen$9_CreateReadReplicaRequest as CreateReadReplicaRequest, type index_gen$9_CreateSnapshotRequest as CreateSnapshotRequest, type index_gen$9_CreateUserRequest as CreateUserRequest, index_gen$9_DATABASE_BACKUP_TRANSIENT_STATUSES as DATABASE_BACKUP_TRANSIENT_STATUSES, type index_gen$9_Database as Database, type index_gen$9_DatabaseBackup as DatabaseBackup, type index_gen$9_DatabaseBackupStatus as DatabaseBackupStatus, type index_gen$9_DatabaseEngine as DatabaseEngine, type index_gen$9_DeleteDatabaseBackupRequest as DeleteDatabaseBackupRequest, type index_gen$9_DeleteDatabaseRequest as DeleteDatabaseRequest, type DeleteEndpointRequest$1 as DeleteEndpointRequest, type index_gen$9_DeleteInstanceACLRulesRequest as DeleteInstanceACLRulesRequest, type index_gen$9_DeleteInstanceACLRulesResponse as DeleteInstanceACLRulesResponse, type index_gen$9_DeleteInstanceRequest as DeleteInstanceRequest, type index_gen$9_DeleteInstanceSettingsRequest as DeleteInstanceSettingsRequest, type index_gen$9_DeleteInstanceSettingsResponse as DeleteInstanceSettingsResponse, type index_gen$9_DeleteReadReplicaRequest as DeleteReadReplicaRequest, type index_gen$9_DeleteSnapshotRequest as DeleteSnapshotRequest, type index_gen$9_DeleteUserRequest as DeleteUserRequest, type Endpoint$1 as Endpoint, type index_gen$9_EndpointDirectAccessDetails as EndpointDirectAccessDetails, type index_gen$9_EndpointLoadBalancerDetails as EndpointLoadBalancerDetails, type index_gen$9_EndpointPrivateNetworkDetails as EndpointPrivateNetworkDetails, type EndpointSpec$1 as EndpointSpec, type index_gen$9_EndpointSpecLoadBalancer as EndpointSpecLoadBalancer, type index_gen$9_EndpointSpecPrivateNetwork as EndpointSpecPrivateNetwork, type index_gen$9_EndpointSpecPrivateNetworkIpamConfig as EndpointSpecPrivateNetworkIpamConfig, type index_gen$9_EngineSetting as EngineSetting, type index_gen$9_EngineSettingPropertyType as EngineSettingPropertyType, type index_gen$9_EngineVersion as EngineVersion, type index_gen$9_ExportDatabaseBackupRequest as ExportDatabaseBackupRequest, type index_gen$9_GetDatabaseBackupRequest as GetDatabaseBackupRequest, type GetEndpointRequest$1 as GetEndpointRequest, type index_gen$9_GetInstanceCertificateRequest as GetInstanceCertificateRequest, type index_gen$9_GetInstanceLogRequest as GetInstanceLogRequest, type index_gen$9_GetInstanceMetricsRequest as GetInstanceMetricsRequest, type index_gen$9_GetInstanceRequest as GetInstanceRequest, type index_gen$9_GetReadReplicaRequest as GetReadReplicaRequest, type index_gen$9_GetSnapshotRequest as GetSnapshotRequest, index_gen$9_INSTANCE_LOG_TRANSIENT_STATUSES as INSTANCE_LOG_TRANSIENT_STATUSES, index_gen$9_INSTANCE_TRANSIENT_STATUSES as INSTANCE_TRANSIENT_STATUSES, type index_gen$9_Instance as Instance, type index_gen$9_InstanceLog as InstanceLog, type index_gen$9_InstanceLogStatus as InstanceLogStatus, type index_gen$9_InstanceMetrics as InstanceMetrics, type index_gen$9_InstanceSetting as InstanceSetting, type index_gen$9_InstanceStatus as InstanceStatus, type index_gen$9_ListDatabaseBackupsRequest as ListDatabaseBackupsRequest, type index_gen$9_ListDatabaseBackupsRequestOrderBy as ListDatabaseBackupsRequestOrderBy, type index_gen$9_ListDatabaseBackupsResponse as ListDatabaseBackupsResponse, type index_gen$9_ListDatabaseEnginesRequest as ListDatabaseEnginesRequest, type index_gen$9_ListDatabaseEnginesResponse as ListDatabaseEnginesResponse, type index_gen$9_ListDatabasesRequest as ListDatabasesRequest, type index_gen$9_ListDatabasesRequestOrderBy as ListDatabasesRequestOrderBy, type index_gen$9_ListDatabasesResponse as ListDatabasesResponse, type index_gen$9_ListInstanceACLRulesRequest as ListInstanceACLRulesRequest, type index_gen$9_ListInstanceACLRulesResponse as ListInstanceACLRulesResponse, type index_gen$9_ListInstanceLogsDetailsRequest as ListInstanceLogsDetailsRequest, type index_gen$9_ListInstanceLogsDetailsResponse as ListInstanceLogsDetailsResponse, type index_gen$9_ListInstanceLogsDetailsResponseInstanceLogDetail as ListInstanceLogsDetailsResponseInstanceLogDetail, type index_gen$9_ListInstanceLogsRequest as ListInstanceLogsRequest, type index_gen$9_ListInstanceLogsRequestOrderBy as ListInstanceLogsRequestOrderBy, type index_gen$9_ListInstanceLogsResponse as ListInstanceLogsResponse, type index_gen$9_ListInstancesRequest as ListInstancesRequest, type index_gen$9_ListInstancesRequestOrderBy as ListInstancesRequestOrderBy, type index_gen$9_ListInstancesResponse as ListInstancesResponse, type ListNodeTypesRequest$1 as ListNodeTypesRequest, type ListNodeTypesResponse$1 as ListNodeTypesResponse, type index_gen$9_ListPrivilegesRequest as ListPrivilegesRequest, type index_gen$9_ListPrivilegesRequestOrderBy as ListPrivilegesRequestOrderBy, type index_gen$9_ListPrivilegesResponse as ListPrivilegesResponse, type index_gen$9_ListSnapshotsRequest as ListSnapshotsRequest, type index_gen$9_ListSnapshotsRequestOrderBy as ListSnapshotsRequestOrderBy, type index_gen$9_ListSnapshotsResponse as ListSnapshotsResponse, type index_gen$9_ListUsersRequest as ListUsersRequest, type index_gen$9_ListUsersRequestOrderBy as ListUsersRequestOrderBy, type index_gen$9_ListUsersResponse as ListUsersResponse, type index_gen$9_LogsPolicy as LogsPolicy, index_gen$9_MAINTENANCE_TRANSIENT_STATUSES as MAINTENANCE_TRANSIENT_STATUSES, type index_gen$9_Maintenance as Maintenance, type index_gen$9_MaintenanceStatus as MaintenanceStatus, type index_gen$9_MigrateEndpointRequest as MigrateEndpointRequest, type NodeType$1 as NodeType, type index_gen$9_NodeTypeGeneration as NodeTypeGeneration, type NodeTypeStock$1 as NodeTypeStock, type index_gen$9_NodeTypeVolumeConstraintSizes as NodeTypeVolumeConstraintSizes, type index_gen$9_NodeTypeVolumeType as NodeTypeVolumeType, type index_gen$9_Permission as Permission, type index_gen$9_PrepareInstanceLogsRequest as PrepareInstanceLogsRequest, type index_gen$9_PrepareInstanceLogsResponse as PrepareInstanceLogsResponse, type index_gen$9_Privilege as Privilege, type index_gen$9_PromoteReadReplicaRequest as PromoteReadReplicaRequest, type index_gen$9_PurgeInstanceLogsRequest as PurgeInstanceLogsRequest, index_gen$9_READ_REPLICA_TRANSIENT_STATUSES as READ_REPLICA_TRANSIENT_STATUSES, type index_gen$9_ReadReplica as ReadReplica, type index_gen$9_ReadReplicaEndpointSpec as ReadReplicaEndpointSpec, type index_gen$9_ReadReplicaEndpointSpecDirectAccess as ReadReplicaEndpointSpecDirectAccess, type index_gen$9_ReadReplicaEndpointSpecPrivateNetwork as ReadReplicaEndpointSpecPrivateNetwork, type index_gen$9_ReadReplicaEndpointSpecPrivateNetworkIpamConfig as ReadReplicaEndpointSpecPrivateNetworkIpamConfig, type index_gen$9_ReadReplicaStatus as ReadReplicaStatus, type index_gen$9_RenewInstanceCertificateRequest as RenewInstanceCertificateRequest, type index_gen$9_ResetReadReplicaRequest as ResetReadReplicaRequest, type index_gen$9_RestartInstanceRequest as RestartInstanceRequest, type index_gen$9_RestoreDatabaseBackupRequest as RestoreDatabaseBackupRequest, index_gen$9_SNAPSHOT_TRANSIENT_STATUSES as SNAPSHOT_TRANSIENT_STATUSES, type index_gen$9_SetInstanceACLRulesRequest as SetInstanceACLRulesRequest, type index_gen$9_SetInstanceACLRulesResponse as SetInstanceACLRulesResponse, type index_gen$9_SetInstanceSettingsRequest as SetInstanceSettingsRequest, type index_gen$9_SetInstanceSettingsResponse as SetInstanceSettingsResponse, type index_gen$9_SetPrivilegeRequest as SetPrivilegeRequest, type index_gen$9_Snapshot as Snapshot, type index_gen$9_SnapshotStatus as SnapshotStatus, type index_gen$9_StorageClass as StorageClass, type index_gen$9_UpdateDatabaseBackupRequest as UpdateDatabaseBackupRequest, type UpdateInstanceRequest$1 as UpdateInstanceRequest, type index_gen$9_UpdateSnapshotRequest as UpdateSnapshotRequest, type index_gen$9_UpdateUserRequest as UpdateUserRequest, type index_gen$9_UpgradableVersion as UpgradableVersion, type index_gen$9_UpgradeInstanceRequest as UpgradeInstanceRequest, type index_gen$9_User as User, validationRules_gen$1 as ValidationRules, type index_gen$9_Volume as Volume, type index_gen$9_VolumeType as VolumeType };
|
|
26684
|
+
export { type ACLRule$1 as ACLRule, type index_gen$9_ACLRuleAction as ACLRuleAction, type index_gen$9_ACLRuleDirection as ACLRuleDirection, type index_gen$9_ACLRuleProtocol as ACLRuleProtocol, type index_gen$9_ACLRuleRequest as ACLRuleRequest, API$9 as API, type index_gen$9_AddInstanceACLRulesRequest as AddInstanceACLRulesRequest, type index_gen$9_AddInstanceACLRulesResponse as AddInstanceACLRulesResponse, type index_gen$9_AddInstanceSettingsRequest as AddInstanceSettingsRequest, type index_gen$9_AddInstanceSettingsResponse as AddInstanceSettingsResponse, type index_gen$9_BackupSchedule as BackupSchedule, type index_gen$9_CloneInstanceRequest as CloneInstanceRequest, type index_gen$9_CreateDatabaseBackupRequest as CreateDatabaseBackupRequest, type index_gen$9_CreateDatabaseRequest as CreateDatabaseRequest, type index_gen$9_CreateEndpointRequest as CreateEndpointRequest, type index_gen$9_CreateInstanceFromSnapshotRequest as CreateInstanceFromSnapshotRequest, type index_gen$9_CreateInstanceRequest as CreateInstanceRequest, type index_gen$9_CreateReadReplicaEndpointRequest as CreateReadReplicaEndpointRequest, type index_gen$9_CreateReadReplicaRequest as CreateReadReplicaRequest, type index_gen$9_CreateSnapshotRequest as CreateSnapshotRequest, type index_gen$9_CreateUserRequest as CreateUserRequest, index_gen$9_DATABASE_BACKUP_TRANSIENT_STATUSES as DATABASE_BACKUP_TRANSIENT_STATUSES, type index_gen$9_Database as Database, type index_gen$9_DatabaseBackup as DatabaseBackup, type index_gen$9_DatabaseBackupStatus as DatabaseBackupStatus, type index_gen$9_DatabaseEngine as DatabaseEngine, type index_gen$9_DeleteDatabaseBackupRequest as DeleteDatabaseBackupRequest, type index_gen$9_DeleteDatabaseRequest as DeleteDatabaseRequest, type DeleteEndpointRequest$1 as DeleteEndpointRequest, type index_gen$9_DeleteInstanceACLRulesRequest as DeleteInstanceACLRulesRequest, type index_gen$9_DeleteInstanceACLRulesResponse as DeleteInstanceACLRulesResponse, type index_gen$9_DeleteInstanceRequest as DeleteInstanceRequest, type index_gen$9_DeleteInstanceSettingsRequest as DeleteInstanceSettingsRequest, type index_gen$9_DeleteInstanceSettingsResponse as DeleteInstanceSettingsResponse, type index_gen$9_DeleteReadReplicaRequest as DeleteReadReplicaRequest, type index_gen$9_DeleteSnapshotRequest as DeleteSnapshotRequest, type index_gen$9_DeleteUserRequest as DeleteUserRequest, type Endpoint$1 as Endpoint, type index_gen$9_EndpointDirectAccessDetails as EndpointDirectAccessDetails, type index_gen$9_EndpointLoadBalancerDetails as EndpointLoadBalancerDetails, type index_gen$9_EndpointPrivateNetworkDetails as EndpointPrivateNetworkDetails, type EndpointSpec$1 as EndpointSpec, type index_gen$9_EndpointSpecLoadBalancer as EndpointSpecLoadBalancer, type index_gen$9_EndpointSpecPrivateNetwork as EndpointSpecPrivateNetwork, type index_gen$9_EndpointSpecPrivateNetworkIpamConfig as EndpointSpecPrivateNetworkIpamConfig, type index_gen$9_EngineSetting as EngineSetting, type index_gen$9_EngineSettingPropertyType as EngineSettingPropertyType, type index_gen$9_EngineVersion as EngineVersion, type index_gen$9_ExportDatabaseBackupRequest as ExportDatabaseBackupRequest, type index_gen$9_GetDatabaseBackupRequest as GetDatabaseBackupRequest, type GetEndpointRequest$1 as GetEndpointRequest, type index_gen$9_GetInstanceCertificateRequest as GetInstanceCertificateRequest, type index_gen$9_GetInstanceLogRequest as GetInstanceLogRequest, type index_gen$9_GetInstanceMetricsRequest as GetInstanceMetricsRequest, type index_gen$9_GetInstanceRequest as GetInstanceRequest, type index_gen$9_GetReadReplicaRequest as GetReadReplicaRequest, type index_gen$9_GetSnapshotRequest as GetSnapshotRequest, index_gen$9_INSTANCE_LOG_TRANSIENT_STATUSES as INSTANCE_LOG_TRANSIENT_STATUSES, index_gen$9_INSTANCE_TRANSIENT_STATUSES as INSTANCE_TRANSIENT_STATUSES, type index_gen$9_Instance as Instance, type index_gen$9_InstanceLog as InstanceLog, type index_gen$9_InstanceLogStatus as InstanceLogStatus, type index_gen$9_InstanceMetrics as InstanceMetrics, type index_gen$9_InstanceSetting as InstanceSetting, type index_gen$9_InstanceStatus as InstanceStatus, type index_gen$9_ListDatabaseBackupsRequest as ListDatabaseBackupsRequest, type index_gen$9_ListDatabaseBackupsRequestOrderBy as ListDatabaseBackupsRequestOrderBy, type index_gen$9_ListDatabaseBackupsResponse as ListDatabaseBackupsResponse, type index_gen$9_ListDatabaseEnginesRequest as ListDatabaseEnginesRequest, type index_gen$9_ListDatabaseEnginesResponse as ListDatabaseEnginesResponse, type index_gen$9_ListDatabasesRequest as ListDatabasesRequest, type index_gen$9_ListDatabasesRequestOrderBy as ListDatabasesRequestOrderBy, type index_gen$9_ListDatabasesResponse as ListDatabasesResponse, type index_gen$9_ListInstanceACLRulesRequest as ListInstanceACLRulesRequest, type index_gen$9_ListInstanceACLRulesResponse as ListInstanceACLRulesResponse, type index_gen$9_ListInstanceLogsDetailsRequest as ListInstanceLogsDetailsRequest, type index_gen$9_ListInstanceLogsDetailsResponse as ListInstanceLogsDetailsResponse, type index_gen$9_ListInstanceLogsDetailsResponseInstanceLogDetail as ListInstanceLogsDetailsResponseInstanceLogDetail, type index_gen$9_ListInstanceLogsRequest as ListInstanceLogsRequest, type index_gen$9_ListInstanceLogsRequestOrderBy as ListInstanceLogsRequestOrderBy, type index_gen$9_ListInstanceLogsResponse as ListInstanceLogsResponse, type index_gen$9_ListInstancesRequest as ListInstancesRequest, type index_gen$9_ListInstancesRequestOrderBy as ListInstancesRequestOrderBy, type index_gen$9_ListInstancesResponse as ListInstancesResponse, type ListNodeTypesRequest$1 as ListNodeTypesRequest, type ListNodeTypesResponse$1 as ListNodeTypesResponse, type index_gen$9_ListPrivilegesRequest as ListPrivilegesRequest, type index_gen$9_ListPrivilegesRequestOrderBy as ListPrivilegesRequestOrderBy, type index_gen$9_ListPrivilegesResponse as ListPrivilegesResponse, type index_gen$9_ListSnapshotsRequest as ListSnapshotsRequest, type index_gen$9_ListSnapshotsRequestOrderBy as ListSnapshotsRequestOrderBy, type index_gen$9_ListSnapshotsResponse as ListSnapshotsResponse, type index_gen$9_ListUsersRequest as ListUsersRequest, type index_gen$9_ListUsersRequestOrderBy as ListUsersRequestOrderBy, type index_gen$9_ListUsersResponse as ListUsersResponse, type index_gen$9_LogsPolicy as LogsPolicy, index_gen$9_MAINTENANCE_TRANSIENT_STATUSES as MAINTENANCE_TRANSIENT_STATUSES, type index_gen$9_Maintenance as Maintenance, type index_gen$9_MaintenanceStatus as MaintenanceStatus, type index_gen$9_MigrateEndpointRequest as MigrateEndpointRequest, type NodeType$1 as NodeType, type index_gen$9_NodeTypeGeneration as NodeTypeGeneration, type NodeTypeStock$1 as NodeTypeStock, type index_gen$9_NodeTypeVolumeConstraintSizes as NodeTypeVolumeConstraintSizes, type index_gen$9_NodeTypeVolumeType as NodeTypeVolumeType, type index_gen$9_Permission as Permission, type index_gen$9_PrepareInstanceLogsRequest as PrepareInstanceLogsRequest, type index_gen$9_PrepareInstanceLogsResponse as PrepareInstanceLogsResponse, type index_gen$9_Privilege as Privilege, type index_gen$9_PromoteReadReplicaRequest as PromoteReadReplicaRequest, type index_gen$9_PurgeInstanceLogsRequest as PurgeInstanceLogsRequest, index_gen$9_READ_REPLICA_TRANSIENT_STATUSES as READ_REPLICA_TRANSIENT_STATUSES, type index_gen$9_ReadReplica as ReadReplica, type index_gen$9_ReadReplicaEndpointSpec as ReadReplicaEndpointSpec, type index_gen$9_ReadReplicaEndpointSpecDirectAccess as ReadReplicaEndpointSpecDirectAccess, type index_gen$9_ReadReplicaEndpointSpecPrivateNetwork as ReadReplicaEndpointSpecPrivateNetwork, type index_gen$9_ReadReplicaEndpointSpecPrivateNetworkIpamConfig as ReadReplicaEndpointSpecPrivateNetworkIpamConfig, type index_gen$9_ReadReplicaStatus as ReadReplicaStatus, type index_gen$9_RenewInstanceCertificateRequest as RenewInstanceCertificateRequest, type index_gen$9_ResetReadReplicaRequest as ResetReadReplicaRequest, type index_gen$9_RestartInstanceRequest as RestartInstanceRequest, type index_gen$9_RestoreDatabaseBackupRequest as RestoreDatabaseBackupRequest, index_gen$9_SNAPSHOT_TRANSIENT_STATUSES as SNAPSHOT_TRANSIENT_STATUSES, type index_gen$9_SetInstanceACLRulesRequest as SetInstanceACLRulesRequest, type index_gen$9_SetInstanceACLRulesResponse as SetInstanceACLRulesResponse, type index_gen$9_SetInstanceSettingsRequest as SetInstanceSettingsRequest, type index_gen$9_SetInstanceSettingsResponse as SetInstanceSettingsResponse, type index_gen$9_SetPrivilegeRequest as SetPrivilegeRequest, type index_gen$9_Snapshot as Snapshot, type index_gen$9_SnapshotStatus as SnapshotStatus, type index_gen$9_StorageClass as StorageClass, type index_gen$9_UpdateDatabaseBackupRequest as UpdateDatabaseBackupRequest, type UpdateInstanceRequest$1 as UpdateInstanceRequest, type index_gen$9_UpdateSnapshotRequest as UpdateSnapshotRequest, type index_gen$9_UpdateUserRequest as UpdateUserRequest, type index_gen$9_UpgradableVersion as UpgradableVersion, type index_gen$9_UpgradeInstanceRequest as UpgradeInstanceRequest, type index_gen$9_UpgradeInstanceRequestMajorUpgradeWorkflow as UpgradeInstanceRequestMajorUpgradeWorkflow, type index_gen$9_User as User, validationRules_gen$1 as ValidationRules, type index_gen$9_Volume as Volume, type index_gen$9_VolumeType as VolumeType };
|
|
26469
26685
|
}
|
|
26470
26686
|
|
|
26471
26687
|
declare namespace index$8 {
|
|
@@ -27776,6 +27992,7 @@ declare namespace index$6 {
|
|
|
27776
27992
|
type ListFoldersRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc';
|
|
27777
27993
|
type ListSecretsRequestOrderBy = 'name_asc' | 'name_desc' | 'created_at_asc' | 'created_at_desc' | 'updated_at_asc' | 'updated_at_desc';
|
|
27778
27994
|
type Product = 'unknown';
|
|
27995
|
+
type SecretEphemeralAction = 'unknown_ephemeral_action' | 'delete_secret' | 'disable_secret';
|
|
27779
27996
|
type SecretStatus = 'ready' | 'locked';
|
|
27780
27997
|
type SecretType = 'unknown_secret_type' | 'opaque' | 'certificate' | 'key_value';
|
|
27781
27998
|
type SecretVersionStatus = 'unknown' | 'enabled' | 'disabled' | 'destroyed';
|
|
@@ -27882,6 +28099,16 @@ interface Secret {
|
|
|
27882
28099
|
type: SecretType;
|
|
27883
28100
|
/** Path of the secret. Location of the secret in the directory structure. */
|
|
27884
28101
|
path: string;
|
|
28102
|
+
/**
|
|
28103
|
+
* Expiration date of the secret. (Optional.) Date on which the secret will be
|
|
28104
|
+
* deleted or deactivated.
|
|
28105
|
+
*/
|
|
28106
|
+
expiresAt?: Date;
|
|
28107
|
+
/**
|
|
28108
|
+
* Action to be taken when the secret expires. See `Secret.EphemeralAction`
|
|
28109
|
+
* enum for description of values.
|
|
28110
|
+
*/
|
|
28111
|
+
ephemeralAction: SecretEphemeralAction;
|
|
27885
28112
|
/** Region of the secret. */
|
|
27886
28113
|
region: Region;
|
|
27887
28114
|
}
|
|
@@ -27934,6 +28161,13 @@ type CreateSecretRequest = {
|
|
|
27934
28161
|
* structure. If not specified, the path is `/`.
|
|
27935
28162
|
*/
|
|
27936
28163
|
path?: string;
|
|
28164
|
+
/**
|
|
28165
|
+
* Expiration date of the secret. (Optional.) Date on which the secret will be
|
|
28166
|
+
* deleted or deactivated.
|
|
28167
|
+
*/
|
|
28168
|
+
expiresAt?: Date;
|
|
28169
|
+
/** Action to be taken when the secret expires. */
|
|
28170
|
+
ephemeralAction?: SecretEphemeralAction;
|
|
27937
28171
|
};
|
|
27938
28172
|
type CreateFolderRequest = {
|
|
27939
28173
|
/**
|
|
@@ -28015,6 +28249,8 @@ type ListSecretsRequest = {
|
|
|
28015
28249
|
isManaged?: boolean;
|
|
28016
28250
|
/** Filter by path (optional). */
|
|
28017
28251
|
path?: string;
|
|
28252
|
+
/** Filter by ephemeral / not ephemeral (optional). */
|
|
28253
|
+
isEphemeral?: boolean;
|
|
28018
28254
|
};
|
|
28019
28255
|
type ListFoldersRequest = {
|
|
28020
28256
|
/**
|
|
@@ -28625,6 +28861,7 @@ type index_gen$6_PasswordGenerationParams = PasswordGenerationParams;
|
|
|
28625
28861
|
type index_gen$6_Product = Product;
|
|
28626
28862
|
type index_gen$6_ProtectSecretRequest = ProtectSecretRequest;
|
|
28627
28863
|
type index_gen$6_Secret = Secret;
|
|
28864
|
+
type index_gen$6_SecretEphemeralAction = SecretEphemeralAction;
|
|
28628
28865
|
type index_gen$6_SecretStatus = SecretStatus;
|
|
28629
28866
|
type index_gen$6_SecretType = SecretType;
|
|
28630
28867
|
type index_gen$6_SecretVersion = SecretVersion;
|
|
@@ -28633,7 +28870,7 @@ type index_gen$6_UnprotectSecretRequest = UnprotectSecretRequest;
|
|
|
28633
28870
|
type index_gen$6_UpdateSecretRequest = UpdateSecretRequest;
|
|
28634
28871
|
type index_gen$6_UpdateSecretVersionRequest = UpdateSecretVersionRequest;
|
|
28635
28872
|
declare namespace index_gen$6 {
|
|
28636
|
-
export { API$6 as API, type index_gen$6_AccessSecretVersionByNameRequest as AccessSecretVersionByNameRequest, type index_gen$6_AccessSecretVersionRequest as AccessSecretVersionRequest, type index_gen$6_AccessSecretVersionResponse as AccessSecretVersionResponse, type index_gen$6_AddSecretOwnerRequest as AddSecretOwnerRequest, type index_gen$6_CreateFolderRequest as CreateFolderRequest, type index_gen$6_CreateSecretRequest as CreateSecretRequest, type index_gen$6_CreateSecretVersionRequest as CreateSecretVersionRequest, type index_gen$6_DeleteFolderRequest as DeleteFolderRequest, type index_gen$6_DeleteSecretRequest as DeleteSecretRequest, type index_gen$6_DestroySecretVersionRequest as DestroySecretVersionRequest, type index_gen$6_DisableSecretVersionRequest as DisableSecretVersionRequest, type index_gen$6_EnableSecretVersionRequest as EnableSecretVersionRequest, type index_gen$6_Folder as Folder, type index_gen$6_GeneratePasswordRequest as GeneratePasswordRequest, type index_gen$6_GetSecretByNameRequest as GetSecretByNameRequest, type index_gen$6_GetSecretRequest as GetSecretRequest, type index_gen$6_GetSecretVersionByNameRequest as GetSecretVersionByNameRequest, type index_gen$6_GetSecretVersionRequest as GetSecretVersionRequest, type index_gen$6_ListFoldersRequest as ListFoldersRequest, type index_gen$6_ListFoldersRequestOrderBy as ListFoldersRequestOrderBy, type index_gen$6_ListFoldersResponse as ListFoldersResponse, type index_gen$6_ListSecretVersionsByNameRequest as ListSecretVersionsByNameRequest, type index_gen$6_ListSecretVersionsRequest as ListSecretVersionsRequest, type index_gen$6_ListSecretVersionsResponse as ListSecretVersionsResponse, type index_gen$6_ListSecretsRequest as ListSecretsRequest, type index_gen$6_ListSecretsRequestOrderBy as ListSecretsRequestOrderBy, type index_gen$6_ListSecretsResponse as ListSecretsResponse, type index_gen$6_ListTagsRequest as ListTagsRequest, type index_gen$6_ListTagsResponse as ListTagsResponse, type index_gen$6_PasswordGenerationParams as PasswordGenerationParams, type index_gen$6_Product as Product, type index_gen$6_ProtectSecretRequest as ProtectSecretRequest, type index_gen$6_Secret as Secret, type index_gen$6_SecretStatus as SecretStatus, type index_gen$6_SecretType as SecretType, type index_gen$6_SecretVersion as SecretVersion, type index_gen$6_SecretVersionStatus as SecretVersionStatus, type index_gen$6_UnprotectSecretRequest as UnprotectSecretRequest, type index_gen$6_UpdateSecretRequest as UpdateSecretRequest, type index_gen$6_UpdateSecretVersionRequest as UpdateSecretVersionRequest };
|
|
28873
|
+
export { API$6 as API, type index_gen$6_AccessSecretVersionByNameRequest as AccessSecretVersionByNameRequest, type index_gen$6_AccessSecretVersionRequest as AccessSecretVersionRequest, type index_gen$6_AccessSecretVersionResponse as AccessSecretVersionResponse, type index_gen$6_AddSecretOwnerRequest as AddSecretOwnerRequest, type index_gen$6_CreateFolderRequest as CreateFolderRequest, type index_gen$6_CreateSecretRequest as CreateSecretRequest, type index_gen$6_CreateSecretVersionRequest as CreateSecretVersionRequest, type index_gen$6_DeleteFolderRequest as DeleteFolderRequest, type index_gen$6_DeleteSecretRequest as DeleteSecretRequest, type index_gen$6_DestroySecretVersionRequest as DestroySecretVersionRequest, type index_gen$6_DisableSecretVersionRequest as DisableSecretVersionRequest, type index_gen$6_EnableSecretVersionRequest as EnableSecretVersionRequest, type index_gen$6_Folder as Folder, type index_gen$6_GeneratePasswordRequest as GeneratePasswordRequest, type index_gen$6_GetSecretByNameRequest as GetSecretByNameRequest, type index_gen$6_GetSecretRequest as GetSecretRequest, type index_gen$6_GetSecretVersionByNameRequest as GetSecretVersionByNameRequest, type index_gen$6_GetSecretVersionRequest as GetSecretVersionRequest, type index_gen$6_ListFoldersRequest as ListFoldersRequest, type index_gen$6_ListFoldersRequestOrderBy as ListFoldersRequestOrderBy, type index_gen$6_ListFoldersResponse as ListFoldersResponse, type index_gen$6_ListSecretVersionsByNameRequest as ListSecretVersionsByNameRequest, type index_gen$6_ListSecretVersionsRequest as ListSecretVersionsRequest, type index_gen$6_ListSecretVersionsResponse as ListSecretVersionsResponse, type index_gen$6_ListSecretsRequest as ListSecretsRequest, type index_gen$6_ListSecretsRequestOrderBy as ListSecretsRequestOrderBy, type index_gen$6_ListSecretsResponse as ListSecretsResponse, type index_gen$6_ListTagsRequest as ListTagsRequest, type index_gen$6_ListTagsResponse as ListTagsResponse, type index_gen$6_PasswordGenerationParams as PasswordGenerationParams, type index_gen$6_Product as Product, type index_gen$6_ProtectSecretRequest as ProtectSecretRequest, type index_gen$6_Secret as Secret, type index_gen$6_SecretEphemeralAction as SecretEphemeralAction, type index_gen$6_SecretStatus as SecretStatus, type index_gen$6_SecretType as SecretType, type index_gen$6_SecretVersion as SecretVersion, type index_gen$6_SecretVersionStatus as SecretVersionStatus, type index_gen$6_UnprotectSecretRequest as UnprotectSecretRequest, type index_gen$6_UpdateSecretRequest as UpdateSecretRequest, type index_gen$6_UpdateSecretVersionRequest as UpdateSecretVersionRequest };
|
|
28637
28874
|
}
|
|
28638
28875
|
|
|
28639
28876
|
declare namespace index$5 {
|
|
@@ -28848,7 +29085,7 @@ declare namespace index$4 {
|
|
|
28848
29085
|
}
|
|
28849
29086
|
|
|
28850
29087
|
type DomainLastStatusRecordStatus = 'unknown_record_status' | 'valid' | 'invalid' | 'not_found';
|
|
28851
|
-
type DomainReputationStatus = '
|
|
29088
|
+
type DomainReputationStatus = 'unknown_status' | 'excellent' | 'good' | 'average' | 'bad';
|
|
28852
29089
|
type DomainStatus = 'unknown' | 'checked' | 'unchecked' | 'invalid' | 'locked' | 'revoked' | 'pending';
|
|
28853
29090
|
type EmailFlag = 'unknown_flag' | 'soft_bounce' | 'hard_bounce' | 'spam' | 'mailbox_full' | 'mailbox_not_found' | 'greylisted' | 'send_before_expiration';
|
|
28854
29091
|
type EmailRcptType = 'unknown_rcpt_type' | 'to' | 'cc' | 'bcc';
|
|
@@ -28904,15 +29141,15 @@ interface Domain {
|
|
|
28904
29141
|
/** Domain's statistics. */
|
|
28905
29142
|
statistics?: DomainStatistics;
|
|
28906
29143
|
/**
|
|
28907
|
-
*
|
|
28908
|
-
* enough emails.
|
|
29144
|
+
* The domain's reputation is available when your domain is checked and has
|
|
29145
|
+
* sent enough emails.
|
|
28909
29146
|
*/
|
|
28910
29147
|
reputation?: DomainReputation;
|
|
28911
29148
|
region: Region;
|
|
28912
29149
|
}
|
|
28913
29150
|
/** Domain last status. */
|
|
28914
29151
|
interface DomainLastStatus {
|
|
28915
|
-
/** The
|
|
29152
|
+
/** The ID of the domain. */
|
|
28916
29153
|
domainId: string;
|
|
28917
29154
|
/** The domain name (example.com). */
|
|
28918
29155
|
domainName: string;
|
|
@@ -28941,15 +29178,19 @@ interface DomainLastStatusSpfRecord {
|
|
|
28941
29178
|
}
|
|
28942
29179
|
/** Domain. reputation. */
|
|
28943
29180
|
interface DomainReputation {
|
|
28944
|
-
/** Status of your domain reputation. */
|
|
29181
|
+
/** Status of your domain's reputation. */
|
|
28945
29182
|
status: DomainReputationStatus;
|
|
28946
|
-
/**
|
|
29183
|
+
/**
|
|
29184
|
+
* A range from 0 to 100 that determines your domain's reputation score. A
|
|
29185
|
+
* score of `0` means a bad domain reputation and a score of `100` means an
|
|
29186
|
+
* excellent domain reputation.
|
|
29187
|
+
*/
|
|
28947
29188
|
score: number;
|
|
28948
29189
|
/** Time and date the score was calculated. */
|
|
28949
29190
|
scoredAt?: Date;
|
|
28950
|
-
/** The domain reputation score
|
|
29191
|
+
/** The previously-calculated domain's reputation score. */
|
|
28951
29192
|
previousScore?: number;
|
|
28952
|
-
/** Time and date the previous score was calculated. */
|
|
29193
|
+
/** Time and date the previous reputation score was calculated. */
|
|
28953
29194
|
previousScoredAt?: Date;
|
|
28954
29195
|
}
|
|
28955
29196
|
interface DomainStatistics {
|
|
@@ -29287,7 +29528,13 @@ declare class API$4 extends API$v {
|
|
|
29287
29528
|
createDomain: (request: Readonly<CreateDomainRequest>) => Promise<Domain>;
|
|
29288
29529
|
/**
|
|
29289
29530
|
* Get information about a domain. Retrieve information about a specific
|
|
29290
|
-
* domain using the `region` and `domain_id` parameters.
|
|
29531
|
+
* domain using the `region` and `domain_id` parameters. Monitor your domain's
|
|
29532
|
+
* reputation and improve **average** and **bad** reputation statuses, using
|
|
29533
|
+
* your domain's **Email activity** tab on the [Scaleway
|
|
29534
|
+
* console](https://console.scaleway.com/transactional-email/domains) to get a
|
|
29535
|
+
* more detailed report. Check out our [dedicated
|
|
29536
|
+
* documentation](https://www.scaleway.com/en/docs/managed-services/transactional-email/reference-content/understanding-tem-reputation-score/)
|
|
29537
|
+
* to improve your domain's reputation.
|
|
29291
29538
|
*
|
|
29292
29539
|
* @param request - The request {@link GetDomainRequest}
|
|
29293
29540
|
* @returns A Promise of Domain
|
|
@@ -29303,7 +29550,7 @@ declare class API$4 extends API$v {
|
|
|
29303
29550
|
waitForDomain: (request: Readonly<GetDomainRequest>, options?: Readonly<WaitForOptions<Domain>>) => Promise<Domain>;
|
|
29304
29551
|
protected pageOfListDomains: (request?: Readonly<ListDomainsRequest>) => Promise<ListDomainsResponse>;
|
|
29305
29552
|
/**
|
|
29306
|
-
* List domains. Retrieve domains in a specific
|
|
29553
|
+
* List domains. Retrieve domains in a specific Project or in a specific
|
|
29307
29554
|
* Organization using the `region` parameter.
|
|
29308
29555
|
*
|
|
29309
29556
|
* @param request - The request {@link ListDomainsRequest}
|
|
@@ -30045,6 +30292,13 @@ type ListGatewaysRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_a
|
|
|
30045
30292
|
type ListIPsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'ip_asc' | 'ip_desc' | 'reverse_asc' | 'reverse_desc';
|
|
30046
30293
|
type ListPATRulesRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'public_port_asc' | 'public_port_desc';
|
|
30047
30294
|
type PATRuleProtocol = 'unknown' | 'both' | 'tcp' | 'udp';
|
|
30295
|
+
/** Create gateway network request. ipam config. */
|
|
30296
|
+
interface CreateGatewayNetworkRequestIpamConfig {
|
|
30297
|
+
/** Enabling the default route also enables masquerading. */
|
|
30298
|
+
pushDefaultRoute: boolean;
|
|
30299
|
+
/** Use this IPAM-booked IP ID as the Gateway's IP in this Private Network. */
|
|
30300
|
+
ipamIpId?: string;
|
|
30301
|
+
}
|
|
30048
30302
|
/** Dhcp. */
|
|
30049
30303
|
interface DHCP {
|
|
30050
30304
|
/** ID of the DHCP config. */
|
|
@@ -30260,6 +30514,8 @@ interface IP {
|
|
|
30260
30514
|
interface IpamConfig {
|
|
30261
30515
|
/** Defines whether the default route is enabled on that Gateway Network. */
|
|
30262
30516
|
pushDefaultRoute: boolean;
|
|
30517
|
+
/** IPAM-booked IP ID as the Gateway's IP in this Private Network. */
|
|
30518
|
+
ipamIpId: string;
|
|
30263
30519
|
}
|
|
30264
30520
|
/** List dhcp entries response. */
|
|
30265
30521
|
interface ListDHCPEntriesResponse {
|
|
@@ -30364,6 +30620,13 @@ interface SetPATRulesResponse {
|
|
|
30364
30620
|
/** List of PAT rules. */
|
|
30365
30621
|
patRules: PATRule[];
|
|
30366
30622
|
}
|
|
30623
|
+
/** Update gateway network request. ipam config. */
|
|
30624
|
+
interface UpdateGatewayNetworkRequestIpamConfig {
|
|
30625
|
+
/** Enabling the default route also enables masquerading. */
|
|
30626
|
+
pushDefaultRoute?: boolean;
|
|
30627
|
+
/** Use this IPAM-booked IP ID as the Gateway's IP in this Private Network. */
|
|
30628
|
+
ipamIpId?: string;
|
|
30629
|
+
}
|
|
30367
30630
|
type ListGatewaysRequest = {
|
|
30368
30631
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
30369
30632
|
zone?: Zone;
|
|
@@ -30539,7 +30802,7 @@ type CreateGatewayNetworkRequest = {
|
|
|
30539
30802
|
* One-of ('ipConfig'): at most one of 'dhcpId', 'dhcp', 'address',
|
|
30540
30803
|
* 'ipamConfig' could be set.
|
|
30541
30804
|
*/
|
|
30542
|
-
ipamConfig?:
|
|
30805
|
+
ipamConfig?: CreateGatewayNetworkRequestIpamConfig;
|
|
30543
30806
|
};
|
|
30544
30807
|
type UpdateGatewayNetworkRequest = {
|
|
30545
30808
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
@@ -30581,7 +30844,7 @@ type UpdateGatewayNetworkRequest = {
|
|
|
30581
30844
|
* One-of ('ipConfig'): at most one of 'dhcpId', 'address', 'ipamConfig' could
|
|
30582
30845
|
* be set.
|
|
30583
30846
|
*/
|
|
30584
|
-
ipamConfig?:
|
|
30847
|
+
ipamConfig?: UpdateGatewayNetworkRequestIpamConfig;
|
|
30585
30848
|
};
|
|
30586
30849
|
type DeleteGatewayNetworkRequest = {
|
|
30587
30850
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
@@ -31328,6 +31591,7 @@ declare const GATEWAY_TRANSIENT_STATUSES: GatewayStatus[];
|
|
|
31328
31591
|
type index_gen$1_CreateDHCPEntryRequest = CreateDHCPEntryRequest;
|
|
31329
31592
|
type index_gen$1_CreateDHCPRequest = CreateDHCPRequest;
|
|
31330
31593
|
type index_gen$1_CreateGatewayNetworkRequest = CreateGatewayNetworkRequest;
|
|
31594
|
+
type index_gen$1_CreateGatewayNetworkRequestIpamConfig = CreateGatewayNetworkRequestIpamConfig;
|
|
31331
31595
|
type index_gen$1_CreateGatewayRequest = CreateGatewayRequest;
|
|
31332
31596
|
type index_gen$1_CreateIPRequest = CreateIPRequest;
|
|
31333
31597
|
type index_gen$1_CreatePATRuleRequest = CreatePATRuleRequest;
|
|
@@ -31387,12 +31651,13 @@ type index_gen$1_SetPATRulesResponse = SetPATRulesResponse;
|
|
|
31387
31651
|
type index_gen$1_UpdateDHCPEntryRequest = UpdateDHCPEntryRequest;
|
|
31388
31652
|
type index_gen$1_UpdateDHCPRequest = UpdateDHCPRequest;
|
|
31389
31653
|
type index_gen$1_UpdateGatewayNetworkRequest = UpdateGatewayNetworkRequest;
|
|
31654
|
+
type index_gen$1_UpdateGatewayNetworkRequestIpamConfig = UpdateGatewayNetworkRequestIpamConfig;
|
|
31390
31655
|
type index_gen$1_UpdateGatewayRequest = UpdateGatewayRequest;
|
|
31391
31656
|
type index_gen$1_UpdateIPRequest = UpdateIPRequest;
|
|
31392
31657
|
type index_gen$1_UpdatePATRuleRequest = UpdatePATRuleRequest;
|
|
31393
31658
|
type index_gen$1_UpgradeGatewayRequest = UpgradeGatewayRequest;
|
|
31394
31659
|
declare namespace index_gen$1 {
|
|
31395
|
-
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 };
|
|
31660
|
+
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 };
|
|
31396
31661
|
}
|
|
31397
31662
|
|
|
31398
31663
|
declare namespace index$1 {
|