Skip to content

Commit 80963e0

Browse files
authored
chore(sfs): migrate to new SDK structure (#1396)
* migrate to new SDK structure * tidy go mod * tidy docs
1 parent d02929f commit 80963e0

55 files changed

Lines changed: 362 additions & 356 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/stackit_beta_sfs_export-policy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ stackit beta sfs export-policy [flags]
3232
* [stackit beta sfs](./stackit_beta_sfs.md) - Provides functionality for SFS (stackit file storage)
3333
* [stackit beta sfs export-policy create](./stackit_beta_sfs_export-policy_create.md) - Creates a export policy
3434
* [stackit beta sfs export-policy delete](./stackit_beta_sfs_export-policy_delete.md) - Deletes a export policy
35-
* [stackit beta sfs export-policy describe](./stackit_beta_sfs_export-policy_describe.md) - Shows details of a export policy
35+
* [stackit beta sfs export-policy describe](./stackit_beta_sfs_export-policy_describe.md) - Shows details of an export policy
3636
* [stackit beta sfs export-policy list](./stackit_beta_sfs_export-policy_list.md) - Lists all export policies of a project
37-
* [stackit beta sfs export-policy update](./stackit_beta_sfs_export-policy_update.md) - Updates a export policy
37+
* [stackit beta sfs export-policy update](./stackit_beta_sfs_export-policy_update.md) - Updates an export policy
3838

docs/stackit_beta_sfs_export-policy_delete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ stackit beta sfs export-policy delete EXPORT_POLICY_ID [flags]
1313
### Examples
1414

1515
```
16-
Delete a export policy with ID "xxx"
16+
Delete an export policy with ID "xxx"
1717
$ stackit beta sfs export-policy delete xxx
1818
```
1919

docs/stackit_beta_sfs_export-policy_describe.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit beta sfs export-policy describe
22

3-
Shows details of a export policy
3+
Shows details of an export policy
44

55
### Synopsis
66

7-
Shows details of a export policy.
7+
Shows details of an export policy.
88

99
```
1010
stackit beta sfs export-policy describe EXPORT_POLICY_ID [flags]
@@ -13,7 +13,7 @@ stackit beta sfs export-policy describe EXPORT_POLICY_ID [flags]
1313
### Examples
1414

1515
```
16-
Describe a export policy with ID "xxx"
16+
Describe an export policy with ID "xxx"
1717
$ stackit beta sfs export-policy describe xxx
1818
```
1919

docs/stackit_beta_sfs_export-policy_update.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## stackit beta sfs export-policy update
22

3-
Updates a export policy
3+
Updates an export policy
44

55
### Synopsis
66

7-
Updates a export policy.
7+
Updates an export policy.
88

99
```
1010
stackit beta sfs export-policy update EXPORT_POLICY_ID [flags]
@@ -13,10 +13,10 @@ stackit beta sfs export-policy update EXPORT_POLICY_ID [flags]
1313
### Examples
1414

1515
```
16-
Update a export policy with ID "xxx" and with rules from file "./rules.json"
16+
Update an export policy with ID "xxx" and with rules from file "./rules.json"
1717
$ stackit beta sfs export-policy update xxx --rules @./rules.json
1818
19-
Update a export policy with ID "xxx" and remove the rules
19+
Update an export policy with ID "xxx" and remove the rules
2020
$ stackit beta sfs export-policy update XXX --remove-rules
2121
```
2222

docs/stackit_beta_sfs_resource-pool_create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ stackit beta sfs resource-pool create [flags]
3737
--ip-acl strings List of network addresses in the form <address/prefix>, e.g. 192.168.10.0/24 that can mount the resource pool readonly (default [])
3838
--name string Name
3939
--performance-class string Performance class
40-
--size int Size of the pool in Gigabytes
40+
--size int32 Size of the pool in Gigabytes
4141
--snapshots-visible Set snapshots visible and accessible to users
4242
```
4343

docs/stackit_beta_sfs_resource-pool_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ stackit beta sfs resource-pool update [flags]
3535
-h, --help Help for "stackit beta sfs resource-pool update"
3636
--ip-acl strings List of network addresses in the form <address/prefix>, e.g. 192.168.10.0/24 that can mount the resource pool readonly (default [])
3737
--performance-class string Performance class
38-
--size int Size of the pool in Gigabytes
38+
--size int32 Size of the pool in Gigabytes
3939
--snapshots-visible Set snapshots visible and accessible to users
4040
```
4141

docs/stackit_beta_sfs_share_create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ stackit beta sfs share create [flags]
2424

2525
```
2626
--export-policy-name string The export policy the share is assigned to
27-
--hard-limit int The space hard limit for the share
27+
--hard-limit int32 The space hard limit for the share
2828
-h, --help Help for "stackit beta sfs share create"
2929
--name string Share name
3030
--resource-pool-id string The resource pool the share is assigned to

docs/stackit_beta_sfs_share_describe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ stackit beta sfs share describe SHARE_ID [flags]
1414

1515
```
1616
Describe a shares with ID "xxx" from resource pool with ID "yyy"
17-
$ stackit beta sfs export-policy describe xxx --resource-pool-id yyy
17+
$ stackit beta sfs share describe xxx --resource-pool-id yyy
1818
```
1919

2020
### Options

docs/stackit_beta_sfs_share_list.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ stackit beta sfs share list [flags]
1414

1515
```
1616
List all shares from resource pool with ID "xxx"
17-
$ stackit beta sfs export-policy list --resource-pool-id xxx
17+
$ stackit beta sfs share list --resource-pool-id xxx
1818
1919
List up to 10 shares from resource pool with ID "xxx"
20-
$ stackit beta sfs export-policy list --resource-pool-id xxx --limit 10
20+
$ stackit beta sfs share list --resource-pool-id xxx --limit 10
2121
```
2222

2323
### Options

docs/stackit_beta_sfs_share_update.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ stackit beta sfs share update SHARE_ID [flags]
2424

2525
```
2626
--export-policy-name string The export policy the share is assigned to
27-
--hard-limit int The space hard limit for the share
27+
--hard-limit int32 The space hard limit for the share
2828
-h, --help Help for "stackit beta sfs share update"
2929
--resource-pool-id string The resource pool the share is assigned to
3030
```

0 commit comments

Comments
 (0)