Skip to content

Commit

Permalink
Merge pull request #50 from mulesoft-consulting/dev
Browse files Browse the repository at this point in the history
DLB new version
  • Loading branch information
soufi authored Jun 8, 2022
2 parents 605895f + 8f15b1c commit b715cb6
Show file tree
Hide file tree
Showing 9 changed files with 915 additions and 0 deletions.
42 changes: 42 additions & 0 deletions dlb/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -253,6 +253,11 @@ components:
type: string
title: ipWhitelist
type: array
ipAllowlist:
items:
type: string
title: ipAllowlist
type: array
httpMode:
default: redirect
title: httpMode
Expand Down Expand Up @@ -322,6 +327,12 @@ components:
doubleStaticIps:
title: doubleStaticIps
type: boolean
enableStreaming:
title: enableStreaming
type: boolean
forwardClientCertificate:
title: forwardClientCertificate
type: boolean
title: dlbExtras
type: object
jsonPatch:
Expand Down Expand Up @@ -355,19 +366,50 @@ components:
description: dlb state
title: state
type: string
domain:
description: The DNS domain for the Load Balancer
title: domain
type: string
ipWhitelist:
items:
type: string
title: ipWhitelist
type: array
ipAllowlist:
items:
type: string
title: ipAllowlist
type: array
httpMode:
default: redirect
title: httpMode
type: string
defaultSslEndpoint:
default: 0
example: 0
title: defaultSslEndpoint
type: integer
tlsv1:
example: false
title: tlsv1
type: boolean
keepUrlEncoding:
example: false
title: keepUrlEncoding
type: boolean
upstreamTlsv12:
example: false
title: upstreamTlsv12
type: boolean
doubleStaticIps:
title: doubleStaticIps
type: boolean
enableStreaming:
title: enableStreaming
type: boolean
forwardClientCertificate:
title: forwardClientCertificate
type: boolean
sslEndpoints:
items:
$ref: '#/components/schemas/dlbPostBody_sslEndpoints'
Expand Down
78 changes: 78 additions & 0 deletions dlb/docs/Dlb.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,12 @@ Name | Type | Description | Notes
**ProxyReadTimeout** | Pointer to **int32** | | [optional]
**IpAddressesInfo** | Pointer to [**[]DlbExtrasIpAddressesInfo**](DlbExtrasIpAddressesInfo.md) | | [optional]
**DoubleStaticIps** | Pointer to **bool** | | [optional]
**EnableStreaming** | Pointer to **bool** | | [optional]
**ForwardClientCertificate** | Pointer to **bool** | | [optional]
**Name** | Pointer to **string** | | [optional]
**State** | Pointer to **string** | dlb state | [optional] [default to "STOPPED"]
**IpWhitelist** | Pointer to **[]string** | | [optional]
**IpAllowlist** | Pointer to **[]string** | | [optional]
**HttpMode** | Pointer to **string** | | [optional] [default to "redirect"]
**DefaultSslEndpoint** | Pointer to **int32** | | [optional] [default to 0]
**Tlsv1** | Pointer to **bool** | | [optional]
Expand Down Expand Up @@ -395,6 +398,56 @@ SetDoubleStaticIps sets DoubleStaticIps field to given value.

HasDoubleStaticIps returns a boolean if a field has been set.

### GetEnableStreaming

`func (o *Dlb) GetEnableStreaming() bool`

GetEnableStreaming returns the EnableStreaming field if non-nil, zero value otherwise.

### GetEnableStreamingOk

`func (o *Dlb) GetEnableStreamingOk() (*bool, bool)`

GetEnableStreamingOk returns a tuple with the EnableStreaming field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetEnableStreaming

`func (o *Dlb) SetEnableStreaming(v bool)`

SetEnableStreaming sets EnableStreaming field to given value.

### HasEnableStreaming

`func (o *Dlb) HasEnableStreaming() bool`

HasEnableStreaming returns a boolean if a field has been set.

### GetForwardClientCertificate

`func (o *Dlb) GetForwardClientCertificate() bool`

GetForwardClientCertificate returns the ForwardClientCertificate field if non-nil, zero value otherwise.

### GetForwardClientCertificateOk

`func (o *Dlb) GetForwardClientCertificateOk() (*bool, bool)`

GetForwardClientCertificateOk returns a tuple with the ForwardClientCertificate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetForwardClientCertificate

`func (o *Dlb) SetForwardClientCertificate(v bool)`

SetForwardClientCertificate sets ForwardClientCertificate field to given value.

### HasForwardClientCertificate

`func (o *Dlb) HasForwardClientCertificate() bool`

HasForwardClientCertificate returns a boolean if a field has been set.

### GetName

`func (o *Dlb) GetName() string`
Expand Down Expand Up @@ -470,6 +523,31 @@ SetIpWhitelist sets IpWhitelist field to given value.

HasIpWhitelist returns a boolean if a field has been set.

### GetIpAllowlist

`func (o *Dlb) GetIpAllowlist() []string`

GetIpAllowlist returns the IpAllowlist field if non-nil, zero value otherwise.

### GetIpAllowlistOk

`func (o *Dlb) GetIpAllowlistOk() (*[]string, bool)`

GetIpAllowlistOk returns a tuple with the IpAllowlist field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetIpAllowlist

`func (o *Dlb) SetIpAllowlist(v []string)`

SetIpAllowlist sets IpAllowlist field to given value.

### HasIpAllowlist

`func (o *Dlb) HasIpAllowlist() bool`

HasIpAllowlist returns a boolean if a field has been set.

### GetHttpMode

`func (o *Dlb) GetHttpMode() string`
Expand Down
26 changes: 26 additions & 0 deletions dlb/docs/DlbCore.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
**Name** | Pointer to **string** | | [optional]
**State** | Pointer to **string** | dlb state | [optional] [default to "STOPPED"]
**IpWhitelist** | Pointer to **[]string** | | [optional]
**IpAllowlist** | Pointer to **[]string** | | [optional]
**HttpMode** | Pointer to **string** | | [optional] [default to "redirect"]
**DefaultSslEndpoint** | Pointer to **int32** | | [optional] [default to 0]
**Tlsv1** | Pointer to **bool** | | [optional]
Expand Down Expand Up @@ -106,6 +107,31 @@ SetIpWhitelist sets IpWhitelist field to given value.

HasIpWhitelist returns a boolean if a field has been set.

### GetIpAllowlist

`func (o *DlbCore) GetIpAllowlist() []string`

GetIpAllowlist returns the IpAllowlist field if non-nil, zero value otherwise.

### GetIpAllowlistOk

`func (o *DlbCore) GetIpAllowlistOk() (*[]string, bool)`

GetIpAllowlistOk returns a tuple with the IpAllowlist field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetIpAllowlist

`func (o *DlbCore) SetIpAllowlist(v []string)`

SetIpAllowlist sets IpAllowlist field to given value.

### HasIpAllowlist

`func (o *DlbCore) HasIpAllowlist() bool`

HasIpAllowlist returns a boolean if a field has been set.

### GetHttpMode

`func (o *DlbCore) GetHttpMode() string`
Expand Down
52 changes: 52 additions & 0 deletions dlb/docs/DlbExtras.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ Name | Type | Description | Notes
**ProxyReadTimeout** | Pointer to **int32** | | [optional]
**IpAddressesInfo** | Pointer to [**[]DlbExtrasIpAddressesInfo**](DlbExtrasIpAddressesInfo.md) | | [optional]
**DoubleStaticIps** | Pointer to **bool** | | [optional]
**EnableStreaming** | Pointer to **bool** | | [optional]
**ForwardClientCertificate** | Pointer to **bool** | | [optional]

## Methods

Expand Down Expand Up @@ -388,6 +390,56 @@ SetDoubleStaticIps sets DoubleStaticIps field to given value.

HasDoubleStaticIps returns a boolean if a field has been set.

### GetEnableStreaming

`func (o *DlbExtras) GetEnableStreaming() bool`

GetEnableStreaming returns the EnableStreaming field if non-nil, zero value otherwise.

### GetEnableStreamingOk

`func (o *DlbExtras) GetEnableStreamingOk() (*bool, bool)`

GetEnableStreamingOk returns a tuple with the EnableStreaming field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetEnableStreaming

`func (o *DlbExtras) SetEnableStreaming(v bool)`

SetEnableStreaming sets EnableStreaming field to given value.

### HasEnableStreaming

`func (o *DlbExtras) HasEnableStreaming() bool`

HasEnableStreaming returns a boolean if a field has been set.

### GetForwardClientCertificate

`func (o *DlbExtras) GetForwardClientCertificate() bool`

GetForwardClientCertificate returns the ForwardClientCertificate field if non-nil, zero value otherwise.

### GetForwardClientCertificateOk

`func (o *DlbExtras) GetForwardClientCertificateOk() (*bool, bool)`

GetForwardClientCertificateOk returns a tuple with the ForwardClientCertificate field if it's non-nil, zero value otherwise
and a boolean to check if the value has been set.

### SetForwardClientCertificate

`func (o *DlbExtras) SetForwardClientCertificate(v bool)`

SetForwardClientCertificate sets ForwardClientCertificate field to given value.

### HasForwardClientCertificate

`func (o *DlbExtras) HasForwardClientCertificate() bool`

HasForwardClientCertificate returns a boolean if a field has been set.


[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

Expand Down
Loading

0 comments on commit b715cb6

Please sign in to comment.