aserto-authorizer 0.0.3 → 0.0.4
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
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 913834d0efbf3b501d9329fafae23621ef46034f3f251230ff06b572fa85bdf0
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: c0495c8a1d1bc63517581765c01171f8b0dc2cc2f79404ff3404b7ee90d9a1fa
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 8744ccc2f8220a235fdddf0bf87db9b432fcf1d5f2395589fd58c5f541c66ab9c532a27b193b727944ed1f38ee4caa88f7419ec7ff0fa87784379a91edb983dc
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 8ee0729689666355bd38efbc91a78ebc2bcf64ec61d522f873d4ef54022fd95dbecfd058fefbfec44e53df5e3e5b882990ac4a0cd8931cb74e375ce6937257be
         
     | 
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            0.0. 
     | 
| 
      
 1 
     | 
    
         
            +
            0.0.4
         
     | 
| 
         @@ -7,6 +7,7 @@ require 'google/protobuf/struct_pb' 
     | 
|
| 
       7 
7 
     | 
    
         
             
            require 'google/protobuf/timestamp_pb'
         
     | 
| 
       8 
8 
     | 
    
         
             
            require 'aserto/authorizer/v2/api/policy_context_pb'
         
     | 
| 
       9 
9 
     | 
    
         
             
            require 'aserto/authorizer/v2/api/identity_context_pb'
         
     | 
| 
      
 10 
     | 
    
         
            +
            require 'aserto/authorizer/v2/api/policy_instance_pb'
         
     | 
| 
       10 
11 
     | 
    
         | 
| 
       11 
12 
     | 
    
         
             
            Google::Protobuf::DescriptorPool.generated_pool.build do
         
     | 
| 
       12 
13 
     | 
    
         
             
              add_file("aserto/authorizer/v2/api/decision_logs.proto", :syntax => :proto3) do
         
     | 
| 
         @@ -19,6 +20,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do 
     | 
|
| 
       19 
20 
     | 
    
         
             
                  map :outcomes, :string, :bool, 6
         
     | 
| 
       20 
21 
     | 
    
         
             
                  optional :resource, :message, 7, "google.protobuf.Struct", json_name: "resource"
         
     | 
| 
       21 
22 
     | 
    
         
             
                  map :annotations, :string, :string, 8
         
     | 
| 
      
 23 
     | 
    
         
            +
                  proto3_optional :tenant_id, :string, 9, json_name: "tenantId"
         
     | 
| 
       22 
24 
     | 
    
         
             
                end
         
     | 
| 
       23 
25 
     | 
    
         
             
                add_message "aserto.authorizer.v2.api.DecisionUser" do
         
     | 
| 
       24 
26 
     | 
    
         
             
                  optional :context, :message, 1, "aserto.authorizer.v2.api.IdentityContext", json_name: "context"
         
     | 
| 
         @@ -31,6 +33,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do 
     | 
|
| 
       31 
33 
     | 
    
         
             
                  optional :registry_image, :string, 3, json_name: "registryImage"
         
     | 
| 
       32 
34 
     | 
    
         
             
                  optional :registry_tag, :string, 4, json_name: "registryTag"
         
     | 
| 
       33 
35 
     | 
    
         
             
                  optional :registry_digest, :string, 5, json_name: "registryDigest"
         
     | 
| 
      
 36 
     | 
    
         
            +
                  optional :policy_instance, :message, 6, "aserto.authorizer.v2.api.PolicyInstance", json_name: "policyInstance"
         
     | 
| 
       34 
37 
     | 
    
         
             
                end
         
     | 
| 
       35 
38 
     | 
    
         
             
              end
         
     | 
| 
       36 
39 
     | 
    
         
             
            end
         
     | 
| 
         @@ -35,6 +35,24 @@ Google::Protobuf::DescriptorPool.generated_pool.build do 
     | 
|
| 
       35 
35 
     | 
    
         
             
                  optional :deprecated, :bool, 11, json_name: "deprecated"
         
     | 
| 
       36 
36 
     | 
    
         
             
                  repeated :security, :message, 12, "grpc.gateway.protoc_gen_openapiv2.options.SecurityRequirement", json_name: "security"
         
     | 
| 
       37 
37 
     | 
    
         
             
                  map :extensions, :string, :message, 13, "google.protobuf.Value"
         
     | 
| 
      
 38 
     | 
    
         
            +
                  optional :parameters, :message, 14, "grpc.gateway.protoc_gen_openapiv2.options.Parameters", json_name: "parameters"
         
     | 
| 
      
 39 
     | 
    
         
            +
                end
         
     | 
| 
      
 40 
     | 
    
         
            +
                add_message "grpc.gateway.protoc_gen_openapiv2.options.Parameters" do
         
     | 
| 
      
 41 
     | 
    
         
            +
                  repeated :headers, :message, 1, "grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter", json_name: "headers"
         
     | 
| 
      
 42 
     | 
    
         
            +
                end
         
     | 
| 
      
 43 
     | 
    
         
            +
                add_message "grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter" do
         
     | 
| 
      
 44 
     | 
    
         
            +
                  optional :name, :string, 1, json_name: "name"
         
     | 
| 
      
 45 
     | 
    
         
            +
                  optional :description, :string, 2, json_name: "description"
         
     | 
| 
      
 46 
     | 
    
         
            +
                  optional :type, :enum, 3, "grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.Type", json_name: "type"
         
     | 
| 
      
 47 
     | 
    
         
            +
                  optional :format, :string, 4, json_name: "format"
         
     | 
| 
      
 48 
     | 
    
         
            +
                  optional :required, :bool, 5, json_name: "required"
         
     | 
| 
      
 49 
     | 
    
         
            +
                end
         
     | 
| 
      
 50 
     | 
    
         
            +
                add_enum "grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.Type" do
         
     | 
| 
      
 51 
     | 
    
         
            +
                  value :UNKNOWN, 0
         
     | 
| 
      
 52 
     | 
    
         
            +
                  value :STRING, 1
         
     | 
| 
      
 53 
     | 
    
         
            +
                  value :NUMBER, 2
         
     | 
| 
      
 54 
     | 
    
         
            +
                  value :INTEGER, 3
         
     | 
| 
      
 55 
     | 
    
         
            +
                  value :BOOLEAN, 4
         
     | 
| 
       38 
56 
     | 
    
         
             
                end
         
     | 
| 
       39 
57 
     | 
    
         
             
                add_message "grpc.gateway.protoc_gen_openapiv2.options.Header" do
         
     | 
| 
       40 
58 
     | 
    
         
             
                  optional :description, :string, 1, json_name: "description"
         
     | 
| 
         @@ -183,6 +201,9 @@ module Grpc 
     | 
|
| 
       183 
201 
     | 
    
         
             
                  module Options
         
     | 
| 
       184 
202 
     | 
    
         
             
                    Swagger = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.gateway.protoc_gen_openapiv2.options.Swagger").msgclass
         
     | 
| 
       185 
203 
     | 
    
         
             
                    Operation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.gateway.protoc_gen_openapiv2.options.Operation").msgclass
         
     | 
| 
      
 204 
     | 
    
         
            +
                    Parameters = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.gateway.protoc_gen_openapiv2.options.Parameters").msgclass
         
     | 
| 
      
 205 
     | 
    
         
            +
                    HeaderParameter = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter").msgclass
         
     | 
| 
      
 206 
     | 
    
         
            +
                    HeaderParameter::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.gateway.protoc_gen_openapiv2.options.HeaderParameter.Type").enummodule
         
     | 
| 
       186 
207 
     | 
    
         
             
                    Header = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.gateway.protoc_gen_openapiv2.options.Header").msgclass
         
     | 
| 
       187 
208 
     | 
    
         
             
                    Response = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.gateway.protoc_gen_openapiv2.options.Response").msgclass
         
     | 
| 
       188 
209 
     | 
    
         
             
                    Info = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("grpc.gateway.protoc_gen_openapiv2.options.Info").msgclass
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: aserto-authorizer
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.0. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.0.4
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - Aserto
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date:  
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2023-05-11 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: grpc
         
     | 
| 
         @@ -134,7 +134,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement 
     | 
|
| 
       134 
134 
     | 
    
         
             
                - !ruby/object:Gem::Version
         
     | 
| 
       135 
135 
     | 
    
         
             
                  version: '0'
         
     | 
| 
       136 
136 
     | 
    
         
             
            requirements: []
         
     | 
| 
       137 
     | 
    
         
            -
            rubygems_version: 3. 
     | 
| 
      
 137 
     | 
    
         
            +
            rubygems_version: 3.4.10
         
     | 
| 
       138 
138 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       139 
139 
     | 
    
         
             
            specification_version: 4
         
     | 
| 
       140 
140 
     | 
    
         
             
            summary: Aserto Authorizer GRPC Client
         
     |