Skip to content

Commit 5a62a1a

Browse files
authored
docs(instance): modifs to instance doc for new developers site (#1665)
1 parent 3fc51a3 commit 5a62a1a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

api/instance/v1/instance_sdk.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1127,7 +1127,7 @@ type SecurityGroup struct {
11271127
Name string `json:"name"`
11281128
// Description: security group description.
11291129
Description string `json:"description"`
1130-
// EnableDefaultSecurity: true if SMTP is blocked on IPv4 and IPv6.
1130+
// EnableDefaultSecurity: 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.
11311131
EnableDefaultSecurity bool `json:"enable_default_security"`
11321132
// InboundDefaultPolicy: default inbound policy.
11331133
// Default value: accept
@@ -1777,7 +1777,7 @@ type ListVolumesTypesRequest struct {
17771777
Page *int32 `json:"-"`
17781778
}
17791779

1780-
// ListVolumesTypes: list volumes types.
1780+
// ListVolumesTypes: list volume types.
17811781
// List all volume types and their technical details.
17821782
func (s *API) ListVolumesTypes(req *ListVolumesTypesRequest, opts ...scw.RequestOption) (*ListVolumesTypesResponse, error) {
17831783
var err error
@@ -2309,7 +2309,7 @@ type ServerActionRequest struct {
23092309
//
23102310
// Keep in mind that terminating an Instance will result in the deletion of all attached volumes, including local and block storage.
23112311
// If you want to 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.
2312-
// For more information, read the [Volumes](#volumes-7e8a39) documentation.
2312+
// For more information, read the [Volumes](#path-volumes-list-volumes) documentation.
23132313
func (s *API) ServerAction(req *ServerActionRequest, opts ...scw.RequestOption) (*ServerActionResponse, error) {
23142314
var err error
23152315

@@ -3438,7 +3438,7 @@ type CreateSecurityGroupRequest struct {
34383438
// OutboundDefaultPolicy: default policy for outbound rules.
34393439
// Default value: accept
34403440
OutboundDefaultPolicy SecurityGroupPolicy `json:"outbound_default_policy"`
3441-
// EnableDefaultSecurity: true to block SMTP on IPv4 and IPv6.
3441+
// EnableDefaultSecurity: 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.
34423442
EnableDefaultSecurity *bool `json:"enable_default_security,omitempty"`
34433443
}
34443444

@@ -3583,7 +3583,7 @@ type setSecurityGroupRequest struct {
35833583
ModificationDate *time.Time `json:"modification_date"`
35843584
// Description: description of the security group.
35853585
Description string `json:"description"`
3586-
// EnableDefaultSecurity: true to block SMTP on IPv4 and IPv6.
3586+
// EnableDefaultSecurity: 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.
35873587
EnableDefaultSecurity bool `json:"enable_default_security"`
35883588
// InboundDefaultPolicy: default inbound policy.
35893589
// Default value: accept

0 commit comments

Comments
 (0)