infisical-sdk 2.3.0 → 2.3.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 631a8d8f205037d27e93e742be97f1f26f6be52b7bb3f033329f684cbe841603
4
- data.tar.gz: ff0bfcd3d7f95575ff2f1bf5f2cc15da52b78cbf972e687856600009103f00cd
3
+ metadata.gz: 7b5840d03f6c833ba8654d8ece098eda6f03988e84f20863e25d723b8fda42f6
4
+ data.tar.gz: 5b82a9f42ca77b6a979dbeb459db366a7c1494dae60c2c96a3bc59c44c778a68
5
5
  SHA512:
6
- metadata.gz: f3300ea068deb6069a4e048207aeb35d431c8391d09c249c561522392939158175be8e6d78d3ef17e6d39f25fea3af77d21f2c648f65a9618e2798abd3d3c424
7
- data.tar.gz: e3667b1d1d86b27d23312edf236ed9e484615a460dd302444d3d0683fdc538343f8de355ace58b310ba70c044e51106256af248528c71b131563cbbe0ec6ebd1
6
+ metadata.gz: fc19ba3579b3a68b46e950920498350741c2badd366ec83e7ed02e05ee87221abb3d23bccd20fd241b96b53a1c84c7512ebf2bab54e76aa44aeb2b2f55ffeaf0
7
+ data.tar.gz: 9122fb8a4163303d17784f111a46858fc0c971d6f154c6aeb5b2c1aca1bc699318209cfb8edec39cb38773719605a19c76cbf87855c1c4f8de304c9608f40b03
Binary file
Binary file
Binary file
Binary file
data/lib/schemas.rb CHANGED
@@ -628,22 +628,24 @@ class GcpIDTokenAuthLoginClass < Dry::Struct
628
628
  end
629
629
 
630
630
  class GetSecretOptions < Dry::Struct
631
- attribute :environment, Types::String
632
- attribute :include_imports, Types::Bool.optional.optional
633
- attribute :path, Types::String.optional.optional
634
- attribute :project_id, Types::String
635
- attribute :secret_name, Types::String
636
- attribute :get_secret_options_type, Types::String.optional.optional
631
+ attribute :environment, Types::String
632
+ attribute :expand_secret_references, Types::Bool.optional.optional
633
+ attribute :include_imports, Types::Bool.optional.optional
634
+ attribute :path, Types::String.optional.optional
635
+ attribute :project_id, Types::String
636
+ attribute :secret_name, Types::String
637
+ attribute :get_secret_options_type, Types::String.optional.optional
637
638
 
638
639
  def self.from_dynamic!(d)
639
640
  d = Types::Hash[d]
640
641
  new(
641
- environment: d.fetch("environment"),
642
- include_imports: d["includeImports"],
643
- path: d["path"],
644
- project_id: d.fetch("projectId"),
645
- secret_name: d.fetch("secretName"),
646
- get_secret_options_type: d["type"],
642
+ environment: d.fetch("environment"),
643
+ expand_secret_references: d["expandSecretReferences"],
644
+ include_imports: d["includeImports"],
645
+ path: d["path"],
646
+ project_id: d.fetch("projectId"),
647
+ secret_name: d.fetch("secretName"),
648
+ get_secret_options_type: d["type"],
647
649
  )
648
650
  end
649
651
 
@@ -653,12 +655,13 @@ class GetSecretOptions < Dry::Struct
653
655
 
654
656
  def to_dynamic
655
657
  {
656
- "environment" => environment,
657
- "includeImports" => include_imports,
658
- "path" => path,
659
- "projectId" => project_id,
660
- "secretName" => secret_name,
661
- "type" => get_secret_options_type,
658
+ "environment" => environment,
659
+ "expandSecretReferences" => expand_secret_references,
660
+ "includeImports" => include_imports,
661
+ "path" => path,
662
+ "projectId" => project_id,
663
+ "secretName" => secret_name,
664
+ "type" => get_secret_options_type,
662
665
  }
663
666
  end
664
667
 
data/lib/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module InfisicalSDK
4
- VERSION = '2.3.0'
4
+ VERSION = '2.3.5'
5
5
  end
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: infisical-sdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Infisical Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-30 00:00:00.000000000 Z
11
+ date: 2024-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-struct