UpdatePrivateEndpointDetails

class oci.data_flow.models.UpdatePrivateEndpointDetails(**kwargs)

Bases: object

The details required to update a private endpoint.

Methods

__init__(**kwargs) Initializes a new UpdatePrivateEndpointDetails object with values from keyword arguments.

Attributes

defined_tags Gets the defined_tags of this UpdatePrivateEndpointDetails.
description Gets the description of this UpdatePrivateEndpointDetails.
display_name Gets the display_name of this UpdatePrivateEndpointDetails.
dns_zones Gets the dns_zones of this UpdatePrivateEndpointDetails.
freeform_tags Gets the freeform_tags of this UpdatePrivateEndpointDetails.
max_host_count Gets the max_host_count of this UpdatePrivateEndpointDetails.
nsg_ids Gets the nsg_ids of this UpdatePrivateEndpointDetails.
scan_details Gets the scan_details of this UpdatePrivateEndpointDetails.
__init__(**kwargs)

Initializes a new UpdatePrivateEndpointDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • defined_tags (dict(str, dict(str, object))) – The value to assign to the defined_tags property of this UpdatePrivateEndpointDetails.
  • description (str) – The value to assign to the description property of this UpdatePrivateEndpointDetails.
  • display_name (str) – The value to assign to the display_name property of this UpdatePrivateEndpointDetails.
  • dns_zones (list[str]) – The value to assign to the dns_zones property of this UpdatePrivateEndpointDetails.
  • freeform_tags (dict(str, str)) – The value to assign to the freeform_tags property of this UpdatePrivateEndpointDetails.
  • max_host_count (int) – The value to assign to the max_host_count property of this UpdatePrivateEndpointDetails.
  • nsg_ids (list[str]) – The value to assign to the nsg_ids property of this UpdatePrivateEndpointDetails.
  • scan_details (list[oci.data_flow.models.Scan]) – The value to assign to the scan_details property of this UpdatePrivateEndpointDetails.
defined_tags

Gets the defined_tags of this UpdatePrivateEndpointDetails. Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {“Operations”: {“CostCenter”: “42”}}

Returns:The defined_tags of this UpdatePrivateEndpointDetails.
Return type:dict(str, dict(str, object))
description

Gets the description of this UpdatePrivateEndpointDetails. A user-friendly description. Avoid entering confidential information.

Returns:The description of this UpdatePrivateEndpointDetails.
Return type:str
display_name

Gets the display_name of this UpdatePrivateEndpointDetails. A user-friendly name. It does not have to be unique. Avoid entering confidential information.

Returns:The display_name of this UpdatePrivateEndpointDetails.
Return type:str
dns_zones

Gets the dns_zones of this UpdatePrivateEndpointDetails. An array of DNS zone names. Example: [ “app.examplecorp.com”, “app.examplecorp2.com” ]

Returns:The dns_zones of this UpdatePrivateEndpointDetails.
Return type:list[str]
freeform_tags

Gets the freeform_tags of this UpdatePrivateEndpointDetails. Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {“Department”: “Finance”}

Returns:The freeform_tags of this UpdatePrivateEndpointDetails.
Return type:dict(str, str)
max_host_count

Gets the max_host_count of this UpdatePrivateEndpointDetails. The maximum number of hosts to be accessed through the private endpoint. This value is used to calculate the relevant CIDR block and should be a multiple of 256. If the value is not a multiple of 256, it is rounded up to the next multiple of 256. For example, 300 is rounded up to 512.

Returns:The max_host_count of this UpdatePrivateEndpointDetails.
Return type:int
nsg_ids

Gets the nsg_ids of this UpdatePrivateEndpointDetails. An array of network security group OCIDs.

Returns:The nsg_ids of this UpdatePrivateEndpointDetails.
Return type:list[str]
scan_details

Gets the scan_details of this UpdatePrivateEndpointDetails. An array of fqdn/port pairs used to create private endpoint. Each object is a simple key-value pair with FQDN as key and port number as value. [ { fqdn: “scan1.oracle.com”, port: “1521”}, { fqdn: “scan2.oracle.com”, port: “1521” } ]

Returns:The scan_details of this UpdatePrivateEndpointDetails.
Return type:list[oci.data_flow.models.Scan]