Skip to content

Commit

Permalink
Updated SDK from latest definition.
Browse files Browse the repository at this point in the history
  • Loading branch information
vhadianto committed Feb 20, 2024
1 parent 0d2de04 commit c0846e6
Show file tree
Hide file tree
Showing 9 changed files with 959 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ docs/ExecutionStepStatus.md
docs/FlowpipeRequire.md
docs/FpIntegration.md
docs/FpNotifier.md
docs/FpNotify.md
docs/FpPipeline.md
docs/FpPipelineParam.md
docs/FpTrigger.md
Expand Down Expand Up @@ -68,6 +69,7 @@ model_execution_step_status.go
model_flowpipe_require.go
model_fp_integration.go
model_fp_notifier.go
model_fp_notify.go
model_fp_pipeline.go
model_fp_pipeline_param.go
model_fp_trigger.go
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ Class | Method | HTTP request | Description
- [FlowpipeRequire](docs/FlowpipeRequire.md)
- [FpIntegration](docs/FpIntegration.md)
- [FpNotifier](docs/FpNotifier.md)
- [FpNotify](docs/FpNotify.md)
- [FpPipeline](docs/FpPipeline.md)
- [FpPipelineParam](docs/FpPipelineParam.md)
- [FpTrigger](docs/FpTrigger.md)
Expand Down
151 changes: 151 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1078,6 +1078,8 @@ components:
title: title
type: type
url: url
tags:
key: tags
properties:
description:
type: string
Expand All @@ -1091,6 +1093,10 @@ components:
type: string
start_line_number:
type: integer
tags:
additionalProperties:
type: string
type: object
title:
type: string
type:
Expand All @@ -1104,9 +1110,40 @@ components:
documentation: documentation
name: name
description: description
notifies:
- cc:
- cc
- cc
bcc:
- bcc
- bcc
subject: subject
channel: channel
integration: integration
description: description
to:
- to
- to
title: title
- cc:
- cc
- cc
bcc:
- bcc
- bcc
subject: subject
channel: channel
integration: integration
description: description
to:
- to
- to
title: title
end_line_number: 0
start_line_number: 6
title: title
tags:
key: tags
properties:
description:
type: string
Expand All @@ -1118,11 +1155,59 @@ components:
type: string
name:
type: string
notifies:
items:
$ref: '#/components/schemas/FpNotify'
type: array
start_line_number:
type: integer
tags:
additionalProperties:
type: string
type: object
title:
type: string
type: object
FpNotify:
example:
cc:
- cc
- cc
bcc:
- bcc
- bcc
subject: subject
channel: channel
integration: integration
description: description
to:
- to
- to
title: title
properties:
bcc:
items:
type: string
type: array
cc:
items:
type: string
type: array
channel:
type: string
description:
type: string
integration:
type: string
subject:
type: string
title:
type: string
to:
items:
type: string
type: array
type: object
FpPipeline:
example:
outputs:
Expand Down Expand Up @@ -1298,6 +1383,8 @@ components:
title: title
type: type
url: url
tags:
key: tags
- file_name: file_name
documentation: documentation
name: name
Expand All @@ -1307,6 +1394,8 @@ components:
title: title
type: type
url: url
tags:
key: tags
properties:
items:
items:
Expand All @@ -1323,16 +1412,78 @@ components:
documentation: documentation
name: name
description: description
notifies:
- cc:
- cc
- cc
bcc:
- bcc
- bcc
subject: subject
channel: channel
integration: integration
description: description
to:
- to
- to
title: title
- cc:
- cc
- cc
bcc:
- bcc
- bcc
subject: subject
channel: channel
integration: integration
description: description
to:
- to
- to
title: title
end_line_number: 0
start_line_number: 6
title: title
tags:
key: tags
- file_name: file_name
documentation: documentation
name: name
description: description
notifies:
- cc:
- cc
- cc
bcc:
- bcc
- bcc
subject: subject
channel: channel
integration: integration
description: description
to:
- to
- to
title: title
- cc:
- cc
- cc
bcc:
- bcc
- bcc
subject: subject
channel: channel
integration: integration
description: description
to:
- to
- to
title: title
end_line_number: 0
start_line_number: 6
title: title
tags:
key: tags
properties:
items:
items:
Expand Down
26 changes: 26 additions & 0 deletions docs/FpIntegration.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Name | Type | Description | Notes
**FileName** | Pointer to **string** | | [optional]
**Name** | Pointer to **string** | | [optional]
**StartLineNumber** | Pointer to **int32** | | [optional]
**Tags** | Pointer to **map[string]string** | | [optional]
**Title** | Pointer to **string** | | [optional]
**Type** | Pointer to **string** | | [optional]
**Url** | Pointer to **string** | | [optional]
Expand Down Expand Up @@ -183,6 +184,31 @@ SetStartLineNumber sets StartLineNumber field to given value.

HasStartLineNumber returns a boolean if a field has been set.

### GetTags

`func (o *FpIntegration) GetTags() map[string]string`

GetTags returns the Tags field if non-nil, zero value otherwise.

### GetTagsOk

`func (o *FpIntegration) GetTagsOk() (*map[string]string, bool)`

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

### SetTags

`func (o *FpIntegration) SetTags(v map[string]string)`

SetTags sets Tags field to given value.

### HasTags

`func (o *FpIntegration) HasTags() bool`

HasTags returns a boolean if a field has been set.

### GetTitle

`func (o *FpIntegration) GetTitle() string`
Expand Down
52 changes: 52 additions & 0 deletions docs/FpNotifier.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ Name | Type | Description | Notes
**EndLineNumber** | Pointer to **int32** | | [optional]
**FileName** | Pointer to **string** | | [optional]
**Name** | Pointer to **string** | | [optional]
**Notifies** | Pointer to [**[]FpNotify**](FpNotify.md) | | [optional]
**StartLineNumber** | Pointer to **int32** | | [optional]
**Tags** | Pointer to **map[string]string** | | [optional]
**Title** | Pointer to **string** | | [optional]

## Methods
Expand Down Expand Up @@ -156,6 +158,31 @@ SetName sets Name field to given value.

HasName returns a boolean if a field has been set.

### GetNotifies

`func (o *FpNotifier) GetNotifies() []FpNotify`

GetNotifies returns the Notifies field if non-nil, zero value otherwise.

### GetNotifiesOk

`func (o *FpNotifier) GetNotifiesOk() (*[]FpNotify, bool)`

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

### SetNotifies

`func (o *FpNotifier) SetNotifies(v []FpNotify)`

SetNotifies sets Notifies field to given value.

### HasNotifies

`func (o *FpNotifier) HasNotifies() bool`

HasNotifies returns a boolean if a field has been set.

### GetStartLineNumber

`func (o *FpNotifier) GetStartLineNumber() int32`
Expand All @@ -181,6 +208,31 @@ SetStartLineNumber sets StartLineNumber field to given value.

HasStartLineNumber returns a boolean if a field has been set.

### GetTags

`func (o *FpNotifier) GetTags() map[string]string`

GetTags returns the Tags field if non-nil, zero value otherwise.

### GetTagsOk

`func (o *FpNotifier) GetTagsOk() (*map[string]string, bool)`

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

### SetTags

`func (o *FpNotifier) SetTags(v map[string]string)`

SetTags sets Tags field to given value.

### HasTags

`func (o *FpNotifier) HasTags() bool`

HasTags returns a boolean if a field has been set.

### GetTitle

`func (o *FpNotifier) GetTitle() string`
Expand Down
Loading

0 comments on commit c0846e6

Please sign in to comment.