Skip to content

Commit 37e66ef

Browse files
authored
docs(instance): minor adjustments (#632)
1 parent 374dcdc commit 37e66ef

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

packages/clients/src/api/instance/v1/api.gen.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ export class API extends ParentAPI {
271271
)
272272

273273
/**
274-
* List volumes types. List all volume types and their technical details.
274+
* List volume types. List all volume types and their technical details.
275275
*
276276
* @param request - The request {@link ListVolumesTypesRequest}
277277
* @returns A Promise of ListVolumesTypesResponse
@@ -445,7 +445,7 @@ export class API extends ParentAPI {
445445
* preserve your local volumes, you should use the `archive` action instead of
446446
* `terminate`. Similarly, if you want to keep your block storage volumes, you
447447
* must first detach them before issuing the `terminate` command. For more
448-
* information, read the [Volumes](#volumes-7e8a39) documentation.
448+
* information, read the [Volumes](#path-volumes-list-volumes) documentation.
449449
*
450450
* @param request - The request {@link ServerActionRequest}
451451
* @returns A Promise of ServerActionResponse

packages/clients/src/api/instance/v1/types.gen.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,10 @@ export interface SecurityGroup {
430430
name: string
431431
/** Security group description. */
432432
description: string
433-
/** True if SMTP is blocked on IPv4 and IPv6. */
433+
/**
434+
* True if SMTP is blocked on IPv4 and IPv6. This feature is read only, please
435+
* open a support ticket if you need to make it configurable.
436+
*/
434437
enableDefaultSecurity: boolean
435438
/** Default inbound policy. */
436439
inboundDefaultPolicy: SecurityGroupPolicy
@@ -1335,7 +1338,10 @@ export type CreateSecurityGroupRequest = {
13351338
inboundDefaultPolicy?: SecurityGroupPolicy
13361339
/** Default policy for outbound rules. */
13371340
outboundDefaultPolicy?: SecurityGroupPolicy
1338-
/** True to block SMTP on IPv4 and IPv6. */
1341+
/**
1342+
* True to block SMTP on IPv4 and IPv6. This feature is read only, please open
1343+
* a support ticket if you need to make it configurable.
1344+
*/
13391345
enableDefaultSecurity?: boolean
13401346
}
13411347

packages/clients/src/api/instance/v1/types.private.gen.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,10 @@ export type SetSecurityGroupRequest = {
240240
modificationDate?: Date
241241
/** Description of the security group. */
242242
description: string
243-
/** True to block SMTP on IPv4 and IPv6. */
243+
/**
244+
* True to block SMTP on IPv4 and IPv6. This feature is read only, please open
245+
* a support ticket if you need to make it configurable.
246+
*/
244247
enableDefaultSecurity: boolean
245248
/** Default inbound policy. */
246249
inboundDefaultPolicy?: SecurityGroupPolicy

0 commit comments

Comments
 (0)