Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
  •  
  •  
  •  
3,267 changes: 1,748 additions & 1,519 deletions .speakeasy/gen.lock

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion .speakeasy/gen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,14 @@ generation:
generateNewTests: false
skipResponseBodyAssertions: false
go:
version: 0.25.7
version: 0.25.8
additionalDependencies: {}
allowUnknownFieldsInWeakUnions: false
baseErrorName: SDKBaseError
clientServerStatusCodesAsErrors: true
defaultErrorName: SDKError
enableCustomCodeRegions: false
enableSkipDeserialization: false
flattenGlobalSecurity: true
forwardCompatibleEnumsByDefault: true
forwardCompatibleUnionsByDefault: "false"
Expand Down
14 changes: 7 additions & 7 deletions .speakeasy/workflow.lock
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
speakeasyVersion: 1.736.3
speakeasyVersion: 1.758.0
sources:
converge-source:
sourceNamespace: converge-source
sourceRevisionDigest: sha256:48cf182ee10951ce591e9d09c41ff31c245676976837dc8efeeb81de92331450
sourceBlobDigest: sha256:7de50b965211e15a8a2e0f0aa4bf2e80879f8e95decc394147e411317e37caa0
sourceRevisionDigest: sha256:dae9ba801f7d03522fe81a27dcf9f67a1e182c19bbd34fdc3bda049bcfd1b983
sourceBlobDigest: sha256:02adfb089a9e2c9e0c5226f38c45316681e853d6e48da881bf34627656a77d08
tags:
- latest
- 1.0.80
- 1.0.84
targets:
censys-sdk-go:
source: converge-source
sourceNamespace: converge-source
sourceRevisionDigest: sha256:48cf182ee10951ce591e9d09c41ff31c245676976837dc8efeeb81de92331450
sourceBlobDigest: sha256:7de50b965211e15a8a2e0f0aa4bf2e80879f8e95decc394147e411317e37caa0
sourceRevisionDigest: sha256:dae9ba801f7d03522fe81a27dcf9f67a1e182c19bbd34fdc3bda049bcfd1b983
sourceBlobDigest: sha256:02adfb089a9e2c9e0c5226f38c45316681e853d6e48da881bf34627656a77d08
codeSamplesNamespace: converge-source-go-code-samples
codeSamplesRevisionDigest: sha256:c4c844f42f541a14f53af09cb59f9d2312e3b356157f3825b3b8e078f73e7c24
codeSamplesRevisionDigest: sha256:22ad51ae4a4df11c073cca19004d06e21a5c35dc76d08e2e282eca3d7e1acb44
workflow:
workflowVersion: 1.0.0
speakeasyVersion: latest
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ func main() {

### [ThreatHunting](docs/sdks/threathunting/README.md)

* [CreateCenseyeJob](docs/sdks/threathunting/README.md#createcenseyejob) - CensEye: Create a pivot analysis job
* [GetCenseyeJob](docs/sdks/threathunting/README.md#getcenseyejob) - CensEye: Get job status
* [GetCenseyeJobResults](docs/sdks/threathunting/README.md#getcenseyejobresults) - CensEye: Get job results
* [GetHostObservationsWithCertificate](docs/sdks/threathunting/README.md#gethostobservationswithcertificate) - Get host history for a certificate
* [CreateTrackedScan](docs/sdks/threathunting/README.md#createtrackedscan) - Live Discovery: Initiate a new scan
* [GetTrackedScanThreatHunting](docs/sdks/threathunting/README.md#gettrackedscanthreathunting) - Get scan status
Expand Down
12 changes: 11 additions & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,4 +288,14 @@ Based on:
### Generated
- [go v0.25.7] .
### Releases
- [Go v0.25.7] https://github.com/censys/censys-sdk-go/releases/tag/v0.25.7 - .
- [Go v0.25.7] https://github.com/censys/censys-sdk-go/releases/tag/v0.25.7 - .

## 2026-03-20 00:22:02
### Changes
Based on:
- OpenAPI Doc
- Speakeasy CLI 1.758.0 (2.866.2) https://github.com/speakeasy-api/speakeasy
### Generated
- [go v0.25.8] .
### Releases
- [Go v0.25.8] https://github.com/censys/censys-sdk-go/releases/tag/v0.25.8 - .
3 changes: 3 additions & 0 deletions accountmanagement.go
Original file line number Diff line number Diff line change
Expand Up @@ -1039,6 +1039,7 @@ func (s *AccountManagement) InviteUserToOrganization(ctx context.Context, reques
switch {
case httpRes.StatusCode == 201:
res.Headers = httpRes.Header

utils.DrainBody(httpRes)
case httpRes.StatusCode == 401:
switch {
Expand Down Expand Up @@ -1579,6 +1580,7 @@ func (s *AccountManagement) RemoveOrganizationMember(ctx context.Context, reques
switch {
case httpRes.StatusCode == 204:
res.Headers = httpRes.Header

utils.DrainBody(httpRes)
case httpRes.StatusCode == 401:
switch {
Expand Down Expand Up @@ -1848,6 +1850,7 @@ func (s *AccountManagement) UpdateOrganizationMember(ctx context.Context, reques
switch {
case httpRes.StatusCode == 204:
res.Headers = httpRes.Header

utils.DrainBody(httpRes)
case httpRes.StatusCode == 401:
switch {
Expand Down
1 change: 1 addition & 0 deletions collections.go
Original file line number Diff line number Diff line change
Expand Up @@ -781,6 +781,7 @@ func (s *Collections) Delete(ctx context.Context, request operations.V3Collectio
switch {
case httpRes.StatusCode == 204:
res.Headers = httpRes.Header

utils.DrainBody(httpRes)
case httpRes.StatusCode == 401:
switch {
Expand Down
24 changes: 12 additions & 12 deletions docs/models/components/activemq.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

| Field | Type | Required | Description |
| ----------------------------------- | ----------------------------------- | ----------------------------------- | ----------------------------------- |
| `CacheEnabled` | **bool* | :heavy_minus_sign: | N/A |
| `CacheSize` | **int* | :heavy_minus_sign: | N/A |
| `MaxFrameSize` | **int64* | :heavy_minus_sign: | N/A |
| `MaxInactivityDuration` | **int64* | :heavy_minus_sign: | N/A |
| `MaxInactivityDurationInitialDelay` | **int* | :heavy_minus_sign: | N/A |
| `PlatformDetails` | **string* | :heavy_minus_sign: | N/A |
| `ProviderName` | **string* | :heavy_minus_sign: | N/A |
| `ProviderVersion` | **string* | :heavy_minus_sign: | N/A |
| `SizePrefixDisabled` | **bool* | :heavy_minus_sign: | N/A |
| `StackTraceEnabled` | **bool* | :heavy_minus_sign: | N/A |
| `TCPNoDelayEnabled` | **bool* | :heavy_minus_sign: | N/A |
| `TightEncodingEnabled` | **bool* | :heavy_minus_sign: | N/A |
| `CacheEnabled` | `*bool` | :heavy_minus_sign: | N/A |
| `CacheSize` | `*int` | :heavy_minus_sign: | N/A |
| `MaxFrameSize` | `*int64` | :heavy_minus_sign: | N/A |
| `MaxInactivityDuration` | `*int64` | :heavy_minus_sign: | N/A |
| `MaxInactivityDurationInitialDelay` | `*int` | :heavy_minus_sign: | N/A |
| `PlatformDetails` | `*string` | :heavy_minus_sign: | N/A |
| `ProviderName` | `*string` | :heavy_minus_sign: | N/A |
| `ProviderVersion` | `*string` | :heavy_minus_sign: | N/A |
| `SizePrefixDisabled` | `*bool` | :heavy_minus_sign: | N/A |
| `StackTraceEnabled` | `*bool` | :heavy_minus_sign: | N/A |
| `TCPNoDelayEnabled` | `*bool` | :heavy_minus_sign: | N/A |
| `TightEncodingEnabled` | `*bool` | :heavy_minus_sign: | N/A |
2 changes: 1 addition & 1 deletion docs/models/components/alternativequery.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

| Field | Type | Required | Description |
| ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------- |
| `Query` | *string* | :heavy_check_mark: | An alternative query that may be used. |
| `Query` | `string` | :heavy_check_mark: | An alternative query that may be used. |
| `Targets` | [][components.Targets](../../models/components/targets.md) | :heavy_check_mark: | The types of Platform data records (host, cert, and web) that can be targeted by the alternative query. |
4 changes: 2 additions & 2 deletions docs/models/components/amqp.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

| Field | Type | Required | Description |
| ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- | ------------------------------------------------------------------- |
| `ExplicitTLS` | **bool* | :heavy_minus_sign: | Connected via a TLS connection after initial handshake |
| `ImplicitTLS` | **bool* | :heavy_minus_sign: | Connected via a TLS wrapped connection (AMQPS) |
| `ExplicitTLS` | `*bool` | :heavy_minus_sign: | Connected via a TLS connection after initial handshake |
| `ImplicitTLS` | `*bool` | :heavy_minus_sign: | Connected via a TLS wrapped connection (AMQPS) |
| `ProtocolID` | [*components.AmqpProtocol](../../models/components/amqpprotocol.md) | :heavy_minus_sign: | N/A |
| `Version` | [*components.AmqpVersion](../../models/components/amqpversion.md) | :heavy_minus_sign: | N/A |
4 changes: 2 additions & 2 deletions docs/models/components/amqpprotocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `ID` | **int* | :heavy_minus_sign: | N/A |
| `Name` | **string* | :heavy_minus_sign: | N/A |
| `ID` | `*int` | :heavy_minus_sign: | N/A |
| `Name` | `*string` | :heavy_minus_sign: | N/A |
6 changes: 3 additions & 3 deletions docs/models/components/amqpversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `Major` | **int* | :heavy_minus_sign: | N/A |
| `Minor` | **int* | :heavy_minus_sign: | N/A |
| `Revision` | **int* | :heavy_minus_sign: | N/A |
| `Major` | `*int` | :heavy_minus_sign: | N/A |
| `Minor` | `*int` | :heavy_minus_sign: | N/A |
| `Revision` | `*int` | :heavy_minus_sign: | N/A |
8 changes: 4 additions & 4 deletions docs/models/components/analyticscapabilities.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

| Field | Type | Required | Description |
| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
| `AnalyticsModuleSupport` | **bool* | :heavy_minus_sign: | N/A |
| `CellBasedSceneDescriptionSupported` | **bool* | :heavy_minus_sign: | N/A |
| `RuleOptionsSupported` | **bool* | :heavy_minus_sign: | N/A |
| `RuleSupport` | **bool* | :heavy_minus_sign: | N/A |
| `AnalyticsModuleSupport` | `*bool` | :heavy_minus_sign: | N/A |
| `CellBasedSceneDescriptionSupported` | `*bool` | :heavy_minus_sign: | N/A |
| `RuleOptionsSupported` | `*bool` | :heavy_minus_sign: | N/A |
| `RuleSupport` | `*bool` | :heavy_minus_sign: | N/A |
10 changes: 5 additions & 5 deletions docs/models/components/anermacfforth.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

| Field | Type | Required | Description |
| ------------------ | ------------------ | ------------------ | ------------------ |
| `IP` | **string* | :heavy_minus_sign: | N/A |
| `Product` | **string* | :heavy_minus_sign: | N/A |
| `SerialNumber` | **string* | :heavy_minus_sign: | N/A |
| `UnitName` | **string* | :heavy_minus_sign: | N/A |
| `Version` | **string* | :heavy_minus_sign: | N/A |
| `IP` | `*string` | :heavy_minus_sign: | N/A |
| `Product` | `*string` | :heavy_minus_sign: | N/A |
| `SerialNumber` | `*string` | :heavy_minus_sign: | N/A |
| `UnitName` | `*string` | :heavy_minus_sign: | N/A |
| `Version` | `*string` | :heavy_minus_sign: | N/A |
Loading
Loading