Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
83fa6e0
Generates modules from pipeline.
Jun 10, 2024
0b00601
Generates modules from pipeline.
Jun 10, 2024
ea3d4b8
Generates modules from pipeline.
Aug 22, 2024
1509cb6
Generates modules from pipeline.
Aug 28, 2024
a151caa
Generates modules from pipeline.
Oct 9, 2024
adb5beb
Generates modules from pipeline.
Oct 31, 2024
d1fb855
Generates modules from pipeline.
Nov 8, 2024
8cb1710
Generates modules from pipeline.
Feb 4, 2025
dcf71c0
Generates modules from pipeline.
Feb 17, 2025
43d3832
Revert "Generates modules from pipeline."
soufi Feb 18, 2025
126ae7d
Generates modules from pipeline.
Feb 18, 2025
d38954d
Generates modules from pipeline.
Feb 21, 2025
7ddff7a
Generates modules from pipeline.
Feb 24, 2025
93461ca
Generates modules from pipeline.
Feb 24, 2025
0e56c46
Generates modules from pipeline.
Feb 25, 2025
c3e6ce7
Generates modules from pipeline.
Mar 16, 2025
725cd8a
Generates modules from pipeline.
Mar 16, 2025
bc26c70
Generates modules from pipeline.
Mar 16, 2025
57257f4
Generates modules from pipeline.
Mar 24, 2025
dc7e77b
Generates modules from pipeline.
Mar 25, 2025
811b5bd
Generates modules from pipeline.
Mar 25, 2025
354fe50
Generates modules from pipeline.
Mar 25, 2025
c539ae3
Generates modules from pipeline.
Mar 25, 2025
3021293
Generates modules from pipeline.
Mar 25, 2025
7d39274
Generates modules from pipeline.
Mar 27, 2025
74fd947
Generates modules from pipeline.
Mar 27, 2025
517ea82
Generates modules from pipeline.
Apr 1, 2025
bb9b624
Generates modules from pipeline.
Apr 1, 2025
f6a4100
Generates modules from pipeline.
Apr 2, 2025
d54ae1b
Generates modules from pipeline.
Apr 2, 2025
fd5bfe5
Generates modules from pipeline.
May 1, 2025
7e13c52
Generates modules from pipeline.
Jun 19, 2025
41635f2
Generates modules from pipeline.
Jul 1, 2025
26a95e2
manually updates the private_space module
soufi Jul 4, 2025
7409163
Generates modules from pipeline.
Sep 24, 2025
11c321e
Generates modules from pipeline.
Sep 27, 2025
bebc1d9
Generates modules from pipeline.
Nov 1, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 5 additions & 1 deletion ame_binding/api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -349,13 +349,17 @@ components:
example:
exchangeId: exchangeId
queueId: queueId
fifo: true
properties:
queueId:
title: queueId
type: string
exchangeId:
title: exchangeId
type: string
fifo:
title: fifo
type: boolean
title: exchangeBinding
type: object
exchangeBindingWithRules:
Expand Down Expand Up @@ -406,7 +410,7 @@ components:
type: object
exchangeBindingWithRules_allOf:
properties:
rules:
routingRules:
items:
title: routingRule
type: object
Expand Down
26 changes: 26 additions & 0 deletions ame_binding/docs/ExchangeBinding.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**QueueId** | Pointer to **string** | | [optional]
**ExchangeId** | Pointer to **string** | | [optional]
**Fifo** | Pointer to **bool** | | [optional]

## Methods

Expand Down Expand Up @@ -76,6 +77,31 @@ SetExchangeId sets ExchangeId field to given value.

HasExchangeId returns a boolean if a field has been set.

### GetFifo

`func (o *ExchangeBinding) GetFifo() bool`

GetFifo returns the Fifo field if non-nil, zero value otherwise.

### GetFifoOk

`func (o *ExchangeBinding) GetFifoOk() (*bool, bool)`

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

### SetFifo

`func (o *ExchangeBinding) SetFifo(v bool)`

SetFifo sets Fifo field to given value.

### HasFifo

`func (o *ExchangeBinding) HasFifo() bool`

HasFifo 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
52 changes: 39 additions & 13 deletions ame_binding/docs/ExchangeBindingWithRules.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**QueueId** | Pointer to **string** | | [optional]
**ExchangeId** | Pointer to **string** | | [optional]
**Rules** | Pointer to **[]map[string]interface{}** | | [optional]
**Fifo** | Pointer to **bool** | | [optional]
**RoutingRules** | Pointer to **[]map[string]interface{}** | | [optional]

## Methods

Expand Down Expand Up @@ -77,30 +78,55 @@ SetExchangeId sets ExchangeId field to given value.

HasExchangeId returns a boolean if a field has been set.

### GetRules
### GetFifo

`func (o *ExchangeBindingWithRules) GetRules() []map[string]interface{}`
`func (o *ExchangeBindingWithRules) GetFifo() bool`

GetRules returns the Rules field if non-nil, zero value otherwise.
GetFifo returns the Fifo field if non-nil, zero value otherwise.

### GetRulesOk
### GetFifoOk

`func (o *ExchangeBindingWithRules) GetRulesOk() (*[]map[string]interface{}, bool)`
`func (o *ExchangeBindingWithRules) GetFifoOk() (*bool, bool)`

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

### SetRules
### SetFifo

`func (o *ExchangeBindingWithRules) SetRules(v []map[string]interface{})`
`func (o *ExchangeBindingWithRules) SetFifo(v bool)`

SetRules sets Rules field to given value.
SetFifo sets Fifo field to given value.

### HasRules
### HasFifo

`func (o *ExchangeBindingWithRules) HasRules() bool`
`func (o *ExchangeBindingWithRules) HasFifo() bool`

HasRules returns a boolean if a field has been set.
HasFifo returns a boolean if a field has been set.

### GetRoutingRules

`func (o *ExchangeBindingWithRules) GetRoutingRules() []map[string]interface{}`

GetRoutingRules returns the RoutingRules field if non-nil, zero value otherwise.

### GetRoutingRulesOk

`func (o *ExchangeBindingWithRules) GetRoutingRulesOk() (*[]map[string]interface{}, bool)`

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

### SetRoutingRules

`func (o *ExchangeBindingWithRules) SetRoutingRules(v []map[string]interface{})`

SetRoutingRules sets RoutingRules field to given value.

### HasRoutingRules

`func (o *ExchangeBindingWithRules) HasRoutingRules() bool`

HasRoutingRules 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
26 changes: 13 additions & 13 deletions ame_binding/docs/ExchangeBindingWithRulesAllOf.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Rules** | Pointer to **[]map[string]interface{}** | | [optional]
**RoutingRules** | Pointer to **[]map[string]interface{}** | | [optional]

## Methods

Expand All @@ -25,30 +25,30 @@ NewExchangeBindingWithRulesAllOfWithDefaults instantiates a new ExchangeBindingW
This constructor will only assign default values to properties that have it defined,
but it doesn't guarantee that properties required by API are set

### GetRules
### GetRoutingRules

`func (o *ExchangeBindingWithRulesAllOf) GetRules() []map[string]interface{}`
`func (o *ExchangeBindingWithRulesAllOf) GetRoutingRules() []map[string]interface{}`

GetRules returns the Rules field if non-nil, zero value otherwise.
GetRoutingRules returns the RoutingRules field if non-nil, zero value otherwise.

### GetRulesOk
### GetRoutingRulesOk

`func (o *ExchangeBindingWithRulesAllOf) GetRulesOk() (*[]map[string]interface{}, bool)`
`func (o *ExchangeBindingWithRulesAllOf) GetRoutingRulesOk() (*[]map[string]interface{}, bool)`

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

### SetRules
### SetRoutingRules

`func (o *ExchangeBindingWithRulesAllOf) SetRules(v []map[string]interface{})`
`func (o *ExchangeBindingWithRulesAllOf) SetRoutingRules(v []map[string]interface{})`

SetRules sets Rules field to given value.
SetRoutingRules sets RoutingRules field to given value.

### HasRules
### HasRoutingRules

`func (o *ExchangeBindingWithRulesAllOf) HasRules() bool`
`func (o *ExchangeBindingWithRulesAllOf) HasRoutingRules() bool`

HasRules returns a boolean if a field has been set.
HasRoutingRules 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
36 changes: 36 additions & 0 deletions ame_binding/model_exchange_binding.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 53 additions & 17 deletions ame_binding/model_exchange_binding_with_rules.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading