scc-firewall-manager-sdk 1.15.69__py3-none-any.whl → 1.15.71__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.

Potentially problematic release.


This version of scc-firewall-manager-sdk might be problematic. Click here for more details.

@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.15.69"
18
+ __version__ = "1.15.71"
19
19
 
20
20
  # import apis into sdk package
21
21
  from scc_firewall_manager_sdk.api.ai_assistant_api import AIAssistantApi
@@ -88,7 +88,7 @@ class ApiClient:
88
88
  self.default_headers[header_name] = header_value
89
89
  self.cookie = cookie
90
90
  # Set default User-Agent.
91
- self.user_agent = 'OpenAPI-Generator/1.15.69/python'
91
+ self.user_agent = 'OpenAPI-Generator/1.15.71/python'
92
92
  self.client_side_validation = configuration.client_side_validation
93
93
 
94
94
  def __enter__(self):
@@ -380,7 +380,7 @@ class Configuration:
380
380
  "OS: {env}\n"\
381
381
  "Python Version: {pyversion}\n"\
382
382
  "Version of the API: 1.15.0\n"\
383
- "SDK Package Version: 1.15.69".\
383
+ "SDK Package Version: 1.15.71".\
384
384
  format(env=sys.platform, pyversion=sys.version)
385
385
 
386
386
  def get_host_settings(self):
@@ -18,7 +18,7 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import json
20
20
 
21
- from pydantic import BaseModel, ConfigDict, Field, StrictStr
21
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
22
22
  from typing import Any, ClassVar, Dict, List, Optional
23
23
  from typing import Optional, Set
24
24
  from typing_extensions import Self
@@ -28,8 +28,9 @@ class UpgradeAsaDeviceInput(BaseModel):
28
28
  UpgradeAsaDeviceInput
29
29
  """ # noqa: E501
30
30
  asdm_version: Optional[StrictStr] = Field(default=None, description="The target ASDM software version to upgrade the device to.", alias="asdmVersion")
31
+ ignore_maintenance_window: Optional[StrictBool] = Field(default=None, description="A boolean value, indicating whether device maintenance window should be ignored. If this is set to true, upgrade will be allowed even if device is outside maintenance window.", alias="ignoreMaintenanceWindow")
31
32
  software_version: Optional[StrictStr] = Field(default=None, description="The target ASA firmware version to upgrade the device to.", alias="softwareVersion")
32
- __properties: ClassVar[List[str]] = ["asdmVersion", "softwareVersion"]
33
+ __properties: ClassVar[List[str]] = ["asdmVersion", "ignoreMaintenanceWindow", "softwareVersion"]
33
34
 
34
35
  model_config = ConfigDict(
35
36
  populate_by_name=True,
@@ -83,6 +84,7 @@ class UpgradeAsaDeviceInput(BaseModel):
83
84
 
84
85
  _obj = cls.model_validate({
85
86
  "asdmVersion": obj.get("asdmVersion"),
87
+ "ignoreMaintenanceWindow": obj.get("ignoreMaintenanceWindow"),
86
88
  "softwareVersion": obj.get("softwareVersion")
87
89
  })
88
90
  return _obj
@@ -27,10 +27,11 @@ class UpgradeFtdDeviceInput(BaseModel):
27
27
  """
28
28
  UpgradeFtdDeviceInput
29
29
  """ # noqa: E501
30
+ ignore_maintenance_window: Optional[StrictBool] = Field(default=None, description="A boolean value, indicating whether device maintenance window should be ignored. If this is set to true, upgrade will be allowed even if device is outside maintenance window.", alias="ignoreMaintenanceWindow")
30
31
  name: Optional[StrictStr] = Field(default=None, description="An optional name for the upgrade operation to help identify and track the upgrade.")
31
32
  stage_upgrade: Optional[StrictBool] = Field(default=False, description="A boolean value, indicating whether the upgrade should be staged. If this is set to true, the image will be downloaded on to the device and readiness checks will be performed. However, the upgrade will not be applied to the device.", alias="stageUpgrade")
32
33
  upgrade_package_uid: StrictStr = Field(description="The unique identifier, represented as a UUID, of the upgrade package to be applied to the device.", alias="upgradePackageUid")
33
- __properties: ClassVar[List[str]] = ["name", "stageUpgrade", "upgradePackageUid"]
34
+ __properties: ClassVar[List[str]] = ["ignoreMaintenanceWindow", "name", "stageUpgrade", "upgradePackageUid"]
34
35
 
35
36
  model_config = ConfigDict(
36
37
  populate_by_name=True,
@@ -83,6 +84,7 @@ class UpgradeFtdDeviceInput(BaseModel):
83
84
  return cls.model_validate(obj)
84
85
 
85
86
  _obj = cls.model_validate({
87
+ "ignoreMaintenanceWindow": obj.get("ignoreMaintenanceWindow"),
86
88
  "name": obj.get("name"),
87
89
  "stageUpgrade": obj.get("stageUpgrade") if obj.get("stageUpgrade") is not None else False,
88
90
  "upgradePackageUid": obj.get("upgradePackageUid")
@@ -29,10 +29,11 @@ class UpgradeFtdDevicesInput(BaseModel):
29
29
  UpgradeFtdDevicesInput
30
30
  """ # noqa: E501
31
31
  device_uids: Annotated[List[StrictStr], Field(min_length=1, max_length=50)] = Field(description="The set of unique identifiers, represented as UUIDs, of the devices to upgrade in Security Cloud Control. All of the devices in the list have to be compatible with the upgrade package.", alias="deviceUids")
32
+ ignore_maintenance_window: Optional[StrictBool] = Field(default=None, description="A boolean value, indicating whether devices maintenance window should be ignored. If this is set to true, upgrade will be allowed even if there are devices outside their maintenance window.", alias="ignoreMaintenanceWindow")
32
33
  name: Optional[StrictStr] = Field(default=None, description="An optional name for the upgrade operation to help identify and track the upgrade.")
33
34
  stage_upgrade: Optional[StrictBool] = Field(default=False, description="A boolean value, indicating whether the upgrade should be staged. If this is set to true, the image will be downloaded on to the device and readiness checks will be performed. However, the upgrade will not be applied to the device.", alias="stageUpgrade")
34
35
  upgrade_package_uid: StrictStr = Field(description="The unique identifier, represented as a UUID, of the upgrade package to be applied to the device.", alias="upgradePackageUid")
35
- __properties: ClassVar[List[str]] = ["deviceUids", "name", "stageUpgrade", "upgradePackageUid"]
36
+ __properties: ClassVar[List[str]] = ["deviceUids", "ignoreMaintenanceWindow", "name", "stageUpgrade", "upgradePackageUid"]
36
37
 
37
38
  model_config = ConfigDict(
38
39
  populate_by_name=True,
@@ -86,6 +87,7 @@ class UpgradeFtdDevicesInput(BaseModel):
86
87
 
87
88
  _obj = cls.model_validate({
88
89
  "deviceUids": obj.get("deviceUids"),
90
+ "ignoreMaintenanceWindow": obj.get("ignoreMaintenanceWindow"),
89
91
  "name": obj.get("name"),
90
92
  "stageUpgrade": obj.get("stageUpgrade") if obj.get("stageUpgrade") is not None else False,
91
93
  "upgradePackageUid": obj.get("upgradePackageUid")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scc-firewall-manager-sdk
3
- Version: 1.15.69
3
+ Version: 1.15.71
4
4
  Summary: Cisco Security Cloud Control Firewall Manager API
5
5
  Home-page:
6
6
  Author: Cisco Security Cloud Control TAC
@@ -1,7 +1,7 @@
1
- scc_firewall_manager_sdk/__init__.py,sha256=hfUZIyZqIoDy5cXtFUBQxyQxiOmbJuSp1e_hj0WcIK8,21913
2
- scc_firewall_manager_sdk/api_client.py,sha256=_KbVVRjhSaHBBKyosbUqJ3TDiZpmp8su03SScdEmXO0,25920
1
+ scc_firewall_manager_sdk/__init__.py,sha256=DayD3A9lEvn5ZRyjMOxoN0YSnfN_mdYAplUEnYgmTnI,21913
2
+ scc_firewall_manager_sdk/api_client.py,sha256=-8iSe4202fieAyqp9MplOVuy9QVBtcKpnuVt3b9CBro,25920
3
3
  scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- scc_firewall_manager_sdk/configuration.py,sha256=3jv3Ql_XK1Ft9bVt5pesfX9_LZJebThnKMUsKRHLZEE,15992
4
+ scc_firewall_manager_sdk/configuration.py,sha256=5QrL-U2f0W2AdveibEZieUv9jV74JOpgLIMS7JOKN7U,15992
5
5
  scc_firewall_manager_sdk/exceptions.py,sha256=u5-7l5MRjP-aS2pNudBzqSw9OI4xVsIvUjw4WCA8LEk,6039
6
6
  scc_firewall_manager_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
7
  scc_firewall_manager_sdk/rest.py,sha256=cSeilvAB5y-V_10IdXcZ0kOyv5dYW8jeWVhrD6kUDa0,9309
@@ -249,9 +249,9 @@ scc_firewall_manager_sdk/models/tenant_settings.py,sha256=SBz33QJxeSRsKTk2LZUWg7
249
249
  scc_firewall_manager_sdk/models/unified_object_list_view.py,sha256=nMYDZ-ulbnjpyvSCFazeq9TP_JzJ6pnYcZXbl-dRRpI,4167
250
250
  scc_firewall_manager_sdk/models/universal_ztna_settings.py,sha256=vfnfttfSKfrlffJpTzH1TCWdK46jn61lN5l0hIaX3jo,4149
251
251
  scc_firewall_manager_sdk/models/update_request.py,sha256=okwPfBTYcCUw5ZD1-XYOwa-WGv-4192QB-38rrQ1G78,3507
252
- scc_firewall_manager_sdk/models/upgrade_asa_device_input.py,sha256=nGZpqNNTLxrRxqVWReVy05J8QtyhM05Fz9ZM1AMusDs,2980
253
- scc_firewall_manager_sdk/models/upgrade_ftd_device_input.py,sha256=EkZVgn1onpw5ruKOa4ygYjty2VHVWdknM8G0c4r4VZA,3444
254
- scc_firewall_manager_sdk/models/upgrade_ftd_devices_input.py,sha256=SOs24cfe6PwO9_8yefiwdGioYrIXPKQtU1GRa4IgCqc,3859
252
+ scc_firewall_manager_sdk/models/upgrade_asa_device_input.py,sha256=j_zJPdZT2o__UDL5HHp_v1aENSM0zP0yjDFDJZnnNmw,3391
253
+ scc_firewall_manager_sdk/models/upgrade_ftd_device_input.py,sha256=MbPKinUCTDXl39E-P7KhiHb3oJKb_Liewn7WS21Y-0k,3843
254
+ scc_firewall_manager_sdk/models/upgrade_ftd_devices_input.py,sha256=IecylWty_KpfCW3xaNZgj-RhxHW3nhPQNziHHYjy1DQ,4273
255
255
  scc_firewall_manager_sdk/models/upgrade_run_dto.py,sha256=Aw4R31JM_NfUrPerNZEPpCq9zntmw5UvCt-xh104piU,5544
256
256
  scc_firewall_manager_sdk/models/upgrade_run_modify_input.py,sha256=attD1huRN1nST0xkblUW50VgNYtNXtOGH_1WVF0q-jw,2708
257
257
  scc_firewall_manager_sdk/models/url_object_content.py,sha256=OqcDbRE_HoEGf4Z_yCsTH8B08R9GdY8RMOs1wM0-ecY,2657
@@ -265,7 +265,7 @@ scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=AKUqPJw5ku
265
265
  scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=srEFTyQykscNrWsbp8KGEzbmHC07_AU3DXjJ-7Be4zc,6054
266
266
  scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=HAgBTdocZeHGDZP_-9NyRtzP9E7BReGtiOmn4S3J-_g,5326
267
267
  scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=f9Z62yGFvz4QAQ07Z4bjfHLw2bRg46ccwoLuQ8q30TE,4808
268
- scc_firewall_manager_sdk-1.15.69.dist-info/METADATA,sha256=3Z_MELFNvHyvmlU0CfgQGLstsKuTEqYSBUB0_o_Y6Po,595
269
- scc_firewall_manager_sdk-1.15.69.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
270
- scc_firewall_manager_sdk-1.15.69.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
271
- scc_firewall_manager_sdk-1.15.69.dist-info/RECORD,,
268
+ scc_firewall_manager_sdk-1.15.71.dist-info/METADATA,sha256=xLaXNSj0G3kgLwhD6KaAmLbWhCNnzTHTLmsemwFXRxU,595
269
+ scc_firewall_manager_sdk-1.15.71.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
270
+ scc_firewall_manager_sdk-1.15.71.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
271
+ scc_firewall_manager_sdk-1.15.71.dist-info/RECORD,,