-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(sdk): swagger updates for 2023-08-03 release (#24)
- Loading branch information
1 parent
ca1188c
commit e86ebf9
Showing
274 changed files
with
14,078 additions
and
1,685 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Falcon::ApiSensorDetailsResponseSwagger | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **errors** | [**Array<MsaspecError>**](MsaspecError.md) | | | | ||
| **meta** | [**MsaspecMetaInfo**](MsaspecMetaInfo.md) | | | | ||
| **resources** | [**Array<InternalSensorStatus>**](InternalSensorStatus.md) | | | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'crimson-falcon' | ||
|
||
instance = Falcon::ApiSensorDetailsResponseSwagger.new( | ||
errors: null, | ||
meta: null, | ||
resources: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Falcon::ClassificationCriteria | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **accounts** | **Array<String>** | | [optional] | | ||
| **resources** | **Array<String>** | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'crimson-falcon' | ||
|
||
instance = Falcon::ClassificationCriteria.new( | ||
accounts: null, | ||
resources: null | ||
) | ||
``` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Falcon::ClassificationLabel | ||
|
||
## Properties | ||
|
||
| Name | Type | Description | Notes | | ||
| ---- | ---- | ----------- | ----- | | ||
| **criteria** | [**Array<ClassificationCriteria>**](ClassificationCriteria.md) | | [optional] | | ||
| **dynamic** | **Boolean** | | [optional] | | ||
| **global** | **Boolean** | | [optional] | | ||
| **group** | **String** | | [optional] | | ||
| **id** | **Integer** | | [optional] | | ||
| **name** | **String** | | [optional] | | ||
|
||
## Example | ||
|
||
```ruby | ||
require 'crimson-falcon' | ||
|
||
instance = Falcon::ClassificationLabel.new( | ||
criteria: null, | ||
dynamic: null, | ||
global: null, | ||
group: null, | ||
id: null, | ||
name: null | ||
) | ||
``` | ||
|
Oops, something went wrong.