infrawrench-sdk 1.26.0 → 1.28.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/infrawrench-sdk.gemspec +4 -4
- data/lib/infrawrench/client.rb +48 -2
- data/lib/infrawrench/sdk.rb +2 -2
- data/lib/infrawrench/transport.rb +2 -2
- data/lib/infrawrench/version.rb +3 -3
- data/lib/infrawrench-sdk.rb +2 -2
- data/sig/infrawrench/sdk.rbs +46 -4
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f0507a9ce66e4b0bd08583d4d7667667b70c6a5e20fe76daff78a738b9f36ff2
|
|
4
|
+
data.tar.gz: e2edbb60b9107065f93451538ca48c668f28f529e15294923072a950d1064d2f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa2f6f93c746bdd749ac1ed56053ff074cb47bcddfb810d7e2ae9ff53b593034c1a03f113ec99514030f3369b4d538b80ed5a887994ef8b7ba93bd7caed8b2ef
|
|
7
|
+
data.tar.gz: 24215b8329160330e3c95cc40cc07eabb05e4ebd9d0207b7c554c0ffcfa81949c96c8c70a7d8fdd33806ca789f3e2f52f0b319d06b22e2382e6378e1daafbb16
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# infrawrench-sdk
|
|
2
2
|
|
|
3
|
-
Generated Ruby client for the Infrawrench API (API version `1.
|
|
3
|
+
Generated Ruby client for the Infrawrench API (API version `1.28.0`).
|
|
4
4
|
|
|
5
5
|
**Do not edit this gem by hand** — it is regenerated from `openapi.json` and is
|
|
6
6
|
not checked into the repository. Run
|
|
@@ -41,7 +41,7 @@ Every method takes an optional trailing `request_options:` hash (`:headers`,
|
|
|
41
41
|
Responses are the plain `Hash`/`Array` that `JSON.parse` returns, with String
|
|
42
42
|
keys spelled exactly as the wire spells them. There are no model classes — see
|
|
43
43
|
[`sig/infrawrench/sdk.rbs`](./sig/infrawrench/sdk.rbs) for the shape of every one of the
|
|
44
|
-
|
|
44
|
+
680 schemas, as RBS type aliases that steep and TypeProf can read.
|
|
45
45
|
|
|
46
46
|
Non-2xx responses raise `Infrawrench::ApiError`, which carries `#status`,
|
|
47
47
|
the parsed `#body`, and the machine-readable `#code` when the API sends one —
|
data/infrawrench-sdk.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# infrawrench-sdk v1.
|
|
3
|
+
# infrawrench-sdk v1.28.0 | MIT | Copyright (c) 2026 Infrawrench LLC
|
|
4
4
|
# https://github.com/Infrawrench/Infrawrench
|
|
5
5
|
#
|
|
6
|
-
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.
|
|
6
|
+
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.28.0).
|
|
7
7
|
#
|
|
8
8
|
# DO NOT EDIT. Regenerate with:
|
|
9
9
|
# pnpm --filter @infrawrench/web generate:sdk
|
|
@@ -17,8 +17,8 @@ require_relative "lib/infrawrench/version"
|
|
|
17
17
|
Gem::Specification.new do |spec|
|
|
18
18
|
spec.name = "infrawrench-sdk"
|
|
19
19
|
spec.version = Infrawrench::VERSION
|
|
20
|
-
spec.summary = "Generated Ruby client for the Infrawrench API (v1.
|
|
21
|
-
spec.description = "Generated Ruby client for the Infrawrench API (v1.
|
|
20
|
+
spec.summary = "Generated Ruby client for the Infrawrench API (v1.28.0)."
|
|
21
|
+
spec.description = "Generated Ruby client for the Infrawrench API (v1.28.0). Covers the published API surface only — operations marked x-internal in the spec are not generated. No runtime dependencies."
|
|
22
22
|
spec.authors = ["Infrawrench LLC", "Astrid Gealer"]
|
|
23
23
|
spec.email = ["astrid@infrawrench.com"]
|
|
24
24
|
spec.homepage = "https://infrawrench.com/docs/team-and-billing/client-sdks"
|
data/lib/infrawrench/client.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# infrawrench-sdk v1.
|
|
3
|
+
# infrawrench-sdk v1.28.0 | MIT | Copyright (c) 2026 Infrawrench LLC
|
|
4
4
|
# https://github.com/Infrawrench/Infrawrench
|
|
5
5
|
#
|
|
6
|
-
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.
|
|
6
|
+
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.28.0).
|
|
7
7
|
#
|
|
8
8
|
# DO NOT EDIT. Regenerate with:
|
|
9
9
|
# pnpm --filter @infrawrench/web generate:sdk
|
|
@@ -14958,6 +14958,49 @@ module Infrawrench
|
|
|
14958
14958
|
end
|
|
14959
14959
|
end
|
|
14960
14960
|
|
|
14961
|
+
# `client.wallboard`
|
|
14962
|
+
class WallboardNamespace
|
|
14963
|
+
# @api private
|
|
14964
|
+
# @param transport [Transport]
|
|
14965
|
+
def initialize(transport)
|
|
14966
|
+
@transport = transport
|
|
14967
|
+
end
|
|
14968
|
+
|
|
14969
|
+
# Everything that is wrong right now, for a screen on a wall
|
|
14970
|
+
#
|
|
14971
|
+
# A different reading of data the product already holds, built on one rule:
|
|
14972
|
+
# a wallboard may only show things that are true **right now** and that
|
|
14973
|
+
# somebody would cross a room to look at. There is deliberately no history,
|
|
14974
|
+
# no trend and no breakdown — those belong on the page you open when you do
|
|
14975
|
+
# walk over.
|
|
14976
|
+
#
|
|
14977
|
+
# Four sources — declared incidents, synthetic probes, query monitors and
|
|
14978
|
+
# account sync health — each guarded independently, because a television
|
|
14979
|
+
# that goes blank because one query threw is showing nothing to a room that
|
|
14980
|
+
# was relying on it.
|
|
14981
|
+
#
|
|
14982
|
+
# Session-authenticated on purpose: unlike the calendar feed or a public
|
|
14983
|
+
# status page, this carries incident titles, probe names and account names,
|
|
14984
|
+
# and a screen in an office is exactly what a visitor photographs. The
|
|
14985
|
+
# machine driving the wall signs in once.
|
|
14986
|
+
#
|
|
14987
|
+
# GET /api/org/{orgId}/wallboard
|
|
14988
|
+
#
|
|
14989
|
+
# @param org_id [String, nil] Organization id. Defaults to the `org_id` the client was
|
|
14990
|
+
# constructed with.
|
|
14991
|
+
# @param request_options [Hash, nil] Per-call `:headers`, `:timeout` and `:open_timeout`.
|
|
14992
|
+
# @return [Hash] Parsed JSON, shaped as `WallboardResponse` — see `sig/infrawrench/sdk.rbs`.
|
|
14993
|
+
# @raise [Infrawrench::ApiError] On any non-2xx response.
|
|
14994
|
+
def get(org_id: nil, request_options: nil)
|
|
14995
|
+
@transport.request(
|
|
14996
|
+
http_method: "GET",
|
|
14997
|
+
path: "/api/org/{orgId}/wallboard",
|
|
14998
|
+
path_params: { "orgId" => org_id },
|
|
14999
|
+
request_options: request_options
|
|
15000
|
+
)
|
|
15001
|
+
end
|
|
15002
|
+
end
|
|
15003
|
+
|
|
14961
15004
|
# `client.workflow_approvals`
|
|
14962
15005
|
class WorkflowApprovalsNamespace
|
|
14963
15006
|
# @api private
|
|
@@ -15594,6 +15637,8 @@ module Infrawrench
|
|
|
15594
15637
|
attr_reader :tag_policy
|
|
15595
15638
|
# @return [TeamNamespace] `client.team`
|
|
15596
15639
|
attr_reader :team
|
|
15640
|
+
# @return [WallboardNamespace] `client.wallboard`
|
|
15641
|
+
attr_reader :wallboard
|
|
15597
15642
|
# @return [WorkflowApprovalsNamespace] `client.workflow_approvals`
|
|
15598
15643
|
attr_reader :workflow_approvals
|
|
15599
15644
|
# @return [WorkflowSecretsNamespace] `client.workflow_secrets`
|
|
@@ -15694,6 +15739,7 @@ module Infrawrench
|
|
|
15694
15739
|
@storage = StorageNamespace.new(@transport)
|
|
15695
15740
|
@tag_policy = TagPolicyNamespace.new(@transport)
|
|
15696
15741
|
@team = TeamNamespace.new(@transport)
|
|
15742
|
+
@wallboard = WallboardNamespace.new(@transport)
|
|
15697
15743
|
@workflow_approvals = WorkflowApprovalsNamespace.new(@transport)
|
|
15698
15744
|
@workflow_secrets = WorkflowSecretsNamespace.new(@transport)
|
|
15699
15745
|
@workflows = WorkflowsNamespace.new(@transport)
|
data/lib/infrawrench/sdk.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# infrawrench-sdk v1.
|
|
3
|
+
# infrawrench-sdk v1.28.0 | MIT | Copyright (c) 2026 Infrawrench LLC
|
|
4
4
|
# https://github.com/Infrawrench/Infrawrench
|
|
5
5
|
#
|
|
6
|
-
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.
|
|
6
|
+
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.28.0).
|
|
7
7
|
#
|
|
8
8
|
# DO NOT EDIT. Regenerate with:
|
|
9
9
|
# pnpm --filter @infrawrench/web generate:sdk
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# infrawrench-sdk v1.
|
|
3
|
+
# infrawrench-sdk v1.28.0 | MIT | Copyright (c) 2026 Infrawrench LLC
|
|
4
4
|
# https://github.com/Infrawrench/Infrawrench
|
|
5
5
|
#
|
|
6
|
-
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.
|
|
6
|
+
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.28.0).
|
|
7
7
|
#
|
|
8
8
|
# DO NOT EDIT. Regenerate with:
|
|
9
9
|
# pnpm --filter @infrawrench/web generate:sdk
|
data/lib/infrawrench/version.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# infrawrench-sdk v1.
|
|
3
|
+
# infrawrench-sdk v1.28.0 | MIT | Copyright (c) 2026 Infrawrench LLC
|
|
4
4
|
# https://github.com/Infrawrench/Infrawrench
|
|
5
5
|
#
|
|
6
|
-
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.
|
|
6
|
+
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.28.0).
|
|
7
7
|
#
|
|
8
8
|
# DO NOT EDIT. Regenerate with:
|
|
9
9
|
# pnpm --filter @infrawrench/web generate:sdk
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
# Kept in its own file so the gemspec can read the version without loading the
|
|
16
16
|
# client — a gemspec that pulls in net/http is a gemspec that can fail to parse.
|
|
17
17
|
module Infrawrench
|
|
18
|
-
VERSION = "1.
|
|
18
|
+
VERSION = "1.28.0"
|
|
19
19
|
end
|
data/lib/infrawrench-sdk.rb
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
# infrawrench-sdk v1.
|
|
3
|
+
# infrawrench-sdk v1.28.0 | MIT | Copyright (c) 2026 Infrawrench LLC
|
|
4
4
|
# https://github.com/Infrawrench/Infrawrench
|
|
5
5
|
#
|
|
6
|
-
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.
|
|
6
|
+
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.28.0).
|
|
7
7
|
#
|
|
8
8
|
# DO NOT EDIT. Regenerate with:
|
|
9
9
|
# pnpm --filter @infrawrench/web generate:sdk
|
data/sig/infrawrench/sdk.rbs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
# infrawrench-sdk v1.
|
|
1
|
+
# infrawrench-sdk v1.28.0 | MIT | Copyright (c) 2026 Infrawrench LLC
|
|
2
2
|
# https://github.com/Infrawrench/Infrawrench
|
|
3
3
|
#
|
|
4
|
-
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.
|
|
4
|
+
# Generated from the Infrawrench API OpenAPI 3.1 spec (API version 1.28.0).
|
|
5
5
|
#
|
|
6
6
|
# DO NOT EDIT. Regenerate with:
|
|
7
7
|
# pnpm --filter @infrawrench/web generate:sdk
|
|
@@ -6558,6 +6558,7 @@ module Infrawrench
|
|
|
6558
6558
|
| "posture"
|
|
6559
6559
|
| "access-review"
|
|
6560
6560
|
| "backups"
|
|
6561
|
+
| "wallboard"
|
|
6561
6562
|
| "dns"
|
|
6562
6563
|
| "iac"
|
|
6563
6564
|
| "environment-diff"
|
|
@@ -6571,13 +6572,17 @@ module Infrawrench
|
|
|
6571
6572
|
| "workflows"
|
|
6572
6573
|
| "deployments"
|
|
6573
6574
|
| "settings"
|
|
6574
|
-
| "chat"
|
|
6575
|
+
| "chat"
|
|
6576
|
+
| "linux-app",
|
|
6575
6577
|
?"dashboardId" => String,
|
|
6576
6578
|
?"accountId" => String,
|
|
6577
6579
|
?"resourceId" => resource_id,
|
|
6578
6580
|
?"conversationId" => String,
|
|
6579
6581
|
?"reportId" => String,
|
|
6580
|
-
?"invoiceId" => String
|
|
6582
|
+
?"invoiceId" => String,
|
|
6583
|
+
?"sessionId" => String,
|
|
6584
|
+
?"windowId" => Integer,
|
|
6585
|
+
?"appId" => String
|
|
6581
6586
|
}
|
|
6582
6587
|
|
|
6583
6588
|
# Spec schema: `TagComplianceReport`.
|
|
@@ -6759,6 +6764,37 @@ module Infrawrench
|
|
|
6759
6764
|
# Spec schema: `ValidateTabsResponse`.
|
|
6760
6765
|
type validate_tabs_response = { "validTabIds" => Array[String] }
|
|
6761
6766
|
|
|
6767
|
+
# Spec schema: `WallboardFailureLine`.
|
|
6768
|
+
type wallboard_failure_line = { "id" => String, "label" => String, "detail" => String, "since" => String | nil }
|
|
6769
|
+
|
|
6770
|
+
# Spec schema: `WallboardIncidentLine`.
|
|
6771
|
+
type wallboard_incident_line = {
|
|
6772
|
+
"id" => String,
|
|
6773
|
+
"title" => String,
|
|
6774
|
+
"severity" => String,
|
|
6775
|
+
"startedAt" => String,
|
|
6776
|
+
"status" => String
|
|
6777
|
+
}
|
|
6778
|
+
|
|
6779
|
+
# Spec schema: `WallboardResponse`.
|
|
6780
|
+
type wallboard_response = {
|
|
6781
|
+
"status" => "ok" | "degraded" | "down",
|
|
6782
|
+
"tiles" => Array[wallboard_tile],
|
|
6783
|
+
"incidents" => Array[wallboard_incident_line],
|
|
6784
|
+
"failures" => Array[wallboard_failure_line],
|
|
6785
|
+
"failedSources" => Array[String],
|
|
6786
|
+
"generatedAt" => String
|
|
6787
|
+
}
|
|
6788
|
+
|
|
6789
|
+
# Spec schema: `WallboardTile`.
|
|
6790
|
+
type wallboard_tile = {
|
|
6791
|
+
"id" => String,
|
|
6792
|
+
"label" => String,
|
|
6793
|
+
"value" => String,
|
|
6794
|
+
"detail" => String | nil,
|
|
6795
|
+
"status" => "ok" | "degraded" | "down"
|
|
6796
|
+
}
|
|
6797
|
+
|
|
6762
6798
|
# Spec schema: `WorkflowApproval`.
|
|
6763
6799
|
type workflow_approval = {
|
|
6764
6800
|
"id" => String,
|
|
@@ -7955,6 +7991,11 @@ module Infrawrench
|
|
|
7955
7991
|
def permissions: (?org_id: String?, ?request_options: Hash[Symbol, untyped]?) -> permission_catalog
|
|
7956
7992
|
end
|
|
7957
7993
|
|
|
7994
|
+
class WallboardNamespace
|
|
7995
|
+
def initialize: (Transport) -> void
|
|
7996
|
+
def get: (?org_id: String?, ?request_options: Hash[Symbol, untyped]?) -> wallboard_response
|
|
7997
|
+
end
|
|
7998
|
+
|
|
7958
7999
|
class WorkflowApprovalsNamespace
|
|
7959
8000
|
def initialize: (Transport) -> void
|
|
7960
8001
|
def approve: (id: String, ?org_id: String?, ?request_options: Hash[Symbol, untyped]?) -> workflow_approval
|
|
@@ -8081,6 +8122,7 @@ module Infrawrench
|
|
|
8081
8122
|
attr_reader storage: StorageNamespace
|
|
8082
8123
|
attr_reader tag_policy: TagPolicyNamespace
|
|
8083
8124
|
attr_reader team: TeamNamespace
|
|
8125
|
+
attr_reader wallboard: WallboardNamespace
|
|
8084
8126
|
attr_reader workflow_approvals: WorkflowApprovalsNamespace
|
|
8085
8127
|
attr_reader workflow_secrets: WorkflowSecretsNamespace
|
|
8086
8128
|
attr_reader workflows: WorkflowsNamespace
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: infrawrench-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.28.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Infrawrench LLC
|
|
@@ -9,9 +9,9 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2026-08-
|
|
12
|
+
date: 2026-08-18 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
|
-
description: Generated Ruby client for the Infrawrench API (v1.
|
|
14
|
+
description: Generated Ruby client for the Infrawrench API (v1.28.0). Covers the published
|
|
15
15
|
API surface only — operations marked x-internal in the spec are not generated. No
|
|
16
16
|
runtime dependencies.
|
|
17
17
|
email:
|
|
@@ -58,5 +58,5 @@ requirements: []
|
|
|
58
58
|
rubygems_version: 3.5.22
|
|
59
59
|
signing_key:
|
|
60
60
|
specification_version: 4
|
|
61
|
-
summary: Generated Ruby client for the Infrawrench API (v1.
|
|
61
|
+
summary: Generated Ruby client for the Infrawrench API (v1.28.0).
|
|
62
62
|
test_files: []
|