Source code for azure.mgmt.network.v2018_04_01.models.azure_firewall_ip_configuration_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .sub_resource_py3 import SubResource


[docs]class AzureFirewallIPConfiguration(SubResource): """IP configuration of an Azure Firewall. :param id: Resource ID. :type id: str :param private_ip_address: The Firewall Internal Load Balancer IP to be used as the next hop in User Defined Routes. :type private_ip_address: str :param subnet: Reference of the subnet resource. This resource must be named 'AzureFirewallSubnet'. :type subnet: ~azure.mgmt.network.v2018_04_01.models.SubResource :param internal_public_ip_address: Reference of the PublicIP resource. This field is a mandatory input. :type internal_public_ip_address: ~azure.mgmt.network.v2018_04_01.models.SubResource :param public_ip_address: Reference of the PublicIP resource. This field is populated in the output. :type public_ip_address: ~azure.mgmt.network.v2018_04_01.models.SubResource :param provisioning_state: The provisioning state of the resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed' :type provisioning_state: str or ~azure.mgmt.network.v2018_04_01.models.ProvisioningState :param name: Name of the resource that is unique within a resource group. This name can be used to access the resource. :type name: str :param etag: A unique read-only string that changes whenever the resource is updated. :type etag: str """ _attribute_map = { 'id': {'key': 'id', 'type': 'str'}, 'private_ip_address': {'key': 'properties.privateIPAddress', 'type': 'str'}, 'subnet': {'key': 'properties.subnet', 'type': 'SubResource'}, 'internal_public_ip_address': {'key': 'properties.internalPublicIpAddress', 'type': 'SubResource'}, 'public_ip_address': {'key': 'properties.publicIPAddress', 'type': 'SubResource'}, 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, 'name': {'key': 'name', 'type': 'str'}, 'etag': {'key': 'etag', 'type': 'str'}, } def __init__(self, *, id: str=None, private_ip_address: str=None, subnet=None, internal_public_ip_address=None, public_ip_address=None, provisioning_state=None, name: str=None, etag: str=None, **kwargs) -> None: super(AzureFirewallIPConfiguration, self).__init__(id=id, **kwargs) self.private_ip_address = private_ip_address self.subnet = subnet self.internal_public_ip_address = internal_public_ip_address self.public_ip_address = public_ip_address self.provisioning_state = provisioning_state self.name = name self.etag = etag