@scaleway/sdk 2.4.2 → 2.6.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/cockpit/v1beta1/api.gen.js +10 -0
- package/dist/api/iam/v1alpha1/api.gen.js +19 -1
- package/dist/api/instance/v1/api.gen.js +54 -15
- package/dist/api/instance/v1/api.utils.js +0 -126
- package/dist/api/instance/v1/marshalling.gen.js +76 -4
- package/dist/api/jobs/v1alpha1/api.gen.js +13 -26
- package/dist/api/k8s/v1/marshalling.gen.js +5 -1
- package/dist/api/webhosting/v1alpha1/api.gen.js +1 -1
- package/dist/api/webhosting/v1alpha1/marshalling.gen.js +3 -0
- package/dist/index.cjs +179 -224
- package/dist/index.d.ts +192 -143
- package/dist/scw/constants.js +1 -1
- package/dist/scw/errors/scw-error.js +0 -1
- package/package.json +2 -2
- package/dist/api/instance/v1/marshalling.utils.js +0 -63
package/dist/index.d.ts
CHANGED
|
@@ -3099,10 +3099,10 @@ interface VolumeSpecifications {
|
|
|
3099
3099
|
interface Reference$1 {
|
|
3100
3100
|
/** UUID of the reference. */
|
|
3101
3101
|
id: string;
|
|
3102
|
-
/** Type of
|
|
3102
|
+
/** Type of resource to which the reference is associated. */
|
|
3103
3103
|
productResourceType: string;
|
|
3104
3104
|
/**
|
|
3105
|
-
* UUID of the
|
|
3105
|
+
* UUID of the product resource it refers to (according to the
|
|
3106
3106
|
* product_resource_type).
|
|
3107
3107
|
*/
|
|
3108
3108
|
productResourceId: string;
|
|
@@ -3686,20 +3686,20 @@ interface ContactPoint {
|
|
|
3686
3686
|
*/
|
|
3687
3687
|
email?: ContactPointEmail;
|
|
3688
3688
|
}
|
|
3689
|
-
/**
|
|
3689
|
+
/** Data source. */
|
|
3690
3690
|
interface Datasource {
|
|
3691
|
-
/** ID of the
|
|
3691
|
+
/** ID of the data source. */
|
|
3692
3692
|
id: string;
|
|
3693
3693
|
/** ID of the Project the Cockpit belongs to. */
|
|
3694
3694
|
projectId: string;
|
|
3695
|
-
/**
|
|
3695
|
+
/** Data source name. */
|
|
3696
3696
|
name: string;
|
|
3697
|
-
/**
|
|
3697
|
+
/** Data source URL. */
|
|
3698
3698
|
url: string;
|
|
3699
|
-
/**
|
|
3699
|
+
/** Data source type. */
|
|
3700
3700
|
type: DatasourceType;
|
|
3701
3701
|
/**
|
|
3702
|
-
* Specifies that the
|
|
3702
|
+
* Specifies that the data source receives data from Scaleway products and is
|
|
3703
3703
|
* managed by Scaleway.
|
|
3704
3704
|
*/
|
|
3705
3705
|
isManagedByScaleway: boolean;
|
|
@@ -3777,15 +3777,15 @@ type CreateContactPointRequest = {
|
|
|
3777
3777
|
/** Contact point to create. */
|
|
3778
3778
|
contactPoint?: ContactPoint;
|
|
3779
3779
|
};
|
|
3780
|
-
/** Request to create a
|
|
3780
|
+
/** Request to create a data source. */
|
|
3781
3781
|
type CreateDatasourceRequest = {
|
|
3782
3782
|
/** ID of the Project the Cockpit belongs to. */
|
|
3783
3783
|
projectId?: string;
|
|
3784
|
-
/**
|
|
3784
|
+
/** Data source name. */
|
|
3785
3785
|
name: string;
|
|
3786
|
-
/**
|
|
3786
|
+
/** Data source type. */
|
|
3787
3787
|
type?: DatasourceType;
|
|
3788
|
-
/** Specifies that the returned output is the default
|
|
3788
|
+
/** Specifies that the returned output is the default data source per type. */
|
|
3789
3789
|
isDefault: boolean;
|
|
3790
3790
|
};
|
|
3791
3791
|
/** Request to create a Grafana user. */
|
|
@@ -3816,6 +3816,11 @@ type DeleteContactPointRequest = {
|
|
|
3816
3816
|
/** Contact point to delete. */
|
|
3817
3817
|
contactPoint?: ContactPoint;
|
|
3818
3818
|
};
|
|
3819
|
+
/** Request to delete a data source. */
|
|
3820
|
+
type DeleteDatasourceRequest = {
|
|
3821
|
+
/** ID of the data source. */
|
|
3822
|
+
datasourceId: string;
|
|
3823
|
+
};
|
|
3819
3824
|
/** Request to delete a Grafana user. */
|
|
3820
3825
|
type DeleteGrafanaUserRequest = {
|
|
3821
3826
|
/** ID of the Grafana user. */
|
|
@@ -4044,6 +4049,12 @@ declare class API$p extends API$v {
|
|
|
4044
4049
|
* @returns A Promise of Datasource
|
|
4045
4050
|
*/
|
|
4046
4051
|
createDatasource: (request: Readonly<CreateDatasourceRequest>) => Promise<Datasource>;
|
|
4052
|
+
/**
|
|
4053
|
+
* Delete the datasource associated with the specified datasource ID.
|
|
4054
|
+
*
|
|
4055
|
+
* @param request - The request {@link DeleteDatasourceRequest}
|
|
4056
|
+
*/
|
|
4057
|
+
deleteDatasource: (request: Readonly<DeleteDatasourceRequest>) => Promise<void>;
|
|
4047
4058
|
protected pageOfListDatasources: (request?: Readonly<ListDatasourcesRequest>) => Promise<ListDatasourcesResponse>;
|
|
4048
4059
|
/**
|
|
4049
4060
|
* Get a list of datasources for the specified Project ID.
|
|
@@ -4222,6 +4233,7 @@ type index_gen$o_Datasource = Datasource;
|
|
|
4222
4233
|
type index_gen$o_DatasourceType = DatasourceType;
|
|
4223
4234
|
type index_gen$o_DeactivateCockpitRequest = DeactivateCockpitRequest;
|
|
4224
4235
|
type index_gen$o_DeleteContactPointRequest = DeleteContactPointRequest;
|
|
4236
|
+
type index_gen$o_DeleteDatasourceRequest = DeleteDatasourceRequest;
|
|
4225
4237
|
type index_gen$o_DeleteGrafanaUserRequest = DeleteGrafanaUserRequest;
|
|
4226
4238
|
type index_gen$o_DisableManagedAlertsRequest = DisableManagedAlertsRequest;
|
|
4227
4239
|
type index_gen$o_EnableManagedAlertsRequest = EnableManagedAlertsRequest;
|
|
@@ -4252,7 +4264,7 @@ type index_gen$o_SelectPlanResponse = SelectPlanResponse;
|
|
|
4252
4264
|
type index_gen$o_TokenScopes = TokenScopes;
|
|
4253
4265
|
type index_gen$o_TriggerTestAlertRequest = TriggerTestAlertRequest;
|
|
4254
4266
|
declare namespace index_gen$o {
|
|
4255
|
-
export { API$p as API, type index_gen$o_ActivateCockpitRequest as ActivateCockpitRequest, index_gen$o_COCKPIT_TRANSIENT_STATUSES as COCKPIT_TRANSIENT_STATUSES, type index_gen$o_Cockpit as Cockpit, type index_gen$o_CockpitEndpoints as CockpitEndpoints, type index_gen$o_CockpitMetrics as CockpitMetrics, type index_gen$o_CockpitStatus as CockpitStatus, type index_gen$o_ContactPoint as ContactPoint, type index_gen$o_ContactPointEmail as ContactPointEmail, type index_gen$o_CreateContactPointRequest as CreateContactPointRequest, type index_gen$o_CreateDatasourceRequest as CreateDatasourceRequest, type index_gen$o_CreateGrafanaUserRequest as CreateGrafanaUserRequest, type CreateTokenRequest$2 as CreateTokenRequest, type index_gen$o_Datasource as Datasource, type index_gen$o_DatasourceType as DatasourceType, type index_gen$o_DeactivateCockpitRequest as DeactivateCockpitRequest, type index_gen$o_DeleteContactPointRequest as DeleteContactPointRequest, type index_gen$o_DeleteGrafanaUserRequest as DeleteGrafanaUserRequest, type DeleteTokenRequest$2 as DeleteTokenRequest, type index_gen$o_DisableManagedAlertsRequest as DisableManagedAlertsRequest, type index_gen$o_EnableManagedAlertsRequest as EnableManagedAlertsRequest, type index_gen$o_GetCockpitMetricsRequest as GetCockpitMetricsRequest, type index_gen$o_GetCockpitRequest as GetCockpitRequest, type index_gen$o_GetGrafanaProductDashboardRequest as GetGrafanaProductDashboardRequest, type GetTokenRequest$2 as GetTokenRequest, type index_gen$o_GrafanaProductDashboard as GrafanaProductDashboard, type index_gen$o_GrafanaUser as GrafanaUser, type index_gen$o_GrafanaUserRole as GrafanaUserRole, type index_gen$o_ListContactPointsRequest as ListContactPointsRequest, type index_gen$o_ListContactPointsResponse as ListContactPointsResponse, type index_gen$o_ListDatasourcesRequest as ListDatasourcesRequest, type index_gen$o_ListDatasourcesRequestOrderBy as ListDatasourcesRequestOrderBy, type index_gen$o_ListDatasourcesResponse as ListDatasourcesResponse, type index_gen$o_ListGrafanaProductDashboardsRequest as ListGrafanaProductDashboardsRequest, type index_gen$o_ListGrafanaProductDashboardsResponse as ListGrafanaProductDashboardsResponse, type index_gen$o_ListGrafanaUsersRequest as ListGrafanaUsersRequest, type index_gen$o_ListGrafanaUsersRequestOrderBy as ListGrafanaUsersRequestOrderBy, type index_gen$o_ListGrafanaUsersResponse as ListGrafanaUsersResponse, type index_gen$o_ListPlansRequest as ListPlansRequest, type index_gen$o_ListPlansRequestOrderBy as ListPlansRequestOrderBy, type index_gen$o_ListPlansResponse as ListPlansResponse, type ListTokensRequest$2 as ListTokensRequest, type ListTokensRequestOrderBy$2 as ListTokensRequestOrderBy, type ListTokensResponse$2 as ListTokensResponse, type index_gen$o_Plan as Plan, type index_gen$o_PlanName as PlanName, type index_gen$o_ResetGrafanaUserPasswordRequest as ResetGrafanaUserPasswordRequest, type index_gen$o_SelectPlanRequest as SelectPlanRequest, type index_gen$o_SelectPlanResponse as SelectPlanResponse, type Token$2 as Token, type index_gen$o_TokenScopes as TokenScopes, type index_gen$o_TriggerTestAlertRequest as TriggerTestAlertRequest };
|
|
4267
|
+
export { API$p as API, type index_gen$o_ActivateCockpitRequest as ActivateCockpitRequest, index_gen$o_COCKPIT_TRANSIENT_STATUSES as COCKPIT_TRANSIENT_STATUSES, type index_gen$o_Cockpit as Cockpit, type index_gen$o_CockpitEndpoints as CockpitEndpoints, type index_gen$o_CockpitMetrics as CockpitMetrics, type index_gen$o_CockpitStatus as CockpitStatus, type index_gen$o_ContactPoint as ContactPoint, type index_gen$o_ContactPointEmail as ContactPointEmail, type index_gen$o_CreateContactPointRequest as CreateContactPointRequest, type index_gen$o_CreateDatasourceRequest as CreateDatasourceRequest, type index_gen$o_CreateGrafanaUserRequest as CreateGrafanaUserRequest, type CreateTokenRequest$2 as CreateTokenRequest, type index_gen$o_Datasource as Datasource, type index_gen$o_DatasourceType as DatasourceType, type index_gen$o_DeactivateCockpitRequest as DeactivateCockpitRequest, type index_gen$o_DeleteContactPointRequest as DeleteContactPointRequest, type index_gen$o_DeleteDatasourceRequest as DeleteDatasourceRequest, type index_gen$o_DeleteGrafanaUserRequest as DeleteGrafanaUserRequest, type DeleteTokenRequest$2 as DeleteTokenRequest, type index_gen$o_DisableManagedAlertsRequest as DisableManagedAlertsRequest, type index_gen$o_EnableManagedAlertsRequest as EnableManagedAlertsRequest, type index_gen$o_GetCockpitMetricsRequest as GetCockpitMetricsRequest, type index_gen$o_GetCockpitRequest as GetCockpitRequest, type index_gen$o_GetGrafanaProductDashboardRequest as GetGrafanaProductDashboardRequest, type GetTokenRequest$2 as GetTokenRequest, type index_gen$o_GrafanaProductDashboard as GrafanaProductDashboard, type index_gen$o_GrafanaUser as GrafanaUser, type index_gen$o_GrafanaUserRole as GrafanaUserRole, type index_gen$o_ListContactPointsRequest as ListContactPointsRequest, type index_gen$o_ListContactPointsResponse as ListContactPointsResponse, type index_gen$o_ListDatasourcesRequest as ListDatasourcesRequest, type index_gen$o_ListDatasourcesRequestOrderBy as ListDatasourcesRequestOrderBy, type index_gen$o_ListDatasourcesResponse as ListDatasourcesResponse, type index_gen$o_ListGrafanaProductDashboardsRequest as ListGrafanaProductDashboardsRequest, type index_gen$o_ListGrafanaProductDashboardsResponse as ListGrafanaProductDashboardsResponse, type index_gen$o_ListGrafanaUsersRequest as ListGrafanaUsersRequest, type index_gen$o_ListGrafanaUsersRequestOrderBy as ListGrafanaUsersRequestOrderBy, type index_gen$o_ListGrafanaUsersResponse as ListGrafanaUsersResponse, type index_gen$o_ListPlansRequest as ListPlansRequest, type index_gen$o_ListPlansRequestOrderBy as ListPlansRequestOrderBy, type index_gen$o_ListPlansResponse as ListPlansResponse, type ListTokensRequest$2 as ListTokensRequest, type ListTokensRequestOrderBy$2 as ListTokensRequestOrderBy, type ListTokensResponse$2 as ListTokensResponse, type index_gen$o_Plan as Plan, type index_gen$o_PlanName as PlanName, type index_gen$o_ResetGrafanaUserPasswordRequest as ResetGrafanaUserPasswordRequest, type index_gen$o_SelectPlanRequest as SelectPlanRequest, type index_gen$o_SelectPlanResponse as SelectPlanResponse, type Token$2 as Token, type index_gen$o_TokenScopes as TokenScopes, type index_gen$o_TriggerTestAlertRequest as TriggerTestAlertRequest };
|
|
4256
4268
|
}
|
|
4257
4269
|
|
|
4258
4270
|
declare namespace index$r {
|
|
@@ -11922,7 +11934,7 @@ declare class API$j extends API$v {
|
|
|
11922
11934
|
};
|
|
11923
11935
|
/**
|
|
11924
11936
|
* Get a quota in the Organization. Retrieve information about a resource
|
|
11925
|
-
* quota,
|
|
11937
|
+
* quota, specified by the `quotum_name` parameter. The quota's `limit`, or
|
|
11926
11938
|
* whether it is unlimited, is returned in the response.
|
|
11927
11939
|
*
|
|
11928
11940
|
* @param request - The request {@link GetQuotumRequest}
|
|
@@ -11954,10 +11966,26 @@ declare class API$j extends API$v {
|
|
|
11954
11966
|
*/
|
|
11955
11967
|
deleteJWT: (request: Readonly<DeleteJWTRequest>) => Promise<void>;
|
|
11956
11968
|
protected pageOfListLogs: (request?: Readonly<ListLogsRequest$1>) => Promise<ListLogsResponse>;
|
|
11969
|
+
/**
|
|
11970
|
+
* List logs. List logs available for given Organization. You must define the
|
|
11971
|
+
* `organization_id` in the query path of your request.
|
|
11972
|
+
*
|
|
11973
|
+
* @param request - The request {@link ListLogsRequest}
|
|
11974
|
+
* @returns A Promise of ListLogsResponse
|
|
11975
|
+
*/
|
|
11957
11976
|
listLogs: (request?: Readonly<ListLogsRequest$1>) => Promise<ListLogsResponse> & {
|
|
11958
11977
|
all: () => Promise<Log[]>;
|
|
11959
11978
|
[Symbol.asyncIterator]: () => AsyncGenerator<Log[], void, void>;
|
|
11960
11979
|
};
|
|
11980
|
+
/**
|
|
11981
|
+
* Get a log. Retrieve information about a log, specified by the `log_id`
|
|
11982
|
+
* parameter. The log's full details, including `id`, `ip`, `user_agent`,
|
|
11983
|
+
* `action`, `bearer_id`, `resource_type` and `resource_id` are returned in
|
|
11984
|
+
* the response.
|
|
11985
|
+
*
|
|
11986
|
+
* @param request - The request {@link GetLogRequest}
|
|
11987
|
+
* @returns A Promise of Log
|
|
11988
|
+
*/
|
|
11961
11989
|
getLog: (request: Readonly<GetLogRequest>) => Promise<Log>;
|
|
11962
11990
|
}
|
|
11963
11991
|
|
|
@@ -12263,7 +12291,7 @@ declare namespace index$l {
|
|
|
12263
12291
|
export { index_gen$i as v1alpha1 };
|
|
12264
12292
|
}
|
|
12265
12293
|
|
|
12266
|
-
type Arch = 'x86_64' | 'arm' | 'arm64';
|
|
12294
|
+
type Arch = 'unknown_arch' | 'x86_64' | 'arm' | 'arm64';
|
|
12267
12295
|
type AttachServerVolumeRequestVolumeType = 'unknown_volume_type' | 'l_ssd' | 'b_ssd' | 'sbs_volume';
|
|
12268
12296
|
type BootType = 'local' | 'bootscript' | 'rescue';
|
|
12269
12297
|
type ImageState = 'available' | 'creating' | 'error';
|
|
@@ -12273,10 +12301,10 @@ type ListServersRequestOrder = 'creation_date_desc' | 'creation_date_asc' | 'mod
|
|
|
12273
12301
|
type PlacementGroupPolicyMode = 'optional' | 'enforced';
|
|
12274
12302
|
type PlacementGroupPolicyType = 'max_availability' | 'low_latency';
|
|
12275
12303
|
type PrivateNICState = 'available' | 'syncing' | 'syncing_error';
|
|
12276
|
-
type SecurityGroupPolicy = 'accept' | 'drop';
|
|
12277
|
-
type SecurityGroupRuleAction = 'accept' | 'drop';
|
|
12278
|
-
type SecurityGroupRuleDirection = 'inbound' | 'outbound';
|
|
12279
|
-
type SecurityGroupRuleProtocol = 'TCP' | 'UDP' | 'ICMP' | 'ANY';
|
|
12304
|
+
type SecurityGroupPolicy = 'unknown_policy' | 'accept' | 'drop';
|
|
12305
|
+
type SecurityGroupRuleAction = 'unknown_action' | 'accept' | 'drop';
|
|
12306
|
+
type SecurityGroupRuleDirection = 'unknown_direction' | 'inbound' | 'outbound';
|
|
12307
|
+
type SecurityGroupRuleProtocol = 'unknown_protocol' | 'TCP' | 'UDP' | 'ICMP' | 'ANY';
|
|
12280
12308
|
type SecurityGroupState = 'available' | 'syncing' | 'syncing_error';
|
|
12281
12309
|
type ServerAction = 'poweron' | 'backup' | 'stop_in_place' | 'poweroff' | 'terminate' | 'reboot' | 'enable_routed_ip';
|
|
12282
12310
|
type ServerIpIpFamily = 'inet' | 'inet6';
|
|
@@ -12851,6 +12879,10 @@ interface SetSecurityGroupRulesRequestRule {
|
|
|
12851
12879
|
/** Zone of the rule. This field is ignored. */
|
|
12852
12880
|
zone?: Zone;
|
|
12853
12881
|
}
|
|
12882
|
+
interface VolumeImageUpdateTemplate {
|
|
12883
|
+
/** UUID of the snapshot. */
|
|
12884
|
+
id: string;
|
|
12885
|
+
}
|
|
12854
12886
|
interface SecurityGroupTemplate {
|
|
12855
12887
|
id: string;
|
|
12856
12888
|
name: string;
|
|
@@ -12881,13 +12913,9 @@ type ApplyBlockMigrationRequest = {
|
|
|
12881
12913
|
type AttachServerVolumeRequest = {
|
|
12882
12914
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
12883
12915
|
zone?: Zone;
|
|
12884
|
-
/** UUID of the Instance. */
|
|
12885
12916
|
serverId: string;
|
|
12886
|
-
/** UUID of the Volume to attach. */
|
|
12887
12917
|
volumeId: string;
|
|
12888
|
-
/** Type of the volume to attach. */
|
|
12889
12918
|
volumeType?: AttachServerVolumeRequestVolumeType;
|
|
12890
|
-
/** Force the Instance to boot on this volume. */
|
|
12891
12919
|
boot?: boolean;
|
|
12892
12920
|
};
|
|
12893
12921
|
interface AttachServerVolumeResponse {
|
|
@@ -13267,9 +13295,7 @@ type DeleteVolumeRequest$1 = {
|
|
|
13267
13295
|
type DetachServerVolumeRequest = {
|
|
13268
13296
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
13269
13297
|
zone?: Zone;
|
|
13270
|
-
/** UUID of the Instance. */
|
|
13271
13298
|
serverId: string;
|
|
13272
|
-
/** UUID of the Volume to detach. */
|
|
13273
13299
|
volumeId: string;
|
|
13274
13300
|
};
|
|
13275
13301
|
interface DetachServerVolumeResponse {
|
|
@@ -13847,6 +13873,28 @@ type SetSecurityGroupRulesRequest = {
|
|
|
13847
13873
|
interface SetSecurityGroupRulesResponse {
|
|
13848
13874
|
rules: SecurityGroupRule[];
|
|
13849
13875
|
}
|
|
13876
|
+
type UpdateImageRequest$1 = {
|
|
13877
|
+
/** Zone to target. If none is passed will use default zone from the config. */
|
|
13878
|
+
zone?: Zone;
|
|
13879
|
+
/** UUID of the image. */
|
|
13880
|
+
imageId: string;
|
|
13881
|
+
/** Name of the image. */
|
|
13882
|
+
name?: string;
|
|
13883
|
+
/** Architecture of the image. */
|
|
13884
|
+
arch?: Arch;
|
|
13885
|
+
/**
|
|
13886
|
+
* Additional snapshots of the image, with extra_volumeKey being the position
|
|
13887
|
+
* of the snapshot in the image.
|
|
13888
|
+
*/
|
|
13889
|
+
extraVolumes?: Record<string, VolumeImageUpdateTemplate>;
|
|
13890
|
+
/** Tags of the image. */
|
|
13891
|
+
tags?: string[];
|
|
13892
|
+
/** True to set the image as public. */
|
|
13893
|
+
public?: boolean;
|
|
13894
|
+
};
|
|
13895
|
+
interface UpdateImageResponse {
|
|
13896
|
+
image?: Image$3;
|
|
13897
|
+
}
|
|
13850
13898
|
type UpdateIpRequest$1 = {
|
|
13851
13899
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
13852
13900
|
zone?: Zone;
|
|
@@ -13902,6 +13950,67 @@ type UpdatePrivateNICRequest = {
|
|
|
13902
13950
|
/** Tags used to select private NIC/s. */
|
|
13903
13951
|
tags?: string[];
|
|
13904
13952
|
};
|
|
13953
|
+
type UpdateSecurityGroupRequest = {
|
|
13954
|
+
/** Zone to target. If none is passed will use default zone from the config. */
|
|
13955
|
+
zone?: Zone;
|
|
13956
|
+
/** UUID of the security group. */
|
|
13957
|
+
securityGroupId: string;
|
|
13958
|
+
/** Name of the security group. */
|
|
13959
|
+
name?: string;
|
|
13960
|
+
/** Description of the security group. */
|
|
13961
|
+
description?: string;
|
|
13962
|
+
/**
|
|
13963
|
+
* True to block SMTP on IPv4 and IPv6. This feature is read only, please open
|
|
13964
|
+
* a support ticket if you need to make it configurable.
|
|
13965
|
+
*/
|
|
13966
|
+
enableDefaultSecurity?: boolean;
|
|
13967
|
+
/** Default inbound policy. */
|
|
13968
|
+
inboundDefaultPolicy?: SecurityGroupPolicy;
|
|
13969
|
+
/** Tags of the security group. */
|
|
13970
|
+
tags?: string[];
|
|
13971
|
+
/** @deprecated Please use project_default instead. */
|
|
13972
|
+
organizationDefault?: boolean;
|
|
13973
|
+
/** True use this security group for future Instances created in this project. */
|
|
13974
|
+
projectDefault?: boolean;
|
|
13975
|
+
/** Default outbound policy. */
|
|
13976
|
+
outboundDefaultPolicy?: SecurityGroupPolicy;
|
|
13977
|
+
/** True to set the security group as stateful. */
|
|
13978
|
+
stateful?: boolean;
|
|
13979
|
+
};
|
|
13980
|
+
interface UpdateSecurityGroupResponse {
|
|
13981
|
+
securityGroup?: SecurityGroup;
|
|
13982
|
+
}
|
|
13983
|
+
type UpdateSecurityGroupRuleRequest = {
|
|
13984
|
+
/** Zone to target. If none is passed will use default zone from the config. */
|
|
13985
|
+
zone?: Zone;
|
|
13986
|
+
/** UUID of the security group. */
|
|
13987
|
+
securityGroupId: string;
|
|
13988
|
+
/** UUID of the rule. */
|
|
13989
|
+
securityGroupRuleId: string;
|
|
13990
|
+
/** Protocol family this rule applies to. */
|
|
13991
|
+
protocol?: SecurityGroupRuleProtocol;
|
|
13992
|
+
/** Direction the rule applies to. */
|
|
13993
|
+
direction?: SecurityGroupRuleDirection;
|
|
13994
|
+
/** Action to apply when the rule matches a packet. */
|
|
13995
|
+
action?: SecurityGroupRuleAction;
|
|
13996
|
+
/** Range of IP addresses these rules apply to. */
|
|
13997
|
+
ipRange?: string;
|
|
13998
|
+
/**
|
|
13999
|
+
* Beginning of the range of ports this rule applies to (inclusive). If 0 is
|
|
14000
|
+
* provided, unset the parameter.
|
|
14001
|
+
*/
|
|
14002
|
+
destPortFrom?: number;
|
|
14003
|
+
/**
|
|
14004
|
+
* End of the range of ports this rule applies to (inclusive). If 0 is
|
|
14005
|
+
* provided, unset the parameter.
|
|
14006
|
+
*/
|
|
14007
|
+
destPortTo?: number;
|
|
14008
|
+
/** Position of this rule in the security group rules list. */
|
|
14009
|
+
position?: number;
|
|
14010
|
+
};
|
|
14011
|
+
interface UpdateSecurityGroupRuleResponse {
|
|
14012
|
+
rule?: SecurityGroupRule;
|
|
14013
|
+
}
|
|
13905
14014
|
type UpdateServerRequest = {
|
|
13906
14015
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
13907
14016
|
zone?: Zone;
|
|
@@ -13945,6 +14054,19 @@ type UpdateServerRequest = {
|
|
|
13945
14054
|
interface UpdateServerResponse {
|
|
13946
14055
|
server?: Server;
|
|
13947
14056
|
}
|
|
14057
|
+
type UpdateSnapshotRequest$1 = {
|
|
14058
|
+
/** Zone to target. If none is passed will use default zone from the config. */
|
|
14059
|
+
zone?: Zone;
|
|
14060
|
+
/** UUID of the snapshot. */
|
|
14061
|
+
snapshotId: string;
|
|
14062
|
+
/** Name of the snapshot. */
|
|
14063
|
+
name?: string;
|
|
14064
|
+
/** Tags of the snapshot. */
|
|
14065
|
+
tags?: string[];
|
|
14066
|
+
};
|
|
14067
|
+
interface UpdateSnapshotResponse {
|
|
14068
|
+
snapshot?: Snapshot$1;
|
|
14069
|
+
}
|
|
13948
14070
|
type UpdateVolumeRequest$1 = {
|
|
13949
14071
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
13950
14072
|
zone?: Zone;
|
|
@@ -13967,7 +14089,7 @@ interface SetImageResponse {
|
|
|
13967
14089
|
type SetSecurityGroupRequest = {
|
|
13968
14090
|
/** Zone to target. If none is passed will use default zone from the config. */
|
|
13969
14091
|
zone?: Zone;
|
|
13970
|
-
/**
|
|
14092
|
+
/** UUID of the security group. */
|
|
13971
14093
|
id: string;
|
|
13972
14094
|
/** Name of the security group. */
|
|
13973
14095
|
name: string;
|
|
@@ -14210,19 +14332,7 @@ declare class API$i extends API$v {
|
|
|
14210
14332
|
* @param request - The request {@link DeleteServerUserDataRequest}
|
|
14211
14333
|
*/
|
|
14212
14334
|
deleteServerUserData: (request: Readonly<DeleteServerUserDataRequest>) => Promise<void>;
|
|
14213
|
-
/**
|
|
14214
|
-
* Attach a volume to a server.
|
|
14215
|
-
*
|
|
14216
|
-
* @param request - The request {@link AttachServerVolumeRequest}
|
|
14217
|
-
* @returns A Promise of AttachServerVolumeResponse
|
|
14218
|
-
*/
|
|
14219
14335
|
attachServerVolume: (request: Readonly<AttachServerVolumeRequest>) => Promise<AttachServerVolumeResponse>;
|
|
14220
|
-
/**
|
|
14221
|
-
* Detach a volume from a server.
|
|
14222
|
-
*
|
|
14223
|
-
* @param request - The request {@link DetachServerVolumeRequest}
|
|
14224
|
-
* @returns A Promise of DetachServerVolumeResponse
|
|
14225
|
-
*/
|
|
14226
14336
|
detachServerVolume: (request: Readonly<DetachServerVolumeRequest>) => Promise<DetachServerVolumeResponse>;
|
|
14227
14337
|
protected pageOfListImages: (request?: Readonly<ListImagesRequest$3>) => Promise<ListImagesResponse$3>;
|
|
14228
14338
|
/**
|
|
@@ -14251,6 +14361,13 @@ declare class API$i extends API$v {
|
|
|
14251
14361
|
*/
|
|
14252
14362
|
createImage: (request: Readonly<CreateImageRequest>) => Promise<CreateImageResponse>;
|
|
14253
14363
|
protected _setImage: (request: Readonly<SetImageRequest>) => Promise<SetImageResponse>;
|
|
14364
|
+
/**
|
|
14365
|
+
* Update image. Update the properties of an image.
|
|
14366
|
+
*
|
|
14367
|
+
* @param request - The request {@link UpdateImageRequest}
|
|
14368
|
+
* @returns A Promise of UpdateImageResponse
|
|
14369
|
+
*/
|
|
14370
|
+
updateImage: (request: Readonly<UpdateImageRequest$1>) => Promise<UpdateImageResponse>;
|
|
14254
14371
|
/**
|
|
14255
14372
|
* Delete an Instance image. Delete the image with the specified ID.
|
|
14256
14373
|
*
|
|
@@ -14286,6 +14403,13 @@ declare class API$i extends API$v {
|
|
|
14286
14403
|
*/
|
|
14287
14404
|
getSnapshot: (request: Readonly<GetSnapshotRequest$1>) => Promise<GetSnapshotResponse>;
|
|
14288
14405
|
protected _setSnapshot: (request: Readonly<SetSnapshotRequest>) => Promise<SetSnapshotResponse>;
|
|
14406
|
+
/**
|
|
14407
|
+
* Update a snapshot. Update the properties of a snapshot.
|
|
14408
|
+
*
|
|
14409
|
+
* @param request - The request {@link UpdateSnapshotRequest}
|
|
14410
|
+
* @returns A Promise of UpdateSnapshotResponse
|
|
14411
|
+
*/
|
|
14412
|
+
updateSnapshot: (request: Readonly<UpdateSnapshotRequest$1>) => Promise<UpdateSnapshotResponse>;
|
|
14289
14413
|
/**
|
|
14290
14414
|
* Delete a snapshot. Delete the snapshot with the specified ID.
|
|
14291
14415
|
*
|
|
@@ -14376,6 +14500,13 @@ declare class API$i extends API$v {
|
|
|
14376
14500
|
*/
|
|
14377
14501
|
deleteSecurityGroup: (request: Readonly<DeleteSecurityGroupRequest>) => Promise<void>;
|
|
14378
14502
|
protected _setSecurityGroup: (request: Readonly<SetSecurityGroupRequest>) => Promise<SetSecurityGroupResponse>;
|
|
14503
|
+
/**
|
|
14504
|
+
* Update a security group. Update the properties of security group.
|
|
14505
|
+
*
|
|
14506
|
+
* @param request - The request {@link UpdateSecurityGroupRequest}
|
|
14507
|
+
* @returns A Promise of UpdateSecurityGroupResponse
|
|
14508
|
+
*/
|
|
14509
|
+
updateSecurityGroup: (request: Readonly<UpdateSecurityGroupRequest>) => Promise<UpdateSecurityGroupResponse>;
|
|
14379
14510
|
/**
|
|
14380
14511
|
* Get default rules. Lists the default rules applied to all the security
|
|
14381
14512
|
* groups.
|
|
@@ -14426,6 +14557,14 @@ declare class API$i extends API$v {
|
|
|
14426
14557
|
*/
|
|
14427
14558
|
getSecurityGroupRule: (request: Readonly<GetSecurityGroupRuleRequest>) => Promise<GetSecurityGroupRuleResponse>;
|
|
14428
14559
|
protected _setSecurityGroupRule: (request: Readonly<SetSecurityGroupRuleRequest>) => Promise<SetSecurityGroupRuleResponse>;
|
|
14560
|
+
/**
|
|
14561
|
+
* Update security group rule. Update the properties of a rule from a
|
|
14562
|
+
* specified security group.
|
|
14563
|
+
*
|
|
14564
|
+
* @param request - The request {@link UpdateSecurityGroupRuleRequest}
|
|
14565
|
+
* @returns A Promise of UpdateSecurityGroupRuleResponse
|
|
14566
|
+
*/
|
|
14567
|
+
updateSecurityGroupRule: (request: Readonly<UpdateSecurityGroupRuleRequest>) => Promise<UpdateSecurityGroupRuleResponse>;
|
|
14429
14568
|
protected pageOfListPlacementGroups: (request?: Readonly<ListPlacementGroupsRequest>) => Promise<ListPlacementGroupsResponse>;
|
|
14430
14569
|
/**
|
|
14431
14570
|
* List placement groups. List all placement groups in a specified
|
|
@@ -14622,62 +14761,6 @@ declare class API$i extends API$v {
|
|
|
14622
14761
|
applyBlockMigration: (request: Readonly<ApplyBlockMigrationRequest>) => Promise<void>;
|
|
14623
14762
|
}
|
|
14624
14763
|
|
|
14625
|
-
type UpdateSnapshotRequest$1 = {
|
|
14626
|
-
/** Zone to target. If none is passed will use default zone from the config */
|
|
14627
|
-
zone?: Zone;
|
|
14628
|
-
/** UUID of the snapshot you want to update */
|
|
14629
|
-
snapshotId: string;
|
|
14630
|
-
/** Name of the snapshot */
|
|
14631
|
-
name?: string;
|
|
14632
|
-
};
|
|
14633
|
-
interface UpdateSnapshotResponse {
|
|
14634
|
-
snapshot?: Snapshot$1;
|
|
14635
|
-
}
|
|
14636
|
-
/** UpdateSecurityGroupRequest contains the parameters to update a security group */
|
|
14637
|
-
type UpdateSecurityGroupRequest = {
|
|
14638
|
-
/** Zone to target. If none is passed will use default zone from the config */
|
|
14639
|
-
zone?: Zone;
|
|
14640
|
-
securityGroupId: string;
|
|
14641
|
-
name?: string;
|
|
14642
|
-
description?: string;
|
|
14643
|
-
inboundDefaultPolicy?: SecurityGroupPolicy;
|
|
14644
|
-
outboundDefaultPolicy?: SecurityGroupPolicy;
|
|
14645
|
-
stateful?: boolean;
|
|
14646
|
-
organizationDefault?: boolean;
|
|
14647
|
-
projectDefault?: boolean;
|
|
14648
|
-
enableDefaultSecurity?: boolean;
|
|
14649
|
-
};
|
|
14650
|
-
interface UpdateSecurityGroupResponse {
|
|
14651
|
-
securityGroup?: SecurityGroup;
|
|
14652
|
-
}
|
|
14653
|
-
/**
|
|
14654
|
-
* UpdateSecurityGroupRuleRequest contains the parameters to update a security
|
|
14655
|
-
* group rule
|
|
14656
|
-
*/
|
|
14657
|
-
type UpdateSecurityGroupRuleRequest = {
|
|
14658
|
-
/** Zone to target. If none is passed will use default zone from the config */
|
|
14659
|
-
zone?: Zone;
|
|
14660
|
-
securityGroupId: string;
|
|
14661
|
-
securityGroupRuleId: string;
|
|
14662
|
-
protocol?: SecurityGroupRuleProtocol;
|
|
14663
|
-
direction?: SecurityGroupRuleDirection;
|
|
14664
|
-
action?: SecurityGroupRuleAction;
|
|
14665
|
-
ipRange?: string;
|
|
14666
|
-
position?: number;
|
|
14667
|
-
/**
|
|
14668
|
-
* If set to 0, DestPortFrom will be removed. See
|
|
14669
|
-
* SecurityGroupRule.DestPortFrom for more information
|
|
14670
|
-
*/
|
|
14671
|
-
destPortFrom?: number;
|
|
14672
|
-
/**
|
|
14673
|
-
* If set to 0, DestPortTo will be removed. See SecurityGroupRule.DestPortTo
|
|
14674
|
-
* for more information
|
|
14675
|
-
*/
|
|
14676
|
-
destPortTo?: number;
|
|
14677
|
-
};
|
|
14678
|
-
interface UpdateSecurityGroupRuleResponse {
|
|
14679
|
-
rule?: SecurityGroupRule;
|
|
14680
|
-
}
|
|
14681
14764
|
type AttachVolumeRequest = {
|
|
14682
14765
|
zone?: Zone;
|
|
14683
14766
|
serverId: string;
|
|
@@ -14695,16 +14778,6 @@ type DetachVolumeRequest = {
|
|
|
14695
14778
|
interface DetachVolumeResponse {
|
|
14696
14779
|
server?: Server;
|
|
14697
14780
|
}
|
|
14698
|
-
type UpdateImageRequest$1 = {
|
|
14699
|
-
/** Zone to target. If none is passed will use default zone from the config */
|
|
14700
|
-
zone?: Zone;
|
|
14701
|
-
imageId: string;
|
|
14702
|
-
name?: string;
|
|
14703
|
-
tags?: string[];
|
|
14704
|
-
};
|
|
14705
|
-
interface UpdateImageResponse {
|
|
14706
|
-
image?: Image$3;
|
|
14707
|
-
}
|
|
14708
14781
|
type GetServerUserDataRequest = {
|
|
14709
14782
|
/** Zone to target. If none is passed will use default zone from the config */
|
|
14710
14783
|
zone?: Zone;
|
|
@@ -14763,27 +14836,6 @@ declare class InstanceV1UtilsAPI extends API$i {
|
|
|
14763
14836
|
* @returns A Promise of Volume
|
|
14764
14837
|
*/
|
|
14765
14838
|
waitForVolume: (request: Readonly<GetVolumeRequest$1>, options?: Readonly<WaitForOptions<Volume$2>>) => Promise<Volume$2>;
|
|
14766
|
-
/**
|
|
14767
|
-
* Updates a snapshot.
|
|
14768
|
-
*
|
|
14769
|
-
* @param request - The request {@link UpdateSnapshotRequest}
|
|
14770
|
-
* @returns A Promise of UpdateSnapshotResponse
|
|
14771
|
-
*/
|
|
14772
|
-
updateSnapshot: (request: Readonly<UpdateSnapshotRequest$1>) => Promise<UpdateSnapshotResponse>;
|
|
14773
|
-
/**
|
|
14774
|
-
* Updates a security group.
|
|
14775
|
-
*
|
|
14776
|
-
* @param request - The request {@link UpdateSecurityGroupRequest}
|
|
14777
|
-
* @returns A Promise of UpdateSecurityGroupResponse
|
|
14778
|
-
*/
|
|
14779
|
-
updateSecurityGroup: (request: UpdateSecurityGroupRequest) => Promise<UpdateSecurityGroupResponse>;
|
|
14780
|
-
/**
|
|
14781
|
-
* Updates a security group rule.
|
|
14782
|
-
*
|
|
14783
|
-
* @param request - The request {@link UpdateSecurityGroupRuleRequest}
|
|
14784
|
-
* @returns A Promise of UpdateSecurityGroupRuleResponse
|
|
14785
|
-
*/
|
|
14786
|
-
updateSecurityGroupRule: (request: UpdateSecurityGroupRuleRequest) => Promise<UpdateSecurityGroupRuleResponse>;
|
|
14787
14839
|
/**
|
|
14788
14840
|
* Updates a server.
|
|
14789
14841
|
*
|
|
@@ -14820,13 +14872,6 @@ declare class InstanceV1UtilsAPI extends API$i {
|
|
|
14820
14872
|
* @returns A Promise of DetachVolumeResponse
|
|
14821
14873
|
*/
|
|
14822
14874
|
detachVolume: (request: DetachVolumeRequest) => Promise<DetachVolumeResponse>;
|
|
14823
|
-
/**
|
|
14824
|
-
* Updates an image.
|
|
14825
|
-
*
|
|
14826
|
-
* @param request - The request {@link UpdateImageRequest}
|
|
14827
|
-
* @returns A Promise of UpdateImageResponse
|
|
14828
|
-
*/
|
|
14829
|
-
updateImage: (request: Readonly<UpdateImageRequest$1>) => Promise<UpdateImageResponse>;
|
|
14830
14875
|
/**
|
|
14831
14876
|
* Get the content of a user data on a server for the given key.
|
|
14832
14877
|
*
|
|
@@ -15025,6 +15070,7 @@ type index$k_UpdateSnapshotResponse = UpdateSnapshotResponse;
|
|
|
15025
15070
|
type index$k_UpdateVolumeResponse = UpdateVolumeResponse;
|
|
15026
15071
|
declare const index$k_VOLUME_SERVER_TRANSIENT_STATUSES: typeof VOLUME_SERVER_TRANSIENT_STATUSES;
|
|
15027
15072
|
declare const index$k_VOLUME_TRANSIENT_STATUSES: typeof VOLUME_TRANSIENT_STATUSES;
|
|
15073
|
+
type index$k_VolumeImageUpdateTemplate = VolumeImageUpdateTemplate;
|
|
15028
15074
|
type index$k_VolumeServer = VolumeServer;
|
|
15029
15075
|
type index$k_VolumeServerState = VolumeServerState;
|
|
15030
15076
|
type index$k_VolumeServerTemplate = VolumeServerTemplate;
|
|
@@ -15036,7 +15082,7 @@ type index$k_VolumeTypeCapabilities = VolumeTypeCapabilities;
|
|
|
15036
15082
|
type index$k_VolumeTypeConstraints = VolumeTypeConstraints;
|
|
15037
15083
|
type index$k_VolumeVolumeType = VolumeVolumeType;
|
|
15038
15084
|
declare namespace index$k {
|
|
15039
|
-
export { InstanceV1UtilsAPI as API, type index$k_ApplyBlockMigrationRequest as ApplyBlockMigrationRequest, type index$k_Arch as Arch, type index$k_AttachServerVolumeRequest as AttachServerVolumeRequest, type index$k_AttachServerVolumeRequestVolumeType as AttachServerVolumeRequestVolumeType, type index$k_AttachServerVolumeResponse as AttachServerVolumeResponse, type index$k_AttachVolumeRequest as AttachVolumeRequest, type index$k_AttachVolumeResponse as AttachVolumeResponse, type index$k_BootType as BootType, type index$k_Bootscript as Bootscript, type index$k_CreateImageRequest as CreateImageRequest, type index$k_CreateImageResponse as CreateImageResponse, type CreateIpRequest$1 as CreateIpRequest, type index$k_CreateIpResponse as CreateIpResponse, type index$k_CreatePlacementGroupRequest as CreatePlacementGroupRequest, type index$k_CreatePlacementGroupResponse as CreatePlacementGroupResponse, type index$k_CreatePrivateNICRequest as CreatePrivateNICRequest, type index$k_CreatePrivateNICResponse as CreatePrivateNICResponse, type index$k_CreateSecurityGroupRequest as CreateSecurityGroupRequest, type index$k_CreateSecurityGroupResponse as CreateSecurityGroupResponse, type index$k_CreateSecurityGroupRuleRequest as CreateSecurityGroupRuleRequest, type index$k_CreateSecurityGroupRuleResponse as CreateSecurityGroupRuleResponse, type index$k_CreateServerRequest as CreateServerRequest, type index$k_CreateServerResponse as CreateServerResponse, type CreateSnapshotRequest$1 as CreateSnapshotRequest, type index$k_CreateSnapshotResponse as CreateSnapshotResponse, type CreateVolumeRequest$1 as CreateVolumeRequest, type index$k_CreateVolumeResponse as CreateVolumeResponse, type index$k_Dashboard as Dashboard, type DeleteImageRequest$1 as DeleteImageRequest, type index$k_DeleteIpRequest as DeleteIpRequest, type index$k_DeletePlacementGroupRequest as DeletePlacementGroupRequest, type index$k_DeletePrivateNICRequest as DeletePrivateNICRequest, type index$k_DeleteSecurityGroupRequest as DeleteSecurityGroupRequest, type index$k_DeleteSecurityGroupRuleRequest as DeleteSecurityGroupRuleRequest, type index$k_DeleteServerRequest as DeleteServerRequest, type index$k_DeleteServerUserDataRequest as DeleteServerUserDataRequest, type DeleteSnapshotRequest$1 as DeleteSnapshotRequest, type DeleteVolumeRequest$1 as DeleteVolumeRequest, type index$k_DetachServerVolumeRequest as DetachServerVolumeRequest, type index$k_DetachServerVolumeResponse as DetachServerVolumeResponse, type index$k_DetachVolumeRequest as DetachVolumeRequest, type index$k_DetachVolumeResponse as DetachVolumeResponse, type index$k_ExportSnapshotRequest as ExportSnapshotRequest, type index$k_ExportSnapshotResponse as ExportSnapshotResponse, type index$k_GetBootscriptRequest as GetBootscriptRequest, type index$k_GetBootscriptResponse as GetBootscriptResponse, type index$k_GetDashboardRequest as GetDashboardRequest, type index$k_GetDashboardResponse as GetDashboardResponse, type GetImageRequest$3 as GetImageRequest, type GetImageResponse$1 as GetImageResponse, type GetIpRequest$1 as GetIpRequest, type index$k_GetIpResponse as GetIpResponse, type index$k_GetPlacementGroupRequest as GetPlacementGroupRequest, type index$k_GetPlacementGroupResponse as GetPlacementGroupResponse, type index$k_GetPlacementGroupServersRequest as GetPlacementGroupServersRequest, type index$k_GetPlacementGroupServersResponse as GetPlacementGroupServersResponse, type index$k_GetPrivateNICRequest as GetPrivateNICRequest, type index$k_GetPrivateNICResponse as GetPrivateNICResponse, type index$k_GetSecurityGroupRequest as GetSecurityGroupRequest, type index$k_GetSecurityGroupResponse as GetSecurityGroupResponse, type index$k_GetSecurityGroupRuleRequest as GetSecurityGroupRuleRequest, type index$k_GetSecurityGroupRuleResponse as GetSecurityGroupRuleResponse, type index$k_GetServerRequest as GetServerRequest, type index$k_GetServerResponse as GetServerResponse, type index$k_GetServerTypesAvailabilityRequest as GetServerTypesAvailabilityRequest, type index$k_GetServerTypesAvailabilityResponse as GetServerTypesAvailabilityResponse, type index$k_GetServerTypesAvailabilityResponseAvailability as GetServerTypesAvailabilityResponseAvailability, type index$k_GetServerUserDataRequest as GetServerUserDataRequest, type GetSnapshotRequest$1 as GetSnapshotRequest, type index$k_GetSnapshotResponse as GetSnapshotResponse, type GetVolumeRequest$1 as GetVolumeRequest, type index$k_GetVolumeResponse as GetVolumeResponse, IMAGE_TRANSIENT_STATUSES$1 as IMAGE_TRANSIENT_STATUSES, index$k_IP_TRANSIENT_STATUSES as IP_TRANSIENT_STATUSES, type Image$3 as Image, type index$k_ImageState as ImageState, type Ip$1 as Ip, type index$k_IpState as IpState, type index$k_IpType as IpType, type index$k_ListBootscriptsRequest as ListBootscriptsRequest, type index$k_ListBootscriptsResponse as ListBootscriptsResponse, type index$k_ListDefaultSecurityGroupRulesRequest as ListDefaultSecurityGroupRulesRequest, type ListImagesRequest$3 as ListImagesRequest, type ListImagesResponse$3 as ListImagesResponse, type index$k_ListIpsRequest as ListIpsRequest, type ListIpsResponse$1 as ListIpsResponse, type index$k_ListPlacementGroupsRequest as ListPlacementGroupsRequest, type index$k_ListPlacementGroupsResponse as ListPlacementGroupsResponse, type index$k_ListPrivateNICsRequest as ListPrivateNICsRequest, type index$k_ListPrivateNICsResponse as ListPrivateNICsResponse, type index$k_ListSecurityGroupRulesRequest as ListSecurityGroupRulesRequest, type index$k_ListSecurityGroupRulesResponse as ListSecurityGroupRulesResponse, type index$k_ListSecurityGroupsRequest as ListSecurityGroupsRequest, type index$k_ListSecurityGroupsResponse as ListSecurityGroupsResponse, type index$k_ListServerActionsRequest as ListServerActionsRequest, type index$k_ListServerActionsResponse as ListServerActionsResponse, type index$k_ListServerUserDataRequest as ListServerUserDataRequest, type index$k_ListServerUserDataResponse as ListServerUserDataResponse, type index$k_ListServersRequest as ListServersRequest, type index$k_ListServersRequestOrder as ListServersRequestOrder, type index$k_ListServersResponse as ListServersResponse, type index$k_ListServersTypesRequest as ListServersTypesRequest, type index$k_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$k_ListVolumesTypesRequest as ListVolumesTypesRequest, type index$k_ListVolumesTypesResponse as ListVolumesTypesResponse, type index$k_MigrationPlan as MigrationPlan, index$k_PRIVATE_NIC_TRANSIENT_STATUSES as PRIVATE_NIC_TRANSIENT_STATUSES, type index$k_PlacementGroup as PlacementGroup, type index$k_PlacementGroupPolicyMode as PlacementGroupPolicyMode, type index$k_PlacementGroupPolicyType as PlacementGroupPolicyType, type index$k_PlacementGroupServer as PlacementGroupServer, type index$k_PlanBlockMigrationRequest as PlanBlockMigrationRequest, type index$k_PrivateNIC as PrivateNIC, type index$k_PrivateNICState as PrivateNICState, index$k_SECURITY_GROUP_TRANSIENT_STATUSES as SECURITY_GROUP_TRANSIENT_STATUSES, index$k_SERVER_IP_TRANSIENT_STATUSES as SERVER_IP_TRANSIENT_STATUSES, index$k_SERVER_TRANSIENT_STATUSES as SERVER_TRANSIENT_STATUSES, SNAPSHOT_TRANSIENT_STATUSES$1 as SNAPSHOT_TRANSIENT_STATUSES, type index$k_SecurityGroup as SecurityGroup, type index$k_SecurityGroupPolicy as SecurityGroupPolicy, type index$k_SecurityGroupRule as SecurityGroupRule, type index$k_SecurityGroupRuleAction as SecurityGroupRuleAction, type index$k_SecurityGroupRuleDirection as SecurityGroupRuleDirection, type index$k_SecurityGroupRuleProtocol as SecurityGroupRuleProtocol, type index$k_SecurityGroupState as SecurityGroupState, type index$k_SecurityGroupSummary as SecurityGroupSummary, type index$k_SecurityGroupTemplate as SecurityGroupTemplate, type index$k_Server as Server, type index$k_ServerAction as ServerAction, type index$k_ServerActionRequest as ServerActionRequest, type index$k_ServerActionRequestVolumeBackupTemplate as ServerActionRequestVolumeBackupTemplate, type index$k_ServerActionResponse as ServerActionResponse, type index$k_ServerIp as ServerIp, type index$k_ServerIpIpFamily as ServerIpIpFamily, type index$k_ServerIpProvisioningMode as ServerIpProvisioningMode, type index$k_ServerIpState as ServerIpState, type index$k_ServerIpv6 as ServerIpv6, type index$k_ServerLocation as ServerLocation, type index$k_ServerMaintenance as ServerMaintenance, type index$k_ServerState as ServerState, type index$k_ServerSummary as ServerSummary, type index$k_ServerType as ServerType, type index$k_ServerTypeCapabilities as ServerTypeCapabilities, type index$k_ServerTypeNetwork as ServerTypeNetwork, type index$k_ServerTypeNetworkInterface as ServerTypeNetworkInterface, type index$k_ServerTypeVolumeConstraintSizes as ServerTypeVolumeConstraintSizes, type index$k_ServerTypeVolumeConstraintsByType as ServerTypeVolumeConstraintsByType, type index$k_ServerTypesAvailability as ServerTypesAvailability, type index$k_SetImageRequest as SetImageRequest, type index$k_SetPlacementGroupRequest as SetPlacementGroupRequest, type index$k_SetPlacementGroupResponse as SetPlacementGroupResponse, type index$k_SetPlacementGroupServersRequest as SetPlacementGroupServersRequest, type index$k_SetPlacementGroupServersResponse as SetPlacementGroupServersResponse, type index$k_SetSecurityGroupRulesRequest as SetSecurityGroupRulesRequest, type index$k_SetSecurityGroupRulesRequestRule as SetSecurityGroupRulesRequestRule, type index$k_SetSecurityGroupRulesResponse as SetSecurityGroupRulesResponse, type index$k_SetServerUserDataRequest as SetServerUserDataRequest, type Snapshot$1 as Snapshot, type index$k_SnapshotBaseVolume as SnapshotBaseVolume, type index$k_SnapshotState as SnapshotState, type index$k_SnapshotVolumeType as SnapshotVolumeType, index$k_TASK_TRANSIENT_STATUSES as TASK_TRANSIENT_STATUSES, type index$k_Task as Task, type index$k_TaskStatus as TaskStatus, type UpdateImageRequest$1 as UpdateImageRequest, type index$k_UpdateImageResponse as UpdateImageResponse, type UpdateIpRequest$1 as UpdateIpRequest, type index$k_UpdateIpResponse as UpdateIpResponse, type index$k_UpdatePlacementGroupRequest as UpdatePlacementGroupRequest, type index$k_UpdatePlacementGroupResponse as UpdatePlacementGroupResponse, type index$k_UpdatePlacementGroupServersRequest as UpdatePlacementGroupServersRequest, type index$k_UpdatePlacementGroupServersResponse as UpdatePlacementGroupServersResponse, type index$k_UpdatePrivateNICRequest as UpdatePrivateNICRequest, type index$k_UpdateSecurityGroupRequest as UpdateSecurityGroupRequest, type index$k_UpdateSecurityGroupResponse as UpdateSecurityGroupResponse, type index$k_UpdateSecurityGroupRuleRequest as UpdateSecurityGroupRuleRequest, type index$k_UpdateSecurityGroupRuleResponse as UpdateSecurityGroupRuleResponse, type index$k_UpdateServerRequest as UpdateServerRequest, type index$k_UpdateServerResponse as UpdateServerResponse, type UpdateSnapshotRequest$1 as UpdateSnapshotRequest, type index$k_UpdateSnapshotResponse as UpdateSnapshotResponse, type UpdateVolumeRequest$1 as UpdateVolumeRequest, type index$k_UpdateVolumeResponse as UpdateVolumeResponse, index$k_VOLUME_SERVER_TRANSIENT_STATUSES as VOLUME_SERVER_TRANSIENT_STATUSES, index$k_VOLUME_TRANSIENT_STATUSES as VOLUME_TRANSIENT_STATUSES, type Volume$2 as Volume, type index$k_VolumeServer as VolumeServer, type index$k_VolumeServerState as VolumeServerState, type index$k_VolumeServerTemplate as VolumeServerTemplate, type index$k_VolumeServerVolumeType as VolumeServerVolumeType, type index$k_VolumeState as VolumeState, type index$k_VolumeSummary as VolumeSummary, type index$k_VolumeTemplate as VolumeTemplate, type VolumeType$1 as VolumeType, type index$k_VolumeTypeCapabilities as VolumeTypeCapabilities, type index$k_VolumeTypeConstraints as VolumeTypeConstraints, type index$k_VolumeVolumeType as VolumeVolumeType };
|
|
15085
|
+
export { InstanceV1UtilsAPI as API, type index$k_ApplyBlockMigrationRequest as ApplyBlockMigrationRequest, type index$k_Arch as Arch, type index$k_AttachServerVolumeRequest as AttachServerVolumeRequest, type index$k_AttachServerVolumeRequestVolumeType as AttachServerVolumeRequestVolumeType, type index$k_AttachServerVolumeResponse as AttachServerVolumeResponse, type index$k_AttachVolumeRequest as AttachVolumeRequest, type index$k_AttachVolumeResponse as AttachVolumeResponse, type index$k_BootType as BootType, type index$k_Bootscript as Bootscript, type index$k_CreateImageRequest as CreateImageRequest, type index$k_CreateImageResponse as CreateImageResponse, type CreateIpRequest$1 as CreateIpRequest, type index$k_CreateIpResponse as CreateIpResponse, type index$k_CreatePlacementGroupRequest as CreatePlacementGroupRequest, type index$k_CreatePlacementGroupResponse as CreatePlacementGroupResponse, type index$k_CreatePrivateNICRequest as CreatePrivateNICRequest, type index$k_CreatePrivateNICResponse as CreatePrivateNICResponse, type index$k_CreateSecurityGroupRequest as CreateSecurityGroupRequest, type index$k_CreateSecurityGroupResponse as CreateSecurityGroupResponse, type index$k_CreateSecurityGroupRuleRequest as CreateSecurityGroupRuleRequest, type index$k_CreateSecurityGroupRuleResponse as CreateSecurityGroupRuleResponse, type index$k_CreateServerRequest as CreateServerRequest, type index$k_CreateServerResponse as CreateServerResponse, type CreateSnapshotRequest$1 as CreateSnapshotRequest, type index$k_CreateSnapshotResponse as CreateSnapshotResponse, type CreateVolumeRequest$1 as CreateVolumeRequest, type index$k_CreateVolumeResponse as CreateVolumeResponse, type index$k_Dashboard as Dashboard, type DeleteImageRequest$1 as DeleteImageRequest, type index$k_DeleteIpRequest as DeleteIpRequest, type index$k_DeletePlacementGroupRequest as DeletePlacementGroupRequest, type index$k_DeletePrivateNICRequest as DeletePrivateNICRequest, type index$k_DeleteSecurityGroupRequest as DeleteSecurityGroupRequest, type index$k_DeleteSecurityGroupRuleRequest as DeleteSecurityGroupRuleRequest, type index$k_DeleteServerRequest as DeleteServerRequest, type index$k_DeleteServerUserDataRequest as DeleteServerUserDataRequest, type DeleteSnapshotRequest$1 as DeleteSnapshotRequest, type DeleteVolumeRequest$1 as DeleteVolumeRequest, type index$k_DetachServerVolumeRequest as DetachServerVolumeRequest, type index$k_DetachServerVolumeResponse as DetachServerVolumeResponse, type index$k_DetachVolumeRequest as DetachVolumeRequest, type index$k_DetachVolumeResponse as DetachVolumeResponse, type index$k_ExportSnapshotRequest as ExportSnapshotRequest, type index$k_ExportSnapshotResponse as ExportSnapshotResponse, type index$k_GetBootscriptRequest as GetBootscriptRequest, type index$k_GetBootscriptResponse as GetBootscriptResponse, type index$k_GetDashboardRequest as GetDashboardRequest, type index$k_GetDashboardResponse as GetDashboardResponse, type GetImageRequest$3 as GetImageRequest, type GetImageResponse$1 as GetImageResponse, type GetIpRequest$1 as GetIpRequest, type index$k_GetIpResponse as GetIpResponse, type index$k_GetPlacementGroupRequest as GetPlacementGroupRequest, type index$k_GetPlacementGroupResponse as GetPlacementGroupResponse, type index$k_GetPlacementGroupServersRequest as GetPlacementGroupServersRequest, type index$k_GetPlacementGroupServersResponse as GetPlacementGroupServersResponse, type index$k_GetPrivateNICRequest as GetPrivateNICRequest, type index$k_GetPrivateNICResponse as GetPrivateNICResponse, type index$k_GetSecurityGroupRequest as GetSecurityGroupRequest, type index$k_GetSecurityGroupResponse as GetSecurityGroupResponse, type index$k_GetSecurityGroupRuleRequest as GetSecurityGroupRuleRequest, type index$k_GetSecurityGroupRuleResponse as GetSecurityGroupRuleResponse, type index$k_GetServerRequest as GetServerRequest, type index$k_GetServerResponse as GetServerResponse, type index$k_GetServerTypesAvailabilityRequest as GetServerTypesAvailabilityRequest, type index$k_GetServerTypesAvailabilityResponse as GetServerTypesAvailabilityResponse, type index$k_GetServerTypesAvailabilityResponseAvailability as GetServerTypesAvailabilityResponseAvailability, type index$k_GetServerUserDataRequest as GetServerUserDataRequest, type GetSnapshotRequest$1 as GetSnapshotRequest, type index$k_GetSnapshotResponse as GetSnapshotResponse, type GetVolumeRequest$1 as GetVolumeRequest, type index$k_GetVolumeResponse as GetVolumeResponse, IMAGE_TRANSIENT_STATUSES$1 as IMAGE_TRANSIENT_STATUSES, index$k_IP_TRANSIENT_STATUSES as IP_TRANSIENT_STATUSES, type Image$3 as Image, type index$k_ImageState as ImageState, type Ip$1 as Ip, type index$k_IpState as IpState, type index$k_IpType as IpType, type index$k_ListBootscriptsRequest as ListBootscriptsRequest, type index$k_ListBootscriptsResponse as ListBootscriptsResponse, type index$k_ListDefaultSecurityGroupRulesRequest as ListDefaultSecurityGroupRulesRequest, type ListImagesRequest$3 as ListImagesRequest, type ListImagesResponse$3 as ListImagesResponse, type index$k_ListIpsRequest as ListIpsRequest, type ListIpsResponse$1 as ListIpsResponse, type index$k_ListPlacementGroupsRequest as ListPlacementGroupsRequest, type index$k_ListPlacementGroupsResponse as ListPlacementGroupsResponse, type index$k_ListPrivateNICsRequest as ListPrivateNICsRequest, type index$k_ListPrivateNICsResponse as ListPrivateNICsResponse, type index$k_ListSecurityGroupRulesRequest as ListSecurityGroupRulesRequest, type index$k_ListSecurityGroupRulesResponse as ListSecurityGroupRulesResponse, type index$k_ListSecurityGroupsRequest as ListSecurityGroupsRequest, type index$k_ListSecurityGroupsResponse as ListSecurityGroupsResponse, type index$k_ListServerActionsRequest as ListServerActionsRequest, type index$k_ListServerActionsResponse as ListServerActionsResponse, type index$k_ListServerUserDataRequest as ListServerUserDataRequest, type index$k_ListServerUserDataResponse as ListServerUserDataResponse, type index$k_ListServersRequest as ListServersRequest, type index$k_ListServersRequestOrder as ListServersRequestOrder, type index$k_ListServersResponse as ListServersResponse, type index$k_ListServersTypesRequest as ListServersTypesRequest, type index$k_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$k_ListVolumesTypesRequest as ListVolumesTypesRequest, type index$k_ListVolumesTypesResponse as ListVolumesTypesResponse, type index$k_MigrationPlan as MigrationPlan, index$k_PRIVATE_NIC_TRANSIENT_STATUSES as PRIVATE_NIC_TRANSIENT_STATUSES, type index$k_PlacementGroup as PlacementGroup, type index$k_PlacementGroupPolicyMode as PlacementGroupPolicyMode, type index$k_PlacementGroupPolicyType as PlacementGroupPolicyType, type index$k_PlacementGroupServer as PlacementGroupServer, type index$k_PlanBlockMigrationRequest as PlanBlockMigrationRequest, type index$k_PrivateNIC as PrivateNIC, type index$k_PrivateNICState as PrivateNICState, index$k_SECURITY_GROUP_TRANSIENT_STATUSES as SECURITY_GROUP_TRANSIENT_STATUSES, index$k_SERVER_IP_TRANSIENT_STATUSES as SERVER_IP_TRANSIENT_STATUSES, index$k_SERVER_TRANSIENT_STATUSES as SERVER_TRANSIENT_STATUSES, SNAPSHOT_TRANSIENT_STATUSES$1 as SNAPSHOT_TRANSIENT_STATUSES, type index$k_SecurityGroup as SecurityGroup, type index$k_SecurityGroupPolicy as SecurityGroupPolicy, type index$k_SecurityGroupRule as SecurityGroupRule, type index$k_SecurityGroupRuleAction as SecurityGroupRuleAction, type index$k_SecurityGroupRuleDirection as SecurityGroupRuleDirection, type index$k_SecurityGroupRuleProtocol as SecurityGroupRuleProtocol, type index$k_SecurityGroupState as SecurityGroupState, type index$k_SecurityGroupSummary as SecurityGroupSummary, type index$k_SecurityGroupTemplate as SecurityGroupTemplate, type index$k_Server as Server, type index$k_ServerAction as ServerAction, type index$k_ServerActionRequest as ServerActionRequest, type index$k_ServerActionRequestVolumeBackupTemplate as ServerActionRequestVolumeBackupTemplate, type index$k_ServerActionResponse as ServerActionResponse, type index$k_ServerIp as ServerIp, type index$k_ServerIpIpFamily as ServerIpIpFamily, type index$k_ServerIpProvisioningMode as ServerIpProvisioningMode, type index$k_ServerIpState as ServerIpState, type index$k_ServerIpv6 as ServerIpv6, type index$k_ServerLocation as ServerLocation, type index$k_ServerMaintenance as ServerMaintenance, type index$k_ServerState as ServerState, type index$k_ServerSummary as ServerSummary, type index$k_ServerType as ServerType, type index$k_ServerTypeCapabilities as ServerTypeCapabilities, type index$k_ServerTypeNetwork as ServerTypeNetwork, type index$k_ServerTypeNetworkInterface as ServerTypeNetworkInterface, type index$k_ServerTypeVolumeConstraintSizes as ServerTypeVolumeConstraintSizes, type index$k_ServerTypeVolumeConstraintsByType as ServerTypeVolumeConstraintsByType, type index$k_ServerTypesAvailability as ServerTypesAvailability, type index$k_SetImageRequest as SetImageRequest, type index$k_SetPlacementGroupRequest as SetPlacementGroupRequest, type index$k_SetPlacementGroupResponse as SetPlacementGroupResponse, type index$k_SetPlacementGroupServersRequest as SetPlacementGroupServersRequest, type index$k_SetPlacementGroupServersResponse as SetPlacementGroupServersResponse, type index$k_SetSecurityGroupRulesRequest as SetSecurityGroupRulesRequest, type index$k_SetSecurityGroupRulesRequestRule as SetSecurityGroupRulesRequestRule, type index$k_SetSecurityGroupRulesResponse as SetSecurityGroupRulesResponse, type index$k_SetServerUserDataRequest as SetServerUserDataRequest, type Snapshot$1 as Snapshot, type index$k_SnapshotBaseVolume as SnapshotBaseVolume, type index$k_SnapshotState as SnapshotState, type index$k_SnapshotVolumeType as SnapshotVolumeType, index$k_TASK_TRANSIENT_STATUSES as TASK_TRANSIENT_STATUSES, type index$k_Task as Task, type index$k_TaskStatus as TaskStatus, type UpdateImageRequest$1 as UpdateImageRequest, type index$k_UpdateImageResponse as UpdateImageResponse, type UpdateIpRequest$1 as UpdateIpRequest, type index$k_UpdateIpResponse as UpdateIpResponse, type index$k_UpdatePlacementGroupRequest as UpdatePlacementGroupRequest, type index$k_UpdatePlacementGroupResponse as UpdatePlacementGroupResponse, type index$k_UpdatePlacementGroupServersRequest as UpdatePlacementGroupServersRequest, type index$k_UpdatePlacementGroupServersResponse as UpdatePlacementGroupServersResponse, type index$k_UpdatePrivateNICRequest as UpdatePrivateNICRequest, type index$k_UpdateSecurityGroupRequest as UpdateSecurityGroupRequest, type index$k_UpdateSecurityGroupResponse as UpdateSecurityGroupResponse, type index$k_UpdateSecurityGroupRuleRequest as UpdateSecurityGroupRuleRequest, type index$k_UpdateSecurityGroupRuleResponse as UpdateSecurityGroupRuleResponse, type index$k_UpdateServerRequest as UpdateServerRequest, type index$k_UpdateServerResponse as UpdateServerResponse, type UpdateSnapshotRequest$1 as UpdateSnapshotRequest, type index$k_UpdateSnapshotResponse as UpdateSnapshotResponse, type UpdateVolumeRequest$1 as UpdateVolumeRequest, type index$k_UpdateVolumeResponse as UpdateVolumeResponse, index$k_VOLUME_SERVER_TRANSIENT_STATUSES as VOLUME_SERVER_TRANSIENT_STATUSES, index$k_VOLUME_TRANSIENT_STATUSES as VOLUME_TRANSIENT_STATUSES, type Volume$2 as Volume, type index$k_VolumeImageUpdateTemplate as VolumeImageUpdateTemplate, type index$k_VolumeServer as VolumeServer, type index$k_VolumeServerState as VolumeServerState, type index$k_VolumeServerTemplate as VolumeServerTemplate, type index$k_VolumeServerVolumeType as VolumeServerVolumeType, type index$k_VolumeState as VolumeState, type index$k_VolumeSummary as VolumeSummary, type index$k_VolumeTemplate as VolumeTemplate, type VolumeType$1 as VolumeType, type index$k_VolumeTypeCapabilities as VolumeTypeCapabilities, type index$k_VolumeTypeConstraints as VolumeTypeConstraints, type index$k_VolumeVolumeType as VolumeVolumeType };
|
|
15040
15086
|
}
|
|
15041
15087
|
|
|
15042
15088
|
declare namespace index$j {
|
|
@@ -17272,13 +17318,6 @@ type GetJobRunRequest = {
|
|
|
17272
17318
|
region?: Region;
|
|
17273
17319
|
jobRunId: string;
|
|
17274
17320
|
};
|
|
17275
|
-
type GetServiceInfoRequest = {
|
|
17276
|
-
/**
|
|
17277
|
-
* Region to target. If none is passed will use default region from the
|
|
17278
|
-
* config.
|
|
17279
|
-
*/
|
|
17280
|
-
region?: Region;
|
|
17281
|
-
};
|
|
17282
17321
|
type ListJobDefinitionsRequest$1 = {
|
|
17283
17322
|
/**
|
|
17284
17323
|
* Region to target. If none is passed will use default region from the
|
|
@@ -17347,7 +17386,6 @@ type UpdateJobDefinitionRequest$1 = {
|
|
|
17347
17386
|
declare class API$e extends API$v {
|
|
17348
17387
|
/** Lists the available regions of the API. */
|
|
17349
17388
|
static readonly LOCALITIES: Region[];
|
|
17350
|
-
getServiceInfo: (request?: Readonly<GetServiceInfoRequest>) => Promise<ServiceInfo>;
|
|
17351
17389
|
createJobDefinition: (request: Readonly<CreateJobDefinitionRequest$1>) => Promise<JobDefinition>;
|
|
17352
17390
|
getJobDefinition: (request: Readonly<GetJobDefinitionRequest>) => Promise<JobDefinition>;
|
|
17353
17391
|
protected pageOfListJobDefinitions: (request?: Readonly<ListJobDefinitionsRequest$1>) => Promise<ListJobDefinitionsResponse>;
|
|
@@ -17428,7 +17466,6 @@ declare namespace validationRules_gen$4 {
|
|
|
17428
17466
|
type index_gen$e_DeleteJobDefinitionRequest = DeleteJobDefinitionRequest;
|
|
17429
17467
|
type index_gen$e_GetJobDefinitionRequest = GetJobDefinitionRequest;
|
|
17430
17468
|
type index_gen$e_GetJobRunRequest = GetJobRunRequest;
|
|
17431
|
-
type index_gen$e_GetServiceInfoRequest = GetServiceInfoRequest;
|
|
17432
17469
|
declare const index_gen$e_JOB_RUN_TRANSIENT_STATUSES: typeof JOB_RUN_TRANSIENT_STATUSES;
|
|
17433
17470
|
type index_gen$e_JobDefinition = JobDefinition;
|
|
17434
17471
|
type index_gen$e_JobRun = JobRun;
|
|
@@ -17440,7 +17477,7 @@ type index_gen$e_ListJobRunsResponse = ListJobRunsResponse;
|
|
|
17440
17477
|
type index_gen$e_StartJobDefinitionRequest = StartJobDefinitionRequest;
|
|
17441
17478
|
type index_gen$e_StopJobRunRequest = StopJobRunRequest;
|
|
17442
17479
|
declare namespace index_gen$e {
|
|
17443
|
-
export { API$e as API, type CreateJobDefinitionRequest$1 as CreateJobDefinitionRequest, type index_gen$e_DeleteJobDefinitionRequest as DeleteJobDefinitionRequest, type index_gen$e_GetJobDefinitionRequest as GetJobDefinitionRequest, type index_gen$e_GetJobRunRequest as GetJobRunRequest,
|
|
17480
|
+
export { API$e as API, type CreateJobDefinitionRequest$1 as CreateJobDefinitionRequest, type index_gen$e_DeleteJobDefinitionRequest as DeleteJobDefinitionRequest, type index_gen$e_GetJobDefinitionRequest as GetJobDefinitionRequest, type index_gen$e_GetJobRunRequest as GetJobRunRequest, index_gen$e_JOB_RUN_TRANSIENT_STATUSES as JOB_RUN_TRANSIENT_STATUSES, type index_gen$e_JobDefinition as JobDefinition, type index_gen$e_JobRun as JobRun, type index_gen$e_JobRunState as JobRunState, type ListJobDefinitionsRequest$1 as ListJobDefinitionsRequest, type index_gen$e_ListJobDefinitionsRequestOrderBy as ListJobDefinitionsRequestOrderBy, type index_gen$e_ListJobDefinitionsResponse as ListJobDefinitionsResponse, type ListJobRunsRequest$1 as ListJobRunsRequest, type index_gen$e_ListJobRunsRequestOrderBy as ListJobRunsRequestOrderBy, type index_gen$e_ListJobRunsResponse as ListJobRunsResponse, type index_gen$e_StartJobDefinitionRequest as StartJobDefinitionRequest, type index_gen$e_StopJobRunRequest as StopJobRunRequest, type UpdateJobDefinitionRequest$1 as UpdateJobDefinitionRequest, validationRules_gen$4 as ValidationRules };
|
|
17444
17481
|
}
|
|
17445
17482
|
|
|
17446
17483
|
declare namespace index$f {
|
|
@@ -18212,6 +18249,10 @@ interface ExternalNode {
|
|
|
18212
18249
|
kubeToken: string;
|
|
18213
18250
|
kubeletConfig: string;
|
|
18214
18251
|
externalIp: string;
|
|
18252
|
+
containerdVersion: string;
|
|
18253
|
+
runcVersion: string;
|
|
18254
|
+
cniPluginsVersion: string;
|
|
18255
|
+
nodeLabels: Record<string, string>;
|
|
18215
18256
|
}
|
|
18216
18257
|
type GetClusterKubeConfigRequest$1 = {
|
|
18217
18258
|
/**
|
|
@@ -31310,6 +31351,12 @@ interface Hosting {
|
|
|
31310
31351
|
offerEndOfLife: boolean;
|
|
31311
31352
|
/** Name of the control panel. */
|
|
31312
31353
|
controlPanelName: string;
|
|
31354
|
+
/** Group of the hosting's host server/platform. */
|
|
31355
|
+
platformGroup: string;
|
|
31356
|
+
/** IPv4 address of the hosting's host server. */
|
|
31357
|
+
ipv4: string;
|
|
31358
|
+
/** IPv6 address of the hosting's host server. */
|
|
31359
|
+
ipv6: string;
|
|
31313
31360
|
/** Region where the Web Hosting plan is hosted. */
|
|
31314
31361
|
region: Region;
|
|
31315
31362
|
}
|
|
@@ -31492,6 +31539,8 @@ type ListOffersRequest = {
|
|
|
31492
31539
|
* case of wanting to update the plan).
|
|
31493
31540
|
*/
|
|
31494
31541
|
hostingId?: string;
|
|
31542
|
+
/** Name of the control panel to filter for. */
|
|
31543
|
+
controlPanels?: string[];
|
|
31495
31544
|
};
|
|
31496
31545
|
interface ListOffersResponse {
|
|
31497
31546
|
/** List of offers. */
|
package/dist/scw/constants.js
CHANGED