Server IP : 103.119.228.120 / Your IP : 18.116.86.132 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /lib/mysqlsh/lib/python3.9/site-packages/oci/analytics/models/ |
Upload File : |
# coding: utf-8 # Copyright (c) 2016, 2024, 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: 20190331 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 PrivateAccessChannel(object): """ Analytics Instance Private Access Channel model. """ def __init__(self, **kwargs): """ Initializes a new PrivateAccessChannel object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): :param key: The value to assign to the key property of this PrivateAccessChannel. :type key: str :param display_name: The value to assign to the display_name property of this PrivateAccessChannel. :type display_name: str :param vcn_id: The value to assign to the vcn_id property of this PrivateAccessChannel. :type vcn_id: str :param subnet_id: The value to assign to the subnet_id property of this PrivateAccessChannel. :type subnet_id: str :param ip_address: The value to assign to the ip_address property of this PrivateAccessChannel. :type ip_address: str :param egress_source_ip_addresses: The value to assign to the egress_source_ip_addresses property of this PrivateAccessChannel. :type egress_source_ip_addresses: list[str] :param private_source_dns_zones: The value to assign to the private_source_dns_zones property of this PrivateAccessChannel. :type private_source_dns_zones: list[oci.analytics.models.PrivateSourceDnsZone] :param private_source_scan_hosts: The value to assign to the private_source_scan_hosts property of this PrivateAccessChannel. :type private_source_scan_hosts: list[oci.analytics.models.PrivateSourceScanHost] :param network_security_group_ids: The value to assign to the network_security_group_ids property of this PrivateAccessChannel. :type network_security_group_ids: list[str] """ self.swagger_types = { 'key': 'str', 'display_name': 'str', 'vcn_id': 'str', 'subnet_id': 'str', 'ip_address': 'str', 'egress_source_ip_addresses': 'list[str]', 'private_source_dns_zones': 'list[PrivateSourceDnsZone]', 'private_source_scan_hosts': 'list[PrivateSourceScanHost]', 'network_security_group_ids': 'list[str]' } self.attribute_map = { 'key': 'key', 'display_name': 'displayName', 'vcn_id': 'vcnId', 'subnet_id': 'subnetId', 'ip_address': 'ipAddress', 'egress_source_ip_addresses': 'egressSourceIpAddresses', 'private_source_dns_zones': 'privateSourceDnsZones', 'private_source_scan_hosts': 'privateSourceScanHosts', 'network_security_group_ids': 'networkSecurityGroupIds' } self._key = None self._display_name = None self._vcn_id = None self._subnet_id = None self._ip_address = None self._egress_source_ip_addresses = None self._private_source_dns_zones = None self._private_source_scan_hosts = None self._network_security_group_ids = None @property def key(self): """ **[Required]** Gets the key of this PrivateAccessChannel. Private Access Channel unique identifier key. :return: The key of this PrivateAccessChannel. :rtype: str """ return self._key @key.setter def key(self, key): """ Sets the key of this PrivateAccessChannel. Private Access Channel unique identifier key. :param key: The key of this PrivateAccessChannel. :type: str """ self._key = key @property def display_name(self): """ **[Required]** Gets the display_name of this PrivateAccessChannel. Display Name of the Private Access Channel. :return: The display_name of this PrivateAccessChannel. :rtype: str """ return self._display_name @display_name.setter def display_name(self, display_name): """ Sets the display_name of this PrivateAccessChannel. Display Name of the Private Access Channel. :param display_name: The display_name of this PrivateAccessChannel. :type: str """ self._display_name = display_name @property def vcn_id(self): """ **[Required]** Gets the vcn_id of this PrivateAccessChannel. OCID of the customer VCN peered with private access channel. :return: The vcn_id of this PrivateAccessChannel. :rtype: str """ return self._vcn_id @vcn_id.setter def vcn_id(self, vcn_id): """ Sets the vcn_id of this PrivateAccessChannel. OCID of the customer VCN peered with private access channel. :param vcn_id: The vcn_id of this PrivateAccessChannel. :type: str """ self._vcn_id = vcn_id @property def subnet_id(self): """ **[Required]** Gets the subnet_id of this PrivateAccessChannel. OCID of the customer subnet connected to private access channel. :return: The subnet_id of this PrivateAccessChannel. :rtype: str """ return self._subnet_id @subnet_id.setter def subnet_id(self, subnet_id): """ Sets the subnet_id of this PrivateAccessChannel. OCID of the customer subnet connected to private access channel. :param subnet_id: The subnet_id of this PrivateAccessChannel. :type: str """ self._subnet_id = subnet_id @property def ip_address(self): """ **[Required]** Gets the ip_address of this PrivateAccessChannel. IP Address of the Private Access channel. :return: The ip_address of this PrivateAccessChannel. :rtype: str """ return self._ip_address @ip_address.setter def ip_address(self, ip_address): """ Sets the ip_address of this PrivateAccessChannel. IP Address of the Private Access channel. :param ip_address: The ip_address of this PrivateAccessChannel. :type: str """ self._ip_address = ip_address @property def egress_source_ip_addresses(self): """ **[Required]** Gets the egress_source_ip_addresses of this PrivateAccessChannel. The list of IP addresses from the customer subnet connected to private access channel, used as a source Ip by Private Access Channel for network traffic from the AnalyticsInstance to Private Sources. :return: The egress_source_ip_addresses of this PrivateAccessChannel. :rtype: list[str] """ return self._egress_source_ip_addresses @egress_source_ip_addresses.setter def egress_source_ip_addresses(self, egress_source_ip_addresses): """ Sets the egress_source_ip_addresses of this PrivateAccessChannel. The list of IP addresses from the customer subnet connected to private access channel, used as a source Ip by Private Access Channel for network traffic from the AnalyticsInstance to Private Sources. :param egress_source_ip_addresses: The egress_source_ip_addresses of this PrivateAccessChannel. :type: list[str] """ self._egress_source_ip_addresses = egress_source_ip_addresses @property def private_source_dns_zones(self): """ Gets the private_source_dns_zones of this PrivateAccessChannel. List of Private Source DNS zones registered with Private Access Channel, where datasource hostnames from these dns zones / domains will be resolved in the peered VCN for access from Analytics Instance. Min of 1 is required and Max of 30 Private Source DNS zones can be registered. :return: The private_source_dns_zones of this PrivateAccessChannel. :rtype: list[oci.analytics.models.PrivateSourceDnsZone] """ return self._private_source_dns_zones @private_source_dns_zones.setter def private_source_dns_zones(self, private_source_dns_zones): """ Sets the private_source_dns_zones of this PrivateAccessChannel. List of Private Source DNS zones registered with Private Access Channel, where datasource hostnames from these dns zones / domains will be resolved in the peered VCN for access from Analytics Instance. Min of 1 is required and Max of 30 Private Source DNS zones can be registered. :param private_source_dns_zones: The private_source_dns_zones of this PrivateAccessChannel. :type: list[oci.analytics.models.PrivateSourceDnsZone] """ self._private_source_dns_zones = private_source_dns_zones @property def private_source_scan_hosts(self): """ Gets the private_source_scan_hosts of this PrivateAccessChannel. List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance. :return: The private_source_scan_hosts of this PrivateAccessChannel. :rtype: list[oci.analytics.models.PrivateSourceScanHost] """ return self._private_source_scan_hosts @private_source_scan_hosts.setter def private_source_scan_hosts(self, private_source_scan_hosts): """ Sets the private_source_scan_hosts of this PrivateAccessChannel. List of Private Source DB SCAN hosts registered with Private Access Channel for access from Analytics Instance. :param private_source_scan_hosts: The private_source_scan_hosts of this PrivateAccessChannel. :type: list[oci.analytics.models.PrivateSourceScanHost] """ self._private_source_scan_hosts = private_source_scan_hosts @property def network_security_group_ids(self): """ Gets the network_security_group_ids of this PrivateAccessChannel. Network Security Group OCIDs for an Analytics instance. :return: The network_security_group_ids of this PrivateAccessChannel. :rtype: list[str] """ return self._network_security_group_ids @network_security_group_ids.setter def network_security_group_ids(self, network_security_group_ids): """ Sets the network_security_group_ids of this PrivateAccessChannel. Network Security Group OCIDs for an Analytics instance. :param network_security_group_ids: The network_security_group_ids of this PrivateAccessChannel. :type: list[str] """ self._network_security_group_ids = network_security_group_ids 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