strongdm 13.11.0 → 14.0.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/.git/ORIG_HEAD +1 -1
- data/.git/index +0 -0
- data/.git/logs/HEAD +3 -3
- data/.git/logs/refs/heads/master +2 -2
- data/.git/logs/refs/remotes/origin/HEAD +1 -1
- data/.git/objects/pack/{pack-1d9fc140c6d5e5a873af3b9499b2cf070fc0bd1e.idx → pack-506fd68e43b73695be77ec3d6e0aef9ecb46e913.idx} +0 -0
- data/.git/objects/pack/{pack-1d9fc140c6d5e5a873af3b9499b2cf070fc0bd1e.pack → pack-506fd68e43b73695be77ec3d6e0aef9ecb46e913.pack} +0 -0
- data/.git/packed-refs +4 -2
- data/.git/refs/heads/master +1 -1
- data/lib/grpc/accounts_pb.rb +2 -0
- data/lib/grpc/approval_workflow_approvers_services_pb.rb +4 -4
- data/lib/grpc/approval_workflow_steps_pb.rb +4 -0
- data/lib/grpc/approval_workflow_steps_services_pb.rb +4 -4
- data/lib/grpc/managed_secrets_pb.rb +171 -0
- data/lib/grpc/managed_secrets_services_pb.rb +59 -0
- data/lib/grpc/plumbing.rb +4265 -2492
- data/lib/grpc/secret_engine_policy_pb.rb +41 -0
- data/lib/grpc/secret_engine_types_pb.rb +75 -0
- data/lib/grpc/secret_engines_pb.rb +124 -0
- data/lib/grpc/secret_engines_services_pb.rb +53 -0
- data/lib/models/porcelain.rb +1304 -60
- data/lib/strongdm.rb +15 -1
- data/lib/svc.rb +668 -12
- data/lib/version +1 -1
- data/lib/version.rb +1 -1
- metadata +10 -4
data/lib/strongdm.rb
CHANGED
@@ -29,7 +29,7 @@ module SDM #:nodoc:
|
|
29
29
|
DEFAULT_BASE_RETRY_DELAY = 0.0030 # 30 ms
|
30
30
|
DEFAULT_MAX_RETRY_DELAY = 300 # 300 seconds
|
31
31
|
API_VERSION = "2024-03-28"
|
32
|
-
USER_AGENT = "strongdm-sdk-ruby/
|
32
|
+
USER_AGENT = "strongdm-sdk-ruby/14.0.0"
|
33
33
|
private_constant :DEFAULT_MAX_RETRIES, :DEFAULT_BASE_RETRY_DELAY, :DEFAULT_MAX_RETRY_DELAY, :API_VERSION, :USER_AGENT
|
34
34
|
|
35
35
|
# Creates a new strongDM API client.
|
@@ -80,6 +80,7 @@ module SDM #:nodoc:
|
|
80
80
|
@identity_aliases_history = IdentityAliasesHistory.new(@channel, self)
|
81
81
|
@identity_sets = IdentitySets.new(@channel, self)
|
82
82
|
@identity_sets_history = IdentitySetsHistory.new(@channel, self)
|
83
|
+
@managed_secrets = ManagedSecrets.new(@channel, self)
|
83
84
|
@nodes = Nodes.new(@channel, self)
|
84
85
|
@nodes_history = NodesHistory.new(@channel, self)
|
85
86
|
@organization_history = OrganizationHistory.new(@channel, self)
|
@@ -103,6 +104,7 @@ module SDM #:nodoc:
|
|
103
104
|
@roles = Roles.new(@channel, self)
|
104
105
|
@roles_history = RolesHistory.new(@channel, self)
|
105
106
|
@secret_stores = SecretStores.new(@channel, self)
|
107
|
+
@secret_engines = SecretEngines.new(@channel, self)
|
106
108
|
@secret_store_healths = SecretStoreHealths.new(@channel, self)
|
107
109
|
@secret_stores_history = SecretStoresHistory.new(@channel, self)
|
108
110
|
@workflow_approvers = WorkflowApprovers.new(@channel, self)
|
@@ -314,6 +316,12 @@ module SDM #:nodoc:
|
|
314
316
|
#
|
315
317
|
# See {IdentitySetsHistory}.
|
316
318
|
attr_reader :identity_sets_history
|
319
|
+
# ManagedSecret is a private vertical for creating, reading, updating,
|
320
|
+
# deleting, listing and rotating the managed secrets in the secrets engines as
|
321
|
+
# an authenticated user.
|
322
|
+
#
|
323
|
+
# See {ManagedSecrets}.
|
324
|
+
attr_reader :managed_secrets
|
317
325
|
# Nodes make up the strongDM network, and allow your users to connect securely to your resources. There are two types of nodes:
|
318
326
|
# - **Gateways** are the entry points into network. They listen for connection from the strongDM client, and provide access to databases and servers.
|
319
327
|
# - **Relays** are used to extend the strongDM network into segmented subnets. They provide access to databases and servers but do not listen for incoming connections.
|
@@ -419,6 +427,10 @@ module SDM #:nodoc:
|
|
419
427
|
#
|
420
428
|
# See {SecretStores}.
|
421
429
|
attr_reader :secret_stores
|
430
|
+
|
431
|
+
#
|
432
|
+
# See {SecretEngines}.
|
433
|
+
attr_reader :secret_engines
|
422
434
|
# SecretStoreHealths exposes health states for secret stores.
|
423
435
|
#
|
424
436
|
# See {SecretStoreHealths}.
|
@@ -496,6 +508,7 @@ module SDM #:nodoc:
|
|
496
508
|
@identity_aliases_history = IdentityAliasesHistory.new(@channel, self)
|
497
509
|
@identity_sets = IdentitySets.new(@channel, self)
|
498
510
|
@identity_sets_history = IdentitySetsHistory.new(@channel, self)
|
511
|
+
@managed_secrets = ManagedSecrets.new(@channel, self)
|
499
512
|
@nodes = Nodes.new(@channel, self)
|
500
513
|
@nodes_history = NodesHistory.new(@channel, self)
|
501
514
|
@organization_history = OrganizationHistory.new(@channel, self)
|
@@ -519,6 +532,7 @@ module SDM #:nodoc:
|
|
519
532
|
@roles = Roles.new(@channel, self)
|
520
533
|
@roles_history = RolesHistory.new(@channel, self)
|
521
534
|
@secret_stores = SecretStores.new(@channel, self)
|
535
|
+
@secret_engines = SecretEngines.new(@channel, self)
|
522
536
|
@secret_store_healths = SecretStoreHealths.new(@channel, self)
|
523
537
|
@secret_stores_history = SecretStoresHistory.new(@channel, self)
|
524
538
|
@workflow_approvers = WorkflowApprovers.new(@channel, self)
|