File tree Expand file tree Collapse file tree 3 files changed +14
-5
lines changed
packages/clients/src/api/instance/v1 Expand file tree Collapse file tree 3 files changed +14
-5
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments