Interface NetworkLoadBalancer
-
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
NetworkLoadBalancerClient
@Generated(value="OracleSDKGenerator", comments="API Version: 20200501") public interface NetworkLoadBalancer extends AutoCloseable
This describes the network load balancer API.This service client uses CircuitBreakerUtils.DEFAULT_CIRCUIT_BREAKER for all the operations by default if no circuit breaker configuration is defined by the user.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ChangeNetworkLoadBalancerCompartmentResponse
changeNetworkLoadBalancerCompartment(ChangeNetworkLoadBalancerCompartmentRequest request)
Moves a network load balancer into a different compartment within the same tenancy.CreateBackendResponse
createBackend(CreateBackendRequest request)
Adds a backend server to a backend set.CreateBackendSetResponse
createBackendSet(CreateBackendSetRequest request)
Adds a backend set to a network load balancer.CreateListenerResponse
createListener(CreateListenerRequest request)
Adds a listener to a network load balancer.CreateNetworkLoadBalancerResponse
createNetworkLoadBalancer(CreateNetworkLoadBalancerRequest request)
Creates a network load balancer.DeleteBackendResponse
deleteBackend(DeleteBackendRequest request)
Removes a backend server from a given network load balancer and backend set.DeleteBackendSetResponse
deleteBackendSet(DeleteBackendSetRequest request)
Deletes the specified backend set.DeleteListenerResponse
deleteListener(DeleteListenerRequest request)
Deletes a listener from a network load balancer.DeleteNetworkLoadBalancerResponse
deleteNetworkLoadBalancer(DeleteNetworkLoadBalancerRequest request)
Deletes a network load balancer resource by identifier.GetBackendResponse
getBackend(GetBackendRequest request)
Retrieves the configuration information for the specified backend server.GetBackendHealthResponse
getBackendHealth(GetBackendHealthRequest request)
Retrieves the current health status of the specified backend server.GetBackendOperationalStatusResponse
getBackendOperationalStatus(GetBackendOperationalStatusRequest request)
Retrieves the current operational status of the specified backend server.GetBackendSetResponse
getBackendSet(GetBackendSetRequest request)
Retrieves the configuration information for the specified backend set.GetBackendSetHealthResponse
getBackendSetHealth(GetBackendSetHealthRequest request)
Retrieves the health status for the specified backend set.String
getEndpoint()
Gets the set endpoint for REST call (ex, https://www.example.com)GetHealthCheckerResponse
getHealthChecker(GetHealthCheckerRequest request)
Retrieves the health check policy information for a given network load balancer and backend set.GetListenerResponse
getListener(GetListenerRequest request)
Retrieves listener properties associated with a given network load balancer and listener name.GetNetworkLoadBalancerResponse
getNetworkLoadBalancer(GetNetworkLoadBalancerRequest request)
Retrieves network load balancer configuration information by identifier.GetNetworkLoadBalancerHealthResponse
getNetworkLoadBalancerHealth(GetNetworkLoadBalancerHealthRequest request)
Retrieves the health status for the specified network load balancer.NetworkLoadBalancerPaginators
getPaginators()
Gets the pre-configured paginators available for list operations in this service which may return multiple pages of data.NetworkLoadBalancerWaiters
getWaiters()
Gets the pre-configured waiters available for resources for this service.GetWorkRequestResponse
getWorkRequest(GetWorkRequestRequest request)
Retrieves the details of the work request with the given identifier.ListBackendsResponse
listBackends(ListBackendsRequest request)
Lists the backend servers for a given network load balancer and backend set.ListBackendSetsResponse
listBackendSets(ListBackendSetsRequest request)
Lists all backend sets associated with a given network load balancer.ListListenersResponse
listListeners(ListListenersRequest request)
Lists all listeners associated with a given network load balancer.ListNetworkLoadBalancerHealthsResponse
listNetworkLoadBalancerHealths(ListNetworkLoadBalancerHealthsRequest request)
Lists the summary health statuses for all network load balancers in the specified compartment.ListNetworkLoadBalancersResponse
listNetworkLoadBalancers(ListNetworkLoadBalancersRequest request)
Returns a list of network load balancers.ListNetworkLoadBalancersPoliciesResponse
listNetworkLoadBalancersPolicies(ListNetworkLoadBalancersPoliciesRequest request)
Lists the available network load balancer policies.ListNetworkLoadBalancersProtocolsResponse
listNetworkLoadBalancersProtocols(ListNetworkLoadBalancersProtocolsRequest request)
This API has been deprecated so it won’t return the updated list of supported protocls.ListWorkRequestErrorsResponse
listWorkRequestErrors(ListWorkRequestErrorsRequest request)
Return a (paginated) list of errors for a given work request.ListWorkRequestLogsResponse
listWorkRequestLogs(ListWorkRequestLogsRequest request)
Returns a (paginated) list of logs for a given work request.ListWorkRequestsResponse
listWorkRequests(ListWorkRequestsRequest request)
Lists all work requests.void
refreshClient()
Rebuilds the client from scratch.void
setEndpoint(String endpoint)
Sets the endpoint to call (ex, https://www.example.com).void
setRegion(Region region)
Sets the region to call (ex, Region.US_PHOENIX_1).void
setRegion(String regionId)
Sets the region to call (ex, ‘us-phoenix-1’).UpdateBackendResponse
updateBackend(UpdateBackendRequest request)
Updates the configuration of a backend server within the specified backend set.UpdateBackendSetResponse
updateBackendSet(UpdateBackendSetRequest request)
Updates a backend set.UpdateHealthCheckerResponse
updateHealthChecker(UpdateHealthCheckerRequest request)
Updates the health check policy for a given network load balancer and backend set.UpdateListenerResponse
updateListener(UpdateListenerRequest request)
Updates a listener for a given network load balancer.UpdateNetworkLoadBalancerResponse
updateNetworkLoadBalancer(UpdateNetworkLoadBalancerRequest request)
Updates the network load balancerUpdateNetworkSecurityGroupsResponse
updateNetworkSecurityGroups(UpdateNetworkSecurityGroupsRequest request)
Updates the network security groups associated with the specified network load balancer.void
useRealmSpecificEndpointTemplate(boolean realmSpecificEndpointTemplateEnabled)
Determines whether realm specific endpoint should be used or not.-
Methods inherited from interface java.lang.AutoCloseable
close
-
-
-
-
Method Detail
-
refreshClient
void refreshClient()
Rebuilds the client from scratch.Useful to refresh certificates.
-
setEndpoint
void setEndpoint(String endpoint)
Sets the endpoint to call (ex, https://www.example.com).- Parameters:
endpoint
- The endpoint of the service.
-
getEndpoint
String getEndpoint()
Gets the set endpoint for REST call (ex, https://www.example.com)
-
setRegion
void setRegion(Region region)
Sets the region to call (ex, Region.US_PHOENIX_1).Note, this will call
setEndpoint
after resolving the endpoint. If the service is not available in this Region, however, an IllegalArgumentException will be raised.- Parameters:
region
- The region of the service.
-
setRegion
void setRegion(String regionId)
Sets the region to call (ex, ‘us-phoenix-1’).Note, this will first try to map the region ID to a known Region and call
setRegion
.If no known Region could be determined, it will create an endpoint based on the default endpoint format (
Region.formatDefaultRegionEndpoint(Service, String)
and then callsetEndpoint
.- Parameters:
regionId
- The public region ID.
-
useRealmSpecificEndpointTemplate
void useRealmSpecificEndpointTemplate(boolean realmSpecificEndpointTemplateEnabled)
Determines whether realm specific endpoint should be used or not.Set realmSpecificEndpointTemplateEnabled to “true” if the user wants to enable use of realm specific endpoint template, otherwise set it to “false”
- Parameters:
realmSpecificEndpointTemplateEnabled
- flag to enable the use of realm specific endpoint template
-
changeNetworkLoadBalancerCompartment
ChangeNetworkLoadBalancerCompartmentResponse changeNetworkLoadBalancerCompartment(ChangeNetworkLoadBalancerCompartmentRequest request)
Moves a network load balancer into a different compartment within the same tenancy.For information about moving resources between compartments, see Moving Resources to a Different Compartment.
- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ChangeNetworkLoadBalancerCompartmentExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ChangeNetworkLoadBalancerCompartment API.
-
createBackend
CreateBackendResponse createBackend(CreateBackendRequest request)
Adds a backend server to a backend set.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/CreateBackendExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use CreateBackend API.
-
createBackendSet
CreateBackendSetResponse createBackendSet(CreateBackendSetRequest request)
Adds a backend set to a network load balancer.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/CreateBackendSetExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use CreateBackendSet API.
-
createListener
CreateListenerResponse createListener(CreateListenerRequest request)
Adds a listener to a network load balancer.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/CreateListenerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use CreateListener API.
-
createNetworkLoadBalancer
CreateNetworkLoadBalancerResponse createNetworkLoadBalancer(CreateNetworkLoadBalancerRequest request)
Creates a network load balancer.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/CreateNetworkLoadBalancerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use CreateNetworkLoadBalancer API.
-
deleteBackend
DeleteBackendResponse deleteBackend(DeleteBackendRequest request)
Removes a backend server from a given network load balancer and backend set.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/DeleteBackendExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use DeleteBackend API.
-
deleteBackendSet
DeleteBackendSetResponse deleteBackendSet(DeleteBackendSetRequest request)
Deletes the specified backend set.Note that deleting a backend set removes its backend servers from the network load balancer.
Before you can delete a backend set, you must remove it from any active listeners.
- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/DeleteBackendSetExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use DeleteBackendSet API.
-
deleteListener
DeleteListenerResponse deleteListener(DeleteListenerRequest request)
Deletes a listener from a network load balancer.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/DeleteListenerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use DeleteListener API.
-
deleteNetworkLoadBalancer
DeleteNetworkLoadBalancerResponse deleteNetworkLoadBalancer(DeleteNetworkLoadBalancerRequest request)
Deletes a network load balancer resource by identifier.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/DeleteNetworkLoadBalancerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use DeleteNetworkLoadBalancer API.
-
getBackend
GetBackendResponse getBackend(GetBackendRequest request)
Retrieves the configuration information for the specified backend server.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetBackendExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetBackend API.
-
getBackendHealth
GetBackendHealthResponse getBackendHealth(GetBackendHealthRequest request)
Retrieves the current health status of the specified backend server.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetBackendHealthExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetBackendHealth API.
-
getBackendOperationalStatus
GetBackendOperationalStatusResponse getBackendOperationalStatus(GetBackendOperationalStatusRequest request)
Retrieves the current operational status of the specified backend server.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetBackendOperationalStatusExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetBackendOperationalStatus API.
-
getBackendSet
GetBackendSetResponse getBackendSet(GetBackendSetRequest request)
Retrieves the configuration information for the specified backend set.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetBackendSetExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetBackendSet API.
-
getBackendSetHealth
GetBackendSetHealthResponse getBackendSetHealth(GetBackendSetHealthRequest request)
Retrieves the health status for the specified backend set.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetBackendSetHealthExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetBackendSetHealth API.
-
getHealthChecker
GetHealthCheckerResponse getHealthChecker(GetHealthCheckerRequest request)
Retrieves the health check policy information for a given network load balancer and backend set.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetHealthCheckerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetHealthChecker API.
-
getListener
GetListenerResponse getListener(GetListenerRequest request)
Retrieves listener properties associated with a given network load balancer and listener name.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetListenerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetListener API.
-
getNetworkLoadBalancer
GetNetworkLoadBalancerResponse getNetworkLoadBalancer(GetNetworkLoadBalancerRequest request)
Retrieves network load balancer configuration information by identifier.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetNetworkLoadBalancerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetNetworkLoadBalancer API.
-
getNetworkLoadBalancerHealth
GetNetworkLoadBalancerHealthResponse getNetworkLoadBalancerHealth(GetNetworkLoadBalancerHealthRequest request)
Retrieves the health status for the specified network load balancer.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetNetworkLoadBalancerHealthExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetNetworkLoadBalancerHealth API.
-
getWorkRequest
GetWorkRequestResponse getWorkRequest(GetWorkRequestRequest request)
Retrieves the details of the work request with the given identifier.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/GetWorkRequestExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use GetWorkRequest API.
-
listBackendSets
ListBackendSetsResponse listBackendSets(ListBackendSetsRequest request)
Lists all backend sets associated with a given network load balancer.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListBackendSetsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListBackendSets API.
-
listBackends
ListBackendsResponse listBackends(ListBackendsRequest request)
Lists the backend servers for a given network load balancer and backend set.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListBackendsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListBackends API.
-
listListeners
ListListenersResponse listListeners(ListListenersRequest request)
Lists all listeners associated with a given network load balancer.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListListenersExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListListeners API.
-
listNetworkLoadBalancerHealths
ListNetworkLoadBalancerHealthsResponse listNetworkLoadBalancerHealths(ListNetworkLoadBalancerHealthsRequest request)
Lists the summary health statuses for all network load balancers in the specified compartment.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListNetworkLoadBalancerHealthsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListNetworkLoadBalancerHealths API.
-
listNetworkLoadBalancers
ListNetworkLoadBalancersResponse listNetworkLoadBalancers(ListNetworkLoadBalancersRequest request)
Returns a list of network load balancers.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListNetworkLoadBalancersExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListNetworkLoadBalancers API.
-
listNetworkLoadBalancersPolicies
ListNetworkLoadBalancersPoliciesResponse listNetworkLoadBalancersPolicies(ListNetworkLoadBalancersPoliciesRequest request)
Lists the available network load balancer policies.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListNetworkLoadBalancersPoliciesExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListNetworkLoadBalancersPolicies API.
-
listNetworkLoadBalancersProtocols
ListNetworkLoadBalancersProtocolsResponse listNetworkLoadBalancersProtocols(ListNetworkLoadBalancersProtocolsRequest request)
This API has been deprecated so it won’t return the updated list of supported protocls.Lists all supported traffic protocols.
- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListNetworkLoadBalancersProtocolsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListNetworkLoadBalancersProtocols API.
-
listWorkRequestErrors
ListWorkRequestErrorsResponse listWorkRequestErrors(ListWorkRequestErrorsRequest request)
Return a (paginated) list of errors for a given work request.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListWorkRequestErrorsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListWorkRequestErrors API.
-
listWorkRequestLogs
ListWorkRequestLogsResponse listWorkRequestLogs(ListWorkRequestLogsRequest request)
Returns a (paginated) list of logs for a given work request.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListWorkRequestLogsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListWorkRequestLogs API.
-
listWorkRequests
ListWorkRequestsResponse listWorkRequests(ListWorkRequestsRequest request)
Lists all work requests.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/ListWorkRequestsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use ListWorkRequests API.
-
updateBackend
UpdateBackendResponse updateBackend(UpdateBackendRequest request)
Updates the configuration of a backend server within the specified backend set.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/UpdateBackendExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use UpdateBackend API.
-
updateBackendSet
UpdateBackendSetResponse updateBackendSet(UpdateBackendSetRequest request)
Updates a backend set.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/UpdateBackendSetExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use UpdateBackendSet API.
-
updateHealthChecker
UpdateHealthCheckerResponse updateHealthChecker(UpdateHealthCheckerRequest request)
Updates the health check policy for a given network load balancer and backend set.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/UpdateHealthCheckerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use UpdateHealthChecker API.
-
updateListener
UpdateListenerResponse updateListener(UpdateListenerRequest request)
Updates a listener for a given network load balancer.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/UpdateListenerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use UpdateListener API.
-
updateNetworkLoadBalancer
UpdateNetworkLoadBalancerResponse updateNetworkLoadBalancer(UpdateNetworkLoadBalancerRequest request)
Updates the network load balancer- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/UpdateNetworkLoadBalancerExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use UpdateNetworkLoadBalancer API.
-
updateNetworkSecurityGroups
UpdateNetworkSecurityGroupsResponse updateNetworkSecurityGroups(UpdateNetworkSecurityGroupsRequest request)
Updates the network security groups associated with the specified network load balancer.- Parameters:
request
- The request object containing the details to send- Returns:
- A response object containing details about the completed operation
- Throws:
BmcException
- when an error occurs. This operation uses RetryConfiguration.SDK_DEFAULT_RETRY_CONFIGURATION as default if no retry strategy is provided. The specifics of the default retry strategy are described here https://docs.oracle.com/en-us/iaas/Content/API/SDKDocs/javasdkconcepts.htm#javasdkconcepts_topic_RetriesExample: Click <a href=“https://docs.oracle.com/en-us/iaas/tools/java-sdk-examples/3.63.0/networkloadbalancer/UpdateNetworkSecurityGroupsExample.java.html"target=”_blank"rel=“noopener noreferrer”>here to see how to use UpdateNetworkSecurityGroups API.
-
getWaiters
NetworkLoadBalancerWaiters getWaiters()
Gets the pre-configured waiters available for resources for this service.- Returns:
- The service waiters.
-
getPaginators
NetworkLoadBalancerPaginators getPaginators()
Gets the pre-configured paginators available for list operations in this service which may return multiple pages of data.These paginators provide an
Iterable
interface so that service responses, or resources/records, can be iterated through without having to manually deal with pagination and page tokens.- Returns:
- The service paginators.
-
-