infisical-sdk 2.3.1 → 2.3.7

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: d1d97c48967919e0aeb408fd06f3941e767f923fdcb5973e53676365f4b09836
4
+ data.tar.gz: '0090861f15767a6a879c0672e13936b9220f721968fcb2439a2256d75be75459'
5
5
  SHA512:
6
- metadata.gz: be5c2bfbf66889beeab8f67436eb92ac5a7a975cd83f25bf9202c40520349529d6b66bb4da3dce738e202e3beba727da81338f92703080ae9839607815be0c12
7
- data.tar.gz: 1268c4b9e7c84b8b2367c7a930f332ff4b2843fc02377c5caed35b0814cd1e6c2e4dd181e5a7fd32fb6733a0d6054f7da6e05997813719eb1c00c95314e29a38
6
+ metadata.gz: 0bbe466cda340b16e2565f18bdf19b4552ced0d66be0d16b8658028591cefd5f5abc06304877abefa6ff750900cd1ef3c01180dbf6f6c24398f93c0eccbfabd2
7
+ data.tar.gz: 7823688dba885529807a330f88d3f78570d0166571a4b16503fc8a2d1dc6d6f55dcdc828f5f19d666335a844d3b44fcbfd29b9ddc8cb6e5384feacca8720b891
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.7'
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.7
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-09-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-struct