Skip to content

Commit

Permalink
Bulk import structure
Browse files Browse the repository at this point in the history
  • Loading branch information
zdevaty committed Nov 3, 2024

Verified

This commit was signed with the committer’s verified signature.
weblate Weblate (bot)
1 parent b34655c commit 8af6d89
Showing 70 changed files with 405 additions and 69 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@ The Eliona REST API enables unified access to the resources and data of an Elion
## Overview
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.

- API version: 2.7.2
- API version: 2.7.3
- Package version: 1.0.0
- Build package: org.openapitools.codegen.languages.GoClientCodegen
For more information, please visit [https://eliona.io](https://eliona.io)
2 changes: 1 addition & 1 deletion api_agents.go

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

2 changes: 1 addition & 1 deletion api_aggregations.go

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

2 changes: 1 addition & 1 deletion api_alarm_rules.go

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

2 changes: 1 addition & 1 deletion api_alarms.go

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

2 changes: 1 addition & 1 deletion api_apps.go

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

2 changes: 1 addition & 1 deletion api_asset_types.go

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

2 changes: 1 addition & 1 deletion api_assets.go

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

2 changes: 1 addition & 1 deletion api_calculation_rules.go

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

2 changes: 1 addition & 1 deletion api_communication.go

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

2 changes: 1 addition & 1 deletion api_dashboards.go

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

2 changes: 1 addition & 1 deletion api_data.go

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

2 changes: 1 addition & 1 deletion api_nodes.go

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

2 changes: 1 addition & 1 deletion api_projects.go

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

2 changes: 1 addition & 1 deletion api_qr_codes.go

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

2 changes: 1 addition & 1 deletion api_tags.go

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

2 changes: 1 addition & 1 deletion api_users.go

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

2 changes: 1 addition & 1 deletion api_version.go

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

2 changes: 1 addition & 1 deletion api_widgets.go

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

2 changes: 1 addition & 1 deletion api_widgets_types.go

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

4 changes: 2 additions & 2 deletions client.go

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

2 changes: 1 addition & 1 deletion configuration.go

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

72 changes: 72 additions & 0 deletions docs/Asset.md
Original file line number Diff line number Diff line change
@@ -20,6 +20,8 @@ Name | Type | Description | Notes
**FunctionalAssetIdPath** | Pointer to **[]int32** | The hierarchical path of functional ids of the asset | [optional] [readonly]
**ParentLocationalAssetId** | Pointer to **NullableInt32** | The id of an asset which groups this asset as a locational child | [optional]
**LocationalAssetIdPath** | Pointer to **[]int32** | The hierarchical path of locational ids of the asset | [optional] [readonly]
**ParentFunctionalIdentifier** | Pointer to **NullableString** | The identifier specified by the identifiedBy parameter classifies this asset as a functional child. | [optional]
**ParentLocationalIdentifier** | Pointer to **NullableString** | The identifier specified by the identifiedBy parameter classifies this asset as a locational child | [optional]
**Tags** | Pointer to **[]string** | List of associated tags | [optional]
**ChildrenInfo** | Pointer to [**[]Asset**](Asset.md) | List of children for this asset. | [optional] [readonly]
**Attachments** | Pointer to [**[]Attachment**](Attachment.md) | A list of files attached to the asset | [optional]
@@ -558,6 +560,76 @@ HasLocationalAssetIdPath returns a boolean if a field has been set.
`func (o *Asset) UnsetLocationalAssetIdPath()`

UnsetLocationalAssetIdPath ensures that no value is present for LocationalAssetIdPath, not even an explicit nil
### GetParentFunctionalIdentifier

`func (o *Asset) GetParentFunctionalIdentifier() string`

GetParentFunctionalIdentifier returns the ParentFunctionalIdentifier field if non-nil, zero value otherwise.

### GetParentFunctionalIdentifierOk

`func (o *Asset) GetParentFunctionalIdentifierOk() (*string, bool)`

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

### SetParentFunctionalIdentifier

`func (o *Asset) SetParentFunctionalIdentifier(v string)`

SetParentFunctionalIdentifier sets ParentFunctionalIdentifier field to given value.

### HasParentFunctionalIdentifier

`func (o *Asset) HasParentFunctionalIdentifier() bool`

HasParentFunctionalIdentifier returns a boolean if a field has been set.

### SetParentFunctionalIdentifierNil

`func (o *Asset) SetParentFunctionalIdentifierNil(b bool)`

SetParentFunctionalIdentifierNil sets the value for ParentFunctionalIdentifier to be an explicit nil

### UnsetParentFunctionalIdentifier
`func (o *Asset) UnsetParentFunctionalIdentifier()`

UnsetParentFunctionalIdentifier ensures that no value is present for ParentFunctionalIdentifier, not even an explicit nil
### GetParentLocationalIdentifier

`func (o *Asset) GetParentLocationalIdentifier() string`

GetParentLocationalIdentifier returns the ParentLocationalIdentifier field if non-nil, zero value otherwise.

### GetParentLocationalIdentifierOk

`func (o *Asset) GetParentLocationalIdentifierOk() (*string, bool)`

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

### SetParentLocationalIdentifier

`func (o *Asset) SetParentLocationalIdentifier(v string)`

SetParentLocationalIdentifier sets ParentLocationalIdentifier field to given value.

### HasParentLocationalIdentifier

`func (o *Asset) HasParentLocationalIdentifier() bool`

HasParentLocationalIdentifier returns a boolean if a field has been set.

### SetParentLocationalIdentifierNil

`func (o *Asset) SetParentLocationalIdentifierNil(b bool)`

SetParentLocationalIdentifierNil sets the value for ParentLocationalIdentifier to be an explicit nil

### UnsetParentLocationalIdentifier
`func (o *Asset) UnsetParentLocationalIdentifier()`

UnsetParentLocationalIdentifier ensures that no value is present for ParentLocationalIdentifier, not even an explicit nil
### GetTags

`func (o *Asset) GetTags() []string`
72 changes: 72 additions & 0 deletions docs/AssetListen.md
Original file line number Diff line number Diff line change
@@ -20,6 +20,8 @@ Name | Type | Description | Notes
**FunctionalAssetIdPath** | Pointer to **[]int32** | The hierarchical path of functional ids of the asset | [optional] [readonly]
**ParentLocationalAssetId** | Pointer to **NullableInt32** | The id of an asset which groups this asset as a locational child | [optional]
**LocationalAssetIdPath** | Pointer to **[]int32** | The hierarchical path of locational ids of the asset | [optional] [readonly]
**ParentFunctionalIdentifier** | Pointer to **NullableString** | The identifier specified by the identifiedBy parameter classifies this asset as a functional child. | [optional]
**ParentLocationalIdentifier** | Pointer to **NullableString** | The identifier specified by the identifiedBy parameter classifies this asset as a locational child | [optional]
**Tags** | Pointer to **[]string** | List of associated tags | [optional]
**ChildrenInfo** | Pointer to [**[]Asset**](Asset.md) | List of children for this asset. | [optional] [readonly]
**Attachments** | Pointer to [**[]Attachment**](Attachment.md) | A list of files attached to the asset | [optional]
@@ -559,6 +561,76 @@ HasLocationalAssetIdPath returns a boolean if a field has been set.
`func (o *AssetListen) UnsetLocationalAssetIdPath()`

UnsetLocationalAssetIdPath ensures that no value is present for LocationalAssetIdPath, not even an explicit nil
### GetParentFunctionalIdentifier

`func (o *AssetListen) GetParentFunctionalIdentifier() string`

GetParentFunctionalIdentifier returns the ParentFunctionalIdentifier field if non-nil, zero value otherwise.

### GetParentFunctionalIdentifierOk

`func (o *AssetListen) GetParentFunctionalIdentifierOk() (*string, bool)`

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

### SetParentFunctionalIdentifier

`func (o *AssetListen) SetParentFunctionalIdentifier(v string)`

SetParentFunctionalIdentifier sets ParentFunctionalIdentifier field to given value.

### HasParentFunctionalIdentifier

`func (o *AssetListen) HasParentFunctionalIdentifier() bool`

HasParentFunctionalIdentifier returns a boolean if a field has been set.

### SetParentFunctionalIdentifierNil

`func (o *AssetListen) SetParentFunctionalIdentifierNil(b bool)`

SetParentFunctionalIdentifierNil sets the value for ParentFunctionalIdentifier to be an explicit nil

### UnsetParentFunctionalIdentifier
`func (o *AssetListen) UnsetParentFunctionalIdentifier()`

UnsetParentFunctionalIdentifier ensures that no value is present for ParentFunctionalIdentifier, not even an explicit nil
### GetParentLocationalIdentifier

`func (o *AssetListen) GetParentLocationalIdentifier() string`

GetParentLocationalIdentifier returns the ParentLocationalIdentifier field if non-nil, zero value otherwise.

### GetParentLocationalIdentifierOk

`func (o *AssetListen) GetParentLocationalIdentifierOk() (*string, bool)`

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

### SetParentLocationalIdentifier

`func (o *AssetListen) SetParentLocationalIdentifier(v string)`

SetParentLocationalIdentifier sets ParentLocationalIdentifier field to given value.

### HasParentLocationalIdentifier

`func (o *AssetListen) HasParentLocationalIdentifier() bool`

HasParentLocationalIdentifier returns a boolean if a field has been set.

### SetParentLocationalIdentifierNil

`func (o *AssetListen) SetParentLocationalIdentifierNil(b bool)`

SetParentLocationalIdentifierNil sets the value for ParentLocationalIdentifier to be an explicit nil

### UnsetParentLocationalIdentifier
`func (o *AssetListen) UnsetParentLocationalIdentifier()`

UnsetParentLocationalIdentifier ensures that no value is present for ParentLocationalIdentifier, not even an explicit nil
### GetTags

`func (o *AssetListen) GetTags() []string`
2 changes: 1 addition & 1 deletion model_agent.go

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

2 changes: 1 addition & 1 deletion model_agent_class.go

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

Loading

0 comments on commit 8af6d89

Please sign in to comment.