scc-firewall-manager-sdk 1.13.796__py3-none-any.whl → 1.13.798__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.
- scc_firewall_manager_sdk/__init__.py +2 -2
- scc_firewall_manager_sdk/api/__init__.py +1 -1
- scc_firewall_manager_sdk/api/{access_groups_api.py → asa_access_groups_api.py} +13 -13
- scc_firewall_manager_sdk/api/asa_access_rules_api.py +12 -12
- scc_firewall_manager_sdk/api/asa_interfaces_api.py +300 -300
- scc_firewall_manager_sdk/api_client.py +1 -1
- scc_firewall_manager_sdk/configuration.py +1 -1
- scc_firewall_manager_sdk/models/asa_interface.py +20 -20
- scc_firewall_manager_sdk/models/ether_channel_interface_create_input.py +9 -9
- scc_firewall_manager_sdk/models/ether_channel_interface_patch_input.py +8 -8
- scc_firewall_manager_sdk/models/interface_ip_address.py +4 -4
- scc_firewall_manager_sdk/models/interface_ipv6_address.py +5 -5
- scc_firewall_manager_sdk/models/interface_runtime_data.py +6 -6
- scc_firewall_manager_sdk/models/physical_interface_patch_input.py +6 -6
- scc_firewall_manager_sdk/models/sub_interface_create_input.py +9 -9
- scc_firewall_manager_sdk/models/sub_interface_patch_input.py +6 -6
- scc_firewall_manager_sdk/models/switch_port_config.py +4 -4
- scc_firewall_manager_sdk/models/vlan_interface_create_input.py +8 -8
- scc_firewall_manager_sdk/models/vlan_interface_patch_input.py +7 -7
- {scc_firewall_manager_sdk-1.13.796.dist-info → scc_firewall_manager_sdk-1.13.798.dist-info}/METADATA +1 -1
- {scc_firewall_manager_sdk-1.13.796.dist-info → scc_firewall_manager_sdk-1.13.798.dist-info}/RECORD +23 -23
- {scc_firewall_manager_sdk-1.13.796.dist-info → scc_firewall_manager_sdk-1.13.798.dist-info}/WHEEL +0 -0
- {scc_firewall_manager_sdk-1.13.796.dist-info → scc_firewall_manager_sdk-1.13.798.dist-info}/top_level.txt +0 -0
|
@@ -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.13.
|
|
91
|
+
self.user_agent = 'OpenAPI-Generator/1.13.798/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.13.0\n"\
|
|
383
|
-
"SDK Package Version: 1.13.
|
|
383
|
+
"SDK Package Version: 1.13.798".\
|
|
384
384
|
format(env=sys.platform, pyversion=sys.version)
|
|
385
385
|
|
|
386
386
|
def get_host_settings(self):
|
|
@@ -36,36 +36,36 @@ class AsaInterface(BaseModel):
|
|
|
36
36
|
"""
|
|
37
37
|
AsaInterface
|
|
38
38
|
""" # noqa: E501
|
|
39
|
-
description: Optional[StrictStr] = Field(default=None, description="
|
|
40
|
-
device_uid: Optional[StrictStr] = Field(default=None, description="
|
|
39
|
+
description: Optional[StrictStr] = Field(default=None, description="Interface description.")
|
|
40
|
+
device_uid: Optional[StrictStr] = Field(default=None, description="Unique identifier (UUID) of the device associated with the interface.", alias="deviceUid")
|
|
41
41
|
duplex_type: Optional[DuplexType] = Field(default=None, alias="duplexType")
|
|
42
42
|
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is enabled.")
|
|
43
|
-
ether_channel_group_uid: Optional[StrictStr] = Field(default=None, description="
|
|
44
|
-
ether_channel_id: Optional[StrictInt] = Field(default=None, description="
|
|
45
|
-
hardware_name: Optional[StrictStr] = Field(default=None, description="
|
|
43
|
+
ether_channel_group_uid: Optional[StrictStr] = Field(default=None, description="Unique identifier (UUID) of the EtherChannel group to which this interface belongs.", alias="etherChannelGroupUid")
|
|
44
|
+
ether_channel_id: Optional[StrictInt] = Field(default=None, description="Identifier of the EtherChannel interface in the scope of the device.", alias="etherChannelId")
|
|
45
|
+
hardware_name: Optional[StrictStr] = Field(default=None, description="Interface hardware name. It is usually structured from the type, speed, slot and port number.", alias="hardwareName")
|
|
46
46
|
interface_type: Optional[InterfaceType] = Field(default=None, alias="interfaceType")
|
|
47
47
|
ipv4: Optional[InterfaceIpv4Address] = None
|
|
48
48
|
ipv6: Optional[InterfaceIpv6Address] = None
|
|
49
49
|
lacp_mode: Optional[StrictStr] = Field(default=None, description="The Link Aggregation Control Protocol (LACP) mode of the EtherChannel interface.", alias="lacpMode")
|
|
50
|
-
mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
51
|
-
management_interface: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is used for device management
|
|
52
|
-
management_only: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is exclusively used for management traffic and
|
|
53
|
-
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="
|
|
50
|
+
mac_address: Optional[StrictStr] = Field(default=None, description="Interface MAC address is a unique hardware identifier assigned to each physical interface and used for Layer 2 communication in a network segment.", alias="macAddress")
|
|
51
|
+
management_interface: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is used for device management.", alias="managementInterface")
|
|
52
|
+
management_only: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is exclusively used for management traffic and not regular user or data traffic.", alias="managementOnly")
|
|
53
|
+
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="Set of unique identifiers (UUIDs) of interfaces that are part of an EtherChannel group.", alias="memberInterfaces")
|
|
54
54
|
mode: Optional[InterfaceMode] = None
|
|
55
|
-
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored
|
|
56
|
-
mtu: Optional[StrictInt] = Field(default=None, description="
|
|
57
|
-
name: Optional[StrictStr] = Field(default=None, description="
|
|
58
|
-
parent_interface_uid: Optional[StrictStr] = Field(default=None, description="
|
|
55
|
+
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored as part of an HA setup. The check determines if the interface is functioning correctly and whether a failover to a standby device should be triggered, if required.", alias="monitorInterface")
|
|
56
|
+
mtu: Optional[StrictInt] = Field(default=None, description="Interface MTU, in bytes, of a packet or frame that can be sent over a network interface without needing to be fragmented. It defines the maximum payload size the interface can handle in a single transmission. Valid range is from 64 to 9198.")
|
|
57
|
+
name: Optional[StrictStr] = Field(default=None, description="Logical name of the interface, unique in the scope of the device.")
|
|
58
|
+
parent_interface_uid: Optional[StrictStr] = Field(default=None, description="Unique identifier (UUID) of the parent interface.", alias="parentInterfaceUid")
|
|
59
59
|
runtime_data: Optional[InterfaceRuntimeData] = Field(default=None, alias="runtimeData")
|
|
60
|
-
security_level: Optional[StrictInt] = Field(default=None, description="Indicates
|
|
60
|
+
security_level: Optional[StrictInt] = Field(default=None, description="Indicates interface trust level, ranging from 0 (lowest) to 100 (highest).", alias="securityLevel")
|
|
61
61
|
speed_type: Optional[SpeedType] = Field(default=None, alias="speedType")
|
|
62
|
-
standby_mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
63
|
-
sub_interface_id: Optional[StrictInt] = Field(default=None, description="
|
|
62
|
+
standby_mac_address: Optional[StrictStr] = Field(default=None, description="Standby interface MAC address for use in HA pairs.", alias="standbyMacAddress")
|
|
63
|
+
sub_interface_id: Optional[StrictInt] = Field(default=None, description="Unique identifier of the subinterface, which is used to differentiate between the subinterfaces of the same parent interface. Valid range is from 1 to 4294967295.", alias="subInterfaceId")
|
|
64
64
|
switch_port_config: Optional[SwitchPortConfig] = Field(default=None, alias="switchPortConfig")
|
|
65
|
-
uid: Optional[StrictStr] = Field(default=None, description="
|
|
66
|
-
vlan_id: Optional[StrictInt] = Field(default=None, description="
|
|
67
|
-
vlan_primary_id: Optional[StrictInt] = Field(default=None, description="
|
|
68
|
-
vlan_secondary_ids: Optional[List[VlanIdRange]] = Field(default=None, description="
|
|
65
|
+
uid: Optional[StrictStr] = Field(default=None, description="Unique identifier (UUID) of the interface in Security Cloud Control.")
|
|
66
|
+
vlan_id: Optional[StrictInt] = Field(default=None, description="Unique identifier of the VLAN associated with VLAN interface. Valid range is from 1 to 4070.", alias="vlanId")
|
|
67
|
+
vlan_primary_id: Optional[StrictInt] = Field(default=None, description="Primary unique identifier of the VLAN associated with subinterface. Valid range is from 1 to 4094.", alias="vlanPrimaryId")
|
|
68
|
+
vlan_secondary_ids: Optional[List[VlanIdRange]] = Field(default=None, description="Secondary identifiers of the VLAN associated with subinterface. Each range is defined by a start and end value, which allows multiple VLANs to be associated with a subinterface. All ranges are inclusive.", alias="vlanSecondaryIds")
|
|
69
69
|
__properties: ClassVar[List[str]] = ["description", "deviceUid", "duplexType", "enabled", "etherChannelGroupUid", "etherChannelId", "hardwareName", "interfaceType", "ipv4", "ipv6", "lacpMode", "macAddress", "managementInterface", "managementOnly", "memberInterfaces", "mode", "monitorInterface", "mtu", "name", "parentInterfaceUid", "runtimeData", "securityLevel", "speedType", "standbyMacAddress", "subInterfaceId", "switchPortConfig", "uid", "vlanId", "vlanPrimaryId", "vlanSecondaryIds"]
|
|
70
70
|
|
|
71
71
|
@field_validator('lacp_mode')
|
|
@@ -29,18 +29,18 @@ class EtherChannelInterfaceCreateInput(BaseModel):
|
|
|
29
29
|
"""
|
|
30
30
|
EtherChannelInterfaceCreateInput
|
|
31
31
|
""" # noqa: E501
|
|
32
|
-
description: Optional[StrictStr] = Field(default=None, description="
|
|
32
|
+
description: Optional[StrictStr] = Field(default=None, description="Interface description.")
|
|
33
33
|
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is enabled.")
|
|
34
|
-
ether_channel_id: Optional[StrictInt] = Field(default=None, description="
|
|
34
|
+
ether_channel_id: Optional[StrictInt] = Field(default=None, description="EtherChannel interface identifier in the scope of the device.", alias="etherChannelId")
|
|
35
35
|
ipv4: Optional[InterfaceIpv4Address] = None
|
|
36
36
|
ipv6: Optional[InterfaceIpv6Address] = None
|
|
37
|
-
lacp_mode: Optional[StrictStr] = Field(default=None, description="
|
|
38
|
-
mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
39
|
-
management_only: Optional[StrictBool] = Field(default=None, description="Indicates
|
|
40
|
-
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="
|
|
41
|
-
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored
|
|
42
|
-
mtu: Optional[StrictInt] = Field(default=None, description="
|
|
43
|
-
name: Optional[StrictStr] = Field(default=None, description="
|
|
37
|
+
lacp_mode: Optional[StrictStr] = Field(default=None, description="Link Aggregation Control Protocol (LACP) mode of EtherChannel interface.", alias="lacpMode")
|
|
38
|
+
mac_address: Optional[StrictStr] = Field(default=None, description="Interface MAC address is a unique hardware identifier assigned to each physical interface and used for Layer 2 communication in a network segment.", alias="macAddress")
|
|
39
|
+
management_only: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is used exclusively for management traffic and not regular user or data traffic.", alias="managementOnly")
|
|
40
|
+
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="Set of unique identifiers (UUIDs) of the member interfaces that are a part of the EtherChannel group.", alias="memberInterfaces")
|
|
41
|
+
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored as part of an HA setup. The check determines if the interface is functioning correctly and whether a failover to a standby device should be triggered, if required.", alias="monitorInterface")
|
|
42
|
+
mtu: Optional[StrictInt] = Field(default=None, description="Interface MTU, in bytes, of a packet or frame that can be sent over a network interface without needing to be fragmented. MTU defines the maximum payload size the interface can handle in a single transmission. . Valid range is from 64 to 9198.")
|
|
43
|
+
name: Optional[StrictStr] = Field(default=None, description="Logical name of the interface, which must be unique in the scope of the device.")
|
|
44
44
|
security_level: Optional[StrictInt] = Field(default=None, description="Indicates the interface trust level, ranging from 0 (lowest) to 100 (highest).", alias="securityLevel")
|
|
45
45
|
standby_mac_address: Optional[StrictStr] = Field(default=None, description="The standby interface Media Access Control (MAC) address, for use in a high-availability (HA) pair.", alias="standbyMacAddress")
|
|
46
46
|
__properties: ClassVar[List[str]] = ["description", "enabled", "etherChannelId", "ipv4", "ipv6", "lacpMode", "macAddress", "managementOnly", "memberInterfaces", "monitorInterface", "mtu", "name", "securityLevel", "standbyMacAddress"]
|
|
@@ -29,17 +29,17 @@ class EtherChannelInterfacePatchInput(BaseModel):
|
|
|
29
29
|
"""
|
|
30
30
|
EtherChannelInterfacePatchInput
|
|
31
31
|
""" # noqa: E501
|
|
32
|
-
description: Optional[StrictStr] = Field(default=None, description="
|
|
32
|
+
description: Optional[StrictStr] = Field(default=None, description="Interface description.")
|
|
33
33
|
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is enabled.")
|
|
34
34
|
ipv4: Optional[InterfaceIpv4Address] = None
|
|
35
35
|
ipv6: Optional[InterfaceIpv6Address] = None
|
|
36
|
-
lacp_mode: Optional[StrictStr] = Field(default=None, description="
|
|
37
|
-
mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
38
|
-
management_only: Optional[StrictBool] = Field(default=None, description="Indicates
|
|
39
|
-
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="
|
|
40
|
-
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored
|
|
41
|
-
mtu: Optional[StrictInt] = Field(default=None, description="
|
|
42
|
-
name: Optional[StrictStr] = Field(default=None, description="
|
|
36
|
+
lacp_mode: Optional[StrictStr] = Field(default=None, description="Link Aggregation Control Protocol (LACP) mode of the EtherChannel interface.", alias="lacpMode")
|
|
37
|
+
mac_address: Optional[StrictStr] = Field(default=None, description="Interface MAC address is a unique hardware identifier assigned to each physical interface and used for Layer 2 communication in a network segment.", alias="macAddress")
|
|
38
|
+
management_only: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is used exclusively for management traffic and not regular user or data traffic.", alias="managementOnly")
|
|
39
|
+
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="Set of unique identifiers (UUIDs) of the member interfaces that are a part of the EtherChannel group.", alias="memberInterfaces")
|
|
40
|
+
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored as part of an HA setup. The check determines if the interface is functioning correctly and whether a failover to a standby device should be triggered, if required.", alias="monitorInterface")
|
|
41
|
+
mtu: Optional[StrictInt] = Field(default=None, description="Interface MTU, in bytes, of a packet or frame that can be sent over a network interface without needing to be fragmented. MTU defines the maximum payload size the interface can handle in a single transmission. . Valid range is from 64 to 9198.")
|
|
42
|
+
name: Optional[StrictStr] = Field(default=None, description="Logical name of the interface, which must be unique in the scope of the device.")
|
|
43
43
|
security_level: Optional[StrictInt] = Field(default=None, description="Indicates the interface trust level, ranging from 0 (lowest) to 100 (highest).", alias="securityLevel")
|
|
44
44
|
standby_mac_address: Optional[StrictStr] = Field(default=None, description="The standby interface Media Access Control (MAC) address, for use in a high-availability (HA) pair.", alias="standbyMacAddress")
|
|
45
45
|
__properties: ClassVar[List[str]] = ["description", "enabled", "ipv4", "ipv6", "lacpMode", "macAddress", "managementOnly", "memberInterfaces", "monitorInterface", "mtu", "name", "securityLevel", "standbyMacAddress"]
|
|
@@ -27,10 +27,10 @@ class InterfaceIpAddress(BaseModel):
|
|
|
27
27
|
"""
|
|
28
28
|
InterfaceIpAddress
|
|
29
29
|
""" # noqa: E501
|
|
30
|
-
ip_address: Optional[StrictStr] = Field(default=None, description="
|
|
31
|
-
netmask: Optional[StrictStr] = Field(default=None, description="A 32-bit number that defines the network portion of
|
|
32
|
-
setroute: Optional[StrictBool] = Field(default=None, description="Indicates whether a default route using the gateway information provided by the DHCP server is created automatically.
|
|
33
|
-
standby_ip_address: Optional[StrictStr] = Field(default=None, description="
|
|
30
|
+
ip_address: Optional[StrictStr] = Field(default=None, description="Unique network address assigned to a physical or logical port, which enables the port to communicate on a specific network segment and enforce security policies for traffic traversing that interface.", alias="ipAddress")
|
|
31
|
+
netmask: Optional[StrictStr] = Field(default=None, description="A 32-bit number that defines the network portion of an IP address, differentiating it from the host portion. This number determines the size of the local network segment directly connected to the interface, allowing it to identify which traffic belongs to its local network and which needs to be routed.")
|
|
32
|
+
setroute: Optional[StrictBool] = Field(default=None, description="Indicates whether a default route using the gateway information provided by the DHCP server is created automatically. The DHCP-assigned gateway is used as the next-hop for routing traffic.")
|
|
33
|
+
standby_ip_address: Optional[StrictStr] = Field(default=None, description="Secondary IP address configured in an interface, specifically for use in an HA pair. This address stays inactive in the standby unit until a failover occurs, at which point, the standby assumes ownership of both the primary and secondary IP addresses to ensure network connectivity for devices.", alias="standbyIpAddress")
|
|
34
34
|
__properties: ClassVar[List[str]] = ["ipAddress", "netmask", "setroute", "standbyIpAddress"]
|
|
35
35
|
|
|
36
36
|
model_config = ConfigDict(
|
|
@@ -28,12 +28,12 @@ class InterfaceIpv6Address(BaseModel):
|
|
|
28
28
|
"""
|
|
29
29
|
InterfaceIpv6Address
|
|
30
30
|
""" # noqa: E501
|
|
31
|
-
auto_config: Optional[StrictBool] = Field(default=None, description="Indicates whether
|
|
32
|
-
dad_attempts: Optional[StrictInt] = Field(default=None, description="Indicates
|
|
33
|
-
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether
|
|
34
|
-
ip_addresses: Optional[List[InterfaceIpAddress]] = Field(default=None, description="List of
|
|
31
|
+
auto_config: Optional[StrictBool] = Field(default=None, description="Indicates whether address is automatically configured.", alias="autoConfig")
|
|
32
|
+
dad_attempts: Optional[StrictInt] = Field(default=None, description="Indicates the number of times a device performs Duplicate Address Detection (DAD) to verify the uniqueness of an address before assigning the IPv6 address. Valid range is from 0 to 600.", alias="dadAttempts")
|
|
33
|
+
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether IPv6 is enabled in interface.")
|
|
34
|
+
ip_addresses: Optional[List[InterfaceIpAddress]] = Field(default=None, description="List of IPv6 addresses assigned to interface.", alias="ipAddresses")
|
|
35
35
|
link_local_address: Optional[InterfaceIpAddress] = Field(default=None, alias="linkLocalAddress")
|
|
36
|
-
suppress_ra: Optional[StrictBool] = Field(default=None, description="Indicates whether
|
|
36
|
+
suppress_ra: Optional[StrictBool] = Field(default=None, description="Indicates whether router advertisements should be suppressed.", alias="suppressRA")
|
|
37
37
|
__properties: ClassVar[List[str]] = ["autoConfig", "dadAttempts", "enabled", "ipAddresses", "linkLocalAddress", "suppressRA"]
|
|
38
38
|
|
|
39
39
|
model_config = ConfigDict(
|
|
@@ -28,13 +28,13 @@ class InterfaceRuntimeData(BaseModel):
|
|
|
28
28
|
"""
|
|
29
29
|
InterfaceRuntimeData
|
|
30
30
|
""" # noqa: E501
|
|
31
|
-
duplex_type: Optional[StrictStr] = Field(default=None, description="
|
|
32
|
-
ip_address: Optional[StrictStr] = Field(default=None, description="
|
|
33
|
-
link_enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether
|
|
31
|
+
duplex_type: Optional[StrictStr] = Field(default=None, description="Actual duplex mode of the physical interface.", alias="duplexType")
|
|
32
|
+
ip_address: Optional[StrictStr] = Field(default=None, description="Actual IP address of the interface.", alias="ipAddress")
|
|
33
|
+
link_enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether interface link is enabled.", alias="linkEnabled")
|
|
34
34
|
link_state: Optional[LinkState] = Field(default=None, alias="linkState")
|
|
35
|
-
mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
36
|
-
mtu: Optional[StrictInt] = Field(default=None, description="
|
|
37
|
-
speed_type: Optional[StrictStr] = Field(default=None, description="
|
|
35
|
+
mac_address: Optional[StrictStr] = Field(default=None, description="Actual MAC address of the interface.", alias="macAddress")
|
|
36
|
+
mtu: Optional[StrictInt] = Field(default=None, description="Actual MTU of the interface.")
|
|
37
|
+
speed_type: Optional[StrictStr] = Field(default=None, description="Actual speed of the physical interface.", alias="speedType")
|
|
38
38
|
__properties: ClassVar[List[str]] = ["duplexType", "ipAddress", "linkEnabled", "linkState", "macAddress", "mtu", "speedType"]
|
|
39
39
|
|
|
40
40
|
model_config = ConfigDict(
|
|
@@ -32,17 +32,17 @@ class PhysicalInterfacePatchInput(BaseModel):
|
|
|
32
32
|
"""
|
|
33
33
|
PhysicalInterfacePatchInput
|
|
34
34
|
""" # noqa: E501
|
|
35
|
-
description: Optional[StrictStr] = Field(default=None, description="
|
|
35
|
+
description: Optional[StrictStr] = Field(default=None, description="Interface description.")
|
|
36
36
|
duplex_type: Optional[DuplexType] = Field(default=None, alias="duplexType")
|
|
37
37
|
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is enabled.")
|
|
38
38
|
ipv4: Optional[InterfaceIpv4Address] = None
|
|
39
39
|
ipv6: Optional[InterfaceIpv6Address] = None
|
|
40
|
-
mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
41
|
-
management_only: Optional[StrictBool] = Field(default=None, description="Indicates
|
|
40
|
+
mac_address: Optional[StrictStr] = Field(default=None, description="Interface MAC address is a unique hardware identifier assigned to each physical interface and used for Layer 2 communication in a network segment.", alias="macAddress")
|
|
41
|
+
management_only: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is used exclusively for management traffic and not regular user or data traffic.", alias="managementOnly")
|
|
42
42
|
mode: Optional[InterfaceMode] = None
|
|
43
|
-
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored
|
|
44
|
-
mtu: Optional[StrictInt] = Field(default=None, description="
|
|
45
|
-
name: Optional[StrictStr] = Field(default=None, description="
|
|
43
|
+
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored as part of an HA setup. The check determines if the interface is functioning correctly and whether a failover to a standby device should be triggered, if required.", alias="monitorInterface")
|
|
44
|
+
mtu: Optional[StrictInt] = Field(default=None, description="Interface MTU, in bytes, of a packet or frame that can be sent over a network interface without needing to be fragmented. MTU defines the maximum payload size the interface can handle in a single transmission. . Valid range is from 64 to 9198.")
|
|
45
|
+
name: Optional[StrictStr] = Field(default=None, description="Logical name of the interface, which must be unique in the scope of the device.")
|
|
46
46
|
security_level: Optional[StrictInt] = Field(default=None, description="Indicates the interface trust level, ranging from 0 (lowest) to 100 (highest).", alias="securityLevel")
|
|
47
47
|
speed_type: Optional[SpeedType] = Field(default=None, alias="speedType")
|
|
48
48
|
standby_mac_address: Optional[StrictStr] = Field(default=None, description="The standby interface Media Access Control (MAC) address, for use in a high-availability (HA) pair.", alias="standbyMacAddress")
|
|
@@ -30,20 +30,20 @@ class SubInterfaceCreateInput(BaseModel):
|
|
|
30
30
|
"""
|
|
31
31
|
SubInterfaceCreateInput
|
|
32
32
|
""" # noqa: E501
|
|
33
|
-
description: Optional[StrictStr] = Field(default=None, description="
|
|
33
|
+
description: Optional[StrictStr] = Field(default=None, description="Interface description.")
|
|
34
34
|
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is enabled.")
|
|
35
35
|
ipv4: Optional[InterfaceIpv4Address] = None
|
|
36
36
|
ipv6: Optional[InterfaceIpv6Address] = None
|
|
37
|
-
mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
38
|
-
management_only: Optional[StrictBool] = Field(default=None, description="Indicates
|
|
39
|
-
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored
|
|
40
|
-
mtu: Optional[StrictInt] = Field(default=None, description="
|
|
41
|
-
name: Optional[StrictStr] = Field(default=None, description="
|
|
37
|
+
mac_address: Optional[StrictStr] = Field(default=None, description="Interface MAC address is a unique hardware identifier assigned to each physical interface and used for Layer 2 communication in a network segment.", alias="macAddress")
|
|
38
|
+
management_only: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is used exclusively for management traffic and not regular user or data traffic.", alias="managementOnly")
|
|
39
|
+
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored as part of an HA setup. The check determines if the interface is functioning correctly and whether a failover to a standby device should be triggered, if required.", alias="monitorInterface")
|
|
40
|
+
mtu: Optional[StrictInt] = Field(default=None, description="Interface MTU, in bytes, of a packet or frame that can be sent over a network interface without needing to be fragmented. MTU defines the maximum payload size the interface can handle in a single transmission. . Valid range is from 64 to 9198.")
|
|
41
|
+
name: Optional[StrictStr] = Field(default=None, description="Logical name of the interface, which must be unique in the scope of the device.")
|
|
42
42
|
security_level: Optional[StrictInt] = Field(default=None, description="Indicates the interface trust level, ranging from 0 (lowest) to 100 (highest).", alias="securityLevel")
|
|
43
43
|
standby_mac_address: Optional[StrictStr] = Field(default=None, description="The standby interface Media Access Control (MAC) address, for use in a high-availability (HA) pair.", alias="standbyMacAddress")
|
|
44
|
-
sub_interface_id: Optional[StrictInt] = Field(default=None, description="
|
|
45
|
-
vlan_primary_id: Optional[StrictInt] = Field(default=None, description="
|
|
46
|
-
vlan_secondary_ids: Optional[List[VlanIdRange]] = Field(default=None, description="
|
|
44
|
+
sub_interface_id: Optional[StrictInt] = Field(default=None, description="Unique identifier of the subinterface. The identifier is used to differentiate between multiple subinterfaces in the same parent interface. Valid range is from 1 to 4294967295.", alias="subInterfaceId")
|
|
45
|
+
vlan_primary_id: Optional[StrictInt] = Field(default=None, description="Primary unique identifier of the VLAN associated with the subinterface. Valid range is from 1 to 4094.", alias="vlanPrimaryId")
|
|
46
|
+
vlan_secondary_ids: Optional[List[VlanIdRange]] = Field(default=None, description="Secondary identifiers of the VLAN associated with the subinterface. Each range is defined by a start and an end value, which allows multiple VLANs to be associated with a subinterface. Ranges are inclusive.", alias="vlanSecondaryIds")
|
|
47
47
|
__properties: ClassVar[List[str]] = ["description", "enabled", "ipv4", "ipv6", "macAddress", "managementOnly", "monitorInterface", "mtu", "name", "securityLevel", "standbyMacAddress", "subInterfaceId", "vlanPrimaryId", "vlanSecondaryIds"]
|
|
48
48
|
|
|
49
49
|
model_config = ConfigDict(
|
|
@@ -29,15 +29,15 @@ class SubInterfacePatchInput(BaseModel):
|
|
|
29
29
|
"""
|
|
30
30
|
SubInterfacePatchInput
|
|
31
31
|
""" # noqa: E501
|
|
32
|
-
description: Optional[StrictStr] = Field(default=None, description="
|
|
32
|
+
description: Optional[StrictStr] = Field(default=None, description="Interface description.")
|
|
33
33
|
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is enabled.")
|
|
34
34
|
ipv4: Optional[InterfaceIpv4Address] = None
|
|
35
35
|
ipv6: Optional[InterfaceIpv6Address] = None
|
|
36
|
-
mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
37
|
-
management_only: Optional[StrictBool] = Field(default=None, description="Indicates
|
|
38
|
-
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored
|
|
39
|
-
mtu: Optional[StrictInt] = Field(default=None, description="
|
|
40
|
-
name: Optional[StrictStr] = Field(default=None, description="
|
|
36
|
+
mac_address: Optional[StrictStr] = Field(default=None, description="Interface MAC address is a unique hardware identifier assigned to each physical interface and used for Layer 2 communication in a network segment.", alias="macAddress")
|
|
37
|
+
management_only: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is used exclusively for management traffic and not regular user or data traffic.", alias="managementOnly")
|
|
38
|
+
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored as part of an HA setup. The check determines if the interface is functioning correctly and whether a failover to a standby device should be triggered, if required.", alias="monitorInterface")
|
|
39
|
+
mtu: Optional[StrictInt] = Field(default=None, description="Interface MTU, in bytes, of a packet or frame that can be sent over a network interface without needing to be fragmented. MTU defines the maximum payload size the interface can handle in a single transmission. . Valid range is from 64 to 9198.")
|
|
40
|
+
name: Optional[StrictStr] = Field(default=None, description="Logical name of the interface, which must be unique in the scope of the device.")
|
|
41
41
|
security_level: Optional[StrictInt] = Field(default=None, description="Indicates the interface trust level, ranging from 0 (lowest) to 100 (highest).", alias="securityLevel")
|
|
42
42
|
standby_mac_address: Optional[StrictStr] = Field(default=None, description="The standby interface Media Access Control (MAC) address, for use in a high-availability (HA) pair.", alias="standbyMacAddress")
|
|
43
43
|
__properties: ClassVar[List[str]] = ["description", "enabled", "ipv4", "ipv6", "macAddress", "managementOnly", "monitorInterface", "mtu", "name", "securityLevel", "standbyMacAddress"]
|
|
@@ -27,10 +27,10 @@ class SwitchPortConfig(BaseModel):
|
|
|
27
27
|
"""
|
|
28
28
|
SwitchPortConfig
|
|
29
29
|
""" # noqa: E501
|
|
30
|
-
access_mode_vlan: Optional[StrictStr] = Field(default=None, description="
|
|
31
|
-
protected_enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether
|
|
32
|
-
trunk_mode_allowed_vlans: Optional[List[StrictStr]] = Field(default=None, description="
|
|
33
|
-
trunk_mode_native_vlan: Optional[StrictStr] = Field(default=None, description="
|
|
30
|
+
access_mode_vlan: Optional[StrictStr] = Field(default=None, description="Unique identifier (UUID) of the access VLAN with which the interface is associated.", alias="accessModeVlan")
|
|
31
|
+
protected_enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether switchport interface is protected or not. Protection prevents Layer 2 communication (unicast, multicast, or broadcast) between other protected ports on the same VLAN.", alias="protectedEnabled")
|
|
32
|
+
trunk_mode_allowed_vlans: Optional[List[StrictStr]] = Field(default=None, description="Unique identifiers (UUIDs) of the VLAN interfaces that are permitted to send and receive traffic over trunk port.", alias="trunkModeAllowedVlans")
|
|
33
|
+
trunk_mode_native_vlan: Optional[StrictStr] = Field(default=None, description="Unique identifier (UUID) of the trunk VLAN with which the interface is associated.", alias="trunkModeNativeVlan")
|
|
34
34
|
__properties: ClassVar[List[str]] = ["accessModeVlan", "protectedEnabled", "trunkModeAllowedVlans", "trunkModeNativeVlan"]
|
|
35
35
|
|
|
36
36
|
model_config = ConfigDict(
|
|
@@ -29,19 +29,19 @@ class VlanInterfaceCreateInput(BaseModel):
|
|
|
29
29
|
"""
|
|
30
30
|
VlanInterfaceCreateInput
|
|
31
31
|
""" # noqa: E501
|
|
32
|
-
description: Optional[StrictStr] = Field(default=None, description="
|
|
32
|
+
description: Optional[StrictStr] = Field(default=None, description="Interface description.")
|
|
33
33
|
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is enabled.")
|
|
34
34
|
ipv4: Optional[InterfaceIpv4Address] = None
|
|
35
35
|
ipv6: Optional[InterfaceIpv6Address] = None
|
|
36
|
-
mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
37
|
-
management_only: Optional[StrictBool] = Field(default=None, description="Indicates
|
|
38
|
-
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="
|
|
39
|
-
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored
|
|
40
|
-
mtu: Optional[StrictInt] = Field(default=None, description="
|
|
41
|
-
name: Optional[StrictStr] = Field(default=None, description="
|
|
36
|
+
mac_address: Optional[StrictStr] = Field(default=None, description="Interface MAC address is a unique hardware identifier assigned to each physical interface and used for Layer 2 communication in a network segment.", alias="macAddress")
|
|
37
|
+
management_only: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is used exclusively for management traffic and not regular user or data traffic.", alias="managementOnly")
|
|
38
|
+
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="Set of unique identifiers (UUIDs) of the member interfaces that are a part of the VLAN group.", alias="memberInterfaces")
|
|
39
|
+
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored as part of an HA setup. The check determines if the interface is functioning correctly and whether a failover to a standby device should be triggered, if required.", alias="monitorInterface")
|
|
40
|
+
mtu: Optional[StrictInt] = Field(default=None, description="Interface MTU, in bytes, of a packet or frame that can be sent over a network interface without needing to be fragmented. MTU defines the maximum payload size the interface can handle in a single transmission. . Valid range is from 64 to 9198.")
|
|
41
|
+
name: Optional[StrictStr] = Field(default=None, description="Logical name of the interface, which must be unique in the scope of the device.")
|
|
42
42
|
security_level: Optional[StrictInt] = Field(default=None, description="Indicates the interface trust level, ranging from 0 (lowest) to 100 (highest).", alias="securityLevel")
|
|
43
43
|
standby_mac_address: Optional[StrictStr] = Field(default=None, description="The standby interface Media Access Control (MAC) address, for use in a high-availability (HA) pair.", alias="standbyMacAddress")
|
|
44
|
-
vlan_id: Optional[StrictInt] = Field(default=None, description="
|
|
44
|
+
vlan_id: Optional[StrictInt] = Field(default=None, description="Unique identifier of the VLAN associated with the VLAN interface. Valid range is from 1 to 4070.", alias="vlanId")
|
|
45
45
|
__properties: ClassVar[List[str]] = ["description", "enabled", "ipv4", "ipv6", "macAddress", "managementOnly", "memberInterfaces", "monitorInterface", "mtu", "name", "securityLevel", "standbyMacAddress", "vlanId"]
|
|
46
46
|
|
|
47
47
|
model_config = ConfigDict(
|
|
@@ -29,16 +29,16 @@ class VlanInterfacePatchInput(BaseModel):
|
|
|
29
29
|
"""
|
|
30
30
|
VlanInterfacePatchInput
|
|
31
31
|
""" # noqa: E501
|
|
32
|
-
description: Optional[StrictStr] = Field(default=None, description="
|
|
32
|
+
description: Optional[StrictStr] = Field(default=None, description="Interface description.")
|
|
33
33
|
enabled: Optional[StrictBool] = Field(default=None, description="Indicates whether the interface is enabled.")
|
|
34
34
|
ipv4: Optional[InterfaceIpv4Address] = None
|
|
35
35
|
ipv6: Optional[InterfaceIpv6Address] = None
|
|
36
|
-
mac_address: Optional[StrictStr] = Field(default=None, description="
|
|
37
|
-
management_only: Optional[StrictBool] = Field(default=None, description="Indicates
|
|
38
|
-
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="
|
|
39
|
-
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored
|
|
40
|
-
mtu: Optional[StrictInt] = Field(default=None, description="
|
|
41
|
-
name: Optional[StrictStr] = Field(default=None, description="
|
|
36
|
+
mac_address: Optional[StrictStr] = Field(default=None, description="Interface MAC address is a unique hardware identifier assigned to each physical interface and used for Layer 2 communication in a network segment.", alias="macAddress")
|
|
37
|
+
management_only: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is used exclusively for management traffic and not regular user or data traffic.", alias="managementOnly")
|
|
38
|
+
member_interfaces: Optional[List[StrictStr]] = Field(default=None, description="Set of unique identifiers (UUIDs) of the member interfaces that are a part of the VLAN group.", alias="memberInterfaces")
|
|
39
|
+
monitor_interface: Optional[StrictBool] = Field(default=None, description="Indicates if the interface is actively monitored as part of an HA setup. The check determines if the interface is functioning correctly and whether a failover to a standby device should be triggered, if required.", alias="monitorInterface")
|
|
40
|
+
mtu: Optional[StrictInt] = Field(default=None, description="Interface MTU, in bytes, of a packet or frame that can be sent over a network interface without needing to be fragmented. MTU defines the maximum payload size the interface can handle in a single transmission. . Valid range is from 64 to 9198.")
|
|
41
|
+
name: Optional[StrictStr] = Field(default=None, description="Logical name of the interface, which must be unique in the scope of the device.")
|
|
42
42
|
security_level: Optional[StrictInt] = Field(default=None, description="Indicates the interface trust level, ranging from 0 (lowest) to 100 (highest).", alias="securityLevel")
|
|
43
43
|
standby_mac_address: Optional[StrictStr] = Field(default=None, description="The standby interface Media Access Control (MAC) address, for use in a high-availability (HA) pair.", alias="standbyMacAddress")
|
|
44
44
|
__properties: ClassVar[List[str]] = ["description", "enabled", "ipv4", "ipv6", "macAddress", "managementOnly", "memberInterfaces", "monitorInterface", "mtu", "name", "securityLevel", "standbyMacAddress"]
|
{scc_firewall_manager_sdk-1.13.796.dist-info → scc_firewall_manager_sdk-1.13.798.dist-info}/RECORD
RENAMED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
scc_firewall_manager_sdk/__init__.py,sha256=
|
|
2
|
-
scc_firewall_manager_sdk/api_client.py,sha256=
|
|
1
|
+
scc_firewall_manager_sdk/__init__.py,sha256=jCBqPka4I_bayWTyuNOtrFCTsmkkZDJPlK_BueWKT14,21154
|
|
2
|
+
scc_firewall_manager_sdk/api_client.py,sha256=Y5uFDS-cjbOGGkzofyE4O14jWfEkbtpNHhMfFJYinVs,25921
|
|
3
3
|
scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
scc_firewall_manager_sdk/configuration.py,sha256=
|
|
4
|
+
scc_firewall_manager_sdk/configuration.py,sha256=u5sIZWvSlCbTvyBCcZ1QNLPVP1D7gL2FprXZHFDbWSI,15993
|
|
5
5
|
scc_firewall_manager_sdk/exceptions.py,sha256=J4sPW_b1AGNUeRyPnnDlVtb1b8kOKgDO6cCzCf1wDYg,6039
|
|
6
6
|
scc_firewall_manager_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
scc_firewall_manager_sdk/rest.py,sha256=fAq2gQ-7Y88YdlSxyPNV1I3fctDBTEU0DrBJapzVrNY,9309
|
|
8
|
-
scc_firewall_manager_sdk/api/__init__.py,sha256=
|
|
9
|
-
scc_firewall_manager_sdk/api/access_groups_api.py,sha256=CEykKYEoxyrknH-tyUBH6dtDrJCYl-3TLDeHS-TekVA,60379
|
|
8
|
+
scc_firewall_manager_sdk/api/__init__.py,sha256=3FzYxiiX6Xtf5htomk9CYAQhAZugJ4jk6Td7pG-o9wc,1795
|
|
10
9
|
scc_firewall_manager_sdk/api/ai_assistant_api.py,sha256=jspBnwvd6jkHoBhElAQjt7CQtD2ld0KCYM012Jb0ul8,60316
|
|
11
|
-
scc_firewall_manager_sdk/api/
|
|
12
|
-
scc_firewall_manager_sdk/api/
|
|
10
|
+
scc_firewall_manager_sdk/api/asa_access_groups_api.py,sha256=Vlv9eJoP0Pf1i7r1sqDh1v_UxfItrDAQ67Q4Ube_Kbg,60430
|
|
11
|
+
scc_firewall_manager_sdk/api/asa_access_rules_api.py,sha256=3W1eZ4PMZqfkl34jgE_Wiwg3v0XMyl8qq9gQ6ftvyOU,60377
|
|
12
|
+
scc_firewall_manager_sdk/api/asa_interfaces_api.py,sha256=aKfK_AKqhW9D1uJ80sfgkS6_7A34jzwfGPOJkeX2FGA,291786
|
|
13
13
|
scc_firewall_manager_sdk/api/audit_logs_api.py,sha256=37jQklNeuI06XtILKhYx7sBYTfehW0xEvJi5x9GZ30Q,20506
|
|
14
14
|
scc_firewall_manager_sdk/api/change_requests_api.py,sha256=CdfJmFTYUoCJiTucRyze5xIBopTD4CSB2Cyea2V_UB4,48560
|
|
15
15
|
scc_firewall_manager_sdk/api/changelogs_api.py,sha256=uPlM1uCK_WcqQiixpiHaEMoiEnf_MInb_10tuA6Kx8U,30875
|
|
@@ -54,7 +54,7 @@ scc_firewall_manager_sdk/models/asa_config.py,sha256=WLpmmsAEm6yqEmcFq7fiZWx_mED
|
|
|
54
54
|
scc_firewall_manager_sdk/models/asa_create_or_update_input.py,sha256=9nFsQQ1FmuU_pRr773UtQ0Puui7NBW1-tABtF2OoEgQ,4680
|
|
55
55
|
scc_firewall_manager_sdk/models/asa_failover_mate.py,sha256=uGxGY0QgQG8mPX4PvI7WU17cfuTqkYS3DlOYcn-g9sI,3499
|
|
56
56
|
scc_firewall_manager_sdk/models/asa_failover_mode.py,sha256=r5SXdE-y6iGqWECbQbsmLCtkBVW-CYr6QBVDgOT3boA,871
|
|
57
|
-
scc_firewall_manager_sdk/models/asa_interface.py,sha256=
|
|
57
|
+
scc_firewall_manager_sdk/models/asa_interface.py,sha256=qXNw8A27TlWJDySIpIis0vsLiCmwtX46xx04AucI7Ko,11837
|
|
58
58
|
scc_firewall_manager_sdk/models/asa_interface_page.py,sha256=ZaHYH96amB_Wc8u2ellbeN6yeHZcOhACS5Al5qp5TKc,3733
|
|
59
59
|
scc_firewall_manager_sdk/models/audit_log.py,sha256=hei8LZg5sH3Oe2i8o9sYRvU2U-tHJt4J5zfW3C2tvds,4307
|
|
60
60
|
scc_firewall_manager_sdk/models/audit_log_page.py,sha256=JGhUfYq2eXn3cu-Ts4IwJadJiywcYvt9QCUYnwyWHnk,3701
|
|
@@ -119,8 +119,8 @@ scc_firewall_manager_sdk/models/duplex_type.py,sha256=ohYS8Sf7kZdZY1Wr2_G9WlRUOA
|
|
|
119
119
|
scc_firewall_manager_sdk/models/duplicate_group_dto.py,sha256=80hfmSnUoQJ4C6z_uw51ck6tuMZ6eD1Kr5Y76RjerAc,2960
|
|
120
120
|
scc_firewall_manager_sdk/models/entity.py,sha256=UuPWIWQeHDn2za0TeT456WG904jYOeG9oRMgDt-DkhI,3443
|
|
121
121
|
scc_firewall_manager_sdk/models/entity_type.py,sha256=jRoUXRD4Kkix9JngA3Y2dI0zB5yKgiAPQT64cAvqm0I,1450
|
|
122
|
-
scc_firewall_manager_sdk/models/ether_channel_interface_create_input.py,sha256=
|
|
123
|
-
scc_firewall_manager_sdk/models/ether_channel_interface_patch_input.py,sha256=
|
|
122
|
+
scc_firewall_manager_sdk/models/ether_channel_interface_create_input.py,sha256=31VP76qUhYJtPnqoio3JNP2ItV-HfO4MF_bElyKT0Ig,6906
|
|
123
|
+
scc_firewall_manager_sdk/models/ether_channel_interface_patch_input.py,sha256=b9kBkk0Ufyj6sicJ6QkW4oeJW1LnyoFZsAmhYrgSJTk,6666
|
|
124
124
|
scc_firewall_manager_sdk/models/event.py,sha256=Du3SPVn7n28Duo_UFztsezhc4Uui8QfvgmSrqAHdOUs,4548
|
|
125
125
|
scc_firewall_manager_sdk/models/fmc_access_policy_reference.py,sha256=xbcerPurdS-l2PtWlY51EdVSi5Eg3VQqddW0ZMhUoYY,2892
|
|
126
126
|
scc_firewall_manager_sdk/models/fmc_device_record.py,sha256=a_DRTZ1U1YHI16tj_tf5qWLH5dSf7UE_lb0QT4CugKc,2841
|
|
@@ -145,11 +145,11 @@ scc_firewall_manager_sdk/models/ha_node.py,sha256=artlA1Nhe0Sa5ohCVWYo8glywrqmi5
|
|
|
145
145
|
scc_firewall_manager_sdk/models/icmp4_value.py,sha256=I2L3G43XWn7In8lq3Cslgtbh6-2Sa2XMK9gP8S9vK90,6134
|
|
146
146
|
scc_firewall_manager_sdk/models/icmp6_value.py,sha256=HEhnouEGXSdplk5wyJZ0Z9bWMdO5H63BMsxxGbVFzfc,6452
|
|
147
147
|
scc_firewall_manager_sdk/models/interface_health_metrics.py,sha256=1_41-Kb6hOoAgqdJ19bUKpN1NRpDKPJQ7UMey_favuY,7435
|
|
148
|
-
scc_firewall_manager_sdk/models/interface_ip_address.py,sha256=
|
|
148
|
+
scc_firewall_manager_sdk/models/interface_ip_address.py,sha256=6RlvFB4vlDh4HbeZtqMKMMTjifm6DaTic_ZQklsppDs,4100
|
|
149
149
|
scc_firewall_manager_sdk/models/interface_ipv4_address.py,sha256=6Nn9zGQRMQp_LOrzOtWVChzjx9s1o2Gqv6NnGufgkSE,3160
|
|
150
|
-
scc_firewall_manager_sdk/models/interface_ipv6_address.py,sha256=
|
|
150
|
+
scc_firewall_manager_sdk/models/interface_ipv6_address.py,sha256=ysE7glQtYCPFcQkVhu3ihBiFQY9N6lucxxmZ2X4J_aM,4675
|
|
151
151
|
scc_firewall_manager_sdk/models/interface_mode.py,sha256=STmII8flFtuWChs1ZeTqUgR6zh_5Yg-7T2_AvTqmSRA,851
|
|
152
|
-
scc_firewall_manager_sdk/models/interface_runtime_data.py,sha256=
|
|
152
|
+
scc_firewall_manager_sdk/models/interface_runtime_data.py,sha256=lKRXHMVLPJzAhJzewWNH2GE6B-Fb_KSICXG_7MwYgV8,3862
|
|
153
153
|
scc_firewall_manager_sdk/models/interface_type.py,sha256=sRNC2-DnIsDV8oefdYdI6GYyowfj6Hi2yl6DA70ttGM,1009
|
|
154
154
|
scc_firewall_manager_sdk/models/inventory.py,sha256=Jy9W-R0CM1VHrD21umzWpaDHHeF_iRBNt54c25Vmi7Q,4192
|
|
155
155
|
scc_firewall_manager_sdk/models/ios_create_or_update_input.py,sha256=zJd24vD4ZaPXrNa2iT_T6OnhJapGhvI2FlTdDwE4sAg,4401
|
|
@@ -197,7 +197,7 @@ scc_firewall_manager_sdk/models/object_response.py,sha256=VlU4WupB1TSDMRh0H-YGS5
|
|
|
197
197
|
scc_firewall_manager_sdk/models/on_prem_fmc_info.py,sha256=-aYflAgZJ7dy1NP532lkfxxcc1YDvrhup-uscXkUejE,3056
|
|
198
198
|
scc_firewall_manager_sdk/models/os.py,sha256=P2xaPqB1OTdOTSB_XqYDx5q7TmNVaXryo-Dmhjqa9Ps,2804
|
|
199
199
|
scc_firewall_manager_sdk/models/override.py,sha256=tKerFYSXu9LTO-2xXsENN5Au5errzMhUVnaFAldst8s,3099
|
|
200
|
-
scc_firewall_manager_sdk/models/physical_interface_patch_input.py,sha256=
|
|
200
|
+
scc_firewall_manager_sdk/models/physical_interface_patch_input.py,sha256=bLl0q_qMGWxMOrBcS_8VkCclNWOoTsFyr_do3tImeSo,6354
|
|
201
201
|
scc_firewall_manager_sdk/models/policy.py,sha256=-rE2oBcMsq2Hm16fUzg0IeLf3kQv7MhlQdcmW6au60w,2816
|
|
202
202
|
scc_firewall_manager_sdk/models/ports_value.py,sha256=n3jWZ-u5UIj-xuWOe3TYyc06hE-NnhmiVpahbGFd4NE,2640
|
|
203
203
|
scc_firewall_manager_sdk/models/protocol_content.py,sha256=7jrMsz0DEeFyv4Cw033ACvuoOxNSJurAgJnXN3X3eBo,4032
|
|
@@ -231,10 +231,10 @@ scc_firewall_manager_sdk/models/state_machine_details.py,sha256=hqrhtRRBL6H814FX
|
|
|
231
231
|
scc_firewall_manager_sdk/models/state_machine_error.py,sha256=xHa84YH6CjRGJIxG2SXRfBYCiPDPf5bBAkDZv-zNtBc,2964
|
|
232
232
|
scc_firewall_manager_sdk/models/status.py,sha256=DO7Cf3pc7KwZQ2lKKnUnHu7n4xpYIPqeM2egeabadvM,898
|
|
233
233
|
scc_firewall_manager_sdk/models/status_info.py,sha256=7eakXxMmEsKYtDnYeSForYTXP0AKOHFocpnnyPlSLLo,2622
|
|
234
|
-
scc_firewall_manager_sdk/models/sub_interface_create_input.py,sha256=
|
|
235
|
-
scc_firewall_manager_sdk/models/sub_interface_patch_input.py,sha256=
|
|
234
|
+
scc_firewall_manager_sdk/models/sub_interface_create_input.py,sha256=PXw_vGNPVanG2WPtiKQa2Q0BVeQru8U12PdVDJBkQYg,7311
|
|
235
|
+
scc_firewall_manager_sdk/models/sub_interface_patch_input.py,sha256=1j_Oiq0PnnPRjsZlfBjrAE16KvF0gGPMn_on7TVYBmw,5763
|
|
236
236
|
scc_firewall_manager_sdk/models/summary.py,sha256=c0-DsJ63f8XF3CDamgz0rIRTY0-0kOJq_n1JgQ4aYgg,2798
|
|
237
|
-
scc_firewall_manager_sdk/models/switch_port_config.py,sha256=
|
|
237
|
+
scc_firewall_manager_sdk/models/switch_port_config.py,sha256=mPmLl1iig0aPDraK4NUEwvukfbmnEzuRUc2jk2clK-0,3767
|
|
238
238
|
scc_firewall_manager_sdk/models/target.py,sha256=_X6s7aX8fff4aVgj7lTQKVIi28rowu49LLU5jKRc1OU,3657
|
|
239
239
|
scc_firewall_manager_sdk/models/targets_request.py,sha256=WZhGqO0hbkEW4AJnR09J5ADNTSWg9IP3aJP-3sb155M,2711
|
|
240
240
|
scc_firewall_manager_sdk/models/tenant.py,sha256=R8HCsGSyg7lBXL_q1Z8XUr4yDi5xNp-yotZxLxQLanw,4167
|
|
@@ -253,11 +253,11 @@ scc_firewall_manager_sdk/models/user_input.py,sha256=ipY5vjEUdUUqCYdiB7tR1og4jKP
|
|
|
253
253
|
scc_firewall_manager_sdk/models/user_page.py,sha256=zagv0LVHfNn_VR0EMHB_ZiQ6oWA9keAq-pFBuLQVoqA,3668
|
|
254
254
|
scc_firewall_manager_sdk/models/user_role.py,sha256=WVus0z7L_INfk_jkrQpm41fFh8coK1rfQhxrS2IcUsQ,1104
|
|
255
255
|
scc_firewall_manager_sdk/models/vlan_id_range.py,sha256=WUipEewFzcugw8eYgmhFN9VrjgEfyQ_MPKVrVul9Xew,2636
|
|
256
|
-
scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=
|
|
257
|
-
scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=
|
|
256
|
+
scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=UA5MYpCbVGXD_s1Dv_v37hseWb0aY4pgHB5GEnL0ODI,6292
|
|
257
|
+
scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=UAsdsRG_mZDcaCgTMbU3XGdHoL2yevHtWho5Lmd9BHo,6054
|
|
258
258
|
scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=o6f4KOotVYPH06y4Gm9EhnddZIPlymWT31x8gfnbVt0,5326
|
|
259
259
|
scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=d7_s7YPs0uQBiX201HJwMc9WR_vSmQpMfAskmRrx2bM,4808
|
|
260
|
-
scc_firewall_manager_sdk-1.13.
|
|
261
|
-
scc_firewall_manager_sdk-1.13.
|
|
262
|
-
scc_firewall_manager_sdk-1.13.
|
|
263
|
-
scc_firewall_manager_sdk-1.13.
|
|
260
|
+
scc_firewall_manager_sdk-1.13.798.dist-info/METADATA,sha256=SBup8IF360jZv_-_BAQuy4RtNbvUb5LvrExpLzUAgX0,596
|
|
261
|
+
scc_firewall_manager_sdk-1.13.798.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
262
|
+
scc_firewall_manager_sdk-1.13.798.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
|
|
263
|
+
scc_firewall_manager_sdk-1.13.798.dist-info/RECORD,,
|
{scc_firewall_manager_sdk-1.13.796.dist-info → scc_firewall_manager_sdk-1.13.798.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|