# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).

import oci

# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()


# Initialize service client with default config file
load_balancer_client = oci.load_balancer.LoadBalancerClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
create_load_balancer_response = load_balancer_client.create_load_balancer(
    create_load_balancer_details=oci.load_balancer.models.CreateLoadBalancerDetails(
        compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
        display_name="EXAMPLE-displayName-Value",
        shape_name="EXAMPLE-shapeName-Value",
        subnet_ids=["EXAMPLE--Value"],
        shape_details=oci.load_balancer.models.ShapeDetails(
            minimum_bandwidth_in_mbps=7644,
            maximum_bandwidth_in_mbps=2840),
        is_private=False,
        is_delete_protection_enabled=True,
        ip_mode="IPV4",
        is_request_id_enabled=True,
        request_id_header="EXAMPLE-requestIdHeader-Value",
        reserved_ips=[
                oci.load_balancer.models.ReservedIP(
                    id="ocid1.test.oc1..<unique_ID>EXAMPLE-id-Value")],
        listeners={
            'EXAMPLE_KEY_c1MTE': {
                'defaultBackendSetName': 'EXAMPLE-defaultBackendSetName-Value',
                'port': 40178,
                'protocol': 'EXAMPLE-protocol-Value',
                            'hostnameNames': ['EXAMPLE--Value'],
                            'pathRouteSetName': 'EXAMPLE-pathRouteSetName-Value',
                            'sslConfiguration': {
                                'verifyDepth': 640,
                                'verifyPeerCertificate': True,
                                'hasSessionResumption': True,
                                'trustedCertificateAuthorityIds': ['EXAMPLE--Value'],
                                'certificateIds': ['EXAMPLE--Value'],
                                'certificateName': 'EXAMPLE-certificateName-Value',
                                'protocols': ['EXAMPLE--Value'],
                                'cipherSuiteName': 'EXAMPLE-cipherSuiteName-Value',
                                'serverOrderPreference': 'ENABLED'},
                            'connectionConfiguration': {
                                'idleTimeout': 762,
                                'backendTcpProxyProtocolVersion': 1},
                            'routingPolicyName': 'EXAMPLE-routingPolicyName-Value',
                            'ruleSetNames': ['EXAMPLE--Value']}},
        hostnames={
            'EXAMPLE_KEY_lVCx7': {
                'name': 'EXAMPLE-name-Value',
                'hostname': 'EXAMPLE-hostname-Value'}},
        backend_sets={
            'EXAMPLE_KEY_7bp2A': {
                'policy': 'EXAMPLE-policy-Value',
                'healthChecker': {
                    'protocol': 'EXAMPLE-protocol-Value',
                    'urlPath': 'EXAMPLE-urlPath-Value',
                    'port': 22209,
                    'returnCode': 425,
                    'retries': 575,
                    'timeoutInMillis': 134298,
                    'intervalInMillis': 204857,
                    'responseBodyRegex': 'EXAMPLE-responseBodyRegex-Value',
                    'isForcePlainText': True},
                'backends': [
                    {
                        'ipAddress': 'EXAMPLE-ipAddress-Value',
                        'port': 36443,
                        'weight': 304,
                        'maxConnections': 373,
                        'backup': False,
                        'drain': True,
                        'offline': False}],
                'backendMaxConnections': 51406,
                'sslConfiguration': {
                    'verifyDepth': 70,
                    'verifyPeerCertificate': True,
                    'hasSessionResumption': True,
                    'trustedCertificateAuthorityIds': ['EXAMPLE--Value'],
                    'certificateIds': ['EXAMPLE--Value'],
                    'certificateName': 'EXAMPLE-certificateName-Value',
                    'protocols': ['EXAMPLE--Value'],
                    'cipherSuiteName': 'EXAMPLE-cipherSuiteName-Value',
                    'serverOrderPreference': 'DISABLED'},
                'sessionPersistenceConfiguration': {
                    'cookieName': 'EXAMPLE-cookieName-Value',
                    'disableFallback': True},
                'lbCookieSessionPersistenceConfiguration': {
                    'cookieName': 'EXAMPLE-cookieName-Value',
                    'disableFallback': True,
                    'domain': 'EXAMPLE-domain-Value',
                    'path': 'EXAMPLE-path-Value',
                    'maxAgeInSeconds': 809,
                    'isSecure': False,
                    'isHttpOnly': False}}},
        network_security_group_ids=["EXAMPLE--Value"],
        certificates={
            'EXAMPLE_KEY_zrA4v': {
                'certificateName': 'EXAMPLE-certificateName-Value',
                'passphrase': 'EXAMPLE-passphrase-Value',
                'privateKey': 'EXAMPLE-privateKey-Value',
                'publicCertificate': 'EXAMPLE-publicCertificate-Value',
                'caCertificate': 'EXAMPLE-caCertificate-Value'}},
        ssl_cipher_suites={
            'EXAMPLE_KEY_W5x2q': {
                'name': 'EXAMPLE-name-Value',
                'ciphers': ['EXAMPLE--Value']}},
        path_route_sets={
            'EXAMPLE_KEY_ej8cD': {
                'pathRoutes': [
                    {
                        'path': 'EXAMPLE-path-Value',
                        'pathMatchType': {
                            'matchType': 'SUFFIX_MATCH'},
                        'backendSetName': 'EXAMPLE-backendSetName-Value'}]}},
        freeform_tags={
            'EXAMPLE_KEY_yeF8E': 'EXAMPLE_VALUE_1F195sY9Dwg82xV6hWgl'},
        defined_tags={
            'EXAMPLE_KEY_1RaHI': {
                'EXAMPLE_KEY_wSuk9': 'EXAMPLE--Value'}},
        rule_sets={
            'EXAMPLE_KEY_VXQxg': {
                'items': [
                    {
                        'action': 'HTTP_HEADER',
                        'areInvalidCharactersAllowed': False,
                        'httpLargeHeaderSizeInKB': 715}]}}),
    opc_request_id="YDOV8XBIFPN2BXXFBROW<unique_ID>",
    opc_retry_token="EXAMPLE-opcRetryToken-Value")

# Get the data from response
print(create_load_balancer_response.headers)