Skip to content

Commit 9fc2fa3

Browse files
Generate runcommand (#771)
1 parent 78abdc7 commit 9fc2fa3

19 files changed

+87
-28
lines changed

Diff for: services/runcommand/src/stackit/runcommand/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
API endpoints for the STACKIT Run Commands Service API
99
10-
The version of the OpenAPI document: 1.0
10+
The version of the OpenAPI document: 2.0
1111
1212
Generated by OpenAPI Generator (https://openapi-generator.tech)
1313

Diff for: services/runcommand/src/stackit/runcommand/api/default_api.py

+66-6
Large diffs are not rendered by default.

Diff for: services/runcommand/src/stackit/runcommand/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/configuration.py

+4-5
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111
@@ -33,7 +33,7 @@ def __init__(
3333
)
3434
"""Constructor
3535
"""
36-
self._base_path = "https://run-command.api.eu01.stackit.cloud"
36+
self._base_path = "https://run-command.api.stackit.cloud"
3737
"""Default Base url
3838
"""
3939
self.server_index = 0 if server_index is None else server_index
@@ -57,13 +57,12 @@ def get_host_settings(self):
5757
"""
5858
return [
5959
{
60-
"url": "https://run-command.api.{region}stackit.cloud",
60+
"url": "https://run-command.api.stackit.cloud",
6161
"description": "No description provided",
6262
"variables": {
6363
"region": {
6464
"description": "No description provided",
65-
"default_value": "eu01.",
66-
"enum_values": ["eu01."],
65+
"default_value": "global",
6766
}
6867
},
6968
}

Diff for: services/runcommand/src/stackit/runcommand/exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
API endpoints for the STACKIT Run Commands Service API
88
9-
The version of the OpenAPI document: 1.0
9+
The version of the OpenAPI document: 2.0
1010
1111
Generated by OpenAPI Generator (https://openapi-generator.tech)
1212

Diff for: services/runcommand/src/stackit/runcommand/models/command_details.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/command_template.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/command_template_response.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/command_template_schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/commands.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/create_command_payload.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/error_response.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/get_commands_response.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/model_field.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/new_command_response.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/parameters_schema.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/models/properties.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

Diff for: services/runcommand/src/stackit/runcommand/rest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
API endpoints for the STACKIT Run Commands Service API
77
8-
The version of the OpenAPI document: 1.0
8+
The version of the OpenAPI document: 2.0
99
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

0 commit comments

Comments
 (0)