Skip to content

Commit ba39130

Browse files
Generate resourcemanager
1 parent 1b7cf01 commit ba39130

13 files changed

Lines changed: 65 additions & 85 deletions
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1a1e006116e3d1246b63402b91590a65c62c3e33
1+
1b0b8ef9bb50208f4a8e0107a138d63f3b7ec15c

services/resourcemanager/src/main/java/cloud/stackit/sdk/resourcemanager/v0api/model/CreateFolderPayload.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -97,13 +97,11 @@ public CreateFolderPayload putLabelsItem(String key, String labelsItem) {
9797
}
9898

9999
/**
100-
* Labels are key-value string pairs that can be attached to a resource container. Some labels
101-
* may be enforced via policies. - A label key must match the regex
102-
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex
103-
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network
104-
* Area, setting the label `\"networkArea\":
105-
* \"<networkAreaID>\"` is required. This can not be changed after project
106-
* creation.
100+
* Key-value string pairs attached to an existing resource container. Certain labels may be
101+
* enforced via organizational policies. * **Key:** Must match the regex
102+
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * **Value:** Must match the regex
103+
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` > Note: Additional naming restrictions may apply
104+
* depending on your specific organization.*
107105
*
108106
* @return labels
109107
*/

services/resourcemanager/src/main/java/cloud/stackit/sdk/resourcemanager/v0api/model/CreateProjectPayload.java

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -98,13 +98,15 @@ public CreateProjectPayload putLabelsItem(String key, String labelsItem) {
9898
}
9999

100100
/**
101-
* Labels are key-value string pairs that can be attached to a resource container. Some labels
102-
* may be enforced via policies. - A label key must match the regex
103-
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex
104-
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network
105-
* Area, setting the label `\"networkArea\":
106-
* \"<networkAreaID>\"` is required. This can not be changed after project
107-
* creation.
101+
* Key-value string pairs attached to a resource container during creation. Certain labels may
102+
* be enforced via organizational policies. * **Key:** Must match the regex
103+
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * **Value:** Must match the regex
104+
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * Either a `\"scope\":
105+
* \"PUBLIC\"` label or a valid `networkArea` label must be provided
106+
* for project creation. * To create a project within a STACKIT Network Area, you must set the
107+
* label `\"networkArea\": \"<networkAreaID>\"`. >
108+
* **Important:** The `networkArea` label is immutable and **cannot be changed** after
109+
* project creation.
108110
*
109111
* @return labels
110112
*/

services/resourcemanager/src/main/java/cloud/stackit/sdk/resourcemanager/v0api/model/FolderResponse.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -151,13 +151,11 @@ public FolderResponse putLabelsItem(String key, String labelsItem) {
151151
}
152152

153153
/**
154-
* Labels are key-value string pairs that can be attached to a resource container. Some labels
155-
* may be enforced via policies. - A label key must match the regex
156-
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex
157-
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network
158-
* Area, setting the label `\"networkArea\":
159-
* \"<networkAreaID>\"` is required. This can not be changed after project
160-
* creation.
154+
* Key-value string pairs attached to an existing resource container. Certain labels may be
155+
* enforced via organizational policies. * **Key:** Must match the regex
156+
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * **Value:** Must match the regex
157+
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` > Note: Additional naming restrictions may apply
158+
* depending on your specific organization.*
161159
*
162160
* @return labels
163161
*/

services/resourcemanager/src/main/java/cloud/stackit/sdk/resourcemanager/v0api/model/GetFolderDetailsResponse.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -159,13 +159,11 @@ public GetFolderDetailsResponse putLabelsItem(String key, String labelsItem) {
159159
}
160160

161161
/**
162-
* Labels are key-value string pairs that can be attached to a resource container. Some labels
163-
* may be enforced via policies. - A label key must match the regex
164-
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex
165-
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network
166-
* Area, setting the label `\"networkArea\":
167-
* \"<networkAreaID>\"` is required. This can not be changed after project
168-
* creation.
162+
* Key-value string pairs attached to an existing resource container. Certain labels may be
163+
* enforced via organizational policies. * **Key:** Must match the regex
164+
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * **Value:** Must match the regex
165+
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` > Note: Additional naming restrictions may apply
166+
* depending on your specific organization.*
169167
*
170168
* @return labels
171169
*/

services/resourcemanager/src/main/java/cloud/stackit/sdk/resourcemanager/v0api/model/GetProjectResponse.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -145,13 +145,11 @@ public GetProjectResponse putLabelsItem(String key, String labelsItem) {
145145
}
146146

147147
/**
148-
* Labels are key-value string pairs that can be attached to a resource container. Some labels
149-
* may be enforced via policies. - A label key must match the regex
150-
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex
151-
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network
152-
* Area, setting the label `\"networkArea\":
153-
* \"<networkAreaID>\"` is required. This can not be changed after project
154-
* creation.
148+
* Key-value string pairs attached to an existing resource container. Certain labels may be
149+
* enforced via organizational policies. * **Key:** Must match the regex
150+
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * **Value:** Must match the regex
151+
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` > Note: Additional naming restrictions may apply
152+
* depending on your specific organization.*
155153
*
156154
* @return labels
157155
*/

services/resourcemanager/src/main/java/cloud/stackit/sdk/resourcemanager/v0api/model/ListFoldersResponseItemsInner.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -153,13 +153,11 @@ public ListFoldersResponseItemsInner putLabelsItem(String key, String labelsItem
153153
}
154154

155155
/**
156-
* Labels are key-value string pairs that can be attached to a resource container. Some labels
157-
* may be enforced via policies. - A label key must match the regex
158-
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex
159-
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network
160-
* Area, setting the label `\"networkArea\":
161-
* \"<networkAreaID>\"` is required. This can not be changed after project
162-
* creation.
156+
* Key-value string pairs attached to an existing resource container. Certain labels may be
157+
* enforced via organizational policies. * **Key:** Must match the regex
158+
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * **Value:** Must match the regex
159+
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` > Note: Additional naming restrictions may apply
160+
* depending on your specific organization.*
163161
*
164162
* @return labels
165163
*/

services/resourcemanager/src/main/java/cloud/stackit/sdk/resourcemanager/v0api/model/ListOrganizationsResponseItemsInner.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,11 @@ public ListOrganizationsResponseItemsInner putLabelsItem(String key, String labe
135135
}
136136

137137
/**
138-
* Labels are key-value string pairs that can be attached to a resource container. Some labels
139-
* may be enforced via policies. - A label key must match the regex
140-
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex
141-
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network
142-
* Area, setting the label `\"networkArea\":
143-
* \"<networkAreaID>\"` is required. This can not be changed after project
144-
* creation.
138+
* Key-value string pairs attached to an existing resource container. Certain labels may be
139+
* enforced via organizational policies. * **Key:** Must match the regex
140+
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * **Value:** Must match the regex
141+
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` > Note: Additional naming restrictions may apply
142+
* depending on your specific organization.*
145143
*
146144
* @return labels
147145
*/

services/resourcemanager/src/main/java/cloud/stackit/sdk/resourcemanager/v0api/model/OrganizationResponse.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,11 @@ public OrganizationResponse putLabelsItem(String key, String labelsItem) {
133133
}
134134

135135
/**
136-
* Labels are key-value string pairs that can be attached to a resource container. Some labels
137-
* may be enforced via policies. - A label key must match the regex
138-
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex
139-
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network
140-
* Area, setting the label `\"networkArea\":
141-
* \"<networkAreaID>\"` is required. This can not be changed after project
142-
* creation.
136+
* Key-value string pairs attached to an existing resource container. Certain labels may be
137+
* enforced via organizational policies. * **Key:** Must match the regex
138+
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * **Value:** Must match the regex
139+
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` > Note: Additional naming restrictions may apply
140+
* depending on your specific organization.*
143141
*
144142
* @return labels
145143
*/

services/resourcemanager/src/main/java/cloud/stackit/sdk/resourcemanager/v0api/model/PartialUpdateFolderPayload.java

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,11 @@ public PartialUpdateFolderPayload putLabelsItem(String key, String labelsItem) {
8787
}
8888

8989
/**
90-
* Labels are key-value string pairs that can be attached to a resource container. Some labels
91-
* may be enforced via policies. - A label key must match the regex
92-
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - A label value must match the regex
93-
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}`. - To create a project within a STACKIT Network
94-
* Area, setting the label `\"networkArea\":
95-
* \"<networkAreaID>\"` is required. This can not be changed after project
96-
* creation.
90+
* Key-value string pairs attached to an existing resource container. Certain labels may be
91+
* enforced via organizational policies. * **Key:** Must match the regex
92+
* `[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` * **Value:** Must match the regex
93+
* `^$|[A-ZÄÜÖa-zäüöß0-9_-]{1,64}` > Note: Additional naming restrictions may apply
94+
* depending on your specific organization.*
9795
*
9896
* @return labels
9997
*/

0 commit comments

Comments
 (0)