infisical-sdk 2.3.1 → 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: f5f6c8f7b1eb85f7d5e07f2afa6d013f72f39377358dd368f5261d947e27a519
4
- data.tar.gz: b6ebe62ba77d9d06f9ffed84e7ba5e41713c08bb0188c6c909674137bccc410b
3
+ metadata.gz: 7b5840d03f6c833ba8654d8ece098eda6f03988e84f20863e25d723b8fda42f6
4
+ data.tar.gz: 5b82a9f42ca77b6a979dbeb459db366a7c1494dae60c2c96a3bc59c44c778a68
5
5
  SHA512:
6
- metadata.gz: be5c2bfbf66889beeab8f67436eb92ac5a7a975cd83f25bf9202c40520349529d6b66bb4da3dce738e202e3beba727da81338f92703080ae9839607815be0c12
7
- data.tar.gz: 1268c4b9e7c84b8b2367c7a930f332ff4b2843fc02377c5caed35b0814cd1e6c2e4dd181e5a7fd32fb6733a0d6054f7da6e05997813719eb1c00c95314e29a38
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.1'
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.1
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-31 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