google-apis-firebaseappdistribution_v1alpha 0.9.0 → 0.10.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/CHANGELOG.md +5 -0
- data/lib/google/apis/firebaseappdistribution_v1alpha/classes.rb +72 -6
- data/lib/google/apis/firebaseappdistribution_v1alpha/gem_version.rb +3 -3
- data/lib/google/apis/firebaseappdistribution_v1alpha/representations.rb +32 -1
- data/lib/google/apis/firebaseappdistribution_v1alpha/service.rb +31 -0
- metadata +4 -7
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: cf7d472623ea6423dfd3086b7a075803d29316666cda894a71bee30f8bceb716
         | 
| 4 | 
            +
              data.tar.gz: 942635cb47fb8f1a612fbb21dc9bc6e9bcf8b895ce69eb096363110bc66bb732
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: debc81f6d529a610600117e1e3969bd9a7303f14ea7bb7500baa9cb73b1661f5e8737d2232b30e3b6f8562eb50666810bda3670878c4de44956db3fcbeddb4c9
         | 
| 7 | 
            +
              data.tar.gz: 9483bd241b423867c4851845c4516a7b0718d2791831a60cf6eba4f639f01ff602e14d78c5e4bbdf347e869ecb71201111a8bc7ec18602752f8442325ae0acc6
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,5 +1,10 @@ | |
| 1 1 | 
             
            # Release history for google-apis-firebaseappdistribution_v1alpha
         | 
| 2 2 |  | 
| 3 | 
            +
            ### v0.10.0 (2025-02-26)
         | 
| 4 | 
            +
             | 
| 5 | 
            +
            * Regenerated from discovery document revision 20250219
         | 
| 6 | 
            +
            * Regenerated using generator version 0.16.0
         | 
| 7 | 
            +
             | 
| 3 8 | 
             
            ### v0.9.0 (2024-12-08)
         | 
| 4 9 |  | 
| 5 10 | 
             
            * Regenerated from discovery document revision 20241204
         | 
| @@ -208,11 +208,6 @@ module Google | |
| 208 208 | 
             
                  class GoogleFirebaseAppdistroV1alphaAiInstructions
         | 
| 209 209 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 210 210 |  | 
| 211 | 
            -
                    # Optional. Describes the app to give the AI some context
         | 
| 212 | 
            -
                    # Corresponds to the JSON property `appDescription`
         | 
| 213 | 
            -
                    # @return [String]
         | 
| 214 | 
            -
                    attr_accessor :app_description
         | 
| 215 | 
            -
                  
         | 
| 216 211 | 
             
                    # Required. Steps to be accomplished by the AI
         | 
| 217 212 | 
             
                    # Corresponds to the JSON property `steps`
         | 
| 218 213 | 
             
                    # @return [Array<Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep>]
         | 
| @@ -224,7 +219,6 @@ module Google | |
| 224 219 |  | 
| 225 220 | 
             
                    # Update properties of this object
         | 
| 226 221 | 
             
                    def update!(**args)
         | 
| 227 | 
            -
                      @app_description = args[:app_description] if args.key?(:app_description)
         | 
| 228 222 | 
             
                      @steps = args[:steps] if args.key?(:steps)
         | 
| 229 223 | 
             
                    end
         | 
| 230 224 | 
             
                  end
         | 
| @@ -802,6 +796,11 @@ module Google | |
| 802 796 | 
             
                  class GoogleFirebaseAppdistroV1alphaGoalAction
         | 
| 803 797 | 
             
                    include Google::Apis::Core::Hashable
         | 
| 804 798 |  | 
| 799 | 
            +
                    # Information to help the customer understand why the agent took this action
         | 
| 800 | 
            +
                    # Corresponds to the JSON property `debugInfo`
         | 
| 801 | 
            +
                    # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo]
         | 
| 802 | 
            +
                    attr_accessor :debug_info
         | 
| 803 | 
            +
                  
         | 
| 805 804 | 
             
                    # A high level action taken by the AI on the device, potentially involving
         | 
| 806 805 | 
             
                    # multiple taps, text entries, waits, etc.
         | 
| 807 806 | 
             
                    # Corresponds to the JSON property `deviceAction`
         | 
| @@ -824,12 +823,39 @@ module Google | |
| 824 823 |  | 
| 825 824 | 
             
                    # Update properties of this object
         | 
| 826 825 | 
             
                    def update!(**args)
         | 
| 826 | 
            +
                      @debug_info = args[:debug_info] if args.key?(:debug_info)
         | 
| 827 827 | 
             
                      @device_action = args[:device_action] if args.key?(:device_action)
         | 
| 828 828 | 
             
                      @explanation = args[:explanation] if args.key?(:explanation)
         | 
| 829 829 | 
             
                      @terminal_action = args[:terminal_action] if args.key?(:terminal_action)
         | 
| 830 830 | 
             
                    end
         | 
| 831 831 | 
             
                  end
         | 
| 832 832 |  | 
| 833 | 
            +
                  # Information to help the customer understand why the agent took this action
         | 
| 834 | 
            +
                  class GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo
         | 
| 835 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 836 | 
            +
                  
         | 
| 837 | 
            +
                    # Output only. URI of the screenshot with elements labeled which was used by the
         | 
| 838 | 
            +
                    # agent
         | 
| 839 | 
            +
                    # Corresponds to the JSON property `annotatedScreenshotUri`
         | 
| 840 | 
            +
                    # @return [String]
         | 
| 841 | 
            +
                    attr_accessor :annotated_screenshot_uri
         | 
| 842 | 
            +
                  
         | 
| 843 | 
            +
                    # Output only. Structured data explaining the agent's choice
         | 
| 844 | 
            +
                    # Corresponds to the JSON property `jsonUri`
         | 
| 845 | 
            +
                    # @return [String]
         | 
| 846 | 
            +
                    attr_accessor :json_uri
         | 
| 847 | 
            +
                  
         | 
| 848 | 
            +
                    def initialize(**args)
         | 
| 849 | 
            +
                       update!(**args)
         | 
| 850 | 
            +
                    end
         | 
| 851 | 
            +
                  
         | 
| 852 | 
            +
                    # Update properties of this object
         | 
| 853 | 
            +
                    def update!(**args)
         | 
| 854 | 
            +
                      @annotated_screenshot_uri = args[:annotated_screenshot_uri] if args.key?(:annotated_screenshot_uri)
         | 
| 855 | 
            +
                      @json_uri = args[:json_uri] if args.key?(:json_uri)
         | 
| 856 | 
            +
                    end
         | 
| 857 | 
            +
                  end
         | 
| 858 | 
            +
                  
         | 
| 833 859 | 
             
                  # Details for a goal step.
         | 
| 834 860 | 
             
                  class GoogleFirebaseAppdistroV1alphaGoalDetails
         | 
| 835 861 | 
             
                    include Google::Apis::Core::Hashable
         | 
| @@ -1294,6 +1320,11 @@ module Google | |
| 1294 1320 | 
             
                    # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions]
         | 
| 1295 1321 | 
             
                    attr_accessor :ai_instructions
         | 
| 1296 1322 |  | 
| 1323 | 
            +
                    # Output only. Timestamp when the test case was created
         | 
| 1324 | 
            +
                    # Corresponds to the JSON property `createTime`
         | 
| 1325 | 
            +
                    # @return [String]
         | 
| 1326 | 
            +
                    attr_accessor :create_time
         | 
| 1327 | 
            +
                  
         | 
| 1297 1328 | 
             
                    # Required. Display name of the test case.
         | 
| 1298 1329 | 
             
                    # Corresponds to the JSON property `displayName`
         | 
| 1299 1330 | 
             
                    # @return [String]
         | 
| @@ -1312,6 +1343,7 @@ module Google | |
| 1312 1343 | 
             
                    # Update properties of this object
         | 
| 1313 1344 | 
             
                    def update!(**args)
         | 
| 1314 1345 | 
             
                      @ai_instructions = args[:ai_instructions] if args.key?(:ai_instructions)
         | 
| 1346 | 
            +
                      @create_time = args[:create_time] if args.key?(:create_time)
         | 
| 1315 1347 | 
             
                      @display_name = args[:display_name] if args.key?(:display_name)
         | 
| 1316 1348 | 
             
                      @name = args[:name] if args.key?(:name)
         | 
| 1317 1349 | 
             
                    end
         | 
| @@ -1394,6 +1426,40 @@ module Google | |
| 1394 1426 | 
             
                    end
         | 
| 1395 1427 | 
             
                  end
         | 
| 1396 1428 |  | 
| 1429 | 
            +
                  # Customer quota information for `ReleaseTests`. Note: This quota only applies
         | 
| 1430 | 
            +
                  # to tests with `AiInstructions` and is separate from the quota which might
         | 
| 1431 | 
            +
                  # apply to the device time used by any tests.
         | 
| 1432 | 
            +
                  class GoogleFirebaseAppdistroV1alphaTestQuota
         | 
| 1433 | 
            +
                    include Google::Apis::Core::Hashable
         | 
| 1434 | 
            +
                  
         | 
| 1435 | 
            +
                    # Output only. Maximum number of `ReleaseTests` allotted for the current month.
         | 
| 1436 | 
            +
                    # Corresponds to the JSON property `limit`
         | 
| 1437 | 
            +
                    # @return [Fixnum]
         | 
| 1438 | 
            +
                    attr_accessor :limit
         | 
| 1439 | 
            +
                  
         | 
| 1440 | 
            +
                    # Identifier. The name of the `TestQuota` resource. Format: `projects/`
         | 
| 1441 | 
            +
                    # project_number`/testQuota`
         | 
| 1442 | 
            +
                    # Corresponds to the JSON property `name`
         | 
| 1443 | 
            +
                    # @return [String]
         | 
| 1444 | 
            +
                    attr_accessor :name
         | 
| 1445 | 
            +
                  
         | 
| 1446 | 
            +
                    # Output only. Number of `ReleaseTests` run in the current month
         | 
| 1447 | 
            +
                    # Corresponds to the JSON property `usage`
         | 
| 1448 | 
            +
                    # @return [Fixnum]
         | 
| 1449 | 
            +
                    attr_accessor :usage
         | 
| 1450 | 
            +
                  
         | 
| 1451 | 
            +
                    def initialize(**args)
         | 
| 1452 | 
            +
                       update!(**args)
         | 
| 1453 | 
            +
                    end
         | 
| 1454 | 
            +
                  
         | 
| 1455 | 
            +
                    # Update properties of this object
         | 
| 1456 | 
            +
                    def update!(**args)
         | 
| 1457 | 
            +
                      @limit = args[:limit] if args.key?(:limit)
         | 
| 1458 | 
            +
                      @name = args[:name] if args.key?(:name)
         | 
| 1459 | 
            +
                      @usage = args[:usage] if args.key?(:usage)
         | 
| 1460 | 
            +
                    end
         | 
| 1461 | 
            +
                  end
         | 
| 1462 | 
            +
                  
         | 
| 1397 1463 | 
             
                  # The UDIDs of a tester's iOS device
         | 
| 1398 1464 | 
             
                  class GoogleFirebaseAppdistroV1alphaTesterUdid
         | 
| 1399 1465 | 
             
                    include Google::Apis::Core::Hashable
         | 
| @@ -16,13 +16,13 @@ module Google | |
| 16 16 | 
             
              module Apis
         | 
| 17 17 | 
             
                module FirebaseappdistributionV1alpha
         | 
| 18 18 | 
             
                  # Version of the google-apis-firebaseappdistribution_v1alpha gem
         | 
| 19 | 
            -
                  GEM_VERSION = "0. | 
| 19 | 
            +
                  GEM_VERSION = "0.10.0"
         | 
| 20 20 |  | 
| 21 21 | 
             
                  # Version of the code generator used to generate this client
         | 
| 22 | 
            -
                  GENERATOR_VERSION = "0. | 
| 22 | 
            +
                  GENERATOR_VERSION = "0.16.0"
         | 
| 23 23 |  | 
| 24 24 | 
             
                  # Revision of the discovery document this client was generated from
         | 
| 25 | 
            -
                  REVISION = " | 
| 25 | 
            +
                  REVISION = "20250219"
         | 
| 26 26 | 
             
                end
         | 
| 27 27 | 
             
              end
         | 
| 28 28 | 
             
            end
         | 
| @@ -178,6 +178,12 @@ module Google | |
| 178 178 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 179 179 | 
             
                  end
         | 
| 180 180 |  | 
| 181 | 
            +
                  class GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo
         | 
| 182 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 183 | 
            +
                  
         | 
| 184 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 185 | 
            +
                  end
         | 
| 186 | 
            +
                  
         | 
| 181 187 | 
             
                  class GoogleFirebaseAppdistroV1alphaGoalDetails
         | 
| 182 188 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 183 189 |  | 
| @@ -280,6 +286,12 @@ module Google | |
| 280 286 | 
             
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 281 287 | 
             
                  end
         | 
| 282 288 |  | 
| 289 | 
            +
                  class GoogleFirebaseAppdistroV1alphaTestQuota
         | 
| 290 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 291 | 
            +
                  
         | 
| 292 | 
            +
                    include Google::Apis::Core::JsonObjectSupport
         | 
| 293 | 
            +
                  end
         | 
| 294 | 
            +
                  
         | 
| 283 295 | 
             
                  class GoogleFirebaseAppdistroV1alphaTesterUdid
         | 
| 284 296 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation; end
         | 
| 285 297 |  | 
| @@ -349,7 +361,6 @@ module Google | |
| 349 361 | 
             
                  class GoogleFirebaseAppdistroV1alphaAiInstructions
         | 
| 350 362 | 
             
                    # @private
         | 
| 351 363 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 352 | 
            -
                      property :app_description, as: 'appDescription'
         | 
| 353 364 | 
             
                      collection :steps, as: 'steps', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiStep::Representation
         | 
| 354 365 |  | 
| 355 366 | 
             
                    end
         | 
| @@ -539,6 +550,8 @@ module Google | |
| 539 550 | 
             
                  class GoogleFirebaseAppdistroV1alphaGoalAction
         | 
| 540 551 | 
             
                    # @private
         | 
| 541 552 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 553 | 
            +
                      property :debug_info, as: 'debugInfo', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo::Representation
         | 
| 554 | 
            +
                  
         | 
| 542 555 | 
             
                      property :device_action, as: 'deviceAction', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceAction, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaDeviceAction::Representation
         | 
| 543 556 |  | 
| 544 557 | 
             
                      property :explanation, as: 'explanation'
         | 
| @@ -547,6 +560,14 @@ module Google | |
| 547 560 | 
             
                    end
         | 
| 548 561 | 
             
                  end
         | 
| 549 562 |  | 
| 563 | 
            +
                  class GoogleFirebaseAppdistroV1alphaGoalActionDebugInfo
         | 
| 564 | 
            +
                    # @private
         | 
| 565 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 566 | 
            +
                      property :annotated_screenshot_uri, as: 'annotatedScreenshotUri'
         | 
| 567 | 
            +
                      property :json_uri, as: 'jsonUri'
         | 
| 568 | 
            +
                    end
         | 
| 569 | 
            +
                  end
         | 
| 570 | 
            +
                  
         | 
| 550 571 | 
             
                  class GoogleFirebaseAppdistroV1alphaGoalDetails
         | 
| 551 572 | 
             
                    # @private
         | 
| 552 573 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -689,6 +710,7 @@ module Google | |
| 689 710 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 690 711 | 
             
                      property :ai_instructions, as: 'aiInstructions', class: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions, decorator: Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaAiInstructions::Representation
         | 
| 691 712 |  | 
| 713 | 
            +
                      property :create_time, as: 'createTime'
         | 
| 692 714 | 
             
                      property :display_name, as: 'displayName'
         | 
| 693 715 | 
             
                      property :name, as: 'name'
         | 
| 694 716 | 
             
                    end
         | 
| @@ -716,6 +738,15 @@ module Google | |
| 716 738 | 
             
                    end
         | 
| 717 739 | 
             
                  end
         | 
| 718 740 |  | 
| 741 | 
            +
                  class GoogleFirebaseAppdistroV1alphaTestQuota
         | 
| 742 | 
            +
                    # @private
         | 
| 743 | 
            +
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| 744 | 
            +
                      property :limit, :numeric_string => true, as: 'limit'
         | 
| 745 | 
            +
                      property :name, as: 'name'
         | 
| 746 | 
            +
                      property :usage, :numeric_string => true, as: 'usage'
         | 
| 747 | 
            +
                    end
         | 
| 748 | 
            +
                  end
         | 
| 749 | 
            +
                  
         | 
| 719 750 | 
             
                  class GoogleFirebaseAppdistroV1alphaTesterUdid
         | 
| 720 751 | 
             
                    # @private
         | 
| 721 752 | 
             
                    class Representation < Google::Apis::Core::JsonRepresentation
         | 
| @@ -326,6 +326,37 @@ module Google | |
| 326 326 | 
             
                      execute_or_queue_command(command, &block)
         | 
| 327 327 | 
             
                    end
         | 
| 328 328 |  | 
| 329 | 
            +
                    # Get information about the quota for `ReleaseTests`.
         | 
| 330 | 
            +
                    # @param [String] name
         | 
| 331 | 
            +
                    #   Required. The name of the `TestQuota` resource to retrieve. Format: `projects/`
         | 
| 332 | 
            +
                    #   project_number`/testQuota`
         | 
| 333 | 
            +
                    # @param [String] fields
         | 
| 334 | 
            +
                    #   Selector specifying which fields to include in a partial response.
         | 
| 335 | 
            +
                    # @param [String] quota_user
         | 
| 336 | 
            +
                    #   Available to use for quota purposes for server-side applications. Can be any
         | 
| 337 | 
            +
                    #   arbitrary string assigned to a user, but should not exceed 40 characters.
         | 
| 338 | 
            +
                    # @param [Google::Apis::RequestOptions] options
         | 
| 339 | 
            +
                    #   Request-specific options
         | 
| 340 | 
            +
                    #
         | 
| 341 | 
            +
                    # @yield [result, err] Result & error if block supplied
         | 
| 342 | 
            +
                    # @yieldparam result [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestQuota] parsed result object
         | 
| 343 | 
            +
                    # @yieldparam err [StandardError] error object if request failed
         | 
| 344 | 
            +
                    #
         | 
| 345 | 
            +
                    # @return [Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestQuota]
         | 
| 346 | 
            +
                    #
         | 
| 347 | 
            +
                    # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
         | 
| 348 | 
            +
                    # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
         | 
| 349 | 
            +
                    # @raise [Google::Apis::AuthorizationError] Authorization is required
         | 
| 350 | 
            +
                    def get_project_test_quota(name, fields: nil, quota_user: nil, options: nil, &block)
         | 
| 351 | 
            +
                      command = make_simple_command(:get, 'v1alpha/{+name}', options)
         | 
| 352 | 
            +
                      command.response_representation = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestQuota::Representation
         | 
| 353 | 
            +
                      command.response_class = Google::Apis::FirebaseappdistributionV1alpha::GoogleFirebaseAppdistroV1alphaTestQuota
         | 
| 354 | 
            +
                      command.params['name'] = name unless name.nil?
         | 
| 355 | 
            +
                      command.query['fields'] = fields unless fields.nil?
         | 
| 356 | 
            +
                      command.query['quotaUser'] = quota_user unless quota_user.nil?
         | 
| 357 | 
            +
                      execute_or_queue_command(command, &block)
         | 
| 358 | 
            +
                    end
         | 
| 359 | 
            +
                    
         | 
| 329 360 | 
             
                    # Gets configuration for automated tests.
         | 
| 330 361 | 
             
                    # @param [String] name
         | 
| 331 362 | 
             
                    #   Required. The name of the `TestConfig` resource to retrieve. Format: `projects/
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,13 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: google-apis-firebaseappdistribution_v1alpha
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0. | 
| 4 | 
            +
              version: 0.10.0
         | 
| 5 5 | 
             
            platform: ruby
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - Google LLC
         | 
| 8 | 
            -
            autorequire: 
         | 
| 9 8 | 
             
            bindir: bin
         | 
| 10 9 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date:  | 
| 10 | 
            +
            date: 2025-03-02 00:00:00.000000000 Z
         | 
| 12 11 | 
             
            dependencies:
         | 
| 13 12 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 13 | 
             
              name: google-apis-core
         | 
| @@ -58,9 +57,8 @@ licenses: | |
| 58 57 | 
             
            metadata:
         | 
| 59 58 | 
             
              bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
         | 
| 60 59 | 
             
              changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappdistribution_v1alpha/CHANGELOG.md
         | 
| 61 | 
            -
              documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0. | 
| 60 | 
            +
              documentation_uri: https://googleapis.dev/ruby/google-apis-firebaseappdistribution_v1alpha/v0.10.0
         | 
| 62 61 | 
             
              source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-firebaseappdistribution_v1alpha
         | 
| 63 | 
            -
            post_install_message: 
         | 
| 64 62 | 
             
            rdoc_options: []
         | 
| 65 63 | 
             
            require_paths:
         | 
| 66 64 | 
             
            - lib
         | 
| @@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 75 73 | 
             
                - !ruby/object:Gem::Version
         | 
| 76 74 | 
             
                  version: '0'
         | 
| 77 75 | 
             
            requirements: []
         | 
| 78 | 
            -
            rubygems_version: 3.5 | 
| 79 | 
            -
            signing_key: 
         | 
| 76 | 
            +
            rubygems_version: 3.6.5
         | 
| 80 77 | 
             
            specification_version: 4
         | 
| 81 78 | 
             
            summary: Simple REST client for Firebase App Distribution API V1alpha
         | 
| 82 79 | 
             
            test_files: []
         |