scc-firewall-manager-sdk 1.15.15__py3-none-any.whl → 1.15.16__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.15"
18
+ __version__ = "1.15.16"
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.15/python'
91
+ self.user_agent = 'OpenAPI-Generator/1.15.16/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.15".\
383
+ "SDK Package Version: 1.15.16".\
384
384
  format(env=sys.platform, pyversion=sys.version)
385
385
 
386
386
  def get_host_settings(self):
@@ -27,9 +27,10 @@ class UpgradeFtdDeviceInput(BaseModel):
27
27
  """
28
28
  UpgradeFtdDeviceInput
29
29
  """ # noqa: E501
30
+ name: Optional[StrictStr] = Field(default=None, description="An optional name for the upgrade operation to help identify and track the upgrade.")
30
31
  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")
31
32
  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")
32
- __properties: ClassVar[List[str]] = ["stageUpgrade", "upgradePackageUid"]
33
+ __properties: ClassVar[List[str]] = ["name", "stageUpgrade", "upgradePackageUid"]
33
34
 
34
35
  model_config = ConfigDict(
35
36
  populate_by_name=True,
@@ -82,6 +83,7 @@ class UpgradeFtdDeviceInput(BaseModel):
82
83
  return cls.model_validate(obj)
83
84
 
84
85
  _obj = cls.model_validate({
86
+ "name": obj.get("name"),
85
87
  "stageUpgrade": obj.get("stageUpgrade") if obj.get("stageUpgrade") is not None else False,
86
88
  "upgradePackageUid": obj.get("upgradePackageUid")
87
89
  })
@@ -29,9 +29,10 @@ 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
+ name: Optional[StrictStr] = Field(default=None, description="An optional name for the upgrade operation to help identify and track the upgrade.")
32
33
  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")
33
34
  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")
34
- __properties: ClassVar[List[str]] = ["deviceUids", "stageUpgrade", "upgradePackageUid"]
35
+ __properties: ClassVar[List[str]] = ["deviceUids", "name", "stageUpgrade", "upgradePackageUid"]
35
36
 
36
37
  model_config = ConfigDict(
37
38
  populate_by_name=True,
@@ -85,6 +86,7 @@ class UpgradeFtdDevicesInput(BaseModel):
85
86
 
86
87
  _obj = cls.model_validate({
87
88
  "deviceUids": obj.get("deviceUids"),
89
+ "name": obj.get("name"),
88
90
  "stageUpgrade": obj.get("stageUpgrade") if obj.get("stageUpgrade") is not None else False,
89
91
  "upgradePackageUid": obj.get("upgradePackageUid")
90
92
  })
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scc-firewall-manager-sdk
3
- Version: 1.15.15
3
+ Version: 1.15.16
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=XJIXdnPrngBZne0hz2DA6v7UtQgxp14Q5-ayb4UfS_U,21153
2
- scc_firewall_manager_sdk/api_client.py,sha256=ACHvMp6ziARPfqOJL55s_o_qhlvWC5QZpxV8sXI49Yw,25920
1
+ scc_firewall_manager_sdk/__init__.py,sha256=7bpnddpkey7VwsXt3Z_K1jCzkJ_NolJXw-yrkD480O0,21153
2
+ scc_firewall_manager_sdk/api_client.py,sha256=X26XcRae85TlTWUSbQcfSKB-5kjFVdvekUuj_7XsvU4,25920
3
3
  scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- scc_firewall_manager_sdk/configuration.py,sha256=Bwjqw66mHFIhSAMJWdWmGLh3gNp5khSkAgDSVUt_i-c,15992
4
+ scc_firewall_manager_sdk/configuration.py,sha256=bVDax74xd95xn4HtxZ9n_qCFI9MCbzG50ewdys-eOQg,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
@@ -244,8 +244,8 @@ scc_firewall_manager_sdk/models/unified_object_list_view.py,sha256=NU32Z12kwgBln
244
244
  scc_firewall_manager_sdk/models/universal_ztna_settings.py,sha256=vfnfttfSKfrlffJpTzH1TCWdK46jn61lN5l0hIaX3jo,4149
245
245
  scc_firewall_manager_sdk/models/update_request.py,sha256=okwPfBTYcCUw5ZD1-XYOwa-WGv-4192QB-38rrQ1G78,3507
246
246
  scc_firewall_manager_sdk/models/upgrade_asa_device_input.py,sha256=nGZpqNNTLxrRxqVWReVy05J8QtyhM05Fz9ZM1AMusDs,2980
247
- scc_firewall_manager_sdk/models/upgrade_ftd_device_input.py,sha256=Z2gIZZMrNgMF6JVX1C6nyR32-j80tJRI0BSDbxi45mE,3249
248
- scc_firewall_manager_sdk/models/upgrade_ftd_devices_input.py,sha256=ZaecyDQcmwQaIeX3ZxG4Rd9uDaq1PFzu58Z1I5M5dv8,3664
247
+ scc_firewall_manager_sdk/models/upgrade_ftd_device_input.py,sha256=EkZVgn1onpw5ruKOa4ygYjty2VHVWdknM8G0c4r4VZA,3444
248
+ scc_firewall_manager_sdk/models/upgrade_ftd_devices_input.py,sha256=SOs24cfe6PwO9_8yefiwdGioYrIXPKQtU1GRa4IgCqc,3859
249
249
  scc_firewall_manager_sdk/models/url_object_content.py,sha256=OqcDbRE_HoEGf4Z_yCsTH8B08R9GdY8RMOs1wM0-ecY,2657
250
250
  scc_firewall_manager_sdk/models/user.py,sha256=2bH858kufK8KnTsIXIul0VOH0JpJ-g4zyXE9lyMQHGE,4297
251
251
  scc_firewall_manager_sdk/models/user_create_or_update_input.py,sha256=_H5fXo4_Pa5_mIK7T2LzPu_ekMnZlXdxVvsU8Rs612g,3850
@@ -257,7 +257,7 @@ scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=AKUqPJw5ku
257
257
  scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=srEFTyQykscNrWsbp8KGEzbmHC07_AU3DXjJ-7Be4zc,6054
258
258
  scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=HAgBTdocZeHGDZP_-9NyRtzP9E7BReGtiOmn4S3J-_g,5326
259
259
  scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=f9Z62yGFvz4QAQ07Z4bjfHLw2bRg46ccwoLuQ8q30TE,4808
260
- scc_firewall_manager_sdk-1.15.15.dist-info/METADATA,sha256=vNmn-KxOAQhJxXp5BoqjeEbvvvftPcqKmXQIXs-lYcw,595
261
- scc_firewall_manager_sdk-1.15.15.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
262
- scc_firewall_manager_sdk-1.15.15.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
263
- scc_firewall_manager_sdk-1.15.15.dist-info/RECORD,,
260
+ scc_firewall_manager_sdk-1.15.16.dist-info/METADATA,sha256=sHMg2RNIoCBywg6_JmRUPtXVfJR0wnsAutlp_-jx3ZQ,595
261
+ scc_firewall_manager_sdk-1.15.16.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
262
+ scc_firewall_manager_sdk-1.15.16.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
263
+ scc_firewall_manager_sdk-1.15.16.dist-info/RECORD,,