stackit-runcommand 1.1.2__py3-none-any.whl → 1.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -67,6 +67,7 @@ class ApiClient:
67
67
  "date": datetime.date,
68
68
  "datetime": datetime.datetime,
69
69
  "decimal": decimal.Decimal,
70
+ "UUID": uuid.UUID,
70
71
  "object": object,
71
72
  }
72
73
  _pool = None
@@ -266,7 +267,7 @@ class ApiClient:
266
267
  response_text = None
267
268
  return_data = None
268
269
  try:
269
- if response_type == "bytearray":
270
+ if response_type in ("bytearray", "bytes"):
270
271
  return_data = response_data.data
271
272
  elif response_type == "file":
272
273
  return_data = self.__deserialize_file(response_data)
@@ -327,25 +328,20 @@ class ApiClient:
327
328
  return obj.isoformat()
328
329
  elif isinstance(obj, decimal.Decimal):
329
330
  return str(obj)
330
-
331
331
  elif isinstance(obj, dict):
332
- obj_dict = obj
332
+ return {key: self.sanitize_for_serialization(val) for key, val in obj.items()}
333
+
334
+ # Convert model obj to dict except
335
+ # attributes `openapi_types`, `attribute_map`
336
+ # and attributes which value is not None.
337
+ # Convert attribute name to json key in
338
+ # model definition for request.
339
+ if hasattr(obj, "to_dict") and callable(getattr(obj, "to_dict")): # noqa: B009
340
+ obj_dict = obj.to_dict()
333
341
  else:
334
- # Convert model obj to dict except
335
- # attributes `openapi_types`, `attribute_map`
336
- # and attributes which value is not None.
337
- # Convert attribute name to json key in
338
- # model definition for request.
339
- if hasattr(obj, "to_dict") and callable(getattr(obj, "to_dict")): # noqa: B009
340
- obj_dict = obj.to_dict()
341
- else:
342
- obj_dict = obj.__dict__
343
-
344
- if isinstance(obj_dict, list):
345
- # here we handle instances that can either be a list or something else, and only became a real list by calling to_dict() # noqa: E501
346
- return self.sanitize_for_serialization(obj_dict)
342
+ obj_dict = obj.__dict__
347
343
 
348
- return {key: self.sanitize_for_serialization(val) for key, val in obj_dict.items()}
344
+ return self.sanitize_for_serialization(obj_dict)
349
345
 
350
346
  def deserialize(self, response_text: str, response_type: str, content_type: Optional[str]):
351
347
  """Deserializes response into an object.
@@ -418,6 +414,8 @@ class ApiClient:
418
414
  return self.__deserialize_datetime(data)
419
415
  elif klass is decimal.Decimal:
420
416
  return decimal.Decimal(data)
417
+ elif klass is uuid.UUID:
418
+ return uuid.UUID(data)
421
419
  elif issubclass(klass, Enum):
422
420
  return self.__deserialize_enum(data, klass)
423
421
  else:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, field_validator
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
 
@@ -59,7 +60,8 @@ class CommandDetails(BaseModel):
59
60
  return value
60
61
 
61
62
  model_config = ConfigDict(
62
- populate_by_name=True,
63
+ validate_by_name=True,
64
+ validate_by_alias=True,
63
65
  validate_assignment=True,
64
66
  protected_namespaces=(),
65
67
  )
@@ -70,8 +72,7 @@ class CommandDetails(BaseModel):
70
72
 
71
73
  def to_json(self) -> str:
72
74
  """Returns the JSON representation of the model using alias"""
73
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
74
- return json.dumps(self.to_dict())
75
+ return json.dumps(to_jsonable_python(self.to_dict()))
75
76
 
76
77
  @classmethod
77
78
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
 
@@ -33,7 +34,8 @@ class CommandTemplate(BaseModel):
33
34
  __properties: ClassVar[List[str]] = ["name", "osType", "title"]
34
35
 
35
36
  model_config = ConfigDict(
36
- populate_by_name=True,
37
+ validate_by_name=True,
38
+ validate_by_alias=True,
37
39
  validate_assignment=True,
38
40
  protected_namespaces=(),
39
41
  )
@@ -44,8 +46,7 @@ class CommandTemplate(BaseModel):
44
46
 
45
47
  def to_json(self) -> str:
46
48
  """Returns the JSON representation of the model using alias"""
47
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
- return json.dumps(self.to_dict())
49
+ return json.dumps(to_jsonable_python(self.to_dict()))
49
50
 
50
51
  @classmethod
51
52
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
  from stackit.runcommand.models.command_template import CommandTemplate
@@ -33,7 +34,8 @@ class CommandTemplateResponse(BaseModel):
33
34
  __properties: ClassVar[List[str]] = ["items"]
34
35
 
35
36
  model_config = ConfigDict(
36
- populate_by_name=True,
37
+ validate_by_name=True,
38
+ validate_by_alias=True,
37
39
  validate_assignment=True,
38
40
  protected_namespaces=(),
39
41
  )
@@ -44,8 +46,7 @@ class CommandTemplateResponse(BaseModel):
44
46
 
45
47
  def to_json(self) -> str:
46
48
  """Returns the JSON representation of the model using alias"""
47
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
- return json.dumps(self.to_dict())
49
+ return json.dumps(to_jsonable_python(self.to_dict()))
49
50
 
50
51
  @classmethod
51
52
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
  from stackit.runcommand.models.parameters_schema import ParametersSchema
@@ -37,7 +38,8 @@ class CommandTemplateSchema(BaseModel):
37
38
  __properties: ClassVar[List[str]] = ["description", "name", "osType", "parametersSchema", "title"]
38
39
 
39
40
  model_config = ConfigDict(
40
- populate_by_name=True,
41
+ validate_by_name=True,
42
+ validate_by_alias=True,
41
43
  validate_assignment=True,
42
44
  protected_namespaces=(),
43
45
  )
@@ -48,8 +50,7 @@ class CommandTemplateSchema(BaseModel):
48
50
 
49
51
  def to_json(self) -> str:
50
52
  """Returns the JSON representation of the model using alias"""
51
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
52
- return json.dumps(self.to_dict())
53
+ return json.dumps(to_jsonable_python(self.to_dict()))
53
54
 
54
55
  @classmethod
55
56
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, field_validator
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
 
@@ -53,7 +54,8 @@ class Commands(BaseModel):
53
54
  return value
54
55
 
55
56
  model_config = ConfigDict(
56
- populate_by_name=True,
57
+ validate_by_name=True,
58
+ validate_by_alias=True,
57
59
  validate_assignment=True,
58
60
  protected_namespaces=(),
59
61
  )
@@ -64,8 +66,7 @@ class Commands(BaseModel):
64
66
 
65
67
  def to_json(self) -> str:
66
68
  """Returns the JSON representation of the model using alias"""
67
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
68
- return json.dumps(self.to_dict())
69
+ return json.dumps(to_jsonable_python(self.to_dict()))
69
70
 
70
71
  @classmethod
71
72
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
 
@@ -32,7 +33,8 @@ class CreateCommandPayload(BaseModel):
32
33
  __properties: ClassVar[List[str]] = ["commandTemplateName", "parameters"]
33
34
 
34
35
  model_config = ConfigDict(
35
- populate_by_name=True,
36
+ validate_by_name=True,
37
+ validate_by_alias=True,
36
38
  validate_assignment=True,
37
39
  protected_namespaces=(),
38
40
  )
@@ -43,8 +45,7 @@ class CreateCommandPayload(BaseModel):
43
45
 
44
46
  def to_json(self) -> str:
45
47
  """Returns the JSON representation of the model using alias"""
46
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
47
- return json.dumps(self.to_dict())
48
+ return json.dumps(to_jsonable_python(self.to_dict()))
48
49
 
49
50
  @classmethod
50
51
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
 
@@ -34,7 +35,8 @@ class ErrorResponse(BaseModel):
34
35
  __properties: ClassVar[List[str]] = ["message", "status"]
35
36
 
36
37
  model_config = ConfigDict(
37
- populate_by_name=True,
38
+ validate_by_name=True,
39
+ validate_by_alias=True,
38
40
  validate_assignment=True,
39
41
  protected_namespaces=(),
40
42
  )
@@ -45,8 +47,7 @@ class ErrorResponse(BaseModel):
45
47
 
46
48
  def to_json(self) -> str:
47
49
  """Returns the JSON representation of the model using alias"""
48
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
49
- return json.dumps(self.to_dict())
50
+ return json.dumps(to_jsonable_python(self.to_dict()))
50
51
 
51
52
  @classmethod
52
53
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
  from stackit.runcommand.models.commands import Commands
@@ -33,7 +34,8 @@ class GetCommandsResponse(BaseModel):
33
34
  __properties: ClassVar[List[str]] = ["items"]
34
35
 
35
36
  model_config = ConfigDict(
36
- populate_by_name=True,
37
+ validate_by_name=True,
38
+ validate_by_alias=True,
37
39
  validate_assignment=True,
38
40
  protected_namespaces=(),
39
41
  )
@@ -44,8 +46,7 @@ class GetCommandsResponse(BaseModel):
44
46
 
45
47
  def to_json(self) -> str:
46
48
  """Returns the JSON representation of the model using alias"""
47
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
- return json.dumps(self.to_dict())
49
+ return json.dumps(to_jsonable_python(self.to_dict()))
49
50
 
50
51
  @classmethod
51
52
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -26,6 +26,7 @@ from pydantic import (
26
26
  StrictInt,
27
27
  StrictStr,
28
28
  )
29
+ from pydantic_core import to_jsonable_python
29
30
  from typing_extensions import Self
30
31
 
31
32
 
@@ -44,7 +45,8 @@ class ModelField(BaseModel):
44
45
  __properties: ClassVar[List[str]] = ["default", "description", "maxLen", "minLen", "readOnly", "title", "type"]
45
46
 
46
47
  model_config = ConfigDict(
47
- populate_by_name=True,
48
+ validate_by_name=True,
49
+ validate_by_alias=True,
48
50
  validate_assignment=True,
49
51
  protected_namespaces=(),
50
52
  )
@@ -55,8 +57,7 @@ class ModelField(BaseModel):
55
57
 
56
58
  def to_json(self) -> str:
57
59
  """Returns the JSON representation of the model using alias"""
58
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
59
- return json.dumps(self.to_dict())
60
+ return json.dumps(to_jsonable_python(self.to_dict()))
60
61
 
61
62
  @classmethod
62
63
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, StrictInt
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
 
@@ -31,7 +32,8 @@ class NewCommandResponse(BaseModel):
31
32
  __properties: ClassVar[List[str]] = ["id"]
32
33
 
33
34
  model_config = ConfigDict(
34
- populate_by_name=True,
35
+ validate_by_name=True,
36
+ validate_by_alias=True,
35
37
  validate_assignment=True,
36
38
  protected_namespaces=(),
37
39
  )
@@ -42,8 +44,7 @@ class NewCommandResponse(BaseModel):
42
44
 
43
45
  def to_json(self) -> str:
44
46
  """Returns the JSON representation of the model using alias"""
45
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
46
- return json.dumps(self.to_dict())
47
+ return json.dumps(to_jsonable_python(self.to_dict()))
47
48
 
48
49
  @classmethod
49
50
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
  from stackit.runcommand.models.properties import Properties
@@ -33,7 +34,8 @@ class ParametersSchema(BaseModel):
33
34
  __properties: ClassVar[List[str]] = ["properties"]
34
35
 
35
36
  model_config = ConfigDict(
36
- populate_by_name=True,
37
+ validate_by_name=True,
38
+ validate_by_alias=True,
37
39
  validate_assignment=True,
38
40
  protected_namespaces=(),
39
41
  )
@@ -44,8 +46,7 @@ class ParametersSchema(BaseModel):
44
46
 
45
47
  def to_json(self) -> str:
46
48
  """Returns the JSON representation of the model using alias"""
47
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
48
- return json.dumps(self.to_dict())
49
+ return json.dumps(to_jsonable_python(self.to_dict()))
49
50
 
50
51
  @classmethod
51
52
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -19,6 +19,7 @@ import pprint
19
19
  from typing import Any, ClassVar, Dict, List, Optional, Set
20
20
 
21
21
  from pydantic import BaseModel, ConfigDict, Field, StrictStr
22
+ from pydantic_core import to_jsonable_python
22
23
  from typing_extensions import Self
23
24
 
24
25
  from stackit.runcommand.models.model_field import ModelField
@@ -38,7 +39,8 @@ class Properties(BaseModel):
38
39
  __properties: ClassVar[List[str]] = ["ConfirmPassword", "Password", "Script", "Username", "required", "type"]
39
40
 
40
41
  model_config = ConfigDict(
41
- populate_by_name=True,
42
+ validate_by_name=True,
43
+ validate_by_alias=True,
42
44
  validate_assignment=True,
43
45
  protected_namespaces=(),
44
46
  )
@@ -49,8 +51,7 @@ class Properties(BaseModel):
49
51
 
50
52
  def to_json(self) -> str:
51
53
  """Returns the JSON representation of the model using alias"""
52
- # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
53
- return json.dumps(self.to_dict())
54
+ return json.dumps(to_jsonable_python(self.to_dict()))
54
55
 
55
56
  @classmethod
56
57
  def from_json(cls, json_str: str) -> Optional[Self]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stackit-runcommand
3
- Version: 1.1.2
3
+ Version: 1.2.0
4
4
  Summary: STACKIT Run Commands Service API
5
5
  Project-URL: Homepage, https://github.com/stackitcloud/stackit-sdk-python
6
6
  Project-URL: Issues, https://github.com/stackitcloud/stackit-sdk-python/issues
@@ -0,0 +1,27 @@
1
+ stackit/runcommand/__init__.py,sha256=hGt28Yt1GUrXvKoBqfnQpo2HKMRZcCmTgeszZXJat9I,2879
2
+ stackit/runcommand/api_client.py,sha256=KfEwfGDC0BEUkHLH8sbYUmhtIRtd4QYFK6pwtKweOUY,23754
3
+ stackit/runcommand/api_response.py,sha256=HRYkVqMNIlfODacTQPTbiVj2YdcnutpQrKJdeAoCSpM,642
4
+ stackit/runcommand/configuration.py,sha256=aCyt9z-HhMt3YCq_Zv8vO7dervXQs_Kz2kvzKrUUUT8,5703
5
+ stackit/runcommand/exceptions.py,sha256=5EHd1-lZWDoSmwTR2S93BSU-lVkkNNC_40g9JM7WXWI,6420
6
+ stackit/runcommand/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ stackit/runcommand/rest.py,sha256=KerHWEoIwGlQsp2Lo5C3dqSKF3HtCi4WwbCqRA9PQUg,6413
8
+ stackit/runcommand/api/__init__.py,sha256=O-WDFpOgx6B55T02W-JUoG02zuSKFHZcszlw16eLV04,105
9
+ stackit/runcommand/api/default_api.py,sha256=B-P2UAbtmpF9ZQEAuPIynew72m4QnjSu56QBFktpzHo,60628
10
+ stackit/runcommand/models/__init__.py,sha256=YiZo6DNnSDhlocl4uFhR0nDZUJwE8NRx1X_E1krqqx8,1239
11
+ stackit/runcommand/models/command_details.py,sha256=XEoZT_3l3PB6eNdoZaei3kNAbg3zo6EZ8wgSw0bKAOM,4037
12
+ stackit/runcommand/models/command_template.py,sha256=jzGy_nWVEkR4mrUmHgZW0Tzo_kJcMYwC7FO0jAVDyW0,2624
13
+ stackit/runcommand/models/command_template_response.py,sha256=lch0yZpVXFQ3VqBXt5m_zjXD7jUKxpPjCLyseVEur4k,3069
14
+ stackit/runcommand/models/command_template_schema.py,sha256=k2s95gstlmMDYcw3YV5oo8_hqCHsifiuZOPMkSqys8s,3465
15
+ stackit/runcommand/models/commands.py,sha256=qVo4UKq68JHS9adiioBepG_5byrbrO3QTxkR4gD2bP4,3665
16
+ stackit/runcommand/models/create_command_payload.py,sha256=KjuFGRcFu0ju2pWvcO2R71WnCsUW3wrbAItgYMC-O7Q,2663
17
+ stackit/runcommand/models/error_response.py,sha256=KrWg2kqW1F4qJIhF3gZUbPFFxLmckEBg5KQvZUo4g0Y,2651
18
+ stackit/runcommand/models/get_commands_response.py,sha256=k_u9qmrs-qd2hM7I2f2J_V2EDL5U_Renx1eyZv2vfDw,2914
19
+ stackit/runcommand/models/model_field.py,sha256=o1e6O8X1bcr4jYYN3OTF5aZQNZZG_cdg2Lfxep9-XrM,3210
20
+ stackit/runcommand/models/new_command_response.py,sha256=HlHl9teeiTkow3dT8qj_x6XwrLEHRWwSBiPJyYMnr6o,2431
21
+ stackit/runcommand/models/parameters_schema.py,sha256=H4tEI_OHvadK6a4T-6jpHrIIA5Gyfyxy9PiiPwXg9io,2770
22
+ stackit/runcommand/models/properties.py,sha256=MCo3GBTlpIp6zSQuVOvBsuvhxdI7FtDMPB_3A8gtx3A,4203
23
+ stackit_runcommand-1.2.0.dist-info/METADATA,sha256=MzRGh79OXOtGBIEt02oVTmdRRl0NUUetrXLfa8z6e-E,1692
24
+ stackit_runcommand-1.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
25
+ stackit_runcommand-1.2.0.dist-info/licenses/LICENSE.md,sha256=3dF8Tb7yZn2tS4zyNa-yNe-68pH8qyWdGz4ioMd3MgE,10933
26
+ stackit_runcommand-1.2.0.dist-info/licenses/NOTICE.txt,sha256=daK6MxvxH3YFeiVhow8N_fl9s-5sENiXgnGwgEgWPfw,63
27
+ stackit_runcommand-1.2.0.dist-info/RECORD,,
@@ -1,27 +0,0 @@
1
- stackit/runcommand/__init__.py,sha256=hGt28Yt1GUrXvKoBqfnQpo2HKMRZcCmTgeszZXJat9I,2879
2
- stackit/runcommand/api_client.py,sha256=1vcV8w1hvZ0ATPOWrlO1fs0Cb1BwpOVV1ECHHCmrg4c,23916
3
- stackit/runcommand/api_response.py,sha256=HRYkVqMNIlfODacTQPTbiVj2YdcnutpQrKJdeAoCSpM,642
4
- stackit/runcommand/configuration.py,sha256=aCyt9z-HhMt3YCq_Zv8vO7dervXQs_Kz2kvzKrUUUT8,5703
5
- stackit/runcommand/exceptions.py,sha256=5EHd1-lZWDoSmwTR2S93BSU-lVkkNNC_40g9JM7WXWI,6420
6
- stackit/runcommand/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- stackit/runcommand/rest.py,sha256=KerHWEoIwGlQsp2Lo5C3dqSKF3HtCi4WwbCqRA9PQUg,6413
8
- stackit/runcommand/api/__init__.py,sha256=O-WDFpOgx6B55T02W-JUoG02zuSKFHZcszlw16eLV04,105
9
- stackit/runcommand/api/default_api.py,sha256=B-P2UAbtmpF9ZQEAuPIynew72m4QnjSu56QBFktpzHo,60628
10
- stackit/runcommand/models/__init__.py,sha256=YiZo6DNnSDhlocl4uFhR0nDZUJwE8NRx1X_E1krqqx8,1239
11
- stackit/runcommand/models/command_details.py,sha256=HPA4q4Z6v13iwAMQ2JLEYHoJl7RTkqmjuRNenCNIas0,4033
12
- stackit/runcommand/models/command_template.py,sha256=QIoUmYvq1PAjaSSBu3EPQjtTQUTqggRsXO4SZnxUFvg,2620
13
- stackit/runcommand/models/command_template_response.py,sha256=RoCnU6uIPx3HYrNsJi269znZgvMczbKKyfZqZgCb_r0,3065
14
- stackit/runcommand/models/command_template_schema.py,sha256=4bqvJ3Se5qcD93SMhYNNFpeSc8TsWiD3-0ggiPOm7do,3461
15
- stackit/runcommand/models/commands.py,sha256=lxz_DvGBoR1yU-3qOui6RP-C-yEKYTL1-SDXOXy78Nk,3661
16
- stackit/runcommand/models/create_command_payload.py,sha256=N3drh2OnqxMtw-W_FK5zF1Q723mn8xCtcN547Q2M-sI,2659
17
- stackit/runcommand/models/error_response.py,sha256=20AnQiIvV4CPvbYrMedl3TDENPq-GIadrWX1yTo3poI,2647
18
- stackit/runcommand/models/get_commands_response.py,sha256=kklrjcW8qHMXB4alLZIvqslxSfUdic5J4kH7KbP5Jcc,2910
19
- stackit/runcommand/models/model_field.py,sha256=_er9L8RH3DNRlrIz0OKv4rvUTDBAn1gnYtHzA7IlOE4,3206
20
- stackit/runcommand/models/new_command_response.py,sha256=naWeB_fMrj8pI9d3dNFvDQfgolO6LUlaaiFhORps0rM,2427
21
- stackit/runcommand/models/parameters_schema.py,sha256=e2TAAxFEV63gabsntL5qfFPhjxd_EPLruIU5E4oZtAA,2766
22
- stackit/runcommand/models/properties.py,sha256=yQUPHBp8DiPNlPj0b4NpwayMCIcBc7UHuOQN-YYCC8U,4199
23
- stackit_runcommand-1.1.2.dist-info/METADATA,sha256=VdZPUiRsI13_WUIpXA2ILBHacLd92qVrgmXeSDTTcSs,1692
24
- stackit_runcommand-1.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
25
- stackit_runcommand-1.1.2.dist-info/licenses/LICENSE.md,sha256=3dF8Tb7yZn2tS4zyNa-yNe-68pH8qyWdGz4ioMd3MgE,10933
26
- stackit_runcommand-1.1.2.dist-info/licenses/NOTICE.txt,sha256=daK6MxvxH3YFeiVhow8N_fl9s-5sENiXgnGwgEgWPfw,63
27
- stackit_runcommand-1.1.2.dist-info/RECORD,,