Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/clients/src/api/instance/v1/api.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ export class API extends ParentAPI {
)

/**
* List volumes types. List all volume types and their technical details.
* List volume types. List all volume types and their technical details.
*
* @param request - The request {@link ListVolumesTypesRequest}
* @returns A Promise of ListVolumesTypesResponse
Expand Down Expand Up @@ -445,7 +445,7 @@ export class API extends ParentAPI {
* preserve your local volumes, you should use the `archive` action instead of
* `terminate`. Similarly, if you want to keep your block storage volumes, you
* must first detach them before issuing the `terminate` command. For more
* information, read the [Volumes](#volumes-7e8a39) documentation.
* information, read the [Volumes](#path-volumes-list-volumes) documentation.
*
* @param request - The request {@link ServerActionRequest}
* @returns A Promise of ServerActionResponse
Expand Down
10 changes: 8 additions & 2 deletions packages/clients/src/api/instance/v1/types.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,10 @@ export interface SecurityGroup {
name: string
/** Security group description. */
description: string
/** True if SMTP is blocked on IPv4 and IPv6. */
/**
* True if SMTP is blocked on IPv4 and IPv6. This feature is read only, please
* open a support ticket if you need to make it configurable.
*/
enableDefaultSecurity: boolean
/** Default inbound policy. */
inboundDefaultPolicy: SecurityGroupPolicy
Expand Down Expand Up @@ -1335,7 +1338,10 @@ export type CreateSecurityGroupRequest = {
inboundDefaultPolicy?: SecurityGroupPolicy
/** Default policy for outbound rules. */
outboundDefaultPolicy?: SecurityGroupPolicy
/** True to block SMTP on IPv4 and IPv6. */
/**
* True to block SMTP on IPv4 and IPv6. This feature is read only, please open
* a support ticket if you need to make it configurable.
*/
enableDefaultSecurity?: boolean
}

Expand Down
5 changes: 4 additions & 1 deletion packages/clients/src/api/instance/v1/types.private.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,10 @@ export type SetSecurityGroupRequest = {
modificationDate?: Date
/** Description of the security group. */
description: string
/** True to block SMTP on IPv4 and IPv6. */
/**
* True to block SMTP on IPv4 and IPv6. This feature is read only, please open
* a support ticket if you need to make it configurable.
*/
enableDefaultSecurity: boolean
/** Default inbound policy. */
inboundDefaultPolicy?: SecurityGroupPolicy
Expand Down