File: //lib/mysqlsh/lib/python3.8/site-packages/oci/core/models/instance_pool_placement_subnet_details.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
from oci.decorators import init_model_state_from_kwargs
@init_model_state_from_kwargs
class InstancePoolPlacementSubnetDetails(object):
"""
Base details about the IPv6 subnet.
"""
def __init__(self, **kwargs):
"""
Initializes a new InstancePoolPlacementSubnetDetails object with values from keyword arguments.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param is_assign_ipv6_ip:
The value to assign to the is_assign_ipv6_ip property of this InstancePoolPlacementSubnetDetails.
:type is_assign_ipv6_ip: bool
:param ipv6_address_ipv6_subnet_cidr_pair_details:
The value to assign to the ipv6_address_ipv6_subnet_cidr_pair_details property of this InstancePoolPlacementSubnetDetails.
:type ipv6_address_ipv6_subnet_cidr_pair_details: list[oci.core.models.InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails]
:param subnet_id:
The value to assign to the subnet_id property of this InstancePoolPlacementSubnetDetails.
:type subnet_id: str
"""
self.swagger_types = {
'is_assign_ipv6_ip': 'bool',
'ipv6_address_ipv6_subnet_cidr_pair_details': 'list[InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails]',
'subnet_id': 'str'
}
self.attribute_map = {
'is_assign_ipv6_ip': 'isAssignIpv6Ip',
'ipv6_address_ipv6_subnet_cidr_pair_details': 'ipv6AddressIpv6SubnetCidrPairDetails',
'subnet_id': 'subnetId'
}
self._is_assign_ipv6_ip = None
self._ipv6_address_ipv6_subnet_cidr_pair_details = None
self._subnet_id = None
@property
def is_assign_ipv6_ip(self):
"""
Gets the is_assign_ipv6_ip of this InstancePoolPlacementSubnetDetails.
Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled
subnet. Default: False. When provided you may optionally provide an IPv6 prefix
(`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr`
is not provided then an IPv6 prefix is chosen
for you.
:return: The is_assign_ipv6_ip of this InstancePoolPlacementSubnetDetails.
:rtype: bool
"""
return self._is_assign_ipv6_ip
@is_assign_ipv6_ip.setter
def is_assign_ipv6_ip(self, is_assign_ipv6_ip):
"""
Sets the is_assign_ipv6_ip of this InstancePoolPlacementSubnetDetails.
Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled
subnet. Default: False. When provided you may optionally provide an IPv6 prefix
(`ipv6SubnetCidr`) of your choice to assign the IPv6 address from. If `ipv6SubnetCidr`
is not provided then an IPv6 prefix is chosen
for you.
:param is_assign_ipv6_ip: The is_assign_ipv6_ip of this InstancePoolPlacementSubnetDetails.
:type: bool
"""
self._is_assign_ipv6_ip = is_assign_ipv6_ip
@property
def ipv6_address_ipv6_subnet_cidr_pair_details(self):
"""
Gets the ipv6_address_ipv6_subnet_cidr_pair_details of this InstancePoolPlacementSubnetDetails.
A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address.
You can provide only the prefix ranges and OCI will select an available
address from the range. You can optionally choose to leave the prefix range empty
and instead provide the specific IPv6 address that should be used from within that range.
:return: The ipv6_address_ipv6_subnet_cidr_pair_details of this InstancePoolPlacementSubnetDetails.
:rtype: list[oci.core.models.InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails]
"""
return self._ipv6_address_ipv6_subnet_cidr_pair_details
@ipv6_address_ipv6_subnet_cidr_pair_details.setter
def ipv6_address_ipv6_subnet_cidr_pair_details(self, ipv6_address_ipv6_subnet_cidr_pair_details):
"""
Sets the ipv6_address_ipv6_subnet_cidr_pair_details of this InstancePoolPlacementSubnetDetails.
A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address.
You can provide only the prefix ranges and OCI will select an available
address from the range. You can optionally choose to leave the prefix range empty
and instead provide the specific IPv6 address that should be used from within that range.
:param ipv6_address_ipv6_subnet_cidr_pair_details: The ipv6_address_ipv6_subnet_cidr_pair_details of this InstancePoolPlacementSubnetDetails.
:type: list[oci.core.models.InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails]
"""
self._ipv6_address_ipv6_subnet_cidr_pair_details = ipv6_address_ipv6_subnet_cidr_pair_details
@property
def subnet_id(self):
"""
**[Required]** Gets the subnet_id of this InstancePoolPlacementSubnetDetails.
The subnet `OCID`__ for the secondary VNIC.
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:return: The subnet_id of this InstancePoolPlacementSubnetDetails.
:rtype: str
"""
return self._subnet_id
@subnet_id.setter
def subnet_id(self, subnet_id):
"""
Sets the subnet_id of this InstancePoolPlacementSubnetDetails.
The subnet `OCID`__ for the secondary VNIC.
__ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm
:param subnet_id: The subnet_id of this InstancePoolPlacementSubnetDetails.
:type: str
"""
self._subnet_id = subnet_id
def __repr__(self):
return formatted_flat_dict(self)
def __eq__(self, other):
if other is None:
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
return not self == other