@@ -952,7 +952,7 @@ type SecurityGroup struct {
952952 Organization string `json:"organization"`
953953 // Project: the security group project ID
954954 Project string `json:"project"`
955- // OrganizationDefault: true if it is your default security group for this organization ID
955+ // Deprecated: OrganizationDefault: true if it is your default security group for this organization ID
956956 OrganizationDefault bool `json:"organization_default"`
957957 // ProjectDefault: true if it is your default security group for this project ID
958958 ProjectDefault bool `json:"project_default"`
@@ -1319,7 +1319,7 @@ type VolumeTemplate struct {
13191319 //
13201320 // Default value: l_ssd
13211321 VolumeType VolumeVolumeType `json:"volume_type,omitempty"`
1322- // Organization: organization ID of the volume
1322+ // Deprecated: Organization: organization ID of the volume
13231323 // Precisely one of Organization, Project must be set.
13241324 Organization * string `json:"organization,omitempty"`
13251325 // Project: project ID of the volume
@@ -1636,7 +1636,7 @@ type CreateServerRequest struct {
16361636 BootType * BootType `json:"boot_type,omitempty"`
16371637 // Bootscript: the bootscript ID to use when `boot_type` is set to `bootscript`
16381638 Bootscript * string `json:"bootscript,omitempty"`
1639- // Organization: the server organization ID
1639+ // Deprecated: Organization: the server organization ID
16401640 // Precisely one of Organization, Project must be set.
16411641 Organization * string `json:"organization,omitempty"`
16421642 // Project: the server project ID
@@ -2271,7 +2271,7 @@ type CreateImageRequest struct {
22712271 DefaultBootscript string `json:"default_bootscript,omitempty"`
22722272 // ExtraVolumes: additional volumes of the image
22732273 ExtraVolumes map [string ]* VolumeTemplate `json:"extra_volumes,omitempty"`
2274- // Organization: organization ID of the image
2274+ // Deprecated: Organization: organization ID of the image
22752275 // Precisely one of Organization, Project must be set.
22762276 Organization * string `json:"organization,omitempty"`
22772277 // Project: project ID of the image
@@ -2529,7 +2529,7 @@ type CreateSnapshotRequest struct {
25292529 Name string `json:"name,omitempty"`
25302530 // VolumeID: UUID of the volume
25312531 VolumeID string `json:"volume_id,omitempty"`
2532- // Organization: organization ID of the snapshot
2532+ // Deprecated: Organization: organization ID of the snapshot
25332533 // Precisely one of Organization, Project must be set.
25342534 Organization * string `json:"organization,omitempty"`
25352535 // Project: project ID of the snapshot
@@ -2824,7 +2824,7 @@ type CreateVolumeRequest struct {
28242824 Zone scw.Zone `json:"-"`
28252825 // Name: the volume name
28262826 Name string `json:"name,omitempty"`
2827- // Organization: the volume organization ID
2827+ // Deprecated: Organization: the volume organization ID
28282828 // Precisely one of Organization, Project must be set.
28292829 Organization * string `json:"organization,omitempty"`
28302830 // Project: the volume project ID
@@ -3099,13 +3099,13 @@ type CreateSecurityGroupRequest struct {
30993099 Name string `json:"name,omitempty"`
31003100 // Description: description of the security group
31013101 Description string `json:"description,omitempty"`
3102- // Organization: organization ID the security group belongs to
3102+ // Deprecated: Organization: organization ID the security group belongs to
31033103 // Precisely one of Organization, Project must be set.
31043104 Organization * string `json:"organization,omitempty"`
31053105 // Project: project ID the security group belong to
31063106 // Precisely one of Organization, Project must be set.
31073107 Project * string `json:"project,omitempty"`
3108- // OrganizationDefault: whether this security group becomes the default security group for new instances
3108+ // Deprecated: OrganizationDefault: whether this security group becomes the default security group for new instances
31093109 //
31103110 // Default value: false
31113111 // Precisely one of OrganizationDefault, ProjectDefault must be set.
@@ -3278,7 +3278,7 @@ type setSecurityGroupRequest struct {
32783278 Organization string `json:"organization"`
32793279 // Project: the security group project ID
32803280 Project string `json:"project"`
3281- // OrganizationDefault: please use project_default instead
3281+ // Deprecated: OrganizationDefault: please use project_default instead
32823282 OrganizationDefault bool `json:"organization_default"`
32833283 // ProjectDefault: true use this security group for future instances created in this project
32843284 ProjectDefault bool `json:"project_default"`
@@ -3720,7 +3720,7 @@ type CreatePlacementGroupRequest struct {
37203720 Zone scw.Zone `json:"-"`
37213721 // Name: name of the placement group
37223722 Name string `json:"name,omitempty"`
3723- // Organization: organization ID of the placement group
3723+ // Deprecated: Organization: organization ID of the placement group
37243724 // Precisely one of Organization, Project must be set.
37253725 Organization * string `json:"organization,omitempty"`
37263726 // Project: project ID of the placement group
@@ -4199,7 +4199,7 @@ func (r *ListIPsResponse) UnsafeAppend(res interface{}) (uint32, error) {
41994199
42004200type CreateIPRequest struct {
42014201 Zone scw.Zone `json:"-"`
4202- // Organization: the organization ID the IP is reserved in
4202+ // Deprecated: Organization: the organization ID the IP is reserved in
42034203 // Precisely one of Organization, Project must be set.
42044204 Organization * string `json:"organization,omitempty"`
42054205 // Project: the project ID the IP is reserved in
0 commit comments